  /* ── The Week page styles ──────────────────────
     Tokens: tokens.css · Base: base.css
     ──────────────────────────────────────────── */

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px) 54px;
    animation: fadeIn 0.3s ease-out;
  }

  /* ── Magazine-page surface ─────────────────────
     Body becomes the cooler "desk" surface;
     tier-container becomes the warm, bright "page" */
  body {
    background-color: #f3f1ed;
  }
  [data-theme="dark"] body {
    background-color: #1a1a1a;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) body {
      background-color: #1a1a1a;
    }
  }

  /* Header */
  header {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    flex: 1;
    font-family: "Financier Display", Georgia, "Times New Roman", Times, serif;
    font-size: clamp(25px, 1.73vw, 28px);
    font-weight: 340;
    font-style: italic;
    letter-spacing: 0.045em;
  }
  .logo a {
    color: var(--color-text);
    text-decoration: none;
  }

  .site-nav {
    display: flex;
    gap: 24px;
    align-items: baseline;
  }
  .site-nav-link {
    font-size: clamp(14px, 1.05vw, 15px);
    font-weight: 400;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
  }
  .site-nav-link:hover {
    color: var(--color-gold);
  }
  .site-nav-link.active {
    color: var(--color-text);
    border-bottom-color: var(--color-gold);
  }

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

  /* Search box */
  .search-box {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 20;
  }

  .search-input {
    width: 200px;
    min-width: 100px;
    flex: 1;
    padding: 8px 28px 8px 32px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: clamp(14px, 0.94vw, 15px);
    background-color: var(--color-input-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23727272' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 10px center;
    color: var(--color-text);
    transition: width 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  [data-theme="dark"] .search-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .search-input {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
    }
  }
  .search-input:focus {
    outline: none;
    border-color: var(--color-accent);
    width: 220px;
    box-shadow: 0 0 0 3px var(--color-focus-ring);
  }
  .search-input::placeholder {
    color: var(--color-text-muted);
  }

  .search-clear {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 0;
    width: 22px;
    height: 22px;
    display: none;
    line-height: 1;
    font-size: 16px;
    transition: color 0.15s ease, background 0.15s ease;
  }
  .search-clear:hover {
    color: var(--color-text-secondary);
    background: var(--color-bg-hover);
  }
  .search-clear:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-focus-shadow);
    color: var(--color-text-secondary);
  }
  .search-input:not(:placeholder-shown) + .search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
    padding: 13px;
    margin: -13px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .theme-toggle:hover { color: var(--color-gold); }
  .theme-toggle::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: var(--color-text);
    color: var(--color-bg);
    font-size: 10px;
    font-weight: 400;
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 10;
  }
  .theme-toggle::before {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid transparent;
    border-bottom-color: var(--color-text);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 10;
  }
  @media (hover: hover) {
    .theme-toggle:hover::after {
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }
    .theme-toggle:hover::before {
      opacity: 1;
    }
  }
  .theme-toggle .icon-sun { display: none; }
  .theme-toggle .icon-moon { display: block; }
  [data-theme="dark"] .theme-toggle .icon-sun { display: block; }
  [data-theme="dark"] .theme-toggle .icon-moon { display: none; }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
    :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
  }

  .theme-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-focus-shadow);
    border-radius: 4px;
  }

  /* Briefing section — single block with internal header divider */
  .briefing-section {
    padding: 24px 24px 20px;
    margin: 14px auto 16px;
    max-width: 720px;
    border-left: 3px solid var(--color-gold);
    background: var(--color-bg-hover);
    border-radius: 0 6px 6px 0;
  }

  .briefing-banner {
    margin: 0 -24px 28px;
    border-radius: 0;
    overflow: hidden;
    height: 52px;
  }

  .briefing-banner canvas {
    width: 100%;
    height: 100%;
    display: block;
  }

  .briefing-header {
    padding-bottom: 16px;
    margin-bottom: 18px;
  }

  .briefing-heading {
    font-family: "Financier Display", Georgia, "Times New Roman", Times, serif;
    font-weight: var(--font-weight-heading);
    font-style: normal;
    font-size: clamp(22px, 1.8vw, 28px);
    line-height: 1.2;
    letter-spacing: 0.045em;
  }

  .briefing-date {
    color: var(--color-text-secondary);
    font-size: clamp(13px, 0.85vw, 15px);
    font-weight: var(--font-weight-body);
    margin-top: 6px;
  }

  .briefing-lead {
    font-family: "Financier Text", Georgia, "Times New Roman", Times, serif;
    font-weight: 380;
    font-style: italic;
    font-size: clamp(14px, 0.95vw, 16px);
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
    margin-bottom: 10px;
  }

  /* (gold-header removed — now using tier-tabs) */

  .section-heading {
    font-family: "Financier Display", Georgia, "Times New Roman", Times, serif;
    font-weight: var(--font-weight-heading);
    font-style: normal;
    font-size: clamp(22px, 1.8vw, 28px);
    letter-spacing: 0.045em;
    color: var(--color-text);
    margin: 0;
  }

  .briefing-text {
    font-size: clamp(16px, 1.1vw, 18px);
    font-weight: var(--font-weight-body);
    line-height: 1.7;
    color: var(--color-text-body);
    max-width: 720px;
  }

  .briefing-text p {
    margin: 0;
  }

  .briefing-text p + p {
    margin-top: 12px;
  }

  .briefing-text a {
    color: var(--color-gold);
    text-decoration: none;
    transition: opacity 0.15s ease;
  }

  .briefing-text a:hover {
    opacity: 0.8;
  }

  .briefing-text a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-focus-shadow);
    border-radius: 2px;
  }

  .briefing-refs {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(160, 160, 168, 0.12);
    font-size: clamp(12px, 0.8vw, 13px);
    font-weight: var(--font-weight-body);
    color: var(--color-text-muted);
    line-height: 1.6;
  }

  .briefing-refs a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.15s ease;
  }

  .briefing-refs a:hover {
    color: var(--color-gold);
  }

  .briefing-refs a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-focus-shadow);
    border-radius: 2px;
  }

  .briefing-author {
    margin-top: 12px;
    text-align: right;
    max-width: 720px;
  }

  /* Tier container — tabbed layout for Reference / Studio */
  .tier-container {
    max-width: 1200px;
    margin: 14px auto 0;
    padding: 24px 24px 20px;
    background: #faf8f5;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.035);
  }
  [data-theme="dark"] .tier-container {
    background: #202020;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .tier-container {
      background: #202020;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15);
    }
  }

  /* Tier tabs — inside the card as a content toggle */
  .tier-tabs {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
  }

  /* Folio — stacked edition + date range, right-aligned */
  .tier-date {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: "Financier Display", Georgia, "Times New Roman", Times, serif;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: 0.05em;
  }

  .tier-edition {
    font-size: clamp(18px, 1.4vw, 22px);
    font-style: italic;
    font-weight: var(--font-weight-heading);
    color: var(--color-text);
  }

  .tier-date-range {
    font-size: clamp(13px, 0.9vw, 15px);
    font-style: normal;
    font-weight: var(--font-weight-body);
    color: var(--color-text-muted);
    letter-spacing: 0.07em;
  }

  .tier-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0 0 12px;
    margin-bottom: -17px;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease;
  }

  .tier-tab-label {
    font-family: "Financier Display", Georgia, "Times New Roman", Times, serif;
    font-weight: 350;
    font-style: italic;
    font-size: clamp(18px, 1.4vw, 22px);
    letter-spacing: 0.03em;
    color: var(--color-text-muted);
    transition: color 0.15s ease;
  }

  /* Active tier tab */
  .tier-tab.active[data-tier="reference"] {
    border-bottom-color: var(--color-gold);
  }

  .tier-tab.active[data-tier="studio"] {
    border-bottom-color: #8e9ab0;
  }

  .tier-tab.active[data-tier="broadcast"] {
    border-bottom-color: #b07a4a;
  }

  .tier-tab.active .tier-tab-label {
    color: var(--color-text);
  }

  /* Hover */
  .tier-tab:not(.active):hover .tier-tab-label {
    color: var(--color-gold);
  }

  .tier-tab:focus {
    outline: none;
  }

  .tier-tab:focus-visible {
    box-shadow: 0 0 0 3px var(--color-focus-shadow);
    border-radius: 2px;
  }

  /* (tier-date now positioned in the tab bar — see .tier-tabs block) */

  /* Tier panels */
  .tier-panel {
    display: none;
  }

  .tier-panel.active {
    display: block;
    animation: tierFadeIn 0.25s ease-out;
  }

  @keyframes tierFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .gold-group {
    margin: 0 0 28px;
    padding-top: 18px;
  }

  .gold-group:first-child {
    padding-top: 0;
  }

  .gold-group:last-child {
    margin-bottom: 0;
  }

  .gold-group-heading {
    font-family: "Untitled Sans", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 450;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 6px;
  }

  .gold-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }

  .gold-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(160, 160, 168, 0.08);
    line-height: 1.5;
  }

  /* Reference: no trailing divider on last item */
  /* Studio: keep dividers on all items (grid baseline) */
  /* Broadcast: handled separately (source-grouped layout) */

  /* Reference tier — editorial reader style */
  [data-tier-panel="reference"] .gold-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  [data-tier-panel="reference"] .gold-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(160, 160, 168, 0.08);
  }

  [data-tier-panel="reference"] .gold-item:last-child {
    border-bottom: none;
  }

  [data-tier-panel="reference"] .gold-title {
    font-size: clamp(18px, 1.3vw, 22px);
    font-weight: 420;
    line-height: 1.35;
    color: var(--color-text);
    text-wrap: balance;
  }

  [data-tier-panel="reference"] .gold-source {
    font-family: "Financier Text", serif;
    font-weight: 380;
    font-style: italic;
    font-size: clamp(15px, 1vw, 17px);
    letter-spacing: 0.045em;
    color: #a6803e;
    margin-top: 6px;
  }
  [data-theme="dark"] [data-tier-panel="reference"] .gold-source {
    color: #7a6438;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) [data-tier-panel="reference"] .gold-source {
      color: #7a6438;
    }
  }

  /* Broadcast tier — grouped by source */
  .broadcast-sources {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 32px;
    row-gap: 24px;
  }

  .broadcast-source-group {
    min-width: 0;
  }

  .broadcast-source-name {
    font-family: "Financier Text", serif;
    font-weight: 380;
    font-style: italic;
    font-size: clamp(13px, 0.85vw, 14px);
    letter-spacing: 0.045em;
    color: #8a5c35;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
  }
  [data-theme="dark"] .broadcast-source-name {
    color: #9a6a42;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .broadcast-source-name {
      color: #9a6a42;
    }
  }

  .broadcast-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .broadcast-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(160, 160, 168, 0.1);
    line-height: 1.4;
  }

  .broadcast-item .gold-title {
    font-size: clamp(13px, 0.82vw, 14.5px);
    font-weight: 400;
    color: var(--color-text);
    text-wrap: balance;
  }

  .gold-item.kb-focus {
    border-left: 3px solid var(--color-gold);
    padding-left: 10px;
    background: linear-gradient(90deg, var(--color-gradient-start) 0%, transparent 100%);
  }

  .gold-title {
    color: var(--color-text);
    text-decoration: none;
    font-size: clamp(15px, 1vw, 17px);
    font-weight: 420;
    line-height: 1.4;
    transition: color 0.15s ease;
    text-wrap: balance;
  }

  .gold-title:hover {
    color: var(--color-gold);
  }

  [data-tier-panel="studio"] .gold-title:hover {
    color: #6d7e96;
  }
  [data-theme="dark"] [data-tier-panel="studio"] .gold-title:hover {
    color: #9aa6be;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) [data-tier-panel="studio"] .gold-title:hover {
      color: #9aa6be;
    }
  }

  [data-tier-panel="broadcast"] .gold-title:hover {
    color: #8a5c35;
  }
  [data-theme="dark"] [data-tier-panel="broadcast"] .gold-title:hover {
    color: #b07a4a;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) [data-tier-panel="broadcast"] .gold-title:hover {
      color: #b07a4a;
    }
  }

  .gold-title:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-focus-shadow);
    border-radius: 2px;
  }

  .gold-source {
    display: block;
    font-family: "Financier Text", serif;
    font-weight: 380;
    font-style: italic;
    font-size: clamp(13px, 0.85vw, 14px);
    letter-spacing: 0.045em;
    color: var(--color-text-muted);
    margin-top: 4px;
  }

  [data-tier-panel="studio"] .gold-source {
    color: #6d7e96;
  }

  [data-theme="dark"] [data-tier-panel="studio"] .gold-source {
    color: #9aa6be;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) [data-tier-panel="studio"] .gold-source {
      color: #9aa6be;
    }
  }


  /* (silver-section and silver-header removed — now using tier-container tabs) */

  /* Studio badge (bullseye icon — silver) */
  .badge-studio {
    display: inline-block;
    font-size: 0;
    letter-spacing: 0;
    padding: 0;
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 0;
    background: none;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='5.6' fill='%23a0a0a8' opacity='0.14'/%3E%3Ccircle cx='6' cy='6' r='3.9' fill='%23a0a0a8' opacity='0.3'/%3E%3Ccircle cx='6' cy='6' r='2.2' fill='%23a0a0a8'/%3E%3C/svg%3E");
    flex-shrink: 0;
    vertical-align: middle;
    margin-left: 4px;
  }

  /* Gold badge (bullseye icon) */
  .badge-gold {
    display: inline-block;
    font-size: 0;
    letter-spacing: 0;
    padding: 0;
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 0;
    background: none;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='5.6' fill='%23d4a24e' opacity='0.12'/%3E%3Ccircle cx='6' cy='6' r='3.9' fill='%23d4a24e' opacity='0.22'/%3E%3Ccircle cx='6' cy='6' r='2.4' fill='%23d4a24e' opacity='0.55'/%3E%3Ccircle cx='6' cy='6' r='1.3' fill='%23d4a24e'/%3E%3C/svg%3E");
    flex-shrink: 0;
    vertical-align: middle;
    margin-left: 4px;
  }

  /* Footer */
  footer {
    padding: 32px 0 48px;
    margin-top: 48px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  @media (min-width: 768px) {
    footer {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
    .footer-info { margin-bottom: 0; }
  }

  .footer-info {
    font-size: clamp(12px, 0.85vw, 13px);
    color: var(--color-text-secondary);
    font-variant-numeric: tabular-nums;
  }
  .footer-info a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .footer-info a:hover { color: var(--color-gold); }
  .footer-info a:hover svg { fill: var(--color-gold); }
  .footer-info svg {
    vertical-align: -2px;
    margin-right: 4px;
    fill: var(--color-gold);
    transition: fill 0.15s ease;
  }
  .footer-shortcuts {
    font-size: clamp(13px, 0.87vw, 14px);
    color: var(--color-text-muted);
    opacity: 0.7;
  }
  .footer-shortcuts kbd {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
    background: var(--color-kbd-bg);
    border-radius: 3px;
    padding: 2px 6px;
    font-size: clamp(11px, 0.79vw, 12px);
    border: 1px solid var(--color-border);
  }

  .footer-tagline {
    font-family: "Financier Text", Georgia, "Times New Roman", Times, serif;
    font-weight: 380;
    font-style: italic;
    font-size: clamp(13px, 0.87vw, 14px);
    color: var(--color-text-muted);
    letter-spacing: 0.045em;
    opacity: 0.6;
  }

  /* Skip link */
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
    z-index: 10000;
    border-radius: 0 0 4px 0;
  }
  .skip-link:focus {
    left: 0;
    outline: 2px solid var(--color-accent-hover);
    outline-offset: 2px;
  }

  /* Responsive — mobile */
  @media (max-width: 767px) {
    header {
      flex-wrap: wrap;
      gap: 12px;
    }
    .logo { flex: 1; }
    .site-nav {
      gap: 16px;
    }
    .site-nav-link {
      font-size: 13px;
    }
    .cat-item {
      margin-right: 18px;
      font-size: 10px;
      padding: 6px 0;
    }
    .cat-item:not(:last-child)::after {
      right: -11px;
    }
    .cat-x {
      width: 18px;
      height: 18px;
      font-size: 16px;
    }
    .tier-tabs {
      gap: 16px;
    }
    .tier-tab-label {
      font-size: 17px;
    }
    .tier-edition {
      font-size: 16px;
    }
    .tier-date-range {
      font-size: 12px;
    }
    .tier-container {
      padding: 16px 16px 14px;
    }
    .briefing-banner {
      margin-left: -16px;
      margin-right: -16px;
    }
    .header-actions {
      flex: 0 0 100%;
      justify-content: flex-start;
    }
    .search-box {
      flex: 1;
    }
    .search-input {
      width: 100%;
    }
    .search-clear {
      width: 28px;
      height: 28px;
    }
    .gold-list {
      grid-template-columns: 1fr;
    }
    .broadcast-sources {
      grid-template-columns: 1fr;
    }
    .gold-item {
      flex-wrap: wrap;
      gap: 4px 10px;
    }
    .gold-source {
      font-size: 12px;
    }
  }
