.sl-brand-hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 500px;
  background-image: var(--sl-brand-bg, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.sl-brand-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--sl-brand-overlay, rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 0;
}

.sl-brand-hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  align-items: inherit;
}

.sl-brand-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 48px 60px;
  max-width: 520px;
}

.sl-brand-hero__subtitle {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}

.sl-brand-hero__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.sl-brand-hero__desc {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.sl-brand-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  background-color: #e91e8c;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.sl-brand-hero__btn:hover {
  background-color: #c81577;
  color: #fff;
}

.sl-brand-hero--placeholder {
  background: #f0f0f1;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sl-brand-hero--placeholder .sl-brand-hero__content {
  align-items: center;
  text-align: center;
}
.sl-brand-hero--placeholder .sl-brand-hero__title {
  color: #aaa;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
}

@media (max-width: 767px) {
  .sl-brand-hero {
    min-height: 320px;
  }
  .sl-brand-hero__content {
    padding: 32px 24px;
    max-width: 100%;
  }
  .sl-brand-hero__title {
    font-size: clamp(24px, 7vw, 36px);
  }
}