:root {
      --red-950: #140202;
      --red-900: #310304;
      --red-800: #63070a;
      --red-700: #a70b12;
      --red-600: #c90d18;
      --gold-600: #d7972f;
      --gold-500: #f3b13c;
      --gold-300: #ffe28d;
      --paper: #fffaf1;
      --paper-2: #f5eee2;
      --ink: #21120d;
      --muted: #76645b;
      --line: rgba(83, 18, 11, .14);
      --white: #fff;
      --max: 1180px;
      --shadow: 0 18px 42px rgba(38, 3, 5, .15);
    }

    * { box-sizing: border-box; }

    html,
    body {
      margin: 0;
      min-height: 100%;
      overflow-x: hidden;
    }

    body {
      color: var(--ink);
      background: var(--paper);
      font-family: Arial, "Helvetica Neue", sans-serif;
      line-height: 1.6;
      letter-spacing: 0;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .shell {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: relative;
      z-index: 5;
      background: #fff;
      border-bottom: 1px solid rgba(33, 18, 13, .08);
      box-shadow: 0 10px 26px rgba(33, 18, 13, .06);
    }

    .header-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background:
        linear-gradient(135deg, #ffdb7e 0%, #bd1118 44%, #460305 100%);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35), 0 13px 26px rgba(87, 4, 8, .22);
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
    }

    .brand-word {
      display: grid;
      gap: 0;
      line-height: 1;
    }

    .brand-word strong {
      color: #16110f;
      font-size: 38px;
      font-weight: 900;
      letter-spacing: 0;
    }

    .brand-word span {
      margin-top: 5px;
      color: #8b060c;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1;
      min-width: 0;
    }

    .nav a {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 13px;
      border-radius: 8px;
      color: #15100e;
      font-size: 14px;
      font-weight: 900;
      white-space: nowrap;
    }

    .nav a:hover,
    .nav .active {
      color: #9b0710;
      background: #fff3e1;
    }

    .header-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      max-width: 100%;
      padding: 0 24px;
      border-radius: 8px;
      border: 1px solid transparent;
      color: #fff;
      background: linear-gradient(180deg, #d71421 0%, #a30710 100%);
      box-shadow: 0 12px 24px rgba(117, 4, 12, .2);
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .btn.secondary {
      color: #301005;
      background: linear-gradient(180deg, #ffe58f 0%, #edaa35 100%);
      box-shadow: 0 12px 24px rgba(148, 87, 10, .2);
    }

    .btn.dark {
      color: var(--gold-300);
      background: rgba(12, 2, 2, .42);
      border-color: rgba(255, 226, 141, .42);
      box-shadow: none;
    }

    .hero {
      position: relative;
      min-height: 650px;
      display: grid;
      align-items: center;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(8, 1, 1, .96) 0%, rgba(22, 2, 2, .88) 33%, rgba(22, 2, 2, .36) 67%, rgba(8, 1, 1, .3) 100%),
        url("zo88-hero-visual.png") center / cover no-repeat;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 120px;
      background: linear-gradient(180deg, transparent, rgba(20, 2, 2, .72));
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      width: min(650px, 100%);
      padding: 76px 0 88px;
    }

    h1,
    h2,
    h3,
    p { margin-top: 0; }

    h1 {
      margin-bottom: 20px;
      color: #fff;
      font-size: clamp(48px, 7vw, 84px);
      line-height: .96;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
      text-shadow: 0 6px 0 rgba(0, 0, 0, .2), 0 22px 44px rgba(0, 0, 0, .34);
    }

    h1 .gold { color: var(--gold-300); }
    .mobile-title-break { display: none; }

    .hero p {
      max-width: 610px;
      margin-bottom: 28px;
      color: rgba(255, 250, 241, .88);
      font-size: 20px;
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 24px;
    }

    .official-link {
      color: rgba(255, 250, 241, .9);
      font-size: 15px;
      font-weight: 800;
    }

    .official-link a {
      color: var(--gold-300);
      font-weight: 900;
    }

    .main {
      background:
        linear-gradient(180deg, #fff 0%, var(--paper) 36%, var(--paper-2) 100%);
    }

    .access {
      padding: 38px 0 28px;
    }

    .access-strip {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr) auto;
      gap: 22px;
      align-items: center;
      padding: 26px;
      border: 1px solid rgba(255, 226, 141, .45);
      border-radius: 8px;
      color: #fff;
      background:
        radial-gradient(circle at 12% 20%, rgba(255, 226, 141, .18), transparent 26%),
        linear-gradient(135deg, #2d0304 0%, #6a090d 55%, #2a0304 100%);
      box-shadow: var(--shadow);
    }

    .access-icon {
      width: 72px;
      height: 72px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #441104;
      background: linear-gradient(180deg, #ffe997, #e0a035);
      font-size: 24px;
      font-weight: 900;
    }

    .access h2 {
      margin-bottom: 4px;
      color: var(--gold-300);
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.15;
      font-weight: 900;
    }

    .access p {
      margin-bottom: 0;
      color: rgba(255, 250, 241, .82);
      font-weight: 700;
    }

    .section {
      padding: 58px 0;
    }

    .section-head {
      max-width: 760px;
      margin: 0 auto 30px;
      text-align: center;
    }

    .section-head h2 {
      margin-bottom: 10px;
      color: #8f0710;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.1;
      font-weight: 900;
    }

    .section-head p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 17px;
      font-weight: 700;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
    }

    .category-card {
      min-height: 235px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 16px 34px rgba(38, 3, 5, .08);
    }

    .category-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      border-radius: 8px;
      color: #4a1105;
      background: linear-gradient(180deg, #ffe997, #e1a037);
      font-size: 20px;
      font-weight: 900;
    }

    .category-card h3 {
      margin-bottom: 8px;
      color: #7f070d;
      font-size: 23px;
      line-height: 1.12;
      font-weight: 900;
    }

    .category-card p {
      margin-bottom: 16px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
    }

    .read-more {
      color: #b70d15;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

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

    .info-card {
      min-height: 220px;
      padding: 24px;
      border-radius: 8px;
      border: 1px solid #ead7bd;
      background:
        linear-gradient(180deg, #fff 0%, #fff8ec 100%);
      box-shadow: 0 15px 32px rgba(38, 3, 5, .08);
    }

    .info-card b {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      margin-bottom: 22px;
      border-radius: 50%;
      color: #4a1105;
      background: linear-gradient(180deg, #ffe997, #e1a037);
      font-size: 18px;
      font-weight: 900;
    }

    .info-card h3 {
      margin-bottom: 8px;
      color: #7f070d;
      font-size: 22px;
      line-height: 1.16;
      font-weight: 900;
    }

    .info-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 34px;
      align-items: center;
    }

    .feature-visual {
      min-height: 420px;
      border-radius: 8px;
      border: 1px solid rgba(129, 14, 18, .18);
      background:
        linear-gradient(90deg, rgba(18, 2, 2, .08), transparent),
        url("zo88-feature-visual.png") center / cover no-repeat;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .feature-list {
      display: grid;
      gap: 14px;
    }

    .feature-copy h2 {
      margin-bottom: 14px;
      color: #7b060d;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.08;
      font-weight: 900;
    }

    .feature-copy > p {
      margin-bottom: 22px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 700;
    }

    .feature-row {
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      gap: 16px;
      align-items: start;
      padding: 18px;
      border: 1px solid #ead7bd;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 12px 28px rgba(38, 3, 5, .07);
    }

    .feature-row .num {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #4a1105;
      background: linear-gradient(180deg, #ffe997, #e1a037);
      font-weight: 900;
    }

    .feature-row h3 {
      margin-bottom: 3px;
      color: #8b0710;
      font-size: 20px;
      line-height: 1.22;
      font-weight: 900;
    }

    .feature-row p {
      margin-bottom: 0;
      color: var(--muted);
      font-weight: 700;
    }

    .steps-band {
      padding: 58px 0;
      color: #fff;
      background:
        radial-gradient(circle at 18% 10%, rgba(255, 226, 141, .18), transparent 28%),
        linear-gradient(135deg, #250303 0%, #72080d 48%, #210303 100%);
      border-top: 1px solid rgba(255, 226, 141, .18);
      border-bottom: 1px solid rgba(255, 226, 141, .18);
    }

    .steps-band .section-head h2 {
      color: var(--gold-300);
    }

    .steps-band .section-head p {
      color: rgba(255, 250, 241, .76);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      counter-reset: step;
    }

    .step-card {
      position: relative;
      min-height: 220px;
      padding: 24px;
      border-radius: 8px;
      border: 1px solid rgba(255, 226, 141, .26);
      background: rgba(255, 255, 255, .06);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
      overflow: hidden;
    }

    .step-card::before {
      counter-increment: step;
      content: "0" counter(step);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      margin-bottom: 22px;
      border-radius: 50%;
      color: #4a1105;
      background: linear-gradient(180deg, #ffe997, #e1a037);
      font-weight: 900;
    }

    .step-card h3 {
      margin-bottom: 8px;
      color: #fff;
      font-size: 22px;
      line-height: 1.16;
      font-weight: 900;
    }

    .step-card p {
      margin-bottom: 0;
      color: rgba(255, 250, 241, .76);
      font-weight: 700;
    }

    .promo-layout {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 22px;
      align-items: stretch;
    }

    .promo-card {
      padding: 28px;
      border-radius: 8px;
      border: 1px solid #ead7bd;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .promo-card.dark {
      color: #fff;
      background:
        radial-gradient(circle at 82% 14%, rgba(255, 226, 141, .18), transparent 28%),
        linear-gradient(135deg, #2b0304, #7c080f 58%, #250303);
      border-color: rgba(255, 226, 141, .24);
    }

    .promo-card h2,
    .promo-card h3 {
      margin-bottom: 12px;
      color: #7b060d;
      font-weight: 900;
      line-height: 1.14;
    }

    .promo-card h2 {
      font-size: clamp(30px, 4vw, 42px);
    }

    .promo-card.dark h2,
    .promo-card.dark h3 {
      color: var(--gold-300);
    }

    .promo-card p {
      color: var(--muted);
      font-weight: 700;
    }

    .promo-card.dark p,
    .promo-card.dark li {
      color: rgba(255, 250, 241, .78);
    }

    .mini-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .mini-list div {
      padding: 16px;
      border-radius: 8px;
      background: #fff8ec;
      border: 1px solid #ead7bd;
    }

    .promo-card.dark .mini-list div {
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 226, 141, .2);
    }

    .mini-list b {
      display: block;
      margin-bottom: 4px;
      color: #8b0710;
      font-size: 18px;
      font-weight: 900;
    }

    .promo-card.dark .mini-list b {
      color: #fff;
    }

    .news {
      background: #fff;
      border-top: 1px solid #ecddc7;
      border-bottom: 1px solid #ecddc7;
    }

    .news-grid {
      display: grid;
      grid-template-columns: 1.08fr repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .article-card {
      min-height: 255px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
      padding: 22px;
      border-radius: 8px;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(20, 2, 2, .06), rgba(20, 2, 2, .88)),
        radial-gradient(circle at 74% 16%, rgba(255, 226, 141, .32), transparent 25%),
        linear-gradient(135deg, #930910, #260303);
      overflow: hidden;
      box-shadow: 0 14px 32px rgba(38, 3, 5, .12);
    }

    .article-card:first-child {
      min-height: 375px;
    }

    .article-card::before {
      content: "";
      position: absolute;
      inset: 16px;
      border: 1px solid rgba(255, 226, 141, .24);
      border-radius: 6px;
      pointer-events: none;
    }

    .article-card time,
    .article-card h3,
    .article-card p {
      position: relative;
      z-index: 1;
    }

    .article-card time {
      margin-bottom: 8px;
      color: var(--gold-300);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .article-card h3 {
      margin-bottom: 10px;
      font-size: clamp(22px, 3vw, 30px);
      line-height: 1.16;
      font-weight: 900;
    }

    .article-card p {
      margin-bottom: 0;
      color: rgba(255, 250, 241, .8);
      font-weight: 700;
    }

    .article-card.small h3 { font-size: 22px; }

    .article-card.compact {
      min-height: 235px;
    }

    .content-band {
      padding: 58px 0 76px;
    }

    .content-box {
      max-width: 1040px;
      margin: 0 auto;
      padding: clamp(24px, 4vw, 38px);
      border-left: 4px solid #b70d15;
      border-radius: 8px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .content-box h2 {
      margin-bottom: 14px;
      color: #7b060d;
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.14;
      font-weight: 900;
    }

    .content-box p,
    .content-box li {
      color: #3c2a22;
      font-size: 17px;
      font-weight: 600;
    }

    .content-box ul {
      margin: 0;
      padding-left: 20px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .faq-item {
      padding: 22px;
      border-radius: 8px;
      border: 1px solid #ead7bd;
      background: #fff;
      box-shadow: 0 12px 28px rgba(38, 3, 5, .07);
    }

    .faq-item h3 {
      margin-bottom: 8px;
      color: #7b060d;
      font-size: 20px;
      line-height: 1.22;
      font-weight: 900;
    }

    .faq-item p {
      margin-bottom: 0;
      color: var(--muted);
      font-weight: 700;
    }

    .footer {
      color: rgba(255, 250, 241, .74);
      background:
        radial-gradient(circle at 74% 0%, rgba(255, 226, 141, .16), transparent 30%),
        #140202;
      border-top: 1px solid rgba(255, 226, 141, .18);
    }

    .footer .shell {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
      gap: 28px;
      padding: 38px 0;
    }

    .footer h3 {
      margin-bottom: 12px;
      color: var(--gold-300);
      font-size: 18px;
      font-weight: 900;
    }

    .footer p,
    .footer a {
      margin: 0 0 8px;
      color: rgba(255, 250, 241, .72);
      font-size: 14px;
      font-weight: 700;
    }

    @media (max-width: 1080px) {
      .header-inner {
        min-height: auto;
        padding: 16px 0;
        flex-wrap: wrap;
      }

      .nav {
        order: 3;
        flex-basis: 100%;
        flex-wrap: wrap;
      }

      .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .info-grid,
      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .split,
      .promo-layout,
      .news-grid,
      .footer .shell {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .shell { width: min(var(--max), calc(100% - 28px)); }

      .header-inner {
        justify-content: center;
        text-align: center;
      }

      .brand {
        width: 100%;
        justify-content: center;
      }

      .brand-word strong { font-size: 34px; }

      .header-actions {
        width: 100%;
        justify-content: center;
      }

      .header-actions .btn {
        width: min(100%, 260px);
      }

      .nav a {
        min-height: 38px;
        padding: 0 9px;
        font-size: 12px;
      }

      .nav {
        width: 100%;
        max-width: 360px;
        flex: 0 0 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        margin: 0 auto;
        justify-content: stretch;
        justify-items: stretch;
        align-items: stretch;
      }

      .nav a {
        width: 100%;
        padding: 0 6px;
        white-space: normal;
      }

      .hero {
        min-height: 650px;
        background-position: 62% center;
      }

      .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 58px 0 66px;
      }

      h1 {
        font-size: 40px;
        line-height: 1.02;
      }

      .mobile-title-break { display: block; }

      .hero p {
        max-width: 340px;
        font-size: 16px;
        line-height: 1.55;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .access-strip {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 22px 16px;
        overflow: hidden;
      }

      .access-icon {
        margin: 0 auto;
      }

      .access h2,
      .section-head h2,
      .feature-copy h2,
      .content-box h2,
      .promo-card h2,
      .article-card h3,
      .faq-item h3 {
        overflow-wrap: anywhere;
      }

      .access h2,
      .section-head h2,
      .feature-copy h2,
      .promo-card h2 {
        font-size: 28px;
        line-height: 1.15;
      }

      .access p,
      .section-head p,
      .category-card p,
      .info-card p,
      .feature-row p,
      .promo-card p,
      .step-card p,
      .faq-item p {
        font-size: 14px;
      }

      .category-grid {
        grid-template-columns: 1fr;
      }

      .info-grid,
      .steps-grid,
      .mini-list,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .section,
      .steps-band,
      .content-band {
        padding: 40px 0;
      }

      .feature-visual {
        min-height: 300px;
      }

      .article-card,
      .article-card:first-child {
        min-height: 250px;
      }
    }

/* ZO88 article pages */
.article-hero {
  min-height: 360px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8,1,1,.96) 0%, rgba(22,2,2,.88) 42%, rgba(22,2,2,.42) 100%),
    url("zo88-hero-visual.png") center / cover no-repeat;
}
.article-hero .shell { padding: 78px 0 58px; }
.article-hero h1 { max-width: 820px; margin-bottom: 16px; font-size: clamp(40px, 6vw, 72px); }
.article-hero p { max-width: 680px; margin: 0; color: rgba(255,250,241,.86); font-size: 18px; font-weight: 700; }
.article-wrap { padding: 54px 0 70px; background: linear-gradient(180deg, #fffaf1 0%, #f5eee2 100%); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; align-items: start; }
.article-main, .article-side-card { border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.article-main { padding: clamp(24px, 4vw, 44px); }
.article-label { margin-bottom: 12px; color: var(--red-700); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.article-main h2, .article-main h3 { color: var(--red-800); line-height: 1.18; }
.article-main h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.article-meta { margin-bottom: 24px; color: var(--muted); font-size: 14px; font-weight: 800; }
.article-body { color: #3d2921; font-size: 17px; line-height: 1.86; }
.article-body p { margin-bottom: 18px; }
.article-body ul { padding-left: 20px; margin: 0 0 20px; }
.article-body li { margin-bottom: 9px; }
.article-update, .article-editor { margin-top: 18px; color: var(--muted); font-size: 14px; font-weight: 800; }
.article-nav { display: grid; gap: 10px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--red-800); font-weight: 900; }
.article-side-card { overflow: hidden; }
.article-side-image { min-height: 210px; background: url("zo88-feature-visual.png") center / cover no-repeat; }
.article-side-body { padding: 24px; }
.article-side-body h2 { margin-bottom: 12px; color: var(--red-900); font-size: 28px; line-height: 1.08; }
.article-side-body p { color: var(--muted); font-size: 15px; }
.article-side-list { display: grid; gap: 10px; margin: 18px 0 22px; }
.article-side-list span { display: block; padding: 12px 14px; border-radius: 8px; color: var(--red-900); background: #fff6e8; font-size: 14px; font-weight: 900; }
.zo88-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 26px; flex-wrap: wrap; }
.zo88-pagination a, .zo88-pagination span { min-width: 38px; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; border-radius: 8px; border: 1px solid var(--line); background: #fff; color: var(--red-800); font-size: 13px; font-weight: 900; }
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-side-card { order: -1; }
}
@media (max-width: 640px) {
  .article-hero { min-height: 300px; background-position: 67% center; }
  .article-hero .shell { padding: 56px 0 40px; }
  .article-main { padding: 22px; }
  .article-body { font-size: 16px; }
}
