:root {
  --bg: #0b1018;
  --panel: #121a28;
  --panel-2: #1a2436;
  --line: #24314a;
  --text: #eef2f8;
  --muted: #8fa0b8;
  --accent: #17aaff;
  --accent-2: #ff3b4e;
  --ok: #2fd07a;
  --warn: #ffb020;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }

/* masthead */
.masthead {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; border-bottom: 2px solid var(--accent-2);
  background: #0a0e16; position: sticky; top: 0; z-index: 20;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { font-family: var(--sans); font-weight: 800; font-size: 24px; letter-spacing: 2px; }
.logo-text b { color: var(--accent); }
.puck { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(145deg,#333,#000); box-shadow: 0 0 0 3px #0a0a0a; }
.masthead-right { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(47,208,122,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(47,208,122,.5); } 70% { box-shadow: 0 0 0 8px rgba(47,208,122,0); } 100% { box-shadow: 0 0 0 0 rgba(47,208,122,0); } }

/* ticker */
.ticker { background: var(--panel-2); border-bottom: 1px solid var(--line); overflow: hidden; }
.ticker span { display: block; padding: 8px 24px; font-size: 12px; color: var(--muted); white-space: nowrap; }

/* layout */
.wrap { max-width: 1080px; margin: 0 auto; padding: 32px 24px 60px; }

.kicker { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); }
.timestamp { font-size: 12px; color: var(--muted); }

/* ---- home layout (NHL-style: hero + card row + Top Stories rail) ---- */
.home-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
@media (max-width: 900px) { .home-grid { grid-template-columns: 1fr; } }

/* cover = image placeholder (briefs have no photos yet) */
.cover {
  position: relative; overflow: hidden;
  background:
    radial-gradient(140px 140px at 82% 18%, rgba(23,170,255,.28), transparent 62%),
    linear-gradient(135deg, #18304c 0%, #102135 55%, #0b1420 100%);
}
.cover::after {
  content: ""; position: absolute; right: -34px; bottom: -34px; width: 170px; height: 170px;
  border-radius: 50%; background: radial-gradient(circle at 35% 32%, #3b3b3b, #0a0a0a 72%); opacity: .38;
}
.cover.bluesky { background:
    radial-gradient(140px 140px at 82% 18%, rgba(74,163,255,.30), transparent 62%),
    linear-gradient(135deg, #123049 0%, #0e2036 55%, #0b1420 100%); }
.cover-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .6px; padding: 4px 9px; border-radius: 5px;
  background: rgba(10,14,22,.7); color: var(--accent);
}
.cover-badge.bluesky { color: #4aa3ff; }

/* hero */
.hero {
  display: block; position: relative; min-height: 460px;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .15s;
}
.hero:hover { border-color: var(--accent); }
.hero .cover { position: absolute; inset: 0; }
.hero-scrim {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 34px;
  background: linear-gradient(to top, rgba(6,10,17,.94) 0%, rgba(6,10,17,.72) 48%, transparent 100%);
}
.hero-scrim .kicker { color: var(--accent); }
.hero-scrim h1 { font-family: var(--serif); font-size: 34px; line-height: 1.12; margin: 8px 0 10px; max-width: 640px; }
.hero-scrim p { font-size: 15px; line-height: 1.55; color: #cdd8e8; margin: 0; max-width: 620px; }
@media (max-width: 900px) { .hero { min-height: 340px; } .hero-scrim h1 { font-size: 26px; } }

/* card row */
.card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
@media (max-width: 640px) { .card-row { grid-template-columns: 1fr; } }
.mini {
  display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line);
  border-radius: 10px; overflow: hidden; transition: border-color .15s, transform .05s;
}
.mini:hover { border-color: var(--accent); }
.mini:active { transform: scale(.995); }
.mini .cover { height: 132px; }
.mini-body { padding: 12px 14px 14px; }
.mini h3 { font-family: var(--serif); font-size: 16px; line-height: 1.3; margin: 0 0 6px; }
.mini-meta { font-size: 11px; color: var(--muted); }

/* Top Stories rail */
.top-stories { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px 10px; }
.top-stories h2 { font-family: var(--sans); font-size: 20px; font-weight: 800; margin: 0; padding: 16px 0 12px; border-bottom: 3px solid var(--accent-2); }
.top-stories ul { list-style: none; margin: 0; padding: 0; }
.top-stories li { border-bottom: 1px solid var(--line); }
.top-stories li:last-child { border-bottom: none; }
.top-stories a { display: block; padding: 13px 0; font-size: 15px; line-height: 1.35; color: #dbe4f0; }
.top-stories a:hover { color: var(--accent); }
.ts-empty { padding: 14px 0; font-size: 13px; color: var(--muted); font-style: italic; }

/* badges */
.badge { align-self: flex-start; font-size: 10px; padding: 3px 8px; border-radius: 5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.badge.twitter { background: rgba(23,170,255,.16); color: var(--accent); }
.badge.bluesky { background: rgba(74,163,255,.16); color: #4aa3ff; }

/* article page */
.article-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
@media (max-width: 860px) { .article-wrap { grid-template-columns: 1fr; } }
.back { font-size: 13px; color: var(--muted); }
.back:hover { color: var(--accent); }
.article h1 { font-family: var(--serif); font-size: 38px; line-height: 1.15; margin: 12px 0 14px; }
.byline { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); margin-bottom: 26px; }
.article-body p { font-size: 18px; line-height: 1.75; color: #dde6f2; margin: 0 0 18px; }
.disclaimer { margin: 26px 0; font-size: 13px; color: var(--warn); background: rgba(255,176,32,.08); border: 1px solid rgba(255,176,32,.25); border-radius: 8px; padding: 12px 14px; }
.source { border-top: 1px solid var(--line); padding-top: 20px; font-size: 14px; }
.source > span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
.source a { color: var(--accent); }
.source blockquote { margin: 12px 0 0; padding: 12px 16px; border-left: 3px solid var(--line); color: #b9c5d8; font-style: italic; }
.mirror-note { margin: 10px 0 0; font-size: 12px; color: var(--warn); line-height: 1.5; }

/* more sidebar */
.more { position: sticky; top: 90px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.more h3 { margin: 0 0 14px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.more-item { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.more-item:last-child { border-bottom: none; }
.more-thumb { width: 58px; height: 40px; object-fit: cover; object-position: 50% 20%;
             border-radius: 5px; flex: none; background: var(--panel-2); }
.more-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.more-kicker { font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.more-title { font-family: var(--serif); font-size: 14px; line-height: 1.3; }
.more-item:hover .more-title { color: var(--accent); }

/* empty state */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state h1 { font-family: var(--serif); font-size: 32px; }
.empty-state p { color: var(--muted); }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 24px; text-align: center; }
.site-footer p { font-size: 12px; color: var(--muted); max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* ---------------- imagery ---------------- */
/* Covers now hold a real <img>: either a free-licence photo or the generated
   SVG art. The old gradient rules stay above as the background behind it, so a
   slow-loading image never shows a bare box. */
.cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
             object-position: 50% 20%; display: block; }
.mini .cover { position: relative; }
.mini .cover img { position: absolute; }

/* club tricode chip, tinted with that club's own colour inline */
.cover-team {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 10px; font-weight: 900; letter-spacing: 1px; color: #fff;
  padding: 4px 8px; border-radius: 5px; text-shadow: 0 1px 2px rgba(0,0,0,.5);
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.kicker-sm { font-size: 10px; letter-spacing: 1.2px; display: block; margin-bottom: 5px; }

/* photo credit — never optional next to a CC-BY image */
.photo-credit { font-size: 11px; color: var(--muted); margin: 8px 2px 0; }
.photo-credit a { color: var(--muted); text-decoration: underline; }
.photo-credit a:hover { color: var(--accent); }

.lede-figure { margin: 0 0 26px; }
.lede-figure img {
  width: 100%; max-height: 420px; object-fit: cover;
  /* Crop from near the TOP, not the centre.
     object-fit: cover defaults to object-position: 50% 50%, which centres the
     crop - and on a photo of a standing player the head sits in the upper
     fifth, so centring reliably cuts the face off and leaves a torso. Faces
     are the point of these photos, so bias the visible band upwards. */
  object-position: 50% 18%;
  border-radius: 12px; border: 1px solid var(--line); display: block;
}
.lede-figure figcaption { font-size: 11px; color: var(--muted); margin-top: 8px; line-height: 1.5; }
.lede-figure figcaption a { color: var(--muted); text-decoration: underline; }

/* club accenting on the article page, driven by --club set inline */
.article.has-club .kicker { color: var(--club); }
.article.has-club h1 { border-left: 4px solid var(--club); padding-left: 16px; margin-left: -20px; }
@media (max-width: 640px) { .article.has-club h1 { margin-left: 0; padding-left: 12px; } }

/* Top Stories colour rules */
.top-stories a { display: flex; align-items: center; gap: 11px; }
.ts-rule { width: 3px; align-self: stretch; min-height: 26px; border-radius: 2px; flex: none; }
.ts-text { min-width: 0; }

/* masthead mark — the 1T badge from the lockup, wordmark set in text beside it */
.logo-mark { display: block; flex: none; height: 42px; width: auto; }
.empty-logo { width: min(420px, 80vw); height: auto; margin: 0 auto 18px; display: block; }
/* "ONETIMER WIRE" is a good deal wider than the old wordmark — tighten it on
   narrow screens so it never wraps under the mark */
@media (max-width: 560px) {
  .masthead { padding: 12px 14px; }
  .logo-text { font-size: 17px; letter-spacing: .5px; }
  .logo-mark { height: 32px; }
  .logo { gap: 8px; }
  .live-label { display: none; }
}

/* platform embeds — constrain so a tall tweet doesn't blow out the column */
.source .twitter-tweet, .source .bluesky-embed { margin: 14px 0 0 !important; max-width: 100%; }

/* ---------------- developing stories ---------------- */
.live-badge {
  background: rgba(47,208,122,.16); color: var(--ok); font-size: 10px; font-weight: 800;
  letter-spacing: .6px; padding: 3px 8px; border-radius: 4px; text-transform: uppercase;
}

/* corroboration: how many separate insiders have this */
.corrob { background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
          padding: 12px 14px; margin: 0 0 22px; }
.corrob-top { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.corrob-n { font-size: 19px; font-weight: 800; color: var(--ok); }
.corrob-l { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { font-size: 11px; background: var(--panel-2); border: 1px solid #2c3a55;
        color: #cfd9e8; padding: 3px 9px; border-radius: 20px; }

/* update log */
.log { border-top: 1px solid var(--line); margin-top: 26px; padding-top: 18px; }
.log h3 { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px;
          color: var(--muted); margin: 0 0 16px; }
.entry { display: flex; gap: 12px; padding-bottom: 18px; position: relative; }
.entry:not(:last-child)::before { content: ""; position: absolute; left: 5px; top: 14px;
                                  bottom: 0; width: 1px; background: var(--line); }
.dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); flex: none;
       margin-top: 4px; z-index: 1; box-shadow: 0 0 0 3px var(--bg); }
.dot.new { background: var(--ok); }
.entry-body { min-width: 0; }
.entry-time { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .7px; }
.entry-text { font-size: 14px; line-height: 1.6; color: #dde6f2; margin: 3px 0 2px; }
.entry-src { font-size: 11px; color: var(--accent); }

.source-item { margin-bottom: 16px; }
.source-item:last-child { margin-bottom: 0; }

/* sourcing confidence - replaces the old blanket AI disclaimer */
.confidence { margin: 24px 0; font-size: 13.5px; line-height: 1.6; border-radius: 8px;
              padding: 12px 14px; border: 1px solid; }
.confidence strong { display: inline; }
.confidence.single { color: var(--warn); background: rgba(255,176,32,.08);
                     border-color: rgba(255,176,32,.25); }
.confidence.confirmed { color: var(--ok); background: rgba(47,208,122,.08);
                        border-color: rgba(47,208,122,.25); }

/* ---------------- navigation ---------------- */
.mainnav { background: #0a0e16; border-bottom: 1px solid var(--line); position: relative; z-index: 30; }
/* The bar itself must NOT scroll, or it becomes a clipping container and the
   Teams dropdown - which is absolutely positioned - gets cut off at its edge.
   Per spec, overflow-x:auto forces overflow-y from visible to auto, so there is
   no way to scroll horizontally here and still let a child escape vertically.
   Only the links scroll; the Teams menu sits outside that scroller. */
.nav-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; display: flex;
             align-items: center; gap: 4px; }
.nav-scroll { display: flex; align-items: center; gap: 4px; flex: 1; min-width: 0;
              overflow-x: auto; scrollbar-width: none; }
.nav-scroll::-webkit-scrollbar { display: none; }
.nav-link { display: block; padding: 12px 12px; font-size: 12.5px; font-weight: 600;
            letter-spacing: .4px; color: var(--muted); white-space: nowrap;
            border-bottom: 2px solid transparent; }
.nav-link:hover { color: var(--text); }
.nav-link.on { color: var(--accent); border-bottom-color: var(--accent); }

.teams-menu { position: relative; flex: none; }
.teams-menu summary { list-style: none; cursor: pointer; padding: 12px 14px; font-size: 12.5px;
                      font-weight: 600; color: var(--muted); white-space: nowrap; }
.teams-menu summary::-webkit-details-marker { display: none; }
.teams-menu summary::after { content: " ▾"; }
.teams-menu[open] summary { color: var(--accent); }
.teams-panel {
  position: absolute; right: 0; top: 100%; z-index: 40; width: min(720px, 92vw);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 18px; box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
@media (max-width: 720px) { .teams-panel { grid-template-columns: repeat(2, 1fr); } }
.division h4 { margin: 0 0 8px; font-size: 10px; text-transform: uppercase;
               letter-spacing: 1px; color: var(--muted); }
.team-link { display: flex; align-items: center; gap: 7px; padding: 4px 0; font-size: 12.5px;
             color: #cfd9e8; }
.team-link:hover { color: var(--accent); }
.team-link.on { color: var(--accent); font-weight: 700; }
.team-dot { width: 8px; height: 8px; border-radius: 2px; flex: none; }
.team-name { flex: 1; min-width: 0; }
.team-count { font-size: 10px; color: var(--muted); }

.page-head { margin-bottom: 22px; }
.page-title { font-family: var(--serif); font-size: 26px; margin: 0; }
.page-sub { font-size: 13px; color: var(--muted); margin: 5px 0 0; }

.rail { display: flex; flex-direction: column; gap: 18px; }

/* ---------------- digest ---------------- */
.digest-days { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.digest-day { font-size: 11.5px; padding: 5px 10px; border-radius: 6px; color: var(--muted);
              background: var(--panel); border: 1px solid var(--line); }
.digest-day span { opacity: .6; }
.digest-day.on { color: var(--accent); border-color: var(--accent); }
.digest-list { display: flex; flex-direction: column; gap: 2px; }
.digest-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.digest-item:last-child { border-bottom: none; }
.digest-item:target { background: rgba(23,170,255,.06); }
.digest-rule { width: 3px; border-radius: 2px; flex: none; }
.digest-meta { font-size: 10.5px; text-transform: uppercase; letter-spacing: .7px; color: var(--muted); }
.digest-body h3 { font-family: var(--serif); font-size: 17px; margin: 5px 0 6px; }
.digest-body p { font-size: 14px; line-height: 1.6; color: #c7d2e2; margin: 0 0 6px; }
.digest-src { font-size: 11px; color: var(--muted); }

/* ---------------- prose pages ---------------- */
.prose { max-width: 720px; }
.prose h1 { font-family: var(--serif); font-size: 30px; margin: 0 0 6px; }
.prose h2 { font-size: 15px; text-transform: uppercase; letter-spacing: .8px;
            color: var(--accent); margin: 30px 0 10px; }
.prose p { font-size: 15.5px; line-height: 1.75; color: #dde6f2; margin: 0 0 14px; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose-meta { font-size: 12px; color: var(--muted); }

/* ---------------- ads ---------------- */
.adslot { margin: 26px 0; text-align: center; min-height: 90px; }
.adslot-label { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 1.2px;
                color: var(--muted); opacity: .6; margin-bottom: 5px; }
.adslot-sidebar { min-height: 250px; }

.consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 100;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  max-width: 620px; margin: 0 auto; padding: 13px 16px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
}
.consent p { margin: 0; font-size: 12.5px; color: #cfd9e8; flex: 1; min-width: 200px; }
.consent a { color: var(--accent); }
.consent button { background: var(--accent); color: #04121f; border: none; cursor: pointer;
                  font-weight: 700; padding: 8px 18px; border-radius: 7px; font-size: 12.5px; }

.foot-links { margin-top: 10px; }
.foot-links a { color: var(--muted); text-decoration: underline; }
.foot-links a:hover { color: var(--accent); }

/* ---------------- admin ---------------- */
.admin h1 { font-family: var(--serif); }
.admin-note { color: var(--warn); font-size: 13px; margin-top: -6px; }
.admin-stats { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }
.stat { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 12px 18px; min-width: 110px; }
.stat .num { font-size: 24px; font-weight: 800; }
.stat .num.ok { color: var(--ok); } .stat .num.bad { color: var(--accent-2); }
.stat .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; }
.btn { background: var(--accent); color: #04121f; border: none; cursor: pointer; font-weight: 700; padding: 10px 18px; border-radius: 8px; font-size: 13px; }
.btn:hover { filter: brightness(1.08); } .btn:disabled { opacity: .55; cursor: default; }
.refresh-out { margin-left: 12px; font-size: 13px; color: var(--muted); }
.admin-add, .admin-list { margin-top: 28px; }
.admin h2 { font-size: 15px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); }
#add-form { display: flex; gap: 8px; flex-wrap: wrap; }
#add-form input { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; color: var(--text); padding: 9px 11px; font-size: 13px; }
#add-form input:focus { outline: none; border-color: var(--accent); }
#journalists { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.jrow { display: flex; justify-content: space-between; align-items: center; background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 10px 14px; }
.jrow.off { opacity: .45; }
.jname { font-size: 14px; font-weight: 600; } .jsub { font-size: 11px; color: var(--muted); }
.jact { display: flex; gap: 8px; }
.mirror-check { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); }
.mirror-tag { background: rgba(255,176,32,.15); color: var(--warn); font-size: 10px; padding: 1px 5px; border-radius: 4px; text-transform: uppercase; letter-spacing: .4px; }
.iconbtn { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 14px; }
.iconbtn:hover { color: var(--text); }

/* player links inside article text */
.article-body .player-link { color: var(--accent); text-decoration: none;
                             border-bottom: 1px solid rgba(23,170,255,.35); }
.article-body .player-link:hover { border-bottom-color: var(--accent); }

/* ---- review queue ---- */
.review-banner { display: block; margin: 18px 0; padding: 12px 16px; border-radius: 8px;
                 font-size: 13px; border: 1px solid var(--accent);
                 background: rgba(255,255,255,.03); color: var(--text); }
.review-banner.none { border-color: var(--line); color: var(--muted); }
.review-banner .go { color: var(--accent); font-weight: 700; white-space: nowrap; }
.queue-count { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.queue-empty { color: var(--muted); padding: 24px 0; }
.queue-item { border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px;
              margin: 0 0 18px; background: var(--panel); transition: opacity .2s; }
.queue-item.done-approved { border-color: #2f855a; opacity: .55; }
.queue-item.done-rejected { border-color: #a33; opacity: .4; }
.queue-why { font-size: 12px; color: #e8c46a; margin-bottom: 8px; }
.queue-item h2 { margin: 0 0 8px; font-size: 20px; line-height: 1.25; }
.queue-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
              font-size: 11.5px; color: var(--muted); margin-bottom: 12px; }
.queue-meta .badge { border: 1px solid var(--line); border-radius: 4px; padding: 2px 6px; }
.queue-body p { margin: 0 0 10px; font-size: 14.5px; line-height: 1.65; }
.queue-sources { margin: 10px 0; font-size: 12.5px; }
.queue-sources summary { cursor: pointer; color: var(--muted); }
.queue-sources .src { border-left: 2px solid var(--line); padding: 6px 0 6px 10px; margin: 8px 0; }
.src-who { font-weight: 700; font-size: 12px; }
.src-text { color: #cfd9e8; white-space: pre-wrap; }
.src-link { font-size: 11.5px; color: var(--accent); }
.queue-actions { display: flex; gap: 10px; align-items: center; margin-top: 14px;
                 padding-top: 12px; border-top: 1px solid var(--line); }
.btn.approve { background: #2f855a; border-color: #2f855a; color: #fff; }
.btn.reject  { background: transparent; border-color: #a33; color: #e58; }
.queue-out { font-size: 12px; color: var(--muted); }
