:root {
  --bg: #f4f1ea;
  --paper: #fffdf7;
  --ink: #1d1d1b;
  --muted: #666;
  --line: #d7d0c2;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--ink);
}
.site-header {
  border-bottom: 4px solid var(--ink);
  background: var(--paper);
  padding: 28px 20px;
  text-align: center;
}
h1 { font-size: clamp(2rem, 6vw, 4.5rem); margin: 0; line-height: .95; }
h2, h3 { margin-top: 0; }
.kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; color: var(--muted); margin: 0 0 8px; }
.subtitle { color: var(--muted); margin-bottom: 0; }
.layout { display: grid; grid-template-columns: 260px 1fr; gap: 20px; max-width: 1180px; margin: 20px auto; padding: 0 16px; }
.sidebar, .card, .article-card { background: var(--paper); border: 1px solid var(--line); padding: 18px; box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.league-list { display: grid; gap: 8px; }
.league-button { width: 100%; text-align: left; padding: 10px; background: transparent; border: 1px solid var(--line); cursor: pointer; font-family: inherit; }
.league-button.active, .league-button:hover { background: var(--ink); color: white; }
.content { display: grid; gap: 20px; }
.toolbar { display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.toolbar select { padding: 8px; }
.article-card h2 { font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1; }
.teaser { font-size: 1.15rem; font-weight: bold; }
.grid-two { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
th, td { padding: 8px; border-bottom: 1px solid var(--line); text-align: left; }
th { background: #eee8dc; }
.match-list { display: grid; gap: 8px; }
.match { display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px solid var(--line); padding: 8px 0; }
.score { font-weight: bold; white-space: nowrap; }
.footer { max-width: 1180px; margin: 20px auto; padding: 16px; color: var(--muted); font-size: .9rem; }
@media (max-width: 820px) {
  .layout, .grid-two { grid-template-columns: 1fr; }
  .toolbar { align-items: stretch; flex-direction: column; }
}
