:root {
  --tone-blue: #034694;
  --tone-blue-deep: #022f66;
  --tone-gold: #dba111;
  --tone-cream: #f7f5f0;
  --tone-paper: #ffffff;
  --tone-ink: #1a1d24;
  --tone-muted: #5c6470;
  --tone-line: #e2ddd3;
  --tone-soft: #edeae3;
  --tone-live: #c0392b;
  --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-serif: "Fraunces", "Georgia", serif;
  --shell: min(1140px, calc(100% - 2.5rem));
  --radius: 10px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 16px rgba(26, 29, 36, 0.07);
  --shadow-hover: 0 8px 28px rgba(26, 29, 36, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--tone-ink);
  background: var(--tone-cream);
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--tone-blue); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--tone-blue-deep); }

.shell {
  width: var(--shell);
  max-width: 100%;
  margin-inline: auto;
}

/* masthead */
.mast-top {
  background: var(--tone-blue-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mast-top .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  gap: 1rem;
}

.mast-tag { opacity: 0.9; }

.mast-league {
  font-weight: 600;
  color: var(--tone-gold);
}

.mast {
  background: var(--tone-paper);
  border-bottom: 3px solid var(--tone-blue);
  box-shadow: var(--shadow-card);
}

.mast-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 0 0.75rem;
  gap: 0.85rem;
}

.mast-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--tone-ink);
}

.mast-brand:hover { color: var(--tone-blue); }

.mast-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.mast-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--tone-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.mast-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
}

.mast-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  padding-bottom: 0.75rem;
}

.mast-nav a {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--tone-muted);
  border: 1px solid transparent;
}

.mast-nav a:hover {
  color: var(--tone-blue);
  background: var(--tone-soft);
}

.mast-nav a.is-on {
  color: #fff;
  background: var(--tone-blue);
  border-color: var(--tone-blue);
}

/* footer */
.foot {
  margin-top: 3rem;
  background: var(--tone-ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.5rem 0 1.5rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.foot h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #fff;
}

.foot p, .foot a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.72); }
.foot a:hover { color: var(--tone-gold); }

.foot-links { display: flex; flex-direction: column; gap: 0.4rem; }

.foot-base {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.foot-base a { color: rgba(255, 255, 255, 0.65); margin-left: 1rem; }
.foot-base a:first-child { margin-left: 0; }

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.social-row a:hover { background: var(--tone-blue); color: #fff; }
.social-row svg { width: 16px; height: 16px; fill: currentColor; }

/* home ribbon */
.fixture-ribbon {
  background: var(--tone-blue);
  color: #fff;
  padding: 0.85rem 0;
}

.fixture-ribbon .shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ribbon-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tone-gold);
}

/* fixture line */
.fixture-line {
  border-radius: var(--radius);
  background: var(--tone-paper);
  border: 1px solid var(--tone-line);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.fixture-line a {
  display: block;
  padding: 0.85rem 1rem;
  color: inherit;
}

.fixture-line:hover {
  border-color: var(--tone-blue);
  box-shadow: var(--shadow-hover);
}

.fixture-line.is-focus {
  border-color: var(--tone-blue);
  background: linear-gradient(135deg, rgba(3, 70, 148, 0.06), transparent);
}

.fixture-line.is-live { border-color: var(--tone-live); }

.fixture-line time {
  display: block;
  font-size: 0.78rem;
  color: var(--tone-muted);
  margin-bottom: 0.35rem;
}

.fixture-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.fixture-side {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.fixture-side--away { justify-content: flex-end; text-align: right; }

.fixture-side img { width: 22px; height: 22px; flex-shrink: 0; }
.fixture-side span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.fixture-mid {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--tone-blue);
  padding: 0 0.25rem;
}

.fixture-mid--tbd { font-size: 0.85rem; color: var(--tone-muted); }

.badge-live {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-pill);
  background: var(--tone-live);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fixture-ribbon .fixture-line {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.fixture-ribbon .fixture-line a { color: #fff; }
.fixture-ribbon .fixture-line time { color: rgba(255, 255, 255, 0.7); }
.fixture-ribbon .fixture-mid { color: var(--tone-gold); }

/* home lead */
.lead-banner {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--tone-line);
}

.lead-banner .shell {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lead-emblem {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.lead-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tone-blue);
}

.lead-banner h1,
.lead-banner .page-h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
}

.lead-sub { margin: 0.35rem 0 0; color: var(--tone-muted); }

/* feed */
.home-body { padding: 2rem 0 1rem; }

.home-body .shell {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

.feed-head {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--tone-blue);
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feed-item {
  display: flex;
  flex-direction: column;
  background: var(--tone-paper);
  border: 1px solid var(--tone-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feed-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.feed-item--lead {
  grid-column: 1 / -1;
  flex-direction: row;
}

.feed-thumb {
  aspect-ratio: 16 / 10;
  background: var(--tone-soft);
  overflow: hidden;
}

.feed-item--lead .feed-thumb {
  width: 48%;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 220px;
}

.feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-thumb--empty {
  background: linear-gradient(135deg, var(--tone-soft), var(--tone-line));
}

.feed-copy { padding: 1rem 1.1rem 1.1rem; flex: 1; }

.feed-item--lead .feed-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}

.feed-copy h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.35;
}

.feed-item--lead .feed-copy h3 { font-size: 1.45rem; }

.feed-copy h3 a { color: var(--tone-ink); }
.feed-copy h3 a:hover { color: var(--tone-blue); }

.feed-copy p {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--tone-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.78rem;
  color: var(--tone-muted);
}

.feed-source { font-weight: 600; color: var(--tone-blue); }

.side-stack { display: flex; flex-direction: column; gap: 1.25rem; }

.side-box {
  background: var(--tone-paper);
  border: 1px solid var(--tone-line);
  border-radius: var(--radius);
  padding: 1rem;
}

.side-box h3 {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tone-blue);
}

.side-box-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.side-box-head h3 { margin: 0; }

.side-box-head a {
  font-size: 0.78rem;
  font-weight: 600;
}

.hint-empty {
  margin: 0;
  font-size: 0.88rem;
  color: var(--tone-muted);
}

/* league board */
.league-board {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.league-board th,
.league-board td {
  padding: 0.45rem 0.35rem;
  text-align: center;
  border-bottom: 1px solid var(--tone-line);
}

.league-board th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tone-muted);
  background: var(--tone-soft);
}

