@import "tailwindcss" source(none);
@source "../src";

/* -------------------------------------------------------------------------- */
/* LiigaV — Veikkausliiga-tilastoportaali.                                     */
/* Editorial/analytics look: midnight blue surfaces, coral accents, mustard    */
/* highlights, Anton display + Figtree body.                                   */
/* -------------------------------------------------------------------------- */

:root {
  /* Allsvenskan-inspired palette: deep navy surfaces, yellow accent,
     magenta leader highlight, alternating blue rows. */
  --night-950: #050d2b;
  --night-900: #0a1750;
  --night-800: #0f2168;
  --night-700: #172d80;
  --night-600: #24408f;
  --paper: #ffffff;
  --paper-2: #f2f5fc;
  --bone: #e6ecf7;
  --ink: #ffffff;              /* default on-dark text */
  --ink-2: #e8ecf7;
  --ink-dark: #0a1750;         /* for light surfaces */
  --muted: #9fb0dc;
  --coral: #ffd200;            /* yellow accent (primary highlight) */
  --coral-dark: #e5bd00;
  --mustard: #ffd200;
  --sky: #3d5cc7;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: #d7ddea;
  --leader: #e91e63;
  --danger: #e91e63;

  --font-display: "Anton", "Archivo Black", Impact, sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-logo: "Teko", "Anton", "Archivo Black", Impact, sans-serif;

  --radius: 4px;
  --radius-sm: 2px;
  --shadow-tile: 0 1px 0 rgba(0, 0, 0, 0.2), 0 20px 40px -28px rgba(0, 0, 0, 0.55);
}


* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--night-950);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; cursor: pointer !important; }
a:hover { color: var(--coral); }

a[href], button, [role="button"], .pill, .club-tile { cursor: pointer !important; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.015em;
  line-height: 1.02;
  margin: 0 0 0.7rem;
  color: var(--ink);
  font-weight: 400;
  text-transform: uppercase;
}
h1 { font-size: clamp(3.4rem, 7vw, 6rem); }
h2 { font-size: clamp(2.3rem, 3.8vw, 3.4rem); }
h3 { font-size: 1.55rem; letter-spacing: 0.02em; }


p { margin: 0 0 1rem; }

.tabular { font-variant-numeric: tabular-nums; }

/* ---------------- Layout ---------------- */

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 720px) { .wrap { padding: 0 1.1rem; } }

.band {
  padding: 4rem 0;
  position: relative;
}
.band + .band {
  border-top: 1px dashed var(--line);
}

.band-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.band-head .tag {
  font-family: var(--font-display);
  font-size: 1.44rem;
  letter-spacing: 0.14em;
  color: var(--coral);
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 1px solid var(--coral);
  border-radius: 999px;
  display: inline-block;
  width: max-content;
}
.band-head p {
  color: var(--muted);
  max-width: 52ch;
  margin: 0;
  font-size: 1.1rem;
}
.band-head h2 {
  margin: 0.8rem 0 0;
}
@media (max-width: 720px) {
  .band-head { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ---------------- Topbar (header) ---------------- */

.topbar {
  background: var(--night-900);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--night-700);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 1.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--coral);
  border-radius: 3px;
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px var(--night-900), 0 0 0 4px var(--mustard);
}
.topnav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  font-size: 1.17rem;
}
.topnav a {
  color: rgba(244, 242, 236, 0.72);
  font-weight: 500;
  font-size: 1.11rem;
  padding: 0.3rem 0;
  position: relative;
}
.topnav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.topnav a:hover, .topnav a.active { color: var(--paper); }
.topnav a:hover::after, .topnav a.active::after { transform: scaleX(1); }

.nav-toggle, .nav-close {
  display: none;
  background: transparent;
  border: 0;
  color: var(--paper);
  font-size: 1.95rem;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .topnav {
    position: fixed;
    inset: 0;
    background: var(--night-950);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    font-size: 1.56rem;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 100;
  }
  .topnav.is-open { transform: translateX(0); }
  .topnav a { font-size: 1.43rem; }
  .nav-close {
    display: inline-flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.6rem;
  }
}

/* ---------------- Endbar (footer) ---------------- */

.endbar {
  background: var(--night-950);
  color: rgba(244, 242, 236, 0.72);
  padding: 3rem 0 2.5rem;
  margin-top: 5rem;
}
.endbar .wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 2rem;
  align-items: start;
}
.endbar .logo { color: var(--paper); }
.endbar nav { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 1.17rem; }
.endbar a { color: rgba(244, 242, 236, 0.72); }
.endbar a:hover { color: var(--coral); }
.endbar small { color: rgba(244, 242, 236, 0.5); }
@media (max-width: 720px) {
  .endbar .wrap { grid-template-columns: 1fr; }
}

/* ---------------- Stage (main hero) ---------------- */

