:root {
      --ink: #071a34;
      --ink-soft: #12375f;
      --blue: #0d63d8;
      --cyan: #18baf2;
      --gold: #f5a623;
      --gold-2: #ffd166;
      --red: #f04438;
      --paper: #fffaf0;
      --card: #ffffff;
      --line: rgba(7, 26, 52, 0.13);
      --muted: #61728a;
      --shadow: 0 22px 60px rgba(7, 26, 52, 0.16);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 0%, rgba(24, 186, 242, 0.25), transparent 30%),
        linear-gradient(180deg, #f1a225 0, #f1a225 360px, #fff7e8 360px, #fffdf8 100%);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .site-top {
      background: rgba(6, 24, 49, 0.96);
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 20;
      box-shadow: 0 12px 34px rgba(6, 24, 49, 0.22);
    }

    .top-inner {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      min-height: 72px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      color: #082146;
      font-weight: 950;
      letter-spacing: 0;
      background: linear-gradient(135deg, #fff 0%, #fcd66d 42%, #22c7ff 100%);
      box-shadow: inset 0 -8px 16px rgba(8, 33, 70, 0.18);
      flex: 0 0 auto;
    }

    .brand-name {
      display: block;
      font-size: 30px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: 0;
    }

    .brand small {
      display: block;
      margin-top: 4px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 12px;
      font-weight: 700;
    }

    .utility {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .utility span {
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      white-space: nowrap;
    }

    .btn {
      min-height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 13px;
      border: 1px solid transparent;
      box-shadow: 0 10px 24px rgba(7, 26, 52, 0.15);
    }

    .btn.primary {
      color: #09224a;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
    }

    .btn.ghost {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: none;
    }

    .nav-wrap {
      background: #f1a225;
      border-bottom: 1px solid rgba(7, 26, 52, 0.12);
    }

    .nav {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .nav::-webkit-scrollbar {
      display: none;
    }

    .nav a {
      color: #fff;
      font-weight: 950;
      font-size: 14px;
      text-shadow: 0 1px 0 rgba(7, 26, 52, 0.2);
      border: 2px solid rgba(255, 255, 255, 0);
      padding: 8px 14px;
      border-radius: 999px;
      white-space: nowrap;
    }

    .nav a.active,
    .nav a:hover {
      color: var(--red);
      background: #fff9e7;
      border-color: var(--red);
      text-shadow: none;
    }

    main {
      overflow: hidden;
    }

    .hero {
      position: relative;
      min-height: 590px;
      isolation: isolate;
      color: #fff;
      background: #061831;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: -2;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(90deg, rgba(5, 19, 41, 0.96) 0%, rgba(5, 19, 41, 0.8) 34%, rgba(5, 19, 41, 0.28) 68%, rgba(5, 19, 41, 0.12) 100%),
        linear-gradient(180deg, rgba(5, 19, 41, 0.2), rgba(5, 19, 41, 0.76));
    }

    .hero-inner {
      width: min(1180px, calc(100% - 32px));
      min-height: 590px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 620px) minmax(260px, 1fr);
      align-items: center;
      gap: 40px;
      padding: 72px 0 58px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      color: #082146;
      background: linear-gradient(135deg, #fff, var(--gold-2));
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .hero h1 {
      margin: 20px 0 16px;
      font-size: clamp(46px, 6vw, 84px);
      line-height: 0.94;
      letter-spacing: 0;
      font-weight: 950;
      max-width: 100%;
      text-wrap: balance;
      overflow-wrap: anywhere;
    }

    .hero h1 span {
      display: block;
      color: var(--gold-2);
    }

    .hero-copy {
      max-width: 600px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
      line-height: 1.75;
      font-weight: 600;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-ctas .btn {
      min-height: 52px;
      padding: 0 24px;
      font-size: 15px;
    }

    .hero-ctas .btn.ghost {
      backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.12);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 560px;
      margin-top: 32px;
    }

    .stat {
      min-height: 92px;
      padding: 17px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.11);
      border: 1px solid rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(14px);
    }

    .stat strong {
      display: block;
      color: var(--gold-2);
      font-size: 27px;
      line-height: 1;
      font-weight: 950;
    }

    .stat span {
      display: block;
      margin-top: 9px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 13px;
      line-height: 1.3;
      font-weight: 800;
    }

    .quick-panel {
      justify-self: end;
      width: min(380px, 100%);
      padding: 20px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(5, 19, 41, 0.68);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .quick-panel h2 {
      margin: 0 0 12px;
      color: #fff;
      font-size: 22px;
      line-height: 1.2;
    }

    .quick-row {
      min-height: 62px;
      padding: 13px 14px;
      display: grid;
      grid-template-columns: 42px 1fr;
      align-items: center;
      gap: 12px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .quick-row + .quick-row {
      margin-top: 10px;
    }

    .quick-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #09224a;
      font-weight: 950;
      background: linear-gradient(135deg, var(--gold-2), var(--cyan));
    }

    .quick-row strong {
      display: block;
      color: #fff;
      font-size: 14px;
    }

    .quick-row span {
      display: block;
      margin-top: 3px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 12px;
      line-height: 1.35;
      font-weight: 650;
    }

    .section {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 66px 0;
    }

    .intro-card {
      margin-top: -46px;
      position: relative;
      z-index: 3;
      padding: 30px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(255, 255, 255, 0.78);
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1.3fr 0.7fr;
      gap: 28px;
    }

    .section-kicker {
      color: var(--red);
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
    }

    h2 {
      margin: 10px 0 14px;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.07;
      letter-spacing: 0;
    }

    p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
      font-size: 16px;
      font-weight: 600;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .feature {
      min-height: 122px;
      border-radius: 18px;
      padding: 18px;
      background: #f7fbff;
      border: 1px solid var(--line);
    }

    .feature strong {
      display: block;
      font-size: 18px;
      margin-bottom: 6px;
    }

    .feature span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
      font-weight: 650;
    }

    .promo-strip {
      margin-top: 28px;
      min-height: 92px;
      padding: 20px 24px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 20px;
      border-radius: 20px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(7, 26, 52, 0.96), rgba(13, 99, 216, 0.88)),
        url("/assets/haywin-hero-ad.png") center/cover;
      overflow: hidden;
    }

    .promo-strip strong {
      display: block;
      font-size: 20px;
      line-height: 1.2;
    }

    .promo-strip span {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 4px;
      font-size: 13px;
      font-weight: 700;
    }

    .promo-strip .btn {
      box-shadow: none;
    }

    .section-head {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 20px;
      margin-bottom: 26px;
    }

    .section-head p {
      max-width: 620px;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .category {
      position: relative;
      min-height: 210px;
      padding: 20px;
      border-radius: 22px;
      overflow: hidden;
      color: #fff;
      background: linear-gradient(145deg, #082146, #0d63d8);
      box-shadow: 0 18px 36px rgba(7, 26, 52, 0.14);
    }

    .category:nth-child(2) {
      background: linear-gradient(145deg, #2d1657, #18baf2);
    }

    .category:nth-child(3) {
      background: linear-gradient(145deg, #0a4635, #f5a623);
    }

    .category:nth-child(4) {
      background: linear-gradient(145deg, #5d1233, #0d63d8);
    }

    .category::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -70px;
      bottom: -80px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
    }

    .category .number {
      width: 44px;
      height: 44px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      color: var(--ink);
      background: #fff;
      font-weight: 950;
    }

    .category h3 {
      position: relative;
      margin: 54px 0 8px;
      font-size: 23px;
      line-height: 1.12;
    }

    .category p {
      position: relative;
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px;
    }

    .content-band {
      background: linear-gradient(180deg, #fffaf0, #eef7ff);
      border-top: 1px solid rgba(7, 26, 52, 0.08);
      border-bottom: 1px solid rgba(7, 26, 52, 0.08);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .step {
      min-height: 210px;
      padding: 24px;
      border-radius: 22px;
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: 0 16px 38px rgba(7, 26, 52, 0.08);
    }

    .step-num {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #082146;
      font-weight: 950;
      background: linear-gradient(135deg, var(--gold-2), var(--cyan));
      margin-bottom: 36px;
    }

    .step h3,
    .article h3,
    .info-card h3 {
      margin: 0 0 10px;
      color: var(--ink);
      font-size: 21px;
      line-height: 1.22;
    }

    .step p,
    .article p,
    .info-card p {
      font-size: 14px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .article {
      min-height: 402px;
      border-radius: 22px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 16px 38px rgba(7, 26, 52, 0.08);
    }

    .article-visual {
      min-height: 182px;
      position: relative;
      background:
        linear-gradient(135deg, rgba(5, 19, 41, 0.2), rgba(245, 166, 35, 0.55)),
        url("/assets/haywin-hero-ad.png") center/cover;
    }

    .article:nth-child(2) .article-visual {
      background-position: 68% 50%;
    }

    .article:nth-child(3) .article-visual {
      background-position: 100% 50%;
    }

    .date {
      position: absolute;
      left: 18px;
      top: 18px;
      width: 54px;
      height: 58px;
      border-radius: 13px;
      background: #fff;
      color: var(--ink);
      display: grid;
      place-items: center;
      text-align: center;
      font-weight: 950;
      box-shadow: 0 12px 22px rgba(7, 26, 52, 0.18);
      line-height: 1.08;
    }

    .date span {
      display: block;
      color: var(--blue);
      font-size: 12px;
    }

    .article-body {
      padding: 22px;
    }

    .article-tag {
      display: inline-flex;
      margin-bottom: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      color: #082146;
      background: #fff1c8;
      font-size: 12px;
      font-weight: 950;
    }

    .article a.read {
      display: inline-flex;
      margin-top: 18px;
      color: var(--blue);
      font-weight: 950;
      font-size: 14px;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 18px;
    }

    .info-card {
      min-height: 168px;
      padding: 24px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.76);
      border: 1px solid var(--line);
    }

    .partner-strip {
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.06);
    }

    .partners {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 28px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .partner {
      min-width: 82px;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.86);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.14);
      font-size: 13px;
      font-weight: 900;
    }

    footer {
      color: #fff;
      background: #061831;
    }

    .footer-inner {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 58px 0 38px;
      display: grid;
      grid-template-columns: 1.2fr 0.75fr 1fr;
      gap: 42px;
    }

    footer p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
    }

    footer h3 {
      margin: 0 0 18px;
      color: var(--gold-2);
      font-size: 18px;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 12px;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 750;
      font-size: 14px;
    }

    .copyright {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 18px 0 30px;
      color: rgba(255, 255, 255, 0.52);
      font-size: 12px;
      line-height: 1.6;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 960px) {
      .top-inner {
        grid-template-columns: 1fr auto;
      }

      .utility {
        display: none;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        align-items: end;
      }

      .quick-panel {
        justify-self: stretch;
      }

      .intro-card {
        grid-template-columns: 1fr;
      }

      .category-grid,
      .news-grid,
      .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .steps {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 680px) {
      body {
        background:
          radial-gradient(circle at 20% 0%, rgba(24, 186, 242, 0.22), transparent 28%),
          linear-gradient(180deg, #f1a225 0, #f1a225 286px, #fff7e8 286px, #fffdf8 100%);
      }

      .top-inner {
        width: min(100% - 22px, 1180px);
        min-height: 76px;
        gap: 12px;
      }

      .brand-mark {
        width: 42px;
        height: 42px;
      }

      .brand-name {
        font-size: 24px;
      }

      .brand small {
        max-width: 154px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .actions {
        gap: 6px;
      }

      .actions .btn {
        min-height: 36px;
        padding: 0 11px;
        font-size: 12px;
      }

      .nav {
        width: min(100% - 22px, 1180px);
        justify-content: flex-start;
        min-height: 50px;
        gap: 8px;
      }

      .nav a {
        font-size: 12px;
        padding: 7px 11px;
      }

      .hero {
        min-height: auto;
      }

      .hero::before {
        background:
          linear-gradient(90deg, rgba(5, 19, 41, 0.96), rgba(5, 19, 41, 0.72)),
          linear-gradient(180deg, rgba(5, 19, 41, 0.2), rgba(5, 19, 41, 0.88));
      }

      .hero-media img {
        object-position: 66% center;
      }

      .hero-inner {
        width: min(100% - 22px, 1180px);
        min-height: 730px;
        padding: 48px 0 28px;
        gap: 22px;
      }

      .hero h1 {
        font-size: 40px;
        line-height: 1.02;
      }

      .hero-copy {
        font-size: 15px;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .stat {
        min-height: 76px;
      }

      .section {
        width: min(100% - 22px, 1180px);
        padding: 44px 0;
      }

      .intro-card {
        margin-top: -28px;
        padding: 18px;
      }

      h2 {
        font-size: 30px;
      }

      .feature-grid,
      .category-grid,
      .news-grid,
      .info-grid {
        grid-template-columns: 1fr;
      }

      .promo-strip {
        grid-template-columns: 1fr;
        justify-items: start;
      }

      .section-head {
        grid-template-columns: 1fr;
      }

      .article {
        min-height: auto;
      }

      .footer-inner {
        width: min(100% - 22px, 1180px);
        grid-template-columns: 1fr;
        padding-top: 42px;
      }

      .copyright,
      .partners {
        width: min(100% - 22px, 1180px);
      }
    }

/* Article detail surface */
.article-detail-hero {
  position: relative;
  color: #fff;
  background: #061831;
  isolation: isolate;
  overflow: hidden;
}
.article-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 19, 41, 0.94), rgba(5, 19, 41, 0.72) 42%, rgba(5, 19, 41, 0.22)),
    url("/assets/haywin-hero-ad.png") center/cover;
}
.article-detail-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 430px;
  margin: 0 auto;
  display: grid;
  align-items: end;
  padding: 78px 0 62px;
}
.article-detail-inner h1 {
  max-width: 860px;
  margin: 16px 0 14px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
}
.article-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}
.article-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
.article-main-card,
.article-side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(7, 26, 52, 0.08);
}
.article-main-card { padding: 34px; }
.article-side-card { padding: 22px; position: sticky; top: 110px; }
.article-main-card .body {
  color: #263b56;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 600;
}
.article-main-card .body p { margin: 0 0 18px; color: #263b56; }
.article-main-card .body h2,
.article-main-card .body h3 {
  margin: 30px 0 12px;
  color: var(--ink);
  line-height: 1.18;
}
.article-main-card .body img { max-width: 100%; height: auto; border-radius: 18px; }
.article-main-card .body ul,
.article-main-card .body ol { padding-left: 22px; }
.article-main-card .body li { margin: 8px 0; }
.article-side-card h2 { margin-top: 0; font-size: 24px; }
.article-side-card .quick-row { background: #f7fbff; border-color: var(--line); }
.article-side-card .quick-row strong { color: var(--ink); }
.article-side-card .quick-row span span { color: var(--muted); }
.article-actions,
.article-nextprev {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.article-actions a,
.article-nextprev a {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  background: #eef7ff;
  font-weight: 900;
  font-size: 13px;
}
@media (max-width: 900px) {
  .article-shell { grid-template-columns: 1fr; }
  .article-side-card { position: static; }
}
@media (max-width: 680px) {
  .article-detail-inner { width: min(100% - 22px, 1180px); min-height: 360px; padding: 48px 0 34px; }
  .article-shell { width: min(100% - 22px, 1180px); padding: 38px 0 48px; }
  .article-main-card { padding: 20px; }
}


/* Mobile article overflow guard */
.article-detail-inner h1,
.article-main-card .body,
.article-main-card .body p,
.article-main-card .body h2,
.article-main-card .body h3,
.article-nextprev,
.article-side-card {
  overflow-wrap: anywhere;
  word-break: normal;
}
@media (max-width: 680px) {
  .article-detail-inner h1 {
    font-size: 32px;
    line-height: 1.08;
  }
  .article-main-card .body {
    font-size: 15px;
    line-height: 1.78;
  }
  .article-main-card .body h2 {
    font-size: 28px;
  }
  .article-main-card .body h3 {
    font-size: 22px;
  }
}


/* Tighter mobile article typography */
@media (max-width: 680px) {
  .article-detail-inner h1 {
    font-size: 28px;
    line-height: 1.12;
    max-width: 330px;
  }
  .article-meta span {
    font-size: 11px;
    padding: 7px 10px;
  }
  .article-main-card {
    padding: 18px 16px;
  }
  .article-main-card .body {
    font-size: 14px;
    line-height: 1.72;
  }
  .article-main-card .body h2 {
    font-size: 24px;
    line-height: 1.15;
  }
}


@media (max-width: 680px) {
  .article-main-card .body p,
  .article-main-card .body li {
    font-size: 14px;
    line-height: 1.72;
  }
}