.league-board th:nth-child(2),
.league-board td:nth-child(2) { text-align: left; }

.league-board tr.is-focus td {
  background: rgba(3, 70, 148, 0.08);
  font-weight: 600;
}

.team-pair {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.team-pair img { width: 18px; height: 18px; }

/* page banner */
.page-banner {
  padding: 2rem 0 1.25rem;
  border-bottom: 1px solid var(--tone-line);
  margin-bottom: 1.5rem;
}

.page-banner h1,
.page-banner .page-h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.page-banner p { margin: 0.35rem 0 0; color: var(--tone-muted); }

.trail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  color: var(--tone-muted);
}

.trail a { color: var(--tone-blue); }

/* content blocks */
.block { padding: 0 0 2rem; }

.block .fixture-line { margin-bottom: 0.75rem; }

.block h2 {
  margin: 1.5rem 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.block h2:first-child { margin-top: 0; }

/* roster */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.roster-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.75rem;
  background: var(--tone-paper);
  border: 1px solid var(--tone-line);
  border-radius: var(--radius);
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.roster-tile:hover {
  border-color: var(--tone-blue);
  box-shadow: var(--shadow-card);
  color: var(--tone-blue);
}

.roster-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--tone-soft);
  margin-bottom: 0.65rem;
}

.roster-photo--empty { background: linear-gradient(135deg, var(--tone-soft), var(--tone-line)); }

.roster-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--tone-gold);
  margin-bottom: 0.2rem;
}

.roster-role { font-size: 0.8rem; color: var(--tone-muted); }
.roster-nation { font-size: 0.75rem; color: var(--tone-muted); margin-top: 0.15rem; }

/* profile layouts */
.profile-split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.profile-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.profile-emblem {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.profile-emblem--round {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.profile-emblem--empty {
  background: var(--tone-soft);
  border-radius: 50%;
}

.profile-facts p { margin: 0.35rem 0; }

.spec-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--tone-line);
}

.spec-list dt { font-weight: 600; color: var(--tone-muted); font-size: 0.88rem; }
.spec-list dd { margin: 0; }

.btn-ghost {
  display: inline-block;
  margin-top: 1rem;
  margin-right: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--tone-blue);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--tone-blue);
}

.btn-ghost:hover {
  background: var(--tone-blue);
  color: #fff;
}

/* article */
.post-hero {
  padding: 2rem 0 1rem;
  max-width: 720px;
}

.post-hero h1,
.post-hero .page-h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--tone-muted);
}

.post-meta .feed-source { font-size: inherit; }

.share-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0 1.25rem;
  border-bottom: 1px solid var(--tone-line);
  margin-bottom: 1.5rem;
}

.share-bar-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tone-muted);
}

.share-btns { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--tone-line);
  border-radius: var(--radius-pill);
  background: var(--tone-paper);
  color: var(--tone-muted);
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
}

.share-btn:hover { border-color: var(--tone-blue); color: var(--tone-blue); }
.share-btn svg { width: 14px; height: 14px; fill: currentColor; }
.share-btn.is-done { border-color: #2e7d32; color: #2e7d32; }

.post-body { max-width: 720px; padding-bottom: 2rem; }

.post-cover {
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.post-cover img { width: 100%; }

.post-body p { font-size: 1.05rem; line-height: 1.75; }

.post-source {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--tone-soft);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--tone-line);
}

