 :root {
      --bg: #f5f7fb;
      --surface: #ffffff;
      --surface-2: #eef4fb;
      --ink: #0b1f3a;
      --muted: #5f6f87;
      --line: #d8e2ef;
      --accent: #1f5aa6;
      --accent-2: #0f4c81;
      --shadow: 0 12px 40px rgba(13, 36, 70, 0.08);
      --radius: 22px;
    }
    * { box-sizing: border-box; }
    html, body { min-height: 100%; }
    body {
      margin: 0;
      font-family: "Segoe UI", Tahoma, Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(31, 90, 166, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    }
    .nav-frame {
      display: block;
      width: min(1200px, calc(100% - 32px));
      height: 92px;
      margin: 28px auto 0;
      border: 0;
      background: transparent;
      position: relative;
      z-index: 50;
    }
    .shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 44px; display: grid; gap: 18px; }
    .hero { display: grid; gap: 18px; padding: 8px 4px 0; }
    .eyebrow {
      margin: 0 0 8px;
      text-transform: uppercase;
      letter-spacing: .22em;
      color: var(--accent);
      font-size: 12px;
      font-weight: 700;
    }
    h1 {
      margin: 0;
      font-size: clamp(1.2rem, 3.2vw, 3.5rem);
      line-height: .95;
      letter-spacing: -.035em;
      white-space: nowrap;
      color: var(--ink);
    }
    .subcopy { margin: 12px 0 0; max-width: 72ch; color: var(--muted); line-height: 1.7; font-size: 1.05rem; }
    .meta-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
    .media-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: 16px; align-items: start; }
    .card, .content-card, .panel {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    .meta-card { padding: 18px; min-height: 132px; display: grid; gap: 10px; }
    .meta-label { margin: 0; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
    .meta-value { margin: 0; font-size: 1.03rem; line-height: 1.5; color: var(--ink); }
    .content-card { padding: 18px; }
    .section-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .section, .highlight {
      display: grid;
      gap: 10px;
      padding: 18px;
      border-radius: 18px;
      background: linear-gradient(180deg, #fff, #f8fbff);
      border: 1px solid var(--line);
    }
    .highlight { background: linear-gradient(135deg, rgba(31, 90, 166, 0.08), rgba(15, 76, 129, 0.04)); }
    .section h2, .media-heading, .highlight h2 { margin: 0; font-size: 1.2rem; line-height: 1.2; letter-spacing: -.02em; color: var(--ink); }
    .section p, .media-caption, .highlight p { margin: 0; color: var(--muted); line-height: 1.65; }
    .list { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.65; display: grid; gap: 10px; }
    .full { grid-column: 1 / -1; }
    .media-card { overflow: hidden; }
    .player-shell { position: relative; background: #09131f; aspect-ratio: 16 / 9; }
    video { width: 100%; height: 100%; display: block; object-fit: contain; background: #09131f; }
    .player-badge {
      position: absolute; top: 14px; left: 14px; z-index: 2;
      padding: 8px 12px; border-radius: 999px;
      background: rgba(255,255,255,.92); color: var(--accent-2);
      border: 1px solid rgba(15, 76, 129, .16);
      font-size: 12px; font-weight: 700; backdrop-filter: blur(8px);
    }
    .media-body { display: grid; gap: 10px; padding: 18px 18px 20px; }
    @media (max-width: 960px) {
      .meta-grid, .section-grid, .media-grid { grid-template-columns: 1fr; }
      h1 { white-space: normal; }
    }
    @media (max-width: 720px) {
      .nav-frame { width: min(100% - 20px, 1200px); margin-top: 18px; }
      .shell { width: min(100% - 20px, 1180px); padding-top: 18px; }
      .card, .section, .highlight { border-radius: 16px; }
    }
    a {
      color: black;
      text-decoration: none;
      font-weight: 600;
    }
    a:hover {
      text-decoration: underline;
    }
    article.card.media-card {
      height: 100%;
    }
    video {
          background-color: white;
    }