/* ============================================================
   SKS How It Works — static styles
   ============================================================ */

.sks-hiw {
  background: var(--sks-hiw-bg, #FFFFFF);
}

.sks-hiw__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sks-hiw-pad, 70px) 48px;
}

/* ── Section header ── */
.sks-hiw__eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B8520A;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

.sks-hiw__heading {
  font-family: var(--font-heading-family, 'Playfair Display', serif);
  font-size: 32px;
  font-weight: 600;
  color: #1A1A1A;
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.sks-hiw__sub {
  font-size: 14.5px;
  color: #4A4440;
  line-height: 1.6;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  font-weight: 300;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}

/* ── Steps list ── */
.sks-hiw__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(var(--sks-hiw-cols, 4), 1fr);
  gap: 36px;
}

/* ── Single step ── */
.sks-hiw__step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

.sks-hiw__num {
  font-family: var(--font-heading-family, 'Playfair Display', serif);
  font-size: 32px;
  font-weight: 400;
  color: #B8520A;
  line-height: 1;
  letter-spacing: 0.02em;
  font-feature-settings: "lnum" 1;
  display: block;
}

.sks-hiw__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sks-hiw__step-heading {
  font-family: var(--font-heading-family, 'Playfair Display', serif);
  font-size: 18px;
  color: #1A1A1A;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.sks-hiw__step-text {
  font-size: 13.5px;
  color: #4A4440;
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
  font-family: var(--font-body-family, 'Jost', sans-serif);
}
/* Rich-text output: the field wraps content in its own <p> — reset browser
   margins and keep paragraph spacing tidy, and style inline links on-brand. */
.sks-hiw__step-text p { margin: 0; }
.sks-hiw__step-text p + p { margin-top: 8px; }
.sks-hiw__step-text a {
  color: #B8520A;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sks-hiw__step-text a:hover { color: #D4681A; }

/* ── Responsive ── */
@media screen and (max-width: 960px) {
  .sks-hiw__wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sks-hiw__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media screen and (max-width: 749px) {
  .sks-hiw__wrap {
    padding: 48px 16px;
  }

  /* Mobile column count is theme-editor controlled via
     --sks-hiw-cols-mobile (defaults to 1 for the classic single-
     column stack). Merchants set this from the section's "Columns
     (mobile)" dropdown in the Shopify theme editor. */
  .sks-hiw__list {
    grid-template-columns: repeat(var(--sks-hiw-cols-mobile, 1), 1fr);
    gap: 22px;
  }

  .sks-hiw__heading {
    font-size: 26px;
  }

  .sks-hiw__sub {
    font-size: 13.5px;
    margin-bottom: 32px;
  }
}