.post-nav a {
  padding: 1rem;
  border: 1px solid var(--tone-line);
  border-radius: var(--radius);
  color: inherit;
}

.post-nav a:hover { border-color: var(--tone-blue); }

.post-nav-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tone-muted);
  margin-bottom: 0.35rem;
}

.post-nav--next { text-align: right; }

.more-feed {
  padding: 2rem 0;
  border-top: 1px solid var(--tone-line);
}

.more-feed h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.more-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--tone-line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  background: var(--tone-paper);
}

.more-card:hover { box-shadow: var(--shadow-card); }

.more-thumb { aspect-ratio: 4/3; background: var(--tone-soft); overflow: hidden; }
.more-thumb img { width: 100%; height: 100%; object-fit: cover; }

.more-body { padding: 0.75rem; }
.more-body h3 { margin: 0 0 0.35rem; font-size: 0.88rem; line-height: 1.35; }
.more-body time { font-size: 0.75rem; color: var(--tone-muted); }

/* match detail */
.score-display {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--tone-paper);
  border: 1px solid var(--tone-line);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.score-display img { margin: 0 auto 0.5rem; width: 72px; height: 72px; }

.score-big {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--tone-blue);
}

.score-state {
  display: block;
  font-size: 0.82rem;
  color: var(--tone-muted);
  margin-top: 0.25rem;
}

.scorer-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  color: var(--tone-muted);
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-fact {
  padding: 1rem;
  background: var(--tone-soft);
  border-radius: var(--radius);
}

.detail-fact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tone-muted);
  margin-bottom: 0.25rem;
}

.detail-panel {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--tone-paper);
  border: 1px solid var(--tone-line);
  border-radius: var(--radius);
}

.detail-panel h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.stat-track { margin-bottom: 0.75rem; }

.stat-labels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.stat-labels span:first-child { text-align: left; }
.stat-labels span:last-child { text-align: right; }
.stat-labels span:nth-child(2) { color: var(--tone-muted); font-size: 0.75rem; }

.stat-bar {
  display: flex;
  height: 6px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--tone-line);
}

.stat-bar-home { background: var(--tone-blue); }
.stat-bar-away { background: var(--tone-gold); }

.lineup-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lineup-box h3 { margin: 0; font-size: 1rem; }

.lineup-form {
  font-size: 0.78rem;
  color: var(--tone-muted);
  margin-left: 0.5rem;
}

.lineup-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.lineup-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--tone-line);
  font-size: 0.88rem;
}

.shirt-no {
  width: 1.5rem;
  font-weight: 700;
  color: var(--tone-blue);
  font-size: 0.82rem;
}

.pos-tag {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--tone-muted);
}

.subs-head {
  margin: 1rem 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tone-muted);
}

/* guide / prose */
.guide {
  padding: 2.5rem 0 3rem;
  background: var(--tone-paper);
  border-top: 1px solid var(--tone-line);
  margin-top: 1rem;
}

.guide-head { margin-bottom: 1.5rem; }

.guide-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

.guide-kicker {
  margin: 0;
  font-size: 1.05rem;
  color: var(--tone-muted);
  max-width: 68ch;
}

.guide-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.guide-panel {
  padding: 1.25rem;
  background: var(--tone-cream);
  border-radius: var(--radius);
  border: 1px solid var(--tone-line);
}

.guide-panel--highlight {
  border-color: var(--tone-blue);
  background: rgba(3, 70, 148, 0.04);
}

.guide-panel--full { margin-bottom: 1.5rem; }

.guide-panel h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--tone-blue-deep);
}

.guide-panel p { margin: 0 0 0.75rem; font-size: 0.95rem; }
.guide-panel p:last-child { margin-bottom: 0; }

/* static */
.legal-page {
  padding: 2rem 0 3rem;
  max-width: 680px;
}

.legal-page h1,
.legal-page .page-h1 {
  font-family: var(--font-serif);
  margin: 0 0 1rem;
}

.legal-page p { margin: 0 0 1rem; color: var(--tone-muted); }

/* responsive */
@media (max-width: 900px) {
  .home-body .shell { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: 1fr; }
  .feed-item--lead { flex-direction: column; }
  .feed-item--lead .feed-thumb { width: 100%; min-height: 180px; }
  .foot-grid { grid-template-columns: 1fr; }
  .fixture-ribbon .shell { grid-template-columns: 1fr; }
  .guide-split { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-facts { grid-template-columns: 1fr; }
  .lineup-pair { grid-template-columns: 1fr; }
  .profile-split { grid-template-columns: 1fr; }
  .score-display { grid-template-columns: 1fr; gap: 0.75rem; }
}

@media (max-width: 560px) {
  .mast-nav a { padding: 0.4rem 0.7rem; font-size: 0.82rem; }
  .more-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav--next { text-align: left; }
}
