/*
  Hand-written and small. Read on a phone in a field, often in sunlight, by
  someone who has just taken their helmet off - so: big type, strong contrast,
  one column, and nothing that needs a second tap to reveal a lap time.

  One accent colour, soft cards instead of boxes, and a dark masthead so the
  page reads as a place rather than a spreadsheet.
*/

:root {
  color-scheme: light;
  --bg: #f4f5f7;
  --card: #ffffff;
  --ink: #0b1220;
  --ink-2: #475467;
  --ink-3: #7b8494;
  --line: #e6e8ec;
  --mast: #0f172a;
  --mast-ink: #ffffff;

  /* Validated against the light surface; see the dataviz palette. */
  --accent: #2a78d6;
  --accent-soft: #e8f0fb;
  --series-focus: #2a78d6;
  --series-winner: #eb6834;
  --series-field: #cfd3da;
  --warn: #eda100;
  --warn-soft: #fff5dd;

  --gold: #f0b429;  --gold-ink: #6b4a00;
  --silver: #c9ced6; --silver-ink: #3a4250;
  --bronze: #d99058; --bronze-ink: #5a3212;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 2px 8px rgba(16, 24, 40, .06);
  --gutter: 16px;
}

/*
  The dark palette, declared twice on purpose.

  Once under the phone's own preference, and once again for the switch in the
  masthead - which has to win in BOTH directions: dark on a phone set to
  light, and light on a phone set to dark. A palette that only lives inside
  the media query is exactly the bug where the switch does nothing.
*/
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #0b0f19;
    --card: #141b2b;
    --ink: #f3f4f6;
    --ink-2: #c3c8d2;
    --ink-3: #8b93a3;
    --line: #232c3d;
    --mast: #0b0f19;
    --accent: #3987e5;
    --accent-soft: #16223a;
    --series-focus: #3987e5;
    --series-winner: #d95926;
    --series-field: #3a4457;
    --warn: #c98500;
    --warn-soft: #2a2410;
    --gold: #f0b429;  --gold-ink: #2a1d00;
    --silver: #aeb5c1; --silver-ink: #141a24;
    --bronze: #d99058; --bronze-ink: #2b1606;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 2px 10px rgba(0, 0, 0, .35);
  }
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0b0f19;
    --card: #141b2b;
    --ink: #f3f4f6;
    --ink-2: #c3c8d2;
    --ink-3: #8b93a3;
    --line: #232c3d;
    --mast: #0b0f19;
    --accent: #3987e5;
    --accent-soft: #16223a;
    --series-focus: #3987e5;
    --series-winner: #d95926;
    --series-field: #3a4457;
    --warn: #c98500;
    --warn-soft: #2a2410;
    --gold: #f0b429;  --gold-ink: #2a1d00;
    --silver: #aeb5c1; --silver-ink: #141a24;
    --bronze: #d99058; --bronze-ink: #2b1606;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 2px 10px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.5 "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI Variable", "Segoe UI", Roboto, sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  padding-block: 24px 64px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- masthead ---- */

.masthead { background: var(--mast); color: var(--mast-ink); }
.masthead .wrap { padding-block: 16px; display: flex; align-items: center; gap: 12px; }
.masthead a.brand {
  color: var(--mast-ink); font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; min-width: 0;
}
.masthead a.brand .name { overflow: hidden; text-overflow: ellipsis; }
.masthead a.brand:hover { text-decoration: none; opacity: .9; }
.masthead .flag { width: 26px; height: 26px; flex: none; }
.masthead .tag { color: #94a3b8; font-size: 13px; margin-left: auto; }

/* ---- type ---- */

h1 { font-size: 30px; line-height: 1.15; margin: 0 0 6px; letter-spacing: -0.025em; font-weight: 750; }
h2 { font-size: 19px; margin: 36px 0 12px; letter-spacing: -0.015em; font-weight: 700; }
h3 { font-size: 15px; margin: 20px 0 8px; color: var(--ink-2); }
.subtitle { color: var(--ink-2); margin: 0 0 22px; font-size: 15px; }
.crumb { margin: 0 0 8px; font-size: 14px; }
.crumb a { color: var(--ink-3); }

.badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 12px; font-weight: 650; vertical-align: middle; letter-spacing: .01em;
}

