/* CFB Rooter — press-box almanac. Paper, ink, one green. */

:root {
  --paper: #f6f3ea;
  --paper-2: #efeadd;
  --card: #fcfaf4;
  --ink: #16150f;
  --ink-2: #45423a;
  --ink-3: #666254;
  --rule: #d8d2c2;
  --rule-2: #c4bda9;
  --root: #0b6e1f;          /* firm call */
  --root-wash: #e3efe0;
  --neg: #b3261e;
  --neg-wash: #f6e3e1;
  --field-blue: #1c5cab;    /* probability fill */
  --gold: #b98a00;          /* your own games */
  --gold-wash: #f5ecd2;
  --night: #131210;         /* sickos */
  --night-2: #1d1b18;
  --night-ink: #e8e4d8;
  --night-mut: #b0aa96;
  --acid: #b7e05e;
  --disp: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
body::before {  /* paper grain */
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { -webkit-user-drag: none; }
a { color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ---------- masthead ---------- */
.masthead {
  position: sticky; top: 0; z-index: 40;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.masthead .wrap {
  display: flex; align-items: center; gap: 18px;
  padding-top: 10px; padding-bottom: 10px;
}
.wordmark { display: flex; align-items: center; gap: 9px; cursor: pointer; user-select: none; }
.pennant {
  width: 0; height: 0;
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  border-left: 22px solid var(--root);
}
.wordmark b {
  font-family: var(--disp); font-weight: 700; font-size: 24px;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1;
}
.wordmark small {
  display: block; font-family: var(--mono); font-size: 9.5px;
  color: var(--ink-3); letter-spacing: .06em; margin-top: 1px;
}
.mast-spacer { flex: 1; }
.mast-meta { text-align: right; font-family: var(--mono); font-size: 11px; color: var(--ink-2); line-height: 1.5; }
.mast-meta b { color: var(--ink-2); font-weight: 500; }

.switcher {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--ink); background: var(--card);
  padding: 6px 14px 6px 8px; cursor: pointer;
  box-shadow: 3px 3px 0 var(--rule-2);
  transition: box-shadow .12s, transform .12s;
}
.switcher:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--rule-2); }
.switcher img { width: 26px; height: 26px; object-fit: contain; }
.switcher .sw-name { font-family: var(--disp); font-weight: 600; font-size: 17px; text-transform: uppercase; letter-spacing: .02em; }
.switcher .sw-caret { font-size: 10px; color: var(--ink-3); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--rule-2); }
.hero .wrap { display: flex; align-items: stretch; gap: 34px; padding-top: 34px; padding-bottom: 30px; }
.hero-mark { position: absolute; right: -70px; top: -55px; width: 380px; height: 380px; opacity: .07; transform: rotate(-8deg); pointer-events: none; }
.hero-id { display: flex; align-items: center; gap: 20px; min-width: 0; }
.hero-id img.logo { width: 84px; height: 84px; object-fit: contain; filter: drop-shadow(0 2px 2px rgba(20,18,10,.18)); }
.hero-name {
  font-family: var(--disp); font-weight: 700; font-size: 54px; line-height: .95;
  text-transform: uppercase; letter-spacing: .01em; margin: 0;
}
.hero-sub { font-family: var(--mono); font-size: 12px; color: var(--ink-2); margin-top: 8px; letter-spacing: .03em; }
.hero-sub .ap { background: var(--ink); color: var(--paper); padding: 1px 6px; margin-right: 8px; }

.hero-num { margin-left: auto; display: flex; gap: 26px; align-items: flex-end; flex-shrink: 0; }
.big-odds { text-align: right; }
.big-odds .v { font-family: var(--disp); font-weight: 700; font-size: 88px; line-height: .82; letter-spacing: -.01em; }
.big-odds .v em { font-style: normal; font-size: 40px; vertical-align: super; }
.big-odds .k { font-family: var(--mono); font-size: 10.5px; color: var(--ink-2); letter-spacing: .08em; text-transform: uppercase; margin-top: 7px; }
.mini-tiles { display: grid; grid-template-columns: repeat(3, auto); gap: 0; border-left: 1px solid var(--rule-2); }
.mini-tiles .tile { padding: 4px 18px; border-right: 1px solid var(--rule-2); text-align: center; align-self: end; }
.tile .v { font-family: var(--mono); font-weight: 600; font-size: 21px; }
.tile .k { font-family: var(--mono); font-size: 9px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .09em; margin-top: 2px; }

.obj-note {
  margin: 0; padding: 8px 0 0; font-family: var(--mono); font-size: 11px; color: var(--gold);
}

