/* SiyArts case study — cream + multicolour system */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --sa-teal:   #7acbd0;
  --sa-pink:   #ff739e;
  --sa-purple: #9e84bd;
  --sa-green:  #cade75;
  --sa-yellow: #fed97d;
  --sa-navy:   #11112d;
  --sa-muted:  #797979;
  --sa-line:   #11112d;
  --sa-cream:  #fffff0;
  --sa-max:    764px;
  --sa-pad-x:  clamp(24px, 6vw, 85px);
}

.siyarts-page {
  background: #fff;
  color: #000;
}

/* ——— Hero ——— */

.sa-hero {
  position: relative;
  width: 100%;
  background: var(--sa-cream);
  min-height: min(925px, 120vw);
  overflow: hidden;
}

.sa-hero__art {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
  transform: none;
  display: block;
}

body.siyarts-page > header.nav-bar {
  z-index: 1000;
  padding: 12px 51px;
}

/* ——— Lead block ——— */

.sa-lead {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px) var(--sa-pad-x) 48px;
  background: #fff;
}

.sa-lead__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 40px);
  max-width: 1270px;
  margin: 0 auto;
}

.sa-lead__main {
  flex: 1 1 280px;
  max-width: 666px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.sa-kicker {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.15em;
  color: var(--sa-navy);
}

.sa-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.15;
  color: var(--sa-navy);
}

.sa-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 32px 56px;
}

.sa-meta__col {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 auto;
}

.sa-meta__label {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--sa-muted);
}

.sa-meta__value {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

.sa-lead__rule {
  width: 2px;
  min-height: 200px;
  background: var(--sa-teal);
  align-self: center;
  flex-shrink: 0;
}

.sa-chips {
  flex: 0 1 510px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-sizing: border-box;
}

.sa-chips__rows { display: flex; flex-direction: column; gap: 12px; }

.sa-chips__row { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; }

/* Flowing chip layout */
.sa-chips__flow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: flex-start;
}

.sa-chips__bento {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.sa-chips__bento .sa-chips__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px 12px;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
}

.sa-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  min-height: 30px;
  background: var(--sa-teal);
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
}

/* ——— Main column ——— */

.sa-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px var(--sa-pad-x) 120px;
}

.sa-stack {
  max-width: var(--sa-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.sa-divider {
  border: none;
  border-top: 1px solid var(--sa-line);
  width: 100%;
  margin: 0;
}

.sa-section { display: flex; flex-direction: column; gap: 50px; }

.sa-section--idea {
  gap: 0;
}

.sa-section--idea .sa-eyebrow {
  margin-bottom: 8px;
}

.sa-section--idea .sa-h2 {
  margin: 0;
}

.sa-idea-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  margin-top: 50px;
}

.sa-idea-columns .sa-body,
.sa-idea-columns .sa-quote-list {
  flex: 1 1 280px;
  min-width: 0;
}

.sa-idea-columns .sa-quote-list {
  margin-top: 78px;
}

.sa-idea-left {
  flex: 1 1 280px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sa-section__head { display: flex; flex-direction: column; gap: 8px; }

.sa-eyebrow {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.15em;
  color: var(--sa-muted);
}

.sa-h2 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  color: var(--sa-teal);
}

.sa-h2--black { color: #000; }

.sa-body {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #000;
}

/* ——— Mockup image ——— */

.sa-mockup {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #000;
  border-radius: 20px;
  box-sizing: border-box;
}

/* ——— Split ——— */

.sa-split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.sa-split__col {
  flex: 1 1 280px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.sa-quote-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 53px;
}

.sa-quote-list li { font-size: 16px; line-height: 19px; letter-spacing: 0.02em; }

/* ——— Stats ——— */

.sa-stat-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px 54px;
}

.sa-stat-row--centered {
  justify-content: center;
  text-align: center;
}

.sa-stat { flex: 0 1 138px; display: flex; flex-direction: column; gap: 25px; }

.sa-stat__big {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
}

.sa-stat__big--pink   { color: var(--sa-pink);   }
.sa-stat__big--purple { color: var(--sa-purple);  }
.sa-stat__big--teal   { color: var(--sa-teal);    }

.sa-stat__small {
  margin: 0;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.02em;
}

/* ——— Research data columns ——— */

.sa-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}