/* ---- tiles ---- */

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 20px 0; }
.tile {
  background: var(--card); border-radius: var(--radius); padding: 14px 16px;
  box-shadow: var(--shadow);
}
.tile .k { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; font-weight: 650; }
.tile .v { font-size: 26px; font-weight: 750; margin-top: 4px; font-variant-numeric: tabular-nums; letter-spacing: -0.03em; line-height: 1.1; }
.tile .n { font-size: 13px; color: var(--ink-2); margin-top: 4px; }

/* ---- results table ---- */

.results { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-top: 8px; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table { border-collapse: collapse; width: 100%; font-variant-numeric: tabular-nums; }
th, td { text-align: left; padding: 12px 12px; white-space: nowrap; vertical-align: middle; }
th { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); font-weight: 650; border-bottom: 1px solid var(--line); }
td { border-top: 1px solid var(--line); }
tr:first-child td { border-top: 0; }
td.num, th.num { text-align: right; }
td.pos, th.pos { width: 1%; padding-right: 4px; }
tbody tr:hover td { background: color-mix(in srgb, var(--accent) 5%, transparent); }
tr.is-out td { color: var(--ink-3); }
tr.is-out .rider { color: var(--ink-2); }
td .rider { white-space: normal; font-weight: 650; color: var(--ink); font-size: 16px; }
td .rider:hover { color: var(--accent); text-decoration: none; }
td .rider .no { color: var(--ink-3); font-weight: 600; margin-right: 6px; font-variant-numeric: tabular-nums; }
td .sub { display: block; font-size: 12.5px; color: var(--ink-3); margin-top: 2px; white-space: normal; }
/* Best lap and gap belong together; the class line may wrap, this one may not.
   Display is left to the .narrow-only rules below, which decide when it shows. */
td .sub.narrow-only { white-space: nowrap; }
td.time { font-weight: 600; }

.posbadge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 34px; padding: 0 8px; border-radius: 999px;
  background: var(--bg); color: var(--ink); font-weight: 750; font-size: 15px;
}
.posbadge.p1 { background: var(--gold); color: var(--gold-ink); }
.posbadge.p2 { background: var(--silver); color: var(--silver-ink); }
.posbadge.p3 { background: var(--bronze); color: var(--bronze-ink); }
.posbadge.out { background: transparent; color: var(--ink-3); font-size: 12px; letter-spacing: .04em; }

/* ---- search ---- */

.finder { position: sticky; top: 0; z-index: 5; background: var(--bg); padding: 10px 0 12px; }
.finder input {
  width: 100%; padding: 13px 16px 13px 44px; font-size: 16px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--card) no-repeat 16px center / 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b8494' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E");
  color: var(--ink); box-shadow: var(--shadow);
}
.finder input::placeholder { color: var(--ink-3); }
.finder input:focus { outline: 2px solid var(--accent); outline-offset: -1px; border-color: transparent; }

/* ---- chips ---- */

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 16px; }
.chip {
  padding: 7px 14px; border-radius: 999px; background: var(--card);
  color: var(--ink-2); font-size: 14px; font-weight: 600; box-shadow: var(--shadow);
}
.chip:hover { text-decoration: none; color: var(--ink); }
.chip[aria-current="page"] { background: var(--ink); color: var(--bg); }

/* ---- race day cards ---- */

.meeting { margin: 24px 0; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.meeting-head { padding: 16px 18px 12px; border-bottom: 1px solid var(--line); }
.meeting-head h2 { margin: 0; font-size: 18px; }
.meeting-head .meta { color: var(--ink-3); font-size: 13px; margin-top: 3px; }
.session-row {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  padding: 14px 18px; border-top: 1px solid var(--line); color: var(--ink);
}
.session-row:first-of-type { border-top: 0; }
.session-row:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); text-decoration: none; }
.session-row .title { font-weight: 650; font-size: 16px; }
.session-row .meta { color: var(--ink-3); font-size: 13px; white-space: nowrap; }
.session-row .go { color: var(--ink-3); margin-left: 4px; }

/* ---- generic card ---- */

