
:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --text: #17202a;
  --muted: #5f6b76;
  --line: #dfe5ea;
  --accent: #075ec7;
  --accent-dark: #064a9b;
  --max: 1080px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--accent); }
.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.site-header { background: #0d1b2a; color: #fff; border-bottom: 1px solid #24364a; }
.header-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: #fff; font-size: 1.15rem; font-weight: 800; text-decoration: none; }
.site-header nav { display: flex; gap: 18px; }
.site-header nav a { color: #e8f1fb; text-decoration: none; }
.hero { padding: 72px 0 48px; background: linear-gradient(180deg, #eaf3ff, var(--bg)); }
.hero h1, .match-card h1 {
  max-width: 900px; margin: 8px 0 18px; font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08; letter-spacing: -0.04em;
}
.eyebrow {
  margin: 0; color: var(--accent-dark); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
}
.lead { max-width: 780px; color: #344454; font-size: 1.14rem; }
.breadcrumb { display: flex; gap: 8px; padding: 24px 0 0; color: var(--muted); font-size: 0.92rem; }
.match-card, .listing, .prose {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 12px 35px rgba(22, 37, 53, 0.06);
}
.match-card { margin: 22px 0 64px; padding: clamp(24px, 5vw, 54px); }
.match-card section { margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--line); }
.match-card h2 { font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.25; }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 32px 0; }
.facts div { padding: 18px; background: #f7f9fb; border: 1px solid var(--line); border-radius: 12px; }
.facts span, .facts strong { display: block; }
.facts span { margin-bottom: 5px; color: var(--muted); font-size: 0.82rem; }
.button {
  display: inline-block; margin-top: 12px; padding: 12px 18px; background: var(--accent);
  color: #fff; border-radius: 9px; font-weight: 700; text-decoration: none;
}
.button:hover { background: var(--accent-dark); }
.pending { padding: 16px 18px; background: #fff8e6; border: 1px solid #f0d899; border-radius: 10px; }
details { padding: 14px 0; border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 750; }
.updated { margin-top: 38px; color: var(--muted); font-size: 0.9rem; }
.list-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; padding: 28px 0 72px; }
.listing { padding: 26px; }
.listing h2 { margin: 8px 0; line-height: 1.25; }
.listing h2 a { color: var(--text); text-decoration: none; }
.listing h2 a:hover { color: var(--accent); }
.prose { max-width: 820px; margin-top: 42px; padding: clamp(24px, 5vw, 48px); }
footer { padding: 28px 0; background: #0d1b2a; color: #c7d3df; }
@media (max-width: 760px) {
  .facts, .list-grid { grid-template-columns: 1fr; }
  .header-inner { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .site-header nav { flex-wrap: wrap; }
}