.sa-data-col { display: flex; flex-direction: column; gap: 6px; }

.sa-data-col__label {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--sa-muted);
}

.sa-data-col__items {
  margin: 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  color: var(--sa-muted);
}

/* ——— Process grid ——— */

.sa-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px;
}

.sa-process-step { display: flex; flex-direction: column; gap: 6px; }
.sa-process-step__n { font-weight: 600; font-size: 14px; letter-spacing: 0.1em; color: var(--sa-muted); }
.sa-process-step__title { font-weight: 600; font-size: 14px; letter-spacing: 0.1em; }
.sa-process-step__body { margin: 0; font-size: 14px; line-height: 17px; }

.sa-process-step__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  line-height: 17px;
}

.sa-process-step__list li {
  position: relative;
  padding-left: 0.85em;
}

.sa-process-step__list li::before {
  content: "·";
  position: absolute;
  left: 0;
}

/* ——— Product feature grid ——— */

.sa-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.sa-feature { display: flex; flex-direction: column; gap: 6px; }

.sa-feature__n {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.sa-feature__n--pink   { color: var(--sa-pink);   }
.sa-feature__n--purple { color: var(--sa-purple);  }
.sa-feature__n--teal   { color: var(--sa-teal);    }
.sa-feature__n--green  { color: #cbdf75;            }

.sa-feature__title { font-weight: 600; font-size: 14px; letter-spacing: 0.1em; }

.sa-feature__body { margin: 0; font-size: 14px; line-height: 17px; }

/* ——— Character illustrations ——— */

.sa-chars { display: flex; flex-direction: column; gap: 48px; }

.sa-chars__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 50px;
  justify-content: center;
  align-items: flex-start;
}

.sa-char {
  flex: 0 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sa-char__img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 220px;
  object-fit: contain;
  object-position: center top;
}

.sa-char__caption { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }

.sa-char__n { font-weight: 600; font-size: 14px; letter-spacing: 0.1em; color: var(--sa-muted); }

.sa-char__name { font-weight: 600; font-size: 14px; letter-spacing: 0.1em; }

.sa-char__desc { margin: 0; font-size: 14px; line-height: 17px; }

/* ——— Journal sheets carousel ——— */

.sa-sheets-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.sa-sheets-row__arrow {
  width: 41px;
  height: 40px;
  flex-shrink: 0;
}

.sa-sheets-row__sheet {
  flex: 0 1 260px;
}

.sa-sheets-row__sheet img {
  display: block;
  width: 100%;
  height: auto;
}

/* ——— Brand colour palette ——— */

.sa-brand-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}

.sa-brand-row__text {
  flex: 1 1 280px;
  max-width: 368px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.sa-palette-block {
  flex: 0 0 200px;
  margin-left: auto;
}

.sa-palette-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
}