.card { background: var(--card); border-radius: var(--radius); padding: 16px 18px; margin: 12px 0; box-shadow: var(--shadow); }
.card a.title { font-weight: 700; color: var(--ink); font-size: 17px; }
.card .meta { color: var(--ink-3); font-size: 13px; margin-top: 2px; }

/* ---- conditions ---- */

details.conditions { margin: 20px 0; border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); }
details.conditions summary { padding: 14px 18px; cursor: pointer; font-weight: 650; list-style: none; display: flex; align-items: center; }
details.conditions summary::-webkit-details-marker { display: none; }
details.conditions summary::after { content: "+"; margin-left: auto; color: var(--ink-3); font-size: 20px; line-height: 1; }
details.conditions[open] summary::after { content: "–"; }
details.conditions dl { margin: 0; padding: 0 18px 16px; }
details.conditions dt { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-top: 12px; font-weight: 650; }
details.conditions dd { margin: 2px 0 0; color: var(--ink-2); font-size: 15px; }

/* ---- notes ---- */

.note {
  background: var(--warn-soft); border-left: 4px solid var(--warn);
  padding: 12px 16px; margin: 16px 0; color: var(--ink-2); font-size: 14px;
  border-radius: var(--radius-sm);
}

/* ---- charts ---- */

figure.chart { margin: 8px 0 24px; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px 12px 10px; }
figure.chart svg { width: 100%; height: auto; display: block; }
figure.chart figcaption { font-size: 13px; color: var(--ink-3); margin: 8px 6px 0; }

