.sl-brand-story {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 380px;
  background-image: var(--sl-story-bg, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 16px;
}

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

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

.sl-brand-story__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 48px 40px;
  max-width: 600px;
}

.sl-brand-story__subtitle {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  line-height: 1.4;
}

.sl-brand-story__title {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 800;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.sl-brand-story__desc {
  margin: 0;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  max-width: 480px;
}

.sl-brand-story__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;
  white-space: nowrap;
}
.sl-brand-story__btn:hover {
  background-color: #c81577;
  color: #fff;
}

.sl-brand-story--placeholder {
  background: #f0f0f1;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sl-brand-story--placeholder .sl-brand-story__title {
  color: #aaa;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .sl-brand-story {
    min-height: 260px;
    border-radius: 10px;
  }
  .sl-brand-story__content {
    padding: 32px 24px;
    max-width: 100%;
  }
  .sl-brand-story__title {
    font-size: clamp(22px, 6vw, 32px);
  }
}