/* ============================================================================
   usaco-en · chrome.css · "USACO Elite" redesign 2026-07-15
   Design language: cyber-academic terminal (from stitch_usaco_training_hub)
   Fonts: Noto Serif (display) + Hanken Grotesk (body) + JetBrains Mono (labels)
   Palette: royal blue #0041a8 on lavender-white #faf8ff · metal-tier divisions
   Scope: :root tokens + fonts + header/footer/drawer + article furniture recolor
   ============================================================================ */
:root {
  /* surfaces (lavender-white family) */
  --el-bg:            #faf8ff;
  --el-surface:       #ffffff;
  --el-surface-low:   #f3f3fe;
  --el-surface-c:     #ededf8;
  --el-surface-high:  #e7e7f2;
  --el-surface-var:   #e1e2ed;
  --el-surface-dim:   #d9d9e4;
  /* brand blue */
  --el-primary:       #0041a8;
  --el-primary-bright:#0d57d6;
  --el-primary-fixed: #dae1ff;
  --el-primary-ink:   #003fa4;
  /* text */
  --el-ink:           #191b23;
  --el-body:          #434654;
  --el-outline:       #737686;
  --el-border:        #c3c6d7;
  /* division metals — bright (bars/dots/fills) + deep (accessible text) */
  --el-bronze:        #CD7F32;  --el-bronze-ink:   #9c5a1f;
  --el-silver:        #b6bcc6;  --el-silver-ink:   #656c78;
  --el-gold:          #D4AF37;  --el-gold-ink:     #96740a;
  --el-platinum:      #cfd4da;  --el-platinum-ink: #5c636d;
  /* alert / severity */
  --el-alert:         #ba1a1a;  --el-alert-bg:     #fdecea;  --el-alert-ink: #8f1414;
  --el-high:          #7b5800;  --el-high-bg:      #fbf1d4;
  /* fonts */
  --f-serif: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --f-sans:  'Hanken Grotesk', -apple-system, 'Segoe UI', sans-serif;
  --f-mono:  'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;
  /* legacy aliases kept so any un-migrated rule still resolves to the new palette */
  --usaco-blue: var(--el-primary);
  --usaco-blue-bright: var(--el-primary-bright);
  --usaco-blue-tint: var(--el-primary-fixed);
  --usaco-ink: var(--el-ink);
  --usaco-body: var(--el-body);
  --usaco-muted: var(--el-outline);
  --usaco-hairline: var(--el-border);
  --usaco-mist: var(--el-surface-low);
  --usaco-bz: var(--el-bronze); --usaco-sv: var(--el-silver); --usaco-gd: var(--el-gold); --usaco-pt: var(--el-platinum);
}

body { font-family: var(--f-sans); color: var(--el-body); background: var(--el-bg); }
h1, h2, h3, h4, h5, h6, .wp-block-post-title { font-family: var(--f-serif); color: var(--el-ink); }

/* ============================================================================
   1 · HEADER (fixed + spacer · L106/L90 · elite terminal chrome)
   ============================================================================ */
.usaco-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  /* backdrop-filter on this ancestor turns the fixed mobile drawer into a
     76px header-bound layer. Keep the translucent surface; the drawer must
     remain fixed to the viewport. */
  background: rgba(250, 248, 255, 0.96);
  border-bottom: 1px solid var(--el-border);
}
.usaco-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 26px; height: 76px;
}
.usaco-header-spacer { height: 76px; }

.usaco-brand { display: flex; align-items: center; gap: 11px; min-height: 44px; text-decoration: none; flex-shrink: 0; }
.usaco-brand-mark { display: block; }
.usaco-brand-name {
  font-family: var(--f-serif); font-weight: 800; font-style: italic;
  font-size: 21px; letter-spacing: -0.01em; color: var(--el-primary);
}

.usaco-nav-desktop { display: none; gap: 2px; align-items: center; margin-left: auto; }
.usaco-nav-link {
  font-family: var(--f-mono); font-size: 12.5px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--el-body); text-decoration: none; padding: 8px 11px; border-radius: 3px; transition: color .15s, background .15s;
}
.usaco-nav-link:hover { color: var(--el-primary); background: rgba(13,87,214,.06); }
.usaco-nav-link.is-current { color: var(--el-primary); box-shadow: inset 0 -2px 0 var(--el-primary); border-radius: 0; }

.usaco-nav-cta {
  display: none; flex-shrink: 0;
  font-family: var(--f-mono); font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff; background: var(--el-primary); padding: 11px 20px; border-radius: 3px;
  text-decoration: none; transition: background .15s;
}
.usaco-nav-cta:hover { background: var(--el-primary-bright); color: #fff; }

.usaco-nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: none; border: 0; padding: 10px; margin-left: auto; color: var(--el-ink); cursor: pointer; }

@media (min-width: 1024px) {
  .usaco-nav-desktop { display: flex; }
  .usaco-nav-cta { display: inline-block; }
  .usaco-nav-toggle { display: none; }
  .usaco-drawer-wrap { display: none !important; }
}

