/* ============================================================
   SKS Story — static styles
   ============================================================ */

.sks-story {
  background: var(--sks-story-bg, #E8DFD0);
}

.sks-story__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--sks-story-pad, 70px) 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image-right layout flips the column order */
.sks-story--image-right .sks-story__img-wrap {
  order: 2;
}

.sks-story--image-right .sks-story__text {
  order: 1;
}

/* ── Image ── */
.sks-story__img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #2C3E50;
}

.sks-story__img-wrap img,
.sks-story__img-wrap svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Text column ── */
.sks-story__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sks-story__eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B8520A;
  font-weight: 600;
  margin: 0;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

.sks-story__heading {
  font-family: var(--font-heading-family, 'Playfair Display', serif);
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

/* ── Paragraph block ── */
.sks-story__p {
  font-size: 14.5px;
  color: #4A4440;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

.sks-story__p strong {
  font-weight: 500;
  color: #1A1A1A;
}

.sks-story__p a {
  color: #B8520A;
  text-decoration: underline;
  text-decoration-color: rgba(184, 82, 10, 0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}

.sks-story__p a:hover {
  text-decoration-color: #B8520A;
}

/* ── Evidence (stats) block ── */
.sks-story__evidence {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid #C8C2BC;
  font-size: 14px;
  color: #4A4440;
  line-height: 1.7;
  font-weight: 300;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

.sks-story__evidence strong {
  color: #B8520A;
  font-family: var(--font-heading-family, 'Playfair Display', serif);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
}

/* ── Responsive ── */
@media screen and (max-width: 960px) {
  .sks-story__wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Reset image order on mobile — image always first */
  .sks-story--image-right .sks-story__img-wrap,
  .sks-story__img-wrap {
    order: 0;
  }

  .sks-story--image-right .sks-story__text,
  .sks-story__text {
    order: 0;
  }

  .sks-story__heading {
    font-size: 28px;
  }
}

@media screen and (max-width: 749px) {
  .sks-story__wrap {
    padding: 48px 16px;
    gap: 28px;
  }

  .sks-story__heading {
    font-size: 24px;
  }

  .sks-story__p {
    font-size: 14px;
  }

  .sks-story__evidence {
    font-size: 13.5px;
  }
}