.sa-palette-swatch {
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.sa-figure { margin: 0; }

.sa-figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* Logo box */
.sa-logo-box {
  background: var(--sa-cream);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 393px;
  padding: 48px;
  box-sizing: border-box;
}

.sa-logo-box img {
  display: block;
  width: 100%;
  max-width: 353px;
  height: auto;
}

/* ——— Typography ——— */

.sa-type-pair {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.sa-type-col {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.sa-type-display {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  font-style: italic;
  color: #000;
  letter-spacing: 0.02em;
}

.sa-type-milkyway-img {
  display: block;
  width: min(100%, 320px);
  height: auto;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}

.sa-type-body-sample {
  font-family: 'Lora', 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.28;
}

/* ——— Brand foundations ——— */

.sa-foundations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 47px;
}

.sa-foundation { display: flex; flex-direction: column; gap: 6px; }

.sa-foundation__n { font-weight: 600; font-size: 14px; letter-spacing: 0.1em; }
.sa-foundation__n--pink   { color: var(--sa-pink);   }
.sa-foundation__n--purple { color: var(--sa-purple);  }
.sa-foundation__n--teal   { color: var(--sa-teal);    }
.sa-foundation__n--green  { color: #cbdf75;            }

.sa-foundation__title { font-weight: 600; font-size: 14px; letter-spacing: 0.1em; }
.sa-foundation__body  { margin: 0; font-size: 14px; line-height: 17px; }

/* ——— Links ——— */

.sa-links-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 21px 26px;
}

.sa-link-card {
  flex: 1 1 300px;
  max-width: 369px;
  padding: 15px 20px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  box-sizing: border-box;
}

.sa-link-card:hover { opacity: 0.9; }

.sa-link-card--pink   { background: var(--sa-pink);   }
.sa-link-card--teal   { background: var(--sa-teal);   }
.sa-link-card--green {
  background: var(--sa-green);
  color: #fff;
}
.sa-link-card--green .sa-link-card__title,
.sa-link-card--green .sa-link-card__sub {
  color: #fff;
}
.sa-link-card--green .sa-link-card__arrow {
  color: #fff;
}
.sa-link-card--purple { background: var(--sa-purple); }

.sa-link-card__icon { width: 50px; height: 50px; flex-shrink: 0; }
.sa-link-card__icon img {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
}
.sa-link-card__text { flex: 1; min-width: 0; }
.sa-link-card__title { margin: 0 0 6px; font-weight: 600; font-size: 16px; line-height: 19px; }
.sa-link-card__sub   { margin: 0; font-weight: 500; font-size: 12px; line-height: 15px; opacity: 0.9; }
.sa-link-card__arrow { font-size: 28px; font-weight: 600; line-height: 1; flex-shrink: 0; }

/* ——— Quote banner ——— */

.sa-quote-banner {
  background: #000;
  color: #fff;
  padding: 88px 24px;
  text-align: center;
}

.sa-quote-banner blockquote {
  margin: 0 auto;
  max-width: 1154px;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3.5vw, 32px);
  line-height: 1.22;
}

/* ============================================================
   HOVER POP-OUT ANIMATIONS
   ============================================================ */

.sa-chip {
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.22s ease;
  cursor: default;
}
.sa-chip:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 203, 208, 0.45);
}