/* ---------- sections ---------- */
section { padding: 30px 0 8px; }
.sec-head { display: flex; align-items: baseline; gap: 14px; border-top: 3px solid var(--ink); padding-top: 8px; margin-bottom: 16px; }
.sec-head h2 { font-family: var(--disp); font-weight: 700; font-size: 26px; text-transform: uppercase; letter-spacing: .03em; margin: 0; }
.sec-head .sub { font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: .02em; }
.sec-head .right { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--ink-3); }

/* ---------- short list ---------- */
.short-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-flow: column; gap: 12px 16px; }
.scard {
  position: relative; display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--rule-2);
  padding: 13px 16px 13px 12px; min-height: 76px;
}
.scard.own { border: 1.5px solid var(--gold); background: linear-gradient(0deg, var(--gold-wash), var(--card) 65%); }
.scard .rk {
  font-family: var(--disp); font-weight: 700; font-size: 30px; color: var(--rule-2);
  width: 30px; text-align: center; flex-shrink: 0; line-height: 1;
}
.scard.own .rk { color: var(--gold); }
.faceoff { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.faceoff .fo { position: relative; width: 44px; height: 44px; display: grid; place-items: center; }
.faceoff .fo img { width: 38px; height: 38px; object-fit: contain; opacity: .38; filter: grayscale(60%); }
.faceoff .fo.pick img { opacity: 1; filter: none; }
.faceoff .fo.pick { outline: 2.5px solid var(--root); outline-offset: 1px; background: var(--root-wash); }
.faceoff .fo.pick.lean { outline-style: dashed; }
.faceoff .fo.pick.you { outline-color: var(--gold); background: var(--gold-wash); }
.faceoff .x { font-family: var(--mono); font-size: 9px; color: var(--ink-3); }
.scard .body { min-width: 0; flex: 1; }
.scard .line1 { font-family: var(--disp); font-size: 18.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.scard .line1 .dim { color: var(--ink-3); font-weight: 500; }
.scard .line2 { font-family: var(--mono); font-size: 11.5px; color: var(--ink-2); margin-top: 3px; }
.scard .nums { text-align: right; flex-shrink: 0; }
.scard .delta { font-family: var(--mono); font-weight: 600; font-size: 17px; }
.scard .shot { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-top: 3px; }
.delta.up { color: var(--root); } .delta.dn { color: var(--neg); }

.combined { margin-top: 12px; display: flex; gap: 16px; }
.combined .cbox {
  flex: 1; display: flex; align-items: baseline; gap: 12px;
  border: 1px dashed var(--rule-2); background: var(--paper-2); padding: 10px 16px;
}
.cbox .v { font-family: var(--mono); font-weight: 600; font-size: 21px; }
.cbox .pm { font-family: var(--mono); font-size: 10px; color: var(--ink-3); }
.cbox .k { font-family: var(--mono); font-size: 11.5px; color: var(--ink-2); margin-left: auto; text-align: right; }

/* ---------- weekend plan ---------- */
/* weekend calendar: one column per day, kickoffs in order top to bottom */
.cal {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(176px, 1fr);
  gap: 12px; overflow-x: auto; padding-bottom: 14px; align-items: start;
}
.cal-day { border-top: 3px solid var(--ink); min-width: 0; }
.cal-head { display: flex; align-items: baseline; gap: 7px; padding: 6px 2px 9px; }
.cal-head b { font-family: var(--disp); font-weight: 700; font-size: 21px; text-transform: uppercase; }
.cal-head span { font-family: var(--mono); font-size: 10px; color: var(--ink-2); }
.cal-head em { margin-left: auto; font-style: normal; font-family: var(--mono); font-size: 9.5px; color: var(--ink-3); }
.cg { background: var(--card); border: 1px solid var(--rule-2); margin-bottom: 8px; padding-bottom: 7px; }
.cg-time {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 9.5px; color: var(--ink-2);
  padding: 4px 7px; border-bottom: 1px solid var(--rule); margin-bottom: 3px;
}
.cg-time b { font-size: 11px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.cg-time span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cg-time em { margin-left: auto; font-style: normal; color: var(--ink-3); white-space: nowrap; }
.cg-row { display: flex; align-items: center; gap: 5px; padding: 3px 7px 0; min-width: 0; }
.cg-at { width: 9px; flex-shrink: 0; text-align: center; font-family: var(--mono); font-size: 9px; color: var(--ink-3); }
.cg-row img, .cg-row .mono-fallback { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; font-size: 8px; }
.cg-nm { font-family: var(--disp); font-weight: 600; font-size: 14.5px; text-transform: uppercase; letter-spacing: .01em; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cg-row .wp { flex-shrink: 0; font-size: 11px; }
.cg-row .wp i { display: none; }  /* blue already marks win probability; the label would crowd the names */
.cg-row.pick .cg-nm { color: var(--root); }
.cg-row.pick .cg-nm::after { content: " \25C2"; font-size: 11px; }
.cg.owng .cg-row.pick .cg-nm { color: #8a6700; }
.cg.gotd { border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--rule-2); }
.cg.gotd .cg-time { background: var(--ink); color: var(--paper-2); border-bottom: none; padding: 5px 9px; }
.cg.gotd .cg-time b { color: var(--paper); }
.cg.gotd .cg-time em { color: var(--paper-2); }
.cg.owng { border-color: var(--gold); }
.cg.owng.gotd .cg-time { background: var(--gold); color: #fff; }
.cg.owng.gotd .cg-time b, .cg.owng.gotd .cg-time em { color: #fff; }
.cg-why { font-family: var(--mono); font-size: 9.5px; color: var(--ink-2); line-height: 1.5; margin: 6px 9px 0; padding-top: 6px; border-top: 1px dashed var(--rule); }
.cal-more { font-family: var(--mono); font-size: 9.5px; color: var(--ink-3); padding: 2px 2px 8px; }

/* ---------- full slate table ---------- */
.filters { display: flex; gap: 6px; }
.fchip {
  font-family: var(--mono); font-size: 10px; letter-spacing: .04em;
  border: 1px solid var(--rule-2); background: transparent; color: var(--ink-2);
  padding: 3px 10px; cursor: pointer;
}
.fchip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
#slate-body { overflow-x: auto; }
table.slate { width: 100%; min-width: 760px; border-collapse: collapse; }
.slate th {
  white-space: nowrap;
  font-family: var(--mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-3); text-align: left; font-weight: 500;
  border-bottom: 2px solid var(--ink); padding: 4px 8px;
}
.slate th.r, .slate td.r { text-align: right; }
.slate td { padding: 7px 8px; border-bottom: 1px solid var(--rule); vertical-align: middle; }
.slate tr:hover td { background: var(--paper-2); }
.slate tr.ownrow td { background: var(--gold-wash); }
.wcell { width: 74px; }
.wbar { display: flex; align-items: center; gap: 7px; }
.wbar .t { height: 5px; background: var(--rule); width: 40px; position: relative; flex-shrink: 0; }
.wbar .t i { position: absolute; inset: 0 auto 0 0; background: var(--ink); }
.wbar .n { font-family: var(--mono); font-size: 11px; color: var(--ink-2); }
.match { display: flex; align-items: center; gap: 7px; min-width: 0; }
.match img { width: 21px; height: 21px; object-fit: contain; flex-shrink: 0; }
.match .at { font-family: var(--mono); font-size: 9px; color: var(--ink-3); }
.match .tn { font-family: var(--disp); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: .015em; white-space: nowrap; }
.match .tn.dim { color: var(--ink-3); font-weight: 500; }
.match .youtag { font-family: var(--mono); font-size: 8.5px; background: var(--gold); color: #fff; padding: 1px 5px; letter-spacing: .06em; }
.pcell { width: 128px; }
.pbar { display: flex; align-items: center; gap: 6px; }
.pbar .t { flex: 1; min-width: 36px; height: 7px; background: var(--rule); position: relative; }
.pbar .t i { position: absolute; top: 0; bottom: 0; left: 0; background: var(--field-blue); }
.pbar .t em { position: absolute; top: -2px; bottom: -2px; width: 2px; background: var(--ink); }
.pbar .n { font-family: var(--mono); font-size: 10.5px; color: var(--ink-2); width: 66px; text-align: right; }
.callcell { width: 150px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .05em;
  padding: 2.5px 9px; white-space: nowrap;
}
.chip.root { background: var(--root); color: #fff; }
.chip.lean { border: 1.5px dashed var(--root); color: var(--root); }
.chip.you  { background: var(--gold); color: #fff; }
.chip.none { color: var(--rule-2); font-weight: 400; padding-left: 0; }
.dcell { width: 62px; font-family: var(--mono); font-size: 12.5px; font-weight: 600; }
.bcell { width: 134px; font-family: var(--mono); font-size: 10.5px; color: var(--ink-2); white-space: nowrap; }
.bcell b { color: var(--ink); font-weight: 600; }
.slate-note { font-family: var(--mono); font-size: 11px; color: var(--ink-3); padding: 10px 2px; }
.showmore {
  width: 100%; margin-top: 2px; padding: 8px; cursor: pointer;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .05em;
  border: 1px dashed var(--rule-2); background: transparent; color: var(--ink-2);
}
.showmore:hover { background: var(--paper-2); }

/* ---------- sickos ---------- */
.sickos { background: var(--night); color: var(--night-ink); margin-top: 34px; padding: 34px 0 38px; position: relative; }
.sickos::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .14;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,.65) 3px 4px);
}
.sickos .wrap { position: relative; }
.sickos .sec-head { border-top-color: var(--acid); }
.sickos h2 { color: var(--acid); }
.sickos .sub { color: var(--night-mut); }
.sick-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.sick-card { background: var(--night-2); border: 1px solid #33302a; padding: 14px 16px; }
.sick-card .top { display: flex; align-items: center; gap: 10px; }
.sick-card .top img { width: 34px; height: 34px; object-fit: contain; }
.sick-card .over { font-family: var(--disp); font-weight: 600; font-size: 19px; text-transform: uppercase; line-height: 1.05; }
.sick-card .over .dim { color: var(--night-mut); font-weight: 500; }
.sick-card .odds { margin-left: auto; font-family: var(--mono); font-size: 16px; font-weight: 600; color: var(--acid); }
.sick-card .fall { display: flex; gap: 14px; margin-top: 11px; padding-top: 9px; border-top: 1px solid #2c2a24; font-family: var(--mono); font-size: 11px; color: var(--night-mut); }
.sick-card .fall b { font-size: 13px; font-weight: 600; display: block; margin-top: 2px; }
.sick-card .fall .dn b { color: #ef8c80; }
.sick-card .fall .up b { color: var(--acid); }
.sick-empty { font-family: var(--mono); font-size: 11px; color: var(--night-mut); }

/* ---------- lede (team summary) ---------- */
.lede {
  max-width: 74ch; font-size: 15.5px; line-height: 1.62; color: var(--ink);
  border-left: 4px solid var(--gold); padding: 4px 0 4px 18px; margin: 4px 0 0;
}
.lede::first-letter { font-family: var(--disp); font-weight: 700; font-size: 1.6em; }

/* ---------- kickoff time + network ---------- */
.kick { font-family: var(--mono); font-size: 11px; color: var(--ink-2); }
.kick .kw, .kick i { white-space: nowrap; }  /* time and network chip each hold together; the pair may wrap */
.kick i, .tvchip {
  font-style: normal; font-size: 9.5px; letter-spacing: .05em; margin-left: 6px;
  border: 1px solid var(--rule-2); padding: 0 5px; color: var(--ink-2); background: var(--card);
  display: inline-block; line-height: 1.55; vertical-align: 1px;
}
.tvchip { margin-left: 0; }
.sickos .kick { color: var(--night-mut); }
.sickos .kick i { border-color: #3a372f; background: transparent; color: var(--night-mut); }
.kcell { width: 122px; font-family: var(--mono); font-size: 11px; color: var(--ink-2); line-height: 1.5; }
.kcell .kt { white-space: nowrap; }
.kcell .tvn { font-size: 9.5px; color: var(--ink-3); letter-spacing: .04em; }

/* ---------- win-prob marker: blue = chance to win the game ---------- */
.wp { color: var(--field-blue); font-weight: 600; }
.wp i { font-style: normal; font-size: .78em; opacity: .85; margin-left: 3px; letter-spacing: .03em; }
.sickos .wp { color: #86b6ef; }
.pbar .n { color: var(--field-blue); }

/* ---------- adopt a team ---------- */
.adopt-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.acard {
  position: relative; display: flex; gap: 12px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--rule-2); border-top: 3px solid var(--ink);
  padding: 12px 14px; cursor: pointer; transition: transform .12s, box-shadow .12s;
}
.acard:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--rule-2); }
.acard > img, .acard > .mono-fallback { width: 40px; height: 40px; object-fit: contain; margin-top: 2px; }
.acard .nm { font-family: var(--disp); font-weight: 700; font-size: 21px; text-transform: uppercase; line-height: 1; padding-right: 96px; }
.acard .po { font-family: var(--mono); font-size: 11px; color: var(--ink-2); margin-top: 3px; }
.acard .gm { font-family: var(--mono); font-size: 11px; color: var(--ink-2); margin-top: 7px; }
.acard .wl { font-family: var(--mono); font-size: 11.5px; margin-top: 5px; }
.acard .wl .up { color: var(--root); } .acard .wl .dn { color: var(--neg); }
.acard .go { position: absolute; top: 13px; right: 14px; font-family: var(--mono); font-size: 10px; color: var(--ink-3); }

/* ---------- footer ---------- */
footer { border-top: 2px solid var(--ink); margin-top: 8px; padding: 16px 0 40px; }
footer .wrap { display: flex; gap: 24px; font-family: var(--mono); font-size: 10.5px; color: var(--ink-2); line-height: 1.7; }

/* ---------- finder overlay ---------- */
.finder {
  position: fixed; inset: 0; z-index: 100; overflow-y: auto;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(3px);
  display: none;
}
.finder.open { display: block; }
.finder-box { max-width: 880px; margin: 6vh auto 8vh; padding: 0 24px; }
.finder-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.finder-head h1 { font-family: var(--disp); font-weight: 700; font-size: 40px; text-transform: uppercase; margin: 0; }
.finder-head .close { margin-left: auto; font-family: var(--mono); font-size: 11px; cursor: pointer; border: 1px solid var(--rule-2); padding: 4px 10px; background: var(--card); }
.finder input {
  width: 100%; font-family: var(--disp); font-size: 30px; font-weight: 600;
  padding: 12px 18px; border: 2px solid var(--ink); background: var(--card);
  outline: none; text-transform: uppercase; letter-spacing: .02em;
  box-shadow: 5px 5px 0 var(--rule-2);
}
.finder input::placeholder { color: var(--rule-2); }
.fgroup { margin-top: 26px; }
.fgroup h3 {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); border-bottom: 2px solid var(--ink); padding-bottom: 5px; margin: 0 0 4px;
}
.trow {
  display: flex; align-items: center; gap: 12px; padding: 7px 6px;
  border-bottom: 1px solid var(--rule); cursor: pointer;
}
.trow:hover { background: var(--card); }
.trow img { width: 26px; height: 26px; object-fit: contain; }
.trow .ap { font-family: var(--mono); font-size: 10px; color: var(--paper); background: var(--ink); padding: 0 5px; min-width: 22px; text-align: center; }
.trow .nm { font-family: var(--disp); font-weight: 600; font-size: 19px; text-transform: uppercase; }
.trow .cf { font-family: var(--mono); font-size: 10px; color: var(--ink-3); }
.trow .pp { margin-left: auto; font-family: var(--mono); font-size: 12px; color: var(--ink-2); }
.trow .ppb { width: 90px; height: 5px; background: var(--rule); position: relative; }
.trow .ppb i { position: absolute; inset: 0 auto 0 0; background: var(--field-blue); }

.mono-fallback { display: grid; place-items: center; background: var(--paper-2); border-radius: 50%; color: var(--ink-2); font-family: var(--disp); font-weight: 700; }

.loading { padding: 80px 0; text-align: center; font-family: var(--mono); color: var(--ink-3); font-size: 12px; letter-spacing: .08em; }

@media (max-width: 900px) {
  .short-grid, .sick-grid, .adopt-grid { grid-template-columns: minmax(0, 1fr); }
  .short-grid { grid-auto-flow: row; grid-template-rows: none !important; }
  .kcell { display: none; }
  .hero .wrap { flex-direction: column; gap: 18px; }
  .hero-num { margin-left: 0; }
  .bcell { display: none; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .masthead .wrap { flex-wrap: wrap; row-gap: 4px; }
  .mast-meta { display: none; }          /* the footer carries the update stamp */
  .hero-name { font-size: 36px; }
  .hero-id { gap: 13px; }
  .hero-id img.logo { width: 58px; height: 58px; }
  .hero-num { width: 100%; margin-left: 0; flex-wrap: wrap; gap: 14px; align-items: flex-end; justify-content: space-between; }
  .big-odds .v { font-size: 62px; }
  .big-odds .v em { font-size: 28px; }
  .mini-tiles .tile { padding: 4px 11px; }
  .sec-head { flex-wrap: wrap; row-gap: 2px; }
  .sec-head .right { margin-left: 0; width: 100%; }
  .combined { flex-direction: column; gap: 8px; }
  .scard { padding: 11px 12px 11px 8px; gap: 10px; }
  .faceoff .fo { width: 38px; height: 38px; }
  .faceoff .fo img { width: 32px; height: 32px; }
  .trow .ppb { display: none; }
  .scard .line1 { white-space: normal; line-height: 1.08; }
}