/* mobile drawer (L137) */
.usaco-drawer-wrap { position: fixed; inset: 0; z-index: 70; }
.usaco-drawer-overlay { position: absolute; inset: 0; background: rgba(25, 27, 35, .5); }
.usaco-drawer {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 86vw); box-sizing: border-box;
  background: var(--el-bg); padding: 20px 24px 28px; box-shadow: -16px 0 40px rgba(25,27,35,.2);
  display: flex; flex-direction: column; overflow-y: auto;
}
.usaco-drawer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--el-border); }
.usaco-drawer-brand { font-family: var(--f-serif); font-style: italic; font-weight: 800; font-size: 18px; color: var(--el-primary); }
.usaco-drawer-close { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: none; border: 0; padding: 10px; color: var(--el-ink); cursor: pointer; }
.usaco-drawer-nav { display: flex; flex-direction: column; padding: 8px 0 16px; }
.usaco-drawer-link {
  display: block; font-family: var(--f-mono); font-size: 13.5px; font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--el-ink); text-decoration: none; padding: 13px 2px; border-bottom: 1px solid var(--el-surface-c);
}
.usaco-drawer-link.is-current { color: var(--el-primary); }
.usaco-drawer-cta {
  display: block; text-align: center; margin-top: auto; background: var(--el-primary); color: #fff;
  font-family: var(--f-mono); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 13px; border-radius: 3px; text-decoration: none;
}

/* ============================================================================
   2 · FOOTER (elite · mono pill links + serif-italic wordmark · L156 QR)
   ============================================================================ */