.stage {
  background:
    radial-gradient(1100px 500px at 100% -10%, color-mix(in oklab, var(--coral) 25%, transparent), transparent 60%),
    radial-gradient(900px 500px at -5% 110%, color-mix(in oklab, var(--sky) 45%, transparent), transparent 60%),
    linear-gradient(180deg, var(--night-900) 0%, var(--night-950) 100%);
  color: var(--ink);

  position: relative;
  overflow: hidden;
  padding: 4rem 0 4.5rem;
  border-bottom: 1px solid var(--line);
}
.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 210, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 210, 0, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
}

.stage .wrap { position: relative; }

.stage-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.stage-kicker {
  font-family: var(--font-display);
  font-size: 1.56rem;
  letter-spacing: 0.15em;
  color: var(--mustard);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.stage-kicker::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--mustard);
}
.stage h1 { color: var(--ink); margin: 0; }
.stage h2 { color: var(--ink); }
.stage .intro {
  color: var(--ink-2);
  font-size: 1.2rem;
  max-width: 52ch;
}

.stage-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.stage-grid > * { min-width: 0; }
@media (max-width: 980px) {
  .stage-grid { grid-template-columns: 1fr; }
}

.stamp {
  margin-top: 0.9rem;
  color: rgba(244, 242, 236, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.stamp-dark {
  color: var(--muted);
  font-size: 0.85rem;
}

.mini-title {
  font-family: var(--font-display);
  font-size: 1.56rem;
  letter-spacing: 0.12em;
  color: var(--mustard);
  text-transform: uppercase;
  margin: 2rem 0 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.mini-title::before {
  content: "◆";
  color: var(--coral);
  font-size: 0.9rem;
}

/* ---------------- Standings (ranktable) ---------------- */

.standings {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--night-900);
  color: var(--ink);
  font-size: 1rem;
  border: 1px solid var(--night-700);
  border-radius: var(--radius);
  overflow: hidden;
}
.standings th, .standings td {
  padding: 0.85rem 0.7rem;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--ink);
}
.standings th:nth-child(2), .standings td:nth-child(2) { text-align: left; }
.standings th {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--night-900);
  text-transform: uppercase;
  font-size: 0.9rem;
  background: var(--coral);
  border-bottom: 0;
}
.standings tbody tr:nth-child(even) { background: var(--night-800); }
.standings tbody tr:nth-child(odd) { background: var(--night-900); }
.standings tbody tr:first-child {
  background: var(--leader);
  color: #fff;
}
.standings tbody tr:first-child td { color: #fff; }
.standings tbody tr:hover { background: var(--night-700); }
.standings tbody tr:first-child:hover { background: color-mix(in oklab, var(--leader) 85%, black); }
.standings td.points {
  color: var(--coral);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.standings tbody tr:first-child td.points { color: #fff; }
.standings .team-cell a {
  color: var(--ink);
  border-bottom: 1px dotted transparent;
  font-weight: 600;
}
.standings .team-cell a:hover { border-bottom-color: var(--coral); color: var(--coral); }
.standings tbody tr:first-child .team-cell a { color: #fff; }


.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
}

/* ---------------- Fixture list (hero right column) ---------------- */

.match-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--line);
}
.match-list li {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--bone);
  font-size: 0.94rem;
}
.match-list time {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--mustard);
  font-weight: 400;
}
.match-list .teams { color: var(--ink); }
.match-list .result {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--night-900);
  background: var(--coral);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.match-list .kickoff {
  color: var(--muted);
  font-size: 0.85rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

/* ---------------- Grids ---------------- */

.quad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .quad-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .quad-grid { grid-template-columns: 1fr; } }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-3 { grid-template-columns: 1fr; } }

/* ---------------- Club tile (team card) ---------------- */

.club-tile {
  background: var(--night-900);
  border: 1px solid var(--night-700);
  border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.15rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.35rem 1rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.club-tile .club-badge { grid-row: 1 / span 2; align-self: center; }
.club-tile h3 { margin: 0; font-size: 1.15rem; align-self: end; color: var(--ink); }
.club-tile .tile-cta {
  font-size: 0.78rem;
  color: var(--coral);
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  align-self: start;
}
.club-tile:hover {
  transform: translateY(-3px);
  border-color: var(--coral);
  box-shadow: var(--shadow-tile);
  background: var(--night-800);
}
.club-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--coral);
  color: var(--night-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  transform: rotate(-3deg);
}


/* ---------------- Match card (fixture tile) ---------------- */

.match-card {
  background: var(--night-900);
  border: 1px solid var(--night-700);
  border-left: 3px solid var(--coral);
  border-radius: var(--radius);
  padding: 1rem 1.1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  color: var(--ink);
}
.match-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-tile);
  border-color: var(--coral);
}
.match-card .meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-family: var(--font-display);
}
.match-card .fixture {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}
.match-card .side {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.match-card .side.home { text-align: right; }
.match-card .score {
  font-family: var(--font-display);
  font-size: 1.35rem;
  background: var(--coral);
  color: var(--night-900);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
  min-width: 3.5rem;
  text-align: center;
  font-weight: 700;
}
.match-card .score.upcoming {
  background: transparent;
  color: var(--muted);
  border: 1px dashed var(--night-700);
  font-weight: 500;
}


/* ---------------- Player list (top rated) ---------------- */

.player-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.player-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 1rem;
  background: var(--night-900);
  border: 1px solid var(--night-700);

  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.player-row:hover { transform: translateX(3px); border-color: var(--coral); }
.player-row .rank {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--coral);
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.player-row .name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.player-row .team { font-size: 0.85rem; color: var(--muted); }
.player-row .rating {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--night-900);
  background: var(--mustard);
  padding: 0.2rem 0.75rem;
  border-radius: 8px;
}