.sa-stat {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sa-stat:hover {
  transform: translateY(-6px) scale(1.04);
}

.sa-process-step {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.sa-process-step:hover {
  transform: translateY(-5px);
}

.sa-data-col {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.sa-data-col:hover {
  transform: translateY(-5px);
}

.sa-feature-item {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.sa-feature-item:hover {
  transform: translateY(-4px);
}

/* Must match .sa-char__img frame — height:auto made image 2 shorter and sit “higher” in the row */
.sa-char__img--photo {
  border-radius: 0;
  background: transparent;
}

/* Character illustrations */
.sa-char {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.28s ease;
}
.sa-char:hover {
  transform: scale(1.06) translateY(-8px);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
}

/* Journal sheets — horizontal scroll */
.sa-sheets-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding: 8px 0 16px;
  margin: 0 -8px;
  box-sizing: border-box;
}

.sa-sheets-scroll__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 20px;
  padding: 4px 8px 12px;
  width: max-content;
  min-width: 100%;
}

.sa-sheet-img--scroll {
  flex: 0 0 auto;
  width: 260px;
  max-width: 72vw;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  scroll-snap-align: start;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.28s ease;
}

.sa-sheet-img--scroll:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.sa-journal-sheets-icon {
  display: block;
  width: 120px;
  height: auto;
  margin: -36px auto 0;
  background: transparent;
  object-fit: contain;
}

.sa-stack > .sa-section:has(#sa-sheets-scroll) {
  margin-bottom: -48px;
}

/* Journal sheet images */
.sa-sheet-img {
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.28s ease;
  display: block;
  height: auto;
}

/* Brand palette + readability images */
.sa-palette-wrap,
.sa-readability-wrap {
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1),
              box-shadow 0.25s ease;
  display: block;
}
.sa-palette-wrap:hover,
.sa-readability-wrap:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Logo box */
.sa-logo-box {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.sa-logo-box:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Brand foundations */
.sa-foundations-item {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.sa-foundations-item:hover {
  transform: translateY(-5px);
}

/* Link cards */
.sa-link-card {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.sa-link-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

/* Main mockup */
.sa-mockup-img {
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
              box-shadow 0.28s ease;
  display: block;
  width: 100%;
  height: auto;
}
.sa-mockup-img:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

/* ——— Responsive ——— */

@media (max-width: 900px) {
  .sa-lead__rule     { display: none; }
  .sa-process-grid   { grid-template-columns: 1fr 1fr; }
  .sa-foundations-grid { grid-template-columns: 1fr 1fr; }
  .sa-data-grid      { grid-template-columns: 1fr; }
  .sa-hero { min-height: auto; }
  .sa-meta {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  body.siyarts-page > header.nav-bar {
    width: calc(100% - 32px);
    padding: 12px 24px;
    flex-direction: column;
    gap: 12px;
    border-radius: 24px;
  }
  body.siyarts-page > header.nav-bar .nav-bar__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .sa-idea-columns .sa-quote-list { margin-top: 0; }
}

@media (max-width: 600px) {
  .sa-process-grid   { grid-template-columns: 1fr; }
  .sa-features-grid  { grid-template-columns: 1fr; }
  .sa-foundations-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE — ≤ 480px
   ============================================================ */
@media (max-width: 480px) {

  .sa-hero { min-height: 60vw; }

  body.siyarts-page > header.nav-bar {
    padding: 10px 16px;
    gap: 6px;
    border-radius: 20px;
    width: calc(100% - 20px);
  }
  body.siyarts-page > header.nav-bar .nav-bar__links { gap: 14px; font-size: 14px; }

  /* Lead */
  .sa-lead { padding: 24px 16px 32px; }
  .sa-lead__row { flex-direction: column; gap: 20px; }
  .sa-lead__main { max-width: 100%; }
  .sa-chips { flex: none; width: 100%; border: none; padding: 0; }
  .sa-kicker { font-size: 13px; }
  .sa-title { font-size: clamp(26px, 8vw, 42px); }
  .sa-meta { gap: 16px 24px; }

  /* Main */
  .sa-main { padding: 24px 16px 80px; }
  .sa-stack { gap: 60px; }

  /* Mockup */
  .sa-mockup-img { border-radius: 12px; }

  /* Split → stack */
  .sa-split { flex-direction: column; gap: 28px; }
  .sa-split__col { flex: none; width: 100%; }

  /* Stats */
  .sa-stat-row { gap: 24px 32px; }
  .sa-stat { flex: 0 1 calc(50% - 16px); }
  .sa-stat__big { font-size: 24px; }

  /* Process */
  .sa-process-grid { grid-template-columns: 1fr 1fr; }
  .sa-data-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Characters → 2 per row */
  .sa-chars__row { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .sa-char { flex: 0 1 calc(50% - 12px); }
  .sa-char__img {
    height: 140px;
    max-height: none;
  }

  /* Journal sheets scroll strip */
  .sa-sheet-img--scroll {
    width: min(44vw, 220px);
    max-width: 72vw;
  }

  /* Brand */
  .sa-brand-layout { flex-direction: column; gap: 24px; }
  .sa-brand-text { max-width: 100%; }
  .sa-logo-box { padding: 20px; }

  /* Typography */
  .sa-type-row { flex-direction: column; gap: 24px; }

  /* Foundations */
  .sa-foundations-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Link cards */
  .sa-links-grid { gap: 12px; }
  .sa-link-card { max-width: 100%; width: 100%; padding: 12px 16px; }
}
