.smyk-story {
  padding-block: var(--smyk-section-py);
  background: #f5f5f7;
  position: relative;
  overflow: hidden;
}
.smyk-story__wrap {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* ── LEFT: copy ──────────────────────────────────────── */
.smyk-story__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.smyk-story__eyebrow {
  display: inline-block;
  font-family: var(--smyk-font, inherit);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e41d56;
  background: rgba(228, 29, 86, 0.10);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.smyk-story__heading {
  font-family: var(--smyk-font, inherit);
  font-size: clamp(1.75rem, 4vw, 45px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #222222;
  margin: 0 0 18px;
}
.smyk-story__heading-accent {
  color: #e41d56;
  margin-left: 0.3em;
}
.smyk-story__lede {
  font-family: var(--smyk-font, inherit);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: #222222;
  margin: 0 0 18px;
}
.smyk-story__body {
  font-family: var(--smyk-font, inherit);
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.65;
  color: #475569;
}
.smyk-story__body p {
  margin: 0 0 14px;
}
.smyk-story__body p:last-child { margin-bottom: 0; }
.smyk-story__body strong,
.smyk-story__body b { font-weight: 700; color: #222222; }

/* Pullquote — soft purple highlight, left border */
.smyk-story__pullquote {
  margin: 24px 0;
  padding: 18px 22px;
  background: rgba(228, 29, 86, 0.06);
  border-left: 3px solid #e41d56;
  border-radius: 12px;
  font-family: var(--smyk-font, inherit);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-style: italic;
  line-height: 1.5;
  color: #222222;
}
.smyk-story__pullquote-text { display: block; }
.smyk-story__pullquote-cite {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  color: #e41d56;
  letter-spacing: 0.04em;
}

.smyk-story__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--smyk-font, inherit);
  font-size: 1rem;
  font-weight: 700;
  color: #222222;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: color .2s, gap .2s;
}
.smyk-story__cta:hover {
  color: #e41d56;
  gap: 14px;
}

/* ── RIGHT: media ────────────────────────────────────── */
.smyk-story__media {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.smyk-story__img {
  display: block;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px -28px rgba(15, 23, 42, 0.32);
}
.smyk-story__img--placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent 60%),
    linear-gradient(135deg, #f3eafa 0%, #effafa 100%);
}
.smyk-story__caption {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 14px 0 0;
  text-align: center;
  font-style: italic;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .smyk-story__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .smyk-story__media { order: -1; }
}
@media (max-width: 560px) {
  .smyk-story__heading-accent {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
  .smyk-story__pullquote {
    padding: 14px 16px;
    margin: 18px 0;
  }
}