/* ---------------- Buttons / pills ---------------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--coral);
  color: var(--night-900);
  padding: 1.1rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.39rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--coral);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.pill:hover {
  background: #fff;
  color: var(--night-900);
  border-color: #fff;
  transform: translateY(-1px);
}
.pill-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--coral);
}
.pill-ghost:hover {
  background: var(--coral);
  color: var(--night-900);
  border-color: var(--coral);
}


.cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.jump-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

/* ---------------- Page stage (secondary hero) ---------------- */

.page-stage {
  background:
    radial-gradient(1000px 400px at 100% -20%, color-mix(in oklab, var(--coral) 20%, transparent), transparent 60%),
    linear-gradient(180deg, var(--night-900) 0%, var(--night-950) 100%);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--night-700);
  position: relative;
}
.page-stage::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  width: 60px;
  height: 4px;
  background: var(--coral);
  border-radius: 2px;
}
.page-stage h1 { color: var(--ink); }
.page-stage .intro {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-top: 0.75rem;
}


/* ---------------- Long copy / prose ---------------- */

.long-copy {
  max-width: 66ch;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--ink-2);
}
.long-copy p { margin: 0 0 1.35rem; }
.long-copy a { color: var(--coral); border-bottom: 1px solid currentColor; }

/* ---------------- Duo grid (two-column matches section) ---------------- */
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.duo-grid > * { min-width: 0; }
@media (max-width: 900px) {
  .duo-grid { grid-template-columns: 1fr; }
}

/* ---------------- Squad ---------------- */

.squad-group { margin-bottom: 2.5rem; }
.squad-role {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

/* ---------------- Live-refresh compat helpers ---------------- */
/* live-refresh.js emits legacy hooks; keep them functional but re-skinned.   */
.fixture { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.side { font-family: var(--font-display); font-weight: 600; }
.side.home { text-align: right; }
.score { font-variant-numeric: tabular-nums; }
.tabular { font-variant-numeric: tabular-nums; }

/* ---------------- Matches data table ---------------- */

.matches-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--night-900);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  border: 1px solid var(--night-700);
  border-radius: var(--radius);
  overflow: hidden;
}
.matches-table th,
.matches-table td {
  padding: 0.85rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}
.matches-table th {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--night-900);
  background: var(--coral);
  border-bottom: 0;
}
.matches-table tbody tr:nth-child(even) { background: var(--night-800); }
.matches-table tbody tr:nth-child(odd) { background: var(--night-900); }
.matches-table tbody tr:hover { background: var(--night-700); }
.matches-table tbody tr:last-child td { border-bottom: 0; }
.matches-table td.mt-date {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: var(--ink);
  white-space: nowrap;
}
.matches-table td.mt-date small {
  display: block;
  color: var(--muted);
  font-family: var(--font-body);
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 0.15rem;
  text-transform: none;
}
.matches-table td.mt-home { text-align: right; font-weight: 600; }
.matches-table td.mt-away { text-align: left; font-weight: 600; }
.matches-table td.mt-score {
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.matches-table .score-chip {
  display: inline-block;
  background: var(--coral);
  color: var(--night-900);
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius-sm);
  font-variant-numeric: tabular-nums;
  min-width: 3.2rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.matches-table .score-chip.upcoming {
  background: transparent;
  color: var(--coral);
  border: 1px solid var(--coral);
  font-size: 0.85rem;
  font-weight: 500;
}
.matches-table .side {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.matches-table td.mt-status {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}
.matches-table td.mt-status.played { color: var(--coral); }


@media (max-width: 640px) {
  .matches-table th:nth-child(5),
  .matches-table td.mt-status { display: none; }
  .matches-table th, .matches-table td { padding: 0.6rem 0.5rem; font-size: 0.88rem; }
}

/* Team hero: current league position and points */
.team-standing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.85rem;
  margin-top: 1.1rem;
  padding: 0.7rem 1rem;
  border: 1px solid color-mix(in oklab, var(--coral) 35%, transparent);
  border-radius: 999px;
  background: color-mix(in oklab, var(--coral) 10%, transparent);
  width: fit-content;
  max-width: 100%;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.team-standing-item { white-space: nowrap; }
.team-standing-item strong {
  font-family: "Teko", "Figtree", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--coral);
  margin-right: 0.15rem;
}
.team-standing-sep { opacity: 0.4; }