.lap-line { fill: none; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.lap-line.field { stroke: var(--series-field); }
.lap-line.winner { stroke: var(--series-winner); stroke-width: 2.5; }
.lap-line.focus { stroke: var(--series-focus); stroke-width: 3.5; }
.lap-label { font-size: 11px; font-weight: 700; dominant-baseline: middle; }
.lap-label.winner { fill: var(--series-winner); }
.lap-label.focus { fill: var(--series-focus); }
.axis { font-size: 11px; fill: var(--ink-3); }
.gridline { stroke: var(--line); stroke-width: 1; }
.bar { fill: var(--series-focus); }
.bar.outlier { fill: var(--series-field); }
.best-line { stroke: var(--series-winner); stroke-width: 1.5; stroke-dasharray: 4 3; }

/* ---- map ---- */

#map { height: 360px; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--card); }
.map-meta { color: var(--ink-3); font-size: 13px; margin-top: 8px; }

/* ---- footer ---- */

footer.site { margin-top: 48px; color: var(--ink-3); font-size: 13px; }
footer.site .wrap { padding-block: 20px 28px; border-top: 1px solid var(--line); }
footer.site a { color: var(--ink-2); }

.empty { color: var(--ink-3); padding: 48px 0; text-align: center; }

/* ---- small screens ---- */

/* Specific enough to beat the td .sub rule above. */
td .sub.narrow-only, .narrow-only { display: none; }

@media (max-width: 560px) {
  .opt, .opt-inline { display: none; }
  td .sub.narrow-only, .narrow-only { display: block; }
}

@media (max-width: 480px) {
  h1 { font-size: 25px; }
  th, td { padding: 11px 5px; }
  th { font-size: 10px; letter-spacing: .05em; }
  td.pos, th.pos { padding-left: 8px; }
  /* The name is what people scan for; the figures can be a size smaller. */
  td .rider { font-size: 15px; }
  td.num, td.time { font-size: 14px; }
  td.time { font-weight: 650; }
  .tile .v { font-size: 22px; }
  .tiles { gap: 10px; }
  .session-row { padding: 13px 14px; }
  .meeting-head { padding: 14px 14px 10px; }
}

/* =====================================================================
   The hero band, the podium, and motion.
   ===================================================================== */

.hero {
  color: #fff;
  background:
    radial-gradient(900px 380px at 12% -20%, rgba(42, 120, 214, .55), transparent 60%),
    radial-gradient(700px 320px at 95% 0%, rgba(235, 104, 52, .35), transparent 60%),
    linear-gradient(180deg, #111a2e 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}
/* A faint chequer running off the right edge - the one flourish. */
.hero::after {
  content: ""; position: absolute; right: -40px; top: -20px; width: 260px; height: 140%;
  background:
    linear-gradient(45deg, rgba(255,255,255,.06) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.06) 75%),
    linear-gradient(45deg, rgba(255,255,255,.06) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.06) 75%);
  background-size: 28px 28px; background-position: 0 0, 14px 14px;
  transform: skewX(-14deg); pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 50%);
          mask-image: linear-gradient(90deg, transparent, #000 50%);
}
.hero .wrap { padding-block: 30px 28px; position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: 34px; margin: 4px 0 8px; }
.hero .eyebrow { margin: 0; color: #a9b4c9; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hero .hero-sub { margin: 0; color: #c7cfdd; font-size: 15.5px; max-width: 52ch; }
.hero .hero-badges { margin: 0; display: flex; gap: 6px; flex-wrap: wrap; }
.hero .badge { background: rgba(255,255,255,.12); color: #fff; }
.hero .badge.muted { background: transparent; color: #a9b4c9; border: 1px solid rgba(255,255,255,.18); }
.hero .crumb { margin: 0 0 10px; }
.hero .crumb a { color: #a9b4c9; }
.hero .crumb a:hover { color: #fff; text-decoration: none; }
.hero.home .wrap { padding-block: 40px 36px; }
.hero.home h1 { font-size: 40px; }

/* rider hero */
.rider-head { display: flex; align-items: center; gap: 16px; }
.rider-head h1 { margin: 0 0 2px; }
.rider-head .eyebrow { text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 15px; }
.bignum {
  font-size: 52px; font-weight: 800; letter-spacing: -0.05em; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.85);
  font-variant-numeric: tabular-nums; flex: none;
}
.posbadge.big { min-width: 48px; height: 48px; font-size: 20px; margin-left: auto; flex: none; box-shadow: 0 6px 18px rgba(0,0,0,.3); }
.posbadge.big.out { border: 1px solid rgba(255,255,255,.25); color: #c7cfdd; }
.hero .posbadge:not(.p1):not(.p2):not(.p3):not(.out) { background: rgba(255,255,255,.14); color: #fff; }

/* podium */
.podium {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; align-items: end;
}
.podium .step {
  display: flex; flex-direction: column; gap: 6px; padding: 14px 14px 12px; border-radius: 14px;
  color: #fff; text-decoration: none; position: relative; overflow: hidden;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: transform .18s ease, background .18s ease;
}
.podium .step:hover { transform: translateY(-2px); background: rgba(255,255,255,.13); text-decoration: none; }
.podium .step.s1 { order: 2; padding-top: 26px; padding-bottom: 16px; background: linear-gradient(160deg, rgba(240,180,41,.28), rgba(255,255,255,.06)); border-color: rgba(240,180,41,.45); }
.podium .step.s2 { order: 1; }
.podium .step.s3 { order: 3; }
.podium .medal {
  width: 30px; height: 30px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.podium .s1 .medal { background: var(--gold); color: var(--gold-ink); box-shadow: 0 0 0 4px rgba(240,180,41,.25); }
.podium .s2 .medal { background: var(--silver); color: var(--silver-ink); }
.podium .s3 .medal { background: var(--bronze); color: var(--bronze-ink); }
.podium .who { font-weight: 700; font-size: 15px; line-height: 1.25; }
.podium .who .no { color: #a9b4c9; font-weight: 600; margin-right: 5px; }
.podium .how { font-size: 13px; color: #c7cfdd; font-variant-numeric: tabular-nums; }
.podium .s1 .who { font-size: 17px; }

/* the glowing tile */
.tile.glow {
  background: linear-gradient(135deg, var(--accent), #6c3fd6);
  color: #fff; box-shadow: 0 10px 30px rgba(42, 120, 214, .35);
}
.tile.glow .k, .tile.glow .n { color: rgba(255,255,255,.82); }

/* On a phone the tiles pair up; the fastest lap takes a whole row. */
@media (max-width: 560px) { .tile.wide { grid-column: 1 / -1; } }

/* pull the first block of content up over the hero's bottom edge */
main.wrap { padding-top: 18px; }
.tiles.rise { margin-top: -6px; }

/* motion: a soft rise as things arrive, staggered by --i */
@media (prefers-reduced-motion: no-preference) {
  .rise { animation: rise .55s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(var(--i, 0) * 70ms); }
  .podium .step { animation: rise .6s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(140ms + var(--i, 0) * 90ms); }
  .hero h1 { animation: rise .5s ease-out both; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 27px; }
  .hero.home h1 { font-size: 32px; }
  .podium { gap: 8px; margin-top: 18px; }
  .podium .step { padding: 12px 10px 10px; border-radius: 12px; }
  .podium .s1 .who { font-size: 15px; }
  .podium .who { font-size: 13.5px; }
  .podium .how { font-size: 12px; }
  .bignum { font-size: 40px; }
  .posbadge.big { min-width: 42px; height: 42px; font-size: 17px; }
}

/* =====================================================================
   Switches (language, theme, chart highlight)
   ===================================================================== */

.masthead .switches { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.seg {
  display: inline-flex; padding: 3px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
}
.seg a {
  padding: 4px 10px; border-radius: 999px; color: #a9b4c9; font-size: 12.5px; font-weight: 700;
  line-height: 1.2; text-decoration: none; min-width: 30px; text-align: center;
}
.seg a:hover { color: #fff; text-decoration: none; }
.seg a[aria-current="true"] { background: #fff; color: #0f172a; }

/* The same control on a light surface. */
.seg.light { background: var(--card); border-color: var(--line); box-shadow: var(--shadow); }
.seg.light a { color: var(--ink-2); font-size: 13px; padding: 6px 12px; }
.seg.light a:hover { color: var(--ink); }
.seg.light a[aria-current="true"] { background: var(--ink); color: var(--bg); }

.section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.section-head h2 { margin: 0; }

/* Coloured chart lines carry their own colour inline; these are the fallbacks. */
.lap-line.picked { stroke-width: 2.5; }
.lap-line.focus { stroke-width: 3.5; }

@media (max-width: 560px) {
  .masthead .tag { display: none; }
  .masthead a.brand { font-size: 15px; gap: 8px; flex: 1; }
  .masthead .switches { gap: 5px; flex: none; }
  .seg { padding: 2px; }
  .seg a { padding: 4px 6px; min-width: 22px; font-size: 11.5px; }
  .section-head { margin-top: 30px; }
  .seg.light { width: 100%; justify-content: space-between; }
  .seg.light a { flex: 1; padding: 7px 4px; font-size: 12.5px; }
}

/* =====================================================================
   Live timing
   ===================================================================== */

.live-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 999px;
  background: #16a34a; color: #fff; font-size: 12px; font-weight: 750; letter-spacing: .04em;
  text-transform: uppercase; white-space: nowrap;
}
.live-pill.stale, .updated.stale { background: var(--warn); color: #1a1200; }
.live-pill.done, .live-pill[data-state="finished"] { background: var(--ink-3); color: #fff; }
.updated { margin: 8px 0 0; color: #a9b4c9; font-size: 13px; }
.updated.stale { display: inline-block; padding: 2px 8px; border-radius: 6px; }

.live-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.live-head h1 { margin: 2px 0 0; }
.clock { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.clock-value { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; color: #fff; }
.clock-sub { font-size: 13px; color: #a9b4c9; }

.live-card { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.live-card:hover { text-decoration: none; background: color-mix(in srgb, var(--accent) 5%, var(--card)); }
.live-card .title { font-weight: 700; font-size: 17px; flex: 1; }
.live-card .meta { color: var(--ink-3); font-size: 13px; white-space: nowrap; }

.note.stale { border-left-color: var(--warn); }

.feed { list-style: none; margin: 0; padding: 0; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.feed li { display: flex; gap: 10px; align-items: baseline; padding: 10px 16px; border-top: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.feed li:first-child { border-top: 0; }
.feed .no { color: var(--ink-3); font-weight: 600; }
.feed .lap { color: var(--ink-3); font-size: 13px; margin-left: auto; }
.feed .t { font-weight: 650; min-width: 64px; text-align: right; }

@media (max-width: 560px) {
  .clock { align-items: flex-start; }
  .clock-value { font-size: 32px; }
  .live-card .title { font-size: 15px; }
  .live-card .meta { white-space: normal; }
}
