    :root {
      --bg: #ffffff;
      --surface: #ffffff;
      --text: #0f172a;
      /* slate-900 */
      --muted: #6b7280;
      /* gray-500 */
      --border: #e5e7eb;
      /* gray-200 */
      --accent: #CE6632;
      /* brand orange */
      --accent-2: #732E0C;
      /* brand deep */
      --shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 8px 24px rgba(0, 0, 0, .06);
      --radius: 18px;
      --maxw: 1180px;
    }

    @media (prefers-color-scheme: dark) {
      :root {
        --bg: #ffffff;
        --surface: #ffffff;
        --text: #0f172a;
        --muted: #6b7280;
        --border: #e5e7eb;
        --shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 8px 24px rgba(0, 0, 0, .06);
      }
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box
    }

    html,
    body {
      height: 100%
    }

    body {
      margin: 0;
      font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      color: var(--text);
      background: var(--bg);
    }

    a {
      color: inherit;
      text-decoration: none
    }

    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 20px
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden
    }

    .skip-link:focus {
      left: 16px;
      top: 16px;
      width: auto;
      height: auto;
      background: #fff;
      color: #000;
      padding: 8px 12px;
      border-radius: 8px;
      box-shadow: var(--shadow)
    }

    /* Masthead */
    .masthead {
      line-height: 0;
      border-bottom: 1px solid var(--border);
      padding: 0
    }

    .masthead img {
      width: 100%;
      height: clamp(120px, 16vw, 200px);
      object-fit: cover;
      display: block
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: #fff;
      border-bottom: 1px solid var(--border)
    }

    @media (prefers-color-scheme: dark) {
      header {
        background: linear-gradient(180deg, rgba(17, 22, 29, .7), rgba(17, 22, 29, .5))
      }
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: .3px
    }

    .brand-badge {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow: var(--shadow);
      display: grid;
      place-items: center
    }

    .brand-badge svg {
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25))
    }

    .nav a {
      padding: 8px 12px;
      border-radius: 10px
    }

    .nav a[aria-current="page"],
    .nav a:hover {
      background: #f5f5f5
    }

    .cta {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      padding: 10px 14px;
      border-radius: 12px;
      box-shadow: var(--shadow)
    }

    .cta svg {
      opacity: .9
    }

    /* Hero */
    .hero {
      position: relative;
      padding: 28px 0 36px;
      overflow: hidden
    }

    .hero-bg {
      display: none
    }

    .hero-wrap {
      position: relative
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .9rem;
      color: var(--muted);
      background: #f8fafc;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid var(--border)
    }

    .hero h1 {
      font-size: clamp(2.1rem, 4vw, 3.2rem);
      line-height: 1.1;
      margin: 14px 0 12px;
      letter-spacing: -.02em
    }

    .hero p {
      font-size: clamp(1rem, 2vw, 1.125rem);
      color: var(--muted);
      max-width: 60ch
    }

    .search {
      display: flex;
      gap: 10px;
      align-items: center;
      border: 1px solid var(--border);
      padding: 10px 12px;
      border-radius: 12px;
      background: var(--surface)
    }

    .search input {
      border: 0;
      outline: 0;
      background: transparent;
      color: inherit;
      flex: 1;
      font-size: 1rem
    }

    /* Section */
    section {
      padding: 28px 0
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 12px
    }

    .section-head h2 {
      font-size: 1.4rem;
      margin: 0
    }

    .section-head p {
      margin: 0;
      color: var(--muted)
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 18px
    }

    .card {
      grid-column: span 4;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: var(--shadow)
    }
    .retention-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 14px
    }

    .retention-card {
      display: block;
      min-height: 100%;
      padding: 16px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
    }

    .retention-card:hover {
      transform: translateY(-2px);
      border-color: rgba(206, 102, 50, .34);
      box-shadow: 0 16px 34px rgba(15, 23, 42, .1)
    }

    .retention-card span {
      display: block;
      margin-bottom: 8px;
      color: var(--accent-2);
      font-size: .78rem;
      font-weight: 800;
      text-transform: uppercase
    }

    .retention-card strong {
      display: block;
      margin-bottom: 6px;
      line-height: 1.25
    }

    .retention-card p {
      margin: 0;
      color: var(--muted);
      font-size: .95rem
    }

    .topic-paths,
    .recently-viewed {
      padding-top: 20px
    }

    .next-up-module,
    .context-cta {
      margin: 28px 0;
      padding: 18px;
      border: 1px solid rgba(206, 102, 50, .22);
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(206, 102, 50, .08), #fff)
    }

    .next-up-header h2,
    .context-cta h2,
    .context-cta h3 {
      margin-top: 0
    }

    .next-up-header--visual {
      display: grid;
      grid-template-columns: minmax(112px, 18%) minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      margin-bottom: 16px
    }

    .next-up-header--visual figure {
      margin: 0;
      overflow: hidden;
      border-radius: 8px;
      width: min(100%, 160px);
      aspect-ratio: 4 / 3;
      background: #f1f5f9;
      box-shadow: 0 1px 2px rgba(15, 23, 42, .08)
    }

    .next-up-header--visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .next-up-header--visual p:not(.magazine-kicker) {
      margin: 8px 0 0;
      color: var(--muted);
      max-width: 58ch
    }

    .context-cta-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px
    }

    .context-cta-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 12px;
      border-radius: 8px;
      border: 1px solid rgba(206, 102, 50, .28);
      background: #fff;
      font-weight: 800
    }

    @media (max-width: 720px) {
      .next-up-header--visual {
        grid-template-columns: 1fr;
        gap: 12px
      }

      .next-up-header--visual figure {
        width: min(42vw, 150px)
      }
    }

    @media (max-width: 900px) {
      .card {
        grid-column: span 6
      }
    }

    @media (max-width: 640px) {
      .card {
        grid-column: span 12
      }
    }

    .card h3 {
      margin: 0 0 6px;
      font-size: 1.05rem
    }

    .card p {
      margin: 0 0 12px;
      color: var(--muted)
    }

    .linklist {
      display: grid;
      gap: 8px
    }

    .linklist a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border: 1px solid var(--border);
      border-radius: 12px
    }

    .linklist a:hover {
      border-color: rgba(206, 102, 50, .4);
      box-shadow: var(--shadow)
    }

    .articles-magazine {
      padding-top: 34px
    }

    .article-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 18px
    }

    .filter-chip {
      appearance: none;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: #fff;
      color: var(--text);
      cursor: pointer;
      font: inherit;
      font-size: .92rem;
      font-weight: 700;
      line-height: 1.2;
      padding: 9px 13px;
      transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease
    }

    .filter-chip:hover,
    .filter-chip:focus-visible {
      border-color: rgba(206, 102, 50, .45);
      box-shadow: 0 0 0 3px rgba(206, 102, 50, .12);
      outline: 0
    }

    .filter-chip.is-active {
      background: var(--text);
      border-color: var(--text);
      color: #fff
    }

    .filter-status {
      min-height: 1.5em;
      margin: -6px 0 14px;
      color: var(--muted);
      font-size: .94rem
    }

    .article-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 18px;
      align-items: stretch
    }

    .article-card {
      grid-column: span 4;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
    }

    .article-card:hover {
      transform: translateY(-2px);
      border-color: rgba(206, 102, 50, .34);
      box-shadow: 0 16px 34px rgba(15, 23, 42, .1)
    }

    .article-card a {
      display: flex;
      flex-direction: column;
      min-height: 100%
    }

    .article-card figure {
      margin: 0;
      aspect-ratio: 16 / 10;
      background: #f1f5f9;
      overflow: hidden
    }

    .article-card img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform .25s ease
    }

    .article-card:hover img {
      transform: scale(1.03)
    }

    .article-card--hill img {
      object-position: center
    }

    .article-card-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 16px;
      gap: 10px
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .06em;
      line-height: 1.3;
      text-transform: uppercase
    }

    .article-meta time {
      margin-left: auto
    }

    .article-new {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
      padding: 2px 7px;
      font-size: .7rem;
      line-height: 1.3
    }

    .article-card h3 {
      margin: 0;
      font-size: clamp(1.05rem, 1.8vw, 1.25rem);
      line-height: 1.18;
      letter-spacing: 0
    }

    .article-card p {
      margin: 0;
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.55
    }

    .article-card--feature {
      grid-column: span 8
    }

    .article-card--feature a {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr)
    }

    .article-card--feature figure {
      aspect-ratio: auto;
      min-height: 100%
    }

    .article-card--feature .article-card-body {
      justify-content: end;
      padding: clamp(20px, 3vw, 34px)
    }

    .article-card--feature h3 {
      font-size: clamp(1.45rem, 2.5vw, 2.05rem)
    }

    .article-card--feature p {
      font-size: 1rem
    }

    @media (max-width: 980px) {
      .article-card,
      .article-card--feature {
        grid-column: span 6
      }

      .article-card--feature a {
        display: flex
      }

      .article-card--feature figure {
        aspect-ratio: 16 / 10
      }
    }

    @media (max-width: 640px) {
      .article-grid {
        gap: 14px
      }

      .article-card,
      .article-card--feature {
        grid-column: span 12
      }

      .article-meta time {
        margin-left: 0
      }
    }

    .pill {
      display: inline-block;
      font-size: .78rem;
      padding: .25rem .55rem;
      border-radius: 999px;
      background: #f6f6f6;
      border: 1px solid var(--border);
      margin-right: 6px
    }

    .pill-new {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      border-color: rgba(206, 102, 50, .35);
      box-shadow: var(--shadow)
    }

    /* Advertising */
    .ad-slot {
      display: flex;
      justify-content: center;
      padding: 24px 0;
      margin: 0 auto;
      max-width: min(100%, 960px)
    }

    .article-grid-ad {
      grid-column: 1 / -1;
      max-width: min(100%, 920px);
      padding: 10px 0 12px
    }

    .ad-slot--middle {
      margin: 2px auto 8px
    }

    .ad-slot--bottom {
      max-width: 336px;
      padding: 16px 0
    }

    .ad-slot--bottom .adsbygoogle {
      width: 336px !important;
      height: 280px !important
    }

    .ad-slot .adsbygoogle {
      display: block;
      margin: 0 auto;
      max-width: 100%
    }

    body.mock-ads .adsbygoogle {
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, rgba(148, 163, 184, 0.2) 0, rgba(148, 163, 184, 0.2) 10px, rgba(226, 232, 240, 0.45) 10px, rgba(226, 232, 240, 0.45) 20px);
      border: 1px dashed #cbd5f5;
      color: var(--muted);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      position: relative;
    }

    body.mock-ads .adsbygoogle::after {
      content: "Mock ad";
      position: absolute;
    }


    /* Footer */
    footer {
      margin-top: 36px;
      padding: 28px 0 40px;
      border-top: 1px solid var(--border);
      color: var(--muted)
    }

    .made {
      display: flex;
      gap: 8px;
      align-items: center
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0
    }
  


.nav-links{display:flex; gap:6px; align-items:center}
.hero-gradient-text{background:linear-gradient(135deg,var(--accent),var(--accent-2)); -webkit-background-clip:text; background-clip:text; color:transparent}
.search-wrap{margin-top:18px; max-width:680px}
.ad-banner-728x90{display:inline-block; width:728px; height:90px}
.ad-banner-336x280{display:inline-block; width:336px; height:280px}
.footer-row{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.copyright-meta{opacity:.8}
.footer-link-spaced{margin-right:12px}
.footer-row-ios{display:flex; flex-wrap:wrap; gap:18px; justify-content:space-between; align-items:center}
.secondary-nav-links{display:flex; gap:12px; flex-wrap:wrap}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px
  }

  .nav-links {
    flex-wrap: wrap;
    width: 100%;
    overflow-x: visible;
    padding-bottom: 0
  }

  .ad-banner-728x90 {
    width: min(728px, calc(100vw - 32px))
  }

  .ad-banner-336x280 {
    width: min(336px, calc(100vw - 32px))
  }
}