.usaco-footer { background: var(--el-ink); color: #b9bfce; padding: 56px 28px 26px; }
.usaco-footer .hl-baseline-footer-grid { max-width: 1200px; }
@media (min-width: 768px) {
  .usaco-footer .hl-baseline-footer-grid { grid-template-columns: 1.2fr 1.2fr 260px; gap: 48px; }
}
.usaco-footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.usaco-footer-logo span { font-family: var(--f-serif); font-style: italic; font-weight: 800; font-size: 20px; color: #fff; }
.usaco-footer-desc { font-size: 13.5px; line-height: 1.7; color: #b9bfce; margin: 0 0 14px; max-width: 380px; }
.usaco-footer-disclaimer { font-family: var(--f-mono); font-size: 11.5px; line-height: 1.65; color: #8a90a1; margin: 0; padding: 10px 14px; border-left: 2px solid #2f3340; max-width: 400px; }
.usaco-footer-h { font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #7c86a0; margin: 0 0 14px; }
.usaco-footer-link { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.02em; color: #b9bfce; }
.usaco-footer-link:hover { color: #fff; }
.hl-baseline-footer-list { display: flex; flex-direction: column; gap: 9px; }
.usaco-footer-contact-card { border: 1px solid #2f3340; border-radius: 6px; padding: 18px 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.usaco-footer-contact-card .hl-cta-qr-panel { margin: 0; }
.usaco-footer-contact-card .hl-cta-qr-panel img, .usaco-footer-qr-img {
  width: 96px; height: 96px; max-width: 200px; max-height: 200px;  /* L84 */
  object-fit: contain; background: #fff; border-radius: 4px; padding: 5px; box-sizing: border-box;
}
.usaco-footer-contact-card .hl-cta-qr-panel figcaption { font-family: var(--f-mono); font-size: 11px; color: #b9bfce; line-height: 1.45; margin-top: 7px; }
.usaco-footer-contact-link {
  display: block; width: 100%; box-sizing: border-box; text-align: center; margin-top: 2px;
  background: var(--el-primary); color: #fff !important; font-family: var(--f-mono); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.04em; padding: 10px 14px; border-radius: 3px; text-decoration: none;
}
.usaco-footer-contact-link:hover { background: var(--el-primary-bright); }
.usaco-footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 18px; border-top: 1px solid #2f3340;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.02em; color: #8a90a1;
}
.usaco-footer-bottom a { color: #8a90a1; text-decoration: none; }
.usaco-footer-bottom a:hover { color: #fff; }
.usaco-footer-icp { font-family: var(--f-mono); }

/* ============================================================================
   3 · ARTICLE FURNITURE recolor (L113 · behavior in theme.js — colors only)
   ============================================================================ */
.hl-toc-head { color: var(--el-outline); font-family: var(--f-mono); letter-spacing: .12em; text-transform: uppercase; }
.hl-toc-item.is-active { border-left-color: var(--el-primary); }
.hl-toc-item.is-active > a { color: var(--el-primary); }
.hl-back-to-top { background: var(--el-primary); color: #fff; }
.hl-breadcrumb { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.hl-breadcrumb a { color: var(--el-outline); }
.hl-breadcrumb a:hover { color: var(--el-primary); }
.hl-pagination a:hover { color: var(--el-primary); }

/* ============================================================================
   4 · NEWS LIST bespoke (L149 · elite editorial index rows · @list-design)
   Full-width single-column rows: mono date kicker + serif title + excerpt.
   🔴 Override the baseline style.css `:has(.hl-news-cover)` grid (it reserves a
   200px cover column; we hide covers, which would leave a big empty left column).
   ============================================================================ */
.hl-news-list > li,
.hl-news-list > li:has(.hl-news-cover) {
  display: block; grid-template-columns: none;
  padding: 26px 0; border-bottom: 1px solid var(--el-border);
}
.hl-news-list .hl-news-cover,
.hl-news-list > li:has(.hl-news-cover) .hl-news-cover { display: none !important; }
.hl-news-list > li .hl-news-date,
.hl-news-list > li:has(.hl-news-cover) .hl-news-date {
  grid-column: auto; grid-row: auto; display: block; margin: 0 0 9px; padding-top: 0;
  font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--el-primary);
}
.hl-news-list > li .hl-news-title,
.hl-news-list > li:has(.hl-news-cover) .hl-news-title { grid-column: auto; grid-row: auto; margin: 0 0 8px; }
.hl-news-title a {
  font-family: var(--f-serif); font-weight: 700; font-size: 24px; letter-spacing: -0.01em; line-height: 1.28;
  color: var(--el-ink); text-decoration: none; transition: color .15s;
}
.hl-news-title a:hover { color: var(--el-primary); }
.hl-news-list > li .hl-news-excerpt,
.hl-news-list > li:has(.hl-news-cover) .hl-news-excerpt { grid-column: auto; grid-row: auto; }
.hl-news-excerpt p { font-size: 15px; line-height: 1.7; color: var(--el-body); margin: 0; max-width: 900px; }

/* pagination · elite mono */
.hl-pagination { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--el-border); }
.hl-pagination .wp-block-query-pagination,
.hl-pagination.wp-block-query-pagination { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.hl-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px;
  font-family: var(--f-mono); font-size: 13px; color: var(--el-body); text-decoration: none;
  border: 1px solid var(--el-border); border-radius: 3px; transition: border-color .15s, color .15s, background .15s;
}
.hl-pagination a.page-numbers:hover { border-color: var(--el-primary); color: var(--el-primary); }
.hl-pagination .page-numbers.current { background: var(--el-primary); color: #fff; border-color: var(--el-primary); }
.hl-pagination .page-numbers.dots { border: none; min-width: 20px; color: var(--el-outline); }
.hl-pagination .wp-block-query-pagination-previous,
.hl-pagination .wp-block-query-pagination-next {
  font-family: var(--f-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--el-primary); text-decoration: none; border: 1px solid var(--el-border); border-radius: 3px; padding: 0 16px; height: 40px; display: inline-flex; align-items: center;
}
.hl-pagination .wp-block-query-pagination-next { margin-left: auto; }
.hl-pagination .wp-block-query-pagination-previous:hover,
.hl-pagination .wp-block-query-pagination-next:hover { border-color: var(--el-primary); background: var(--el-primary-fixed); }
@media (max-width: 719px) {
  .hl-news-title a { font-size: 20px; }
}

/* News hub v2: featured dispatch + structured card index. */
.blog main { background-color: var(--el-bg); background-image: linear-gradient(to right, rgba(0,65,168,.035) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,65,168,.035) 1px, transparent 1px); background-size: 44px 44px; }
.hl-news-hero { padding: 74px 0 64px; border-left: 4px solid var(--el-primary); }
.hl-news-hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 64px; align-items: center; }
.hl-news-eyebrow { margin: 0 0 16px; color: var(--el-primary); font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hl-news-heading { max-width: 720px; margin: 0 0 20px; color: var(--el-ink); font-family: var(--f-serif); font-size: clamp(42px, 6vw, 68px); font-weight: 800; letter-spacing: -.025em; line-height: 1.02; text-transform: uppercase; }
.hl-news-heading em { color: var(--el-primary); font-style: italic; }
.hl-news-deck { max-width: 700px; margin: 0; color: var(--el-body); font-family: var(--f-sans); font-size: 17px; line-height: 1.7; }
.hl-news-console { overflow: hidden; background: #11141c; border: 1px solid #303748; border-radius: 7px; box-shadow: 0 18px 38px rgba(22,27,38,.12); }
.hl-news-console-head { display: flex; justify-content: space-between; gap: 16px; padding: 13px 17px; background: #1c212d; border-bottom: 1px solid #303748; color: #8995aa; font-family: var(--f-mono); font-size: 10px; }
.hl-news-console-head b { color: #8fb4f5; font-weight: 600; }
.hl-news-console-body { padding: 12px 18px; }
.hl-news-console-row { display: grid; grid-template-columns: 104px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid #2b3241; font-family: var(--f-mono); font-size: 11px; }
.hl-news-console-row:last-child { border-bottom: 0; }
.hl-news-console-row span { color: #7f8aa0; }
.hl-news-console-row strong { color: #eef3fb; font-weight: 500; }
.hl-news-console-row strong.live { color: #8dd7ae; }

.hl-news-index { padding: 68px 0 88px; }
.hl-news-index-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--el-border); }
.hl-news-index-head span { display: block; margin-bottom: 8px; color: var(--el-primary); font-family: var(--f-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hl-news-index-head h2 { margin: 0; color: var(--el-ink); font-family: var(--f-serif); font-size: 32px; line-height: 1.15; text-transform: uppercase; }
.hl-news-index-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.hl-news-index-nav a { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; background: var(--el-surface); border: 1px solid var(--el-border); border-radius: 3px; color: var(--el-primary); font-family: var(--f-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.hl-news-index-nav a:hover { border-color: var(--el-primary); background: var(--el-primary-fixed); }

.hl-news-list { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 0 !important; padding: 0 !important; list-style: none; counter-reset: news-card; }
.hl-news-list > li,
.hl-news-list > li:has(.hl-news-cover) { position: relative; display: flex !important; flex-direction: column; min-height: 292px; padding: 50px 30px 30px !important; background: rgba(255,255,255,.9); border: 1px solid var(--el-border) !important; border-top: 3px solid var(--el-primary) !important; border-radius: 6px; box-shadow: 0 12px 30px rgba(25,27,35,.035); overflow: hidden; box-sizing: border-box; counter-increment: news-card; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.hl-news-list > li:hover { transform: translateY(-3px); border-color: rgba(0,65,168,.55) !important; box-shadow: 0 18px 38px rgba(25,27,35,.08); }
.hl-news-list > li::before { content: "DISPATCH / 0" counter(news-card); position: absolute; top: 20px; left: 30px; color: var(--el-primary); font-family: var(--f-mono); font-size: 9.5px; font-weight: 700; letter-spacing: .11em; }
.hl-news-list .hl-news-cover,
.hl-news-list > li:has(.hl-news-cover) .hl-news-cover { display: none !important; }
.hl-news-list > li:first-child { grid-column: 1 / -1; display: grid !important; grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); grid-template-rows: auto auto 1fr; column-gap: 38px; min-height: 360px; padding-left: 0 !important; }
.hl-news-list > li:first-child::before { left: calc(45% + 38px); }
.hl-news-list > li:first-child:has(.hl-news-cover) .hl-news-cover { display: block !important; grid-column: 1; grid-row: 1 / 4; width: 100%; height: calc(100% + 80px); margin: -50px 0 -30px; }
.hl-news-list > li:first-child .hl-news-cover a,
.hl-news-list > li:first-child .hl-news-cover img { display: block; width: 100%; height: 100%; }
.hl-news-list > li:first-child .hl-news-cover img { object-fit: cover; }
.hl-news-list > li:first-child .hl-news-date,
.hl-news-list > li:first-child .hl-news-title,
.hl-news-list > li:first-child .hl-news-excerpt { grid-column: 2; }
.hl-news-list > li .hl-news-date,
.hl-news-list > li:has(.hl-news-cover) .hl-news-date { display: block; margin: 0 0 12px; padding-top: 0; color: var(--el-outline); font-family: var(--f-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.hl-news-list > li .hl-news-title,
.hl-news-list > li:has(.hl-news-cover) .hl-news-title { margin: 0 0 14px; }
.hl-news-title a { color: var(--el-ink); font-family: var(--f-serif); font-size: 25px; font-weight: 700; letter-spacing: -.012em; line-height: 1.22; text-decoration: none; transition: color .15s; }
.hl-news-list > li:first-child .hl-news-title a { font-size: clamp(30px, 3.5vw, 42px); line-height: 1.08; }
.hl-news-title a:hover { color: var(--el-primary); }
.hl-news-list > li .hl-news-excerpt,
.hl-news-list > li:has(.hl-news-cover) .hl-news-excerpt { margin-top: auto; }
.hl-news-excerpt p { max-width: none; margin: 0; color: var(--el-body); font-size: 14.5px; line-height: 1.7; }
.hl-news-empty { padding: 48px; background: var(--el-surface); border: 1px dashed var(--el-border); color: var(--el-outline); font-family: var(--f-mono); text-align: center; }

@media (max-width: 900px) {
  .hl-news-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hl-news-list { grid-template-columns: 1fr; }
  .hl-news-list > li:first-child { grid-template-columns: 1fr; padding-left: 30px !important; }
  .hl-news-list > li:first-child::before { left: 30px; }
  .hl-news-list > li:first-child:has(.hl-news-cover) .hl-news-cover { grid-column: 1; grid-row: auto; height: 240px; margin: -50px -30px 28px; width: calc(100% + 60px); }
  .hl-news-list > li:first-child .hl-news-date,
  .hl-news-list > li:first-child .hl-news-title,
  .hl-news-list > li:first-child .hl-news-excerpt { grid-column: 1; }
}
@media (max-width: 640px) {
  .hl-news-hero { padding: 38px 0 42px; }
  .hl-news-heading { font-size: 38px; }
  .hl-news-deck { font-size: 16px; }
  .hl-news-index { padding: 48px 0 64px; }
  .hl-news-index-head { display: block; }
  .hl-news-index-nav { justify-content: flex-start; margin-top: 18px; }
  .hl-news-list > li, .hl-news-list > li:has(.hl-news-cover) { min-height: 0; padding: 46px 20px 24px !important; }
  .hl-news-list > li::before, .hl-news-list > li:first-child::before { top: 18px; left: 20px; }
  .hl-news-list > li:first-child { padding-left: 20px !important; }
  .hl-news-list > li:first-child:has(.hl-news-cover) .hl-news-cover { height: 210px; margin: -46px -20px 26px; width: calc(100% + 40px); }
  .hl-news-list > li:first-child .hl-news-title a { font-size: 28px; }
  .hl-news-title a { font-size: 21px; }
}

/* ============================================================================
   5 · ARTICLE HEAD bespoke (L149/L154 · elite masthead · @article-design)
   blue-left-border header block · mono meta rail · serif uppercase title
   ============================================================================ */
.hl-article-head {
  max-width: 100%;
  display: grid; grid-template-columns: 190px 1fr; column-gap: 44px;
  padding: 8px 0 30px 20px; margin-bottom: 36px;
  border-left: 4px solid var(--el-primary); border-bottom: 1px solid var(--el-border);
}
.hl-article-head .wp-block-post-title {
  grid-column: 2; grid-row: 1;
  font-family: var(--f-serif); font-weight: 800;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.1; letter-spacing: -0.01em; color: var(--el-ink); max-width: 24ch;
}
.hl-article-head .wp-block-post-date {
  grid-column: 1; grid-row: 1; align-self: start;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--el-outline);
  display: flex; flex-direction: column; gap: 9px;
}
.hl-article-head .hl-post-meta-extra { display: flex; flex-direction: column; gap: 9px; }
.hl-article-head .hl-post-meta-sep { display: none; }
.hl-article-head .hl-post-meta-extra a { color: var(--el-primary); text-decoration: none; font-weight: 600; }
@media (max-width: 860px) {
  .hl-article-head { grid-template-columns: 1fr; row-gap: 16px; padding-left: 16px; }
  .hl-article-head .wp-block-post-title { grid-column: 1; grid-row: 1; }
  .hl-article-head .wp-block-post-date { grid-column: 1; grid-row: 2; flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .hl-article-head .hl-post-meta-extra { flex-direction: row; flex-wrap: wrap; gap: 14px; }
}

/* prose accents */
.hl-prose a { color: var(--el-primary); }
.hl-prose blockquote, .hl-prose .wp-block-quote { border-left-color: var(--el-primary) !important; background: var(--el-surface-low) !important; }
.hl-post-nav { border-top: 1px solid var(--el-border); }
.hl-post-nav .wp-block-post-navigation-link a { color: var(--el-ink); font-family: var(--f-serif); font-weight: 700; }
.hl-post-nav .wp-block-post-navigation-link a:hover { color: var(--el-primary); }
.hl-related-head { font-family: var(--f-serif); font-weight: 800; letter-spacing: -0.01em; }
.hl-article-cta { background: var(--el-ink); }
.hl-article-cta .hl-cta-online-btn { background: var(--el-primary); font-family: var(--f-mono); text-transform: uppercase; letter-spacing: 0.03em; }
@media (min-width: 720px) {
  .usaco-cta-section .hl-article-cta:not(:has(.hl-article-cta-qr)) .hl-article-cta-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 48px;
    align-items: center;
    width: 100%;
  }
  .usaco-cta-section .hl-article-cta:not(:has(.hl-article-cta-qr)) .hl-article-cta-title,
  .usaco-cta-section .hl-article-cta:not(:has(.hl-article-cta-qr)) .hl-article-cta-sub,
  .usaco-cta-section .hl-article-cta:not(:has(.hl-article-cta-qr)) .hl-article-cta-bullets { grid-column: 1; }
  .usaco-cta-section .hl-article-cta:not(:has(.hl-article-cta-qr)) .hl-cta-online-btn {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: center;
    justify-self: end;
    min-width: 248px;
    box-sizing: border-box;
    justify-content: center;
  }
}

/* Article detail v2: contest-intelligence briefing, not a generic blog post. */
.single .hl-story-page {
  background-color: var(--el-bg);
  background-image:
    linear-gradient(to right, rgba(0,65,168,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,65,168,.035) 1px, transparent 1px);
  background-size: 44px 44px;
}
/* The baseline floating TOC overlaps the new full-width reading canvas. */
.single .hl-toc-float { display: none !important; }
.hl-story-hero-band { padding: 28px 0 0; }
.hl-story-hero.hl-article-head {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 24px;
  overflow: hidden;
  max-width: none;
  min-height: 350px;
  margin: 0;
  padding: 26px 34px 30px;
  background: #11141c;
  border: 1px solid #2e3545;
  border-left: 4px solid var(--el-primary);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 24px 55px rgba(20,25,36,.14);
  box-sizing: border-box;
}
.hl-story-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(43,111,226,.10) 72% 72.3%, transparent 72.3%),
    radial-gradient(circle at 82% 22%, rgba(43,111,226,.18), transparent 27%);
}
.hl-story-hero > * { position: relative; z-index: 1; }
.hl-story-kicker {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 1px solid #303748;
  color: #7f8aa0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
}
.hl-story-kicker span { color: #8fb4f5; font-weight: 700; }
.hl-story-kicker b { font-weight: 500; }
.hl-story-hero .hl-breadcrumb {
  grid-column: 1 / 9;
  grid-row: 4;
  align-self: end;
  margin: 20px 0 0;
  color: #8792a7;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hl-story-hero .hl-breadcrumb a { color: #aeb8ca; text-decoration: none; }
.hl-story-hero .hl-breadcrumb a:hover { color: #fff; }
.hl-story-hero .hl-breadcrumb .sep { color: #536079; }
.hl-story-hero .wp-block-post-title {
  grid-column: 1 / 9;
  grid-row: 2;
  max-width: 760px;
  margin: 0;
  color: #f7f9fd;
  font-family: var(--f-serif);
  font-size: clamp(36px, 4.25vw, 54px);
  font-weight: 800;
  letter-spacing: -.026em;
  line-height: 1.02;
  text-wrap: balance;
}
.hl-story-hero .wp-block-post-date {
  grid-column: 1 / 9;
  grid-row: 3;
  align-self: start;
  display: flex;
  flex-flow: row wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: #8f9bb0;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hl-story-hero .hl-post-meta-extra { display: flex; flex-flow: row wrap; gap: 10px 18px; }
.hl-story-hero .hl-post-meta-sep { display: none; }
.hl-story-hero .hl-post-meta-extra a { color: #8fb4f5; text-decoration: none; }
.hl-story-signal {
  grid-column: 10 / -1;
  grid-row: 2 / 5;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 24px;
  border-left: 1px solid #303748;
}
.hl-story-signal div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #2b3241;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .06em;
}
.hl-story-signal div:last-child { border-bottom: 0; }
.hl-story-signal span { color: #6f7b91; }
.hl-story-signal strong { color: #dfe6f2; font-weight: 500; }
.hl-story-signal .is-live { color: #8dd7ae; }

.hl-story-reading { padding: 24px 0 84px; }
.hl-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 24px;
  align-items: start;
}
.hl-story-layout .hl-article-body {
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0 50px 50px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--el-border);
  border-top: 4px solid var(--el-primary);
  border-radius: 0 0 7px 7px;
  box-shadow: 0 16px 38px rgba(25,27,35,.045);
  box-sizing: border-box;
}
.hl-story-reading-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  margin: 0 -50px 38px;
  padding: 0 20px;
  background: #f1f3fb;
  border-bottom: 1px solid var(--el-border);
  color: #7f8797;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .08em;
}
.hl-story-reading-head::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--el-primary);
  border-radius: 50%;
  box-shadow: 14px 0 0 #e7b741, 28px 0 0 #e55b56;
  margin-right: 28px;
}
.hl-story-reading-head strong { color: var(--el-primary); font-weight: 700; }
.hl-story-reading-head i { margin-left: auto; color: #929aaa; font-style: normal; }
.hl-story-layout .hl-prose {
  width: 100%;
  max-width: none;
  color: var(--el-body);
  counter-reset: story-section;
}
.hl-story-layout .hl-prose > p {
  width: 100%;
  max-width: none;
  margin: 0 0 23px;
  color: var(--el-body);
  font-size: 17px;
  line-height: 1.82;
}
.hl-story-layout .hl-prose > p:first-child {
  margin-bottom: 46px;
  padding: 0 0 34px;
  color: var(--el-ink);
  border-bottom: 1px solid var(--el-border);
  font-family: var(--f-serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.006em;
  line-height: 1.56;
}
.hl-story-layout .hl-prose h2 {
  counter-increment: story-section;
  margin: 56px 0 24px;
  padding-top: 24px;
  border-top: 1px solid var(--el-border);
  color: var(--el-ink);
  font-family: var(--f-serif);
  font-size: clamp(29px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -.018em;
  line-height: 1.16;
}
.hl-story-layout .hl-prose h2::before {
  content: "SECTION / 0" counter(story-section);
  display: block;
  margin-bottom: 11px;
  color: var(--el-primary);
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
}
.hl-story-layout .hl-prose h3 {
  margin: 38px 0 16px;
  color: var(--el-ink);
  font-family: var(--f-serif);
  font-size: 25px;
  line-height: 1.25;
}
.hl-story-layout .hl-prose ul,
.hl-story-layout .hl-prose ol {
  margin: 26px 0 32px;
  padding: 24px 28px 24px 48px;
  background: #f6f8fd;
  border: 1px solid var(--el-border);
  border-radius: 4px;
}
.hl-story-layout .hl-prose li { margin: 9px 0; padding-left: 5px; line-height: 1.72; }
.hl-story-layout .hl-prose blockquote,
.hl-story-layout .hl-prose .wp-block-quote {
  margin: 34px 0;
  padding: 28px 30px !important;
  background: #11141c !important;
  border: 0 !important;
  border-left: 4px solid var(--el-primary) !important;
  color: #e8edf6;
}
.hl-story-layout .hl-prose blockquote p { color: inherit; font-family: var(--f-mono); font-size: 14px; line-height: 1.75; }
.hl-story-layout .hl-prose figure { width: 100%; max-width: none; margin: 38px 0; }
.hl-story-layout .hl-prose img { border-radius: 5px; }
.hl-story-layout .hl-prose figcaption { color: var(--el-outline); font-family: var(--f-mono); font-size: 10px; line-height: 1.6; }
.hl-story-layout .hl-prose pre {
  overflow: auto;
  margin: 32px 0;
  padding: 24px;
  background: #11141c;
  border: 1px solid #303748;
  border-radius: 5px;
  color: #e8edf6;
}
.hl-story-layout .hl-prose table { width: 100%; border-collapse: collapse; }
.hl-story-layout .hl-prose th { background: #11141c; color: #fff; }
.hl-story-layout .hl-prose th,
.hl-story-layout .hl-prose td { padding: 13px 15px; border: 1px solid var(--el-border); text-align: left; }
.hl-story-layout .hl-prose a { color: var(--el-primary); font-weight: 650; text-underline-offset: 3px; }
.hl-story-endline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid var(--el-border);
  color: var(--el-outline);
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .11em;
}
.hl-story-endline b { color: var(--el-primary); font-weight: 700; }

.hl-story-sidebar { position: sticky; top: 104px; display: grid; gap: 16px; }
.hl-story-sidecard {
  padding: 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--el-border);
  border-top: 3px solid var(--el-primary);
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(25,27,35,.035);
}
.hl-story-sidecard > p {
  margin: 0 0 17px;
  color: var(--el-primary);
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .11em;
}
.hl-story-sidecard-status div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--el-border);
}
.hl-story-sidecard-status span { color: var(--el-primary); font-family: var(--f-mono); font-size: 10px; }
.hl-story-sidecard-status b { color: var(--el-body); font-size: 13px; font-weight: 600; line-height: 1.4; }
.hl-story-routes { display: block; }
.hl-story-routes a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 3px;
  border-top: 1px solid var(--el-border);
  color: var(--el-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.hl-story-routes a:hover { color: var(--el-primary); }
.hl-story-routes a span { color: var(--el-primary); font-family: var(--f-mono); }
.hl-story-sidebar .hl-post-tags {
  margin: 0;
  padding: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--el-border);
  border-radius: 5px;
}
.hl-story-sidebar .hl-post-tags a {
  display: inline-flex;
  margin: 3px;
  padding: 7px 9px;
  background: var(--el-primary-fixed);
  color: var(--el-primary);
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.hl-story-after { margin-top: 24px; }
.hl-story-after .hl-post-nav {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}
.hl-story-after .wp-block-post-navigation-link { min-width: 0; }
.hl-story-after .wp-block-post-navigation-link a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--el-border);
  border-top: 3px solid var(--el-primary);
  border-radius: 5px;
  color: var(--el-ink);
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.35;
  text-decoration: none;
  box-sizing: border-box;
}
.hl-story-after .wp-block-post-navigation-link a:hover { color: var(--el-primary); border-color: rgba(0,65,168,.55); }
.hl-story-after .hl-related { margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--el-border); }
.hl-story-after .hl-related-head {
  margin-bottom: 20px;
  color: var(--el-ink);
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}
.hl-story-after .hl-related-head::before {
  content: "NEXT.QUEUE";
  display: block;
  margin-bottom: 8px;
  color: var(--el-primary);
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .12em;
}
.hl-story-after .hl-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.hl-story-after .hl-related-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--el-border);
  border-top: 3px solid var(--el-primary);
  border-radius: 5px;
  color: var(--el-body);
  text-decoration: none;
  box-sizing: border-box;
}
.hl-story-after .hl-related-card:hover { transform: translateY(-2px); border-color: rgba(0,65,168,.55); }
.hl-story-after .hl-related-date { margin-bottom: 14px; color: var(--el-outline); font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .05em; }
.hl-story-after .hl-related-title { color: var(--el-ink); font-family: var(--f-serif); font-size: 19px; font-weight: 700; line-height: 1.28; }
.hl-story-after .hl-related-x { margin-top: auto; padding-top: 14px; color: var(--el-body); font-size: 12px; line-height: 1.55; }

/* Article conversion modules: distinct midpoint trial offer + results-led close. */
.single .hl-story-layout .hl-prose .hl-article-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  margin: 48px 0;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(0,65,168,.22), transparent 55%),
    #11141c;
  border: 1px solid #30394b;
  border-top: 4px solid #2f7cf4;
  border-radius: 7px;
  box-shadow: 0 22px 48px rgba(17,20,28,.13);
  color: #fff;
}
.single .hl-story-layout .hl-prose .hl-article-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -84px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(117,166,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(117,166,255,.05), 0 0 0 64px rgba(117,166,255,.025);
}
.single .hl-story-layout .hl-prose .hl-article-cta--end {
  background:
    linear-gradient(145deg, rgba(0,65,168,.14), transparent 58%),
    #0d1017;
  border-top-color: #f1b84b;
}
.single .hl-story-layout .hl-prose .hl-article-cta-body { min-width: 0; }
.single .hl-story-layout .hl-prose .hl-article-cta-eyebrow {
  margin: 0 0 10px;
  color: #79a9ff;
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.4;
}
.single .hl-story-layout .hl-prose .hl-article-cta--end .hl-article-cta-eyebrow { color: #f1c56e; }
.single .hl-story-layout .hl-prose .hl-article-cta-title {
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  color: #fff;
  font-family: var(--f-serif);
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -.012em;
  line-height: 1.12;
}
.single .hl-story-layout .hl-prose .hl-article-cta-sub {
  max-width: 62ch;
  margin: 0 0 18px;
  color: #d4dae6;
  font-size: 14px;
  line-height: 1.62;
  opacity: 1;
}
.single .hl-story-layout .hl-prose .hl-article-cta-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0 0 22px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #eef2f9;
  font-size: 12px;
  line-height: 1.48;
  opacity: 1;
}
.single .hl-story-layout .hl-prose .hl-article-cta-bullets li {
  margin: 0;
  padding: 0 0 0 17px;
}
.single .hl-story-layout .hl-prose .hl-article-cta-bullets li::before { color: #78a9ff; }
.single .hl-story-layout .hl-prose .hl-article-cta--end .hl-article-cta-bullets li::before { color: #f1c56e; }
.single .hl-story-layout .hl-prose .hl-cta-online-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  background: #0756c9;
  border: 1px solid #4384e4;
  border-radius: 3px;
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-decoration: none;
}
.single .hl-story-layout .hl-prose .hl-article-cta--end .hl-cta-online-btn {
  background: #f1b84b;
  border-color: #ffd786;
  color: #17130b;
}
.single .hl-story-layout .hl-prose .hl-cta-online-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.single .hl-story-layout .hl-prose .hl-article-cta-qr {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.single .hl-story-layout .hl-prose .hl-article-cta-qr .hl-cta-qr-panel { margin: 0; }
.single .hl-story-layout .hl-prose .hl-article-cta-qr .hl-cta-scan-img {
  width: 132px;
  height: 132px;
  padding: 7px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
}
.single .hl-story-layout .hl-prose .hl-article-cta-qr figcaption {
  max-width: 140px;
  margin-top: 9px;
  color: #d7deea;
  font-family: var(--f-mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.35;
}

@media (max-width: 960px) {
  .hl-story-hero .wp-block-post-title,
  .hl-story-hero .wp-block-post-date,
  .hl-story-hero .hl-breadcrumb { grid-column: 1 / 9; }
  .hl-story-signal { grid-column: 9 / -1; padding-left: 20px; }
  .hl-story-layout { grid-template-columns: 1fr; }
  .hl-story-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hl-story-sidebar .hl-post-tags { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .hl-story-hero-band { padding-top: 12px; }
  .hl-story-hero.hl-article-head {
    display: block;
    min-height: 0;
    padding: 22px 20px 24px;
    border-radius: 6px 6px 0 0;
  }
  .hl-story-kicker { margin-bottom: 24px; font-size: 9px; }
  .hl-story-kicker b { display: none; }
  .hl-story-hero .hl-breadcrumb { margin: 0 0 14px; }
  .hl-story-hero .wp-block-post-title { font-size: 33px; line-height: 1.05; }
  .hl-story-hero .wp-block-post-date { margin-top: 16px; }
  .hl-story-signal { margin-top: 22px; padding: 12px 0 0; border-top: 1px solid #303748; border-left: 0; }
  .hl-story-signal div { grid-template-columns: 70px 1fr; padding: 8px 0; }
  .hl-story-reading { padding-top: 12px; }
  .hl-story-layout .hl-article-body { padding: 0 22px 32px; }
  .hl-story-reading-head { margin: 0 -22px 30px; padding: 0 14px; }
  .hl-story-reading-head i { display: none; }
  .hl-story-layout .hl-prose > p { font-size: 16px; line-height: 1.78; }
  .hl-story-layout .hl-prose > p:first-child { margin-bottom: 38px; padding-bottom: 28px; font-size: 20px; }
  .hl-story-layout .hl-prose h2 { margin-top: 46px; font-size: 29px; }
  .hl-story-layout .hl-prose ul,
  .hl-story-layout .hl-prose ol { padding: 20px 18px 20px 38px; }
  .single .hl-story-layout .hl-prose .hl-article-cta {
    display: block;
    margin: 40px 0;
    padding: 27px 22px;
  }
  .single .hl-story-layout .hl-prose .hl-article-cta-title { font-size: 25px; }
  .single .hl-story-layout .hl-prose .hl-article-cta-bullets {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 0;
  }
  .single .hl-story-layout .hl-prose .hl-cta-online-btn { width: 100%; box-sizing: border-box; }
  .single .hl-story-layout .hl-prose .hl-article-cta-qr { margin-top: 24px; }
  .single .hl-story-layout .hl-prose .hl-article-cta-qr .hl-cta-scan-img { width: 128px; height: 128px; }
  .hl-story-sidebar { grid-template-columns: 1fr; }
  .hl-story-sidebar .hl-post-tags { grid-column: auto; }
  .hl-story-after .hl-post-nav,
  .hl-story-after .hl-related-grid { grid-template-columns: 1fr; }
  .hl-story-after .wp-block-post-navigation-link a { min-height: 92px; }
}
@media (prefers-reduced-motion: reduce) {
  .hl-story-after .hl-related-card { transition: none; }
}
