﻿:root {
  color-scheme: dark;
  --ink: #f7f2ed;
  --muted: #bdb7b2;
  --paper: #111111;
  --panel: #1a1a1a;
  --panel-strong: #24211f;
  --line: rgba(255, 255, 255, 0.13);
  --brand: #d71920;
  --brand-soft: #ff5148;
  --court: #0e6a57;
  --gold: #e3b04b;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 60px);
  background: rgba(5, 5, 5, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

nav a,
.nav-more summary {
  border-radius: 6px;
  padding: 9px 11px;
  color: #ded9d4;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
.nav-more summary:hover {
  background: rgba(215, 25, 32, 0.18);
  color: #fff;
}

nav a[aria-current="page"] {
  background: rgba(215, 25, 32, 0.24);
  color: #fff;
}

.nav-more {
  position: relative;
}

.nav-more summary {
  cursor: pointer;
  list-style: none;
}

.nav-more summary::-webkit-details-marker {
  display: none;
}

.nav-more summary::after {
  content: "v";
  padding-left: 6px;
}

.nav-more-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  display: grid;
  min-width: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.98);
  box-shadow: var(--shadow);
  padding: 8px;
}

.nav-more-menu a {
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(22px, 5vw, 56px);
  min-height: min(760px, calc(100vh - 76px));
  overflow: hidden;
  padding: clamp(48px, 8vw, 108px) clamp(16px, 4vw, 60px) clamp(34px, 5vw, 66px);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0) 32%),
    radial-gradient(circle at 85% 20%, rgba(215, 25, 32, 0.5), transparent 30%);
}

.hero-content,
.hero-preview {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3.8vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.hero-lead {
  max-width: 650px;
  color: #dfd8d2;
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  padding: 12px 16px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
}

.hero-preview,
.side-card,
.preview-card,
.report-item,
.team-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.94);
  box-shadow: var(--shadow);
}

.hero-preview {
  padding: 22px;
  border-top: 5px solid var(--brand);
}

.label,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.label {
  margin-bottom: 18px;
  background: var(--brand);
  color: #fff;
}

#hero-match {
  display: grid;
  gap: 6px;
}

#hero-match strong {
  font-size: 24px;
  line-height: 1.1;
}

#hero-match span,
#hero-match small {
  color: var(--muted);
}

.ticker {
  display: flex;
  gap: 10px;
  padding: 14px clamp(16px, 4vw, 60px);
  background: var(--brand);
  color: #fff;
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(34px, 5vw, 64px) clamp(16px, 4vw, 60px);
}

.main-column {
  display: grid;
  gap: 44px;
}

.section-heading {
  margin-bottom: 18px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.preview-card {
  padding: 20px;
}

.preview-card.featured {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.22), rgba(26, 26, 26, 0.96)),
    var(--panel);
}

.article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-card {
  display: block;
  min-height: 100%;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.94);
  color: inherit;
  font: inherit;
  text-align: left;
  padding: 20px;
  cursor: pointer;
}

.article-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(14, 106, 87, 0.26), rgba(26, 26, 26, 0.96)),
    var(--panel);
}

.article-card:hover,
.article-card:focus-visible,
.article-card.active {
  border-color: var(--brand);
  outline: none;
}

.article-card p {
  color: #d8d1cb;
}

.article-detail {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.94);
  padding: clamp(20px, 3vw, 30px);
}

.article-detail h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.article-detail-text {
  display: grid;
  gap: 14px;
  color: #d8d1cb;
}

.article-detail-text p {
  margin: 0;
  white-space: pre-line;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.badge.home {
  background: var(--brand);
  color: #fff;
}

.badge.away {
  background: var(--court);
  color: #fff;
}

.badge.warning {
  background: rgba(227, 176, 75, 0.18);
  color: #ffd782;
}

.badge.ok {
  background: rgba(14, 106, 87, 0.28);
  color: #87e6cf;
}

.match-date,
.muted,
.source-note {
  color: var(--muted);
}

.report-list {
  display: grid;
  gap: 12px;
}

.report-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  box-shadow: none;
}

.report-date {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--brand-soft);
}

.report-item ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #d8d1cb;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.team-item {
  padding: 18px;
  box-shadow: none;
}

.team-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-soft);
  font-weight: 900;
}

.team-item a,
.inline-card-link,
.section-link,
.team-detail-card a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.section-link {
  display: inline-flex;
  margin-top: 16px;
}

.sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  align-self: start;
  gap: 14px;
}

.side-card {
  padding: 20px;
  box-shadow: none;
}

.side-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.schedule-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.schedule-list div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.schedule-list dt {
  color: #fff;
  font-weight: 900;
}

.schedule-list dd {
  margin: 0;
  color: var(--muted);
}

.source-note {
  margin-bottom: 0;
  font-size: 13px;
}

.social-card {
  gap: 8px;
}

.social-card a,
.social-card span {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.sponsor-band {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 22px;
  padding: 34px clamp(16px, 4vw, 60px) 44px;
  background: #f4f1ec;
  color: #171412;
}

.sponsor-band-link {
  display: inline-flex;
  margin-top: 12px;
  color: #171412;
  font-weight: 900;
  text-decoration: none;
}

.sponsor-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sponsor-strip a {
  color: inherit;
  text-decoration: none;
}

.sponsor-strip figure {
  display: grid;
  place-items: center;
  min-height: 118px;
  margin: 0;
  border: 1px solid #d8d0c8;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.sponsor-strip img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 82px;
  object-fit: contain;
}

.sponsors-page-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(34px, 5vw, 64px) clamp(16px, 4vw, 60px);
  background: #f4f1ec;
}

.sponsor-detail-card {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 190px;
  border: 1px solid #d8d0c8;
  border-radius: 8px;
  background: #fff;
  color: #171412;
  padding: clamp(18px, 4vw, 34px);
  text-decoration: none;
}

.sponsor-detail-card img {
  display: block;
  width: 100%;
  max-width: 270px;
  max-height: 130px;
  object-fit: contain;
}

.sponsor-card-meta {
  display: grid;
  gap: 4px;
  width: 100%;
  color: #171412;
  text-align: center;
}

.sponsor-card-meta span,
.sponsor-card-meta p {
  margin: 0;
  color: #5f5650;
}

.news-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(34px, 5vw, 64px) clamp(16px, 4vw, 60px);
}

.news-main {
  display: grid;
  gap: 18px;
}

.news-feature-card,
.news-match-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.94);
  padding: clamp(20px, 4vw, 28px);
}

.news-feature-card h2,
.news-match-card h2 {
  margin: 12px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.news-feature-card a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.news-match-list {
  display: grid;
  gap: 12px;
}

.news-side-card {
  align-self: start;
  position: sticky;
  top: 96px;
}

.document-page-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(300px, 380px);
  gap: 14px;
  padding: clamp(34px, 5vw, 64px) clamp(16px, 4vw, 60px);
}

.document-list {
  display: contents;
}

.document-card {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.94);
  padding: clamp(20px, 4vw, 28px);
}

.document-card-muted {
  border-style: dashed;
}

.document-card h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
}

.document-card p {
  color: var(--muted);
}

.document-card a,
.document-source-card a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.document-missing {
  color: var(--muted);
  font-weight: 800;
}

.document-source-card {
  grid-row: span 2;
  align-self: start;
  position: sticky;
  top: 96px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(16px, 4vw, 60px);
  border-top: 1px solid var(--line);
  background: #050505;
  color: var(--muted);
}

.site-footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.legal-page {
  padding: clamp(34px, 6vw, 82px) clamp(16px, 4vw, 60px);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.14), transparent 36%),
    var(--paper);
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  margin-bottom: 28px;
  font-size: clamp(38px, 6vw, 68px);
}

.legal-content h2 {
  margin: 28px 0 10px;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-content p {
  color: #e4ded8;
}

.legal-content a {
  color: #fff;
  font-weight: 800;
}

.subpage-hero {
  padding: clamp(46px, 8vw, 92px) clamp(16px, 4vw, 60px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42)),
    linear-gradient(135deg, rgba(215, 25, 32, 0.34), transparent 42%),
    var(--panel-strong);
}

.subpage-hero h1 {
  margin-bottom: 16px;
}

.subpage-hero p {
  max-width: 720px;
  color: #dfd8d2;
  font-size: clamp(18px, 2vw, 22px);
}

.team-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(34px, 5vw, 64px) clamp(16px, 4vw, 60px);
}

.team-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.team-detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.94);
  padding: 20px;
}

.team-detail-card h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.team-source-card {
  align-self: start;
  position: sticky;
  top: 96px;
}

.venue-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(46px, 8vw, 92px) clamp(16px, 4vw, 60px);
}

.venue-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.venue-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.46)),
    linear-gradient(0deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0) 45%);
}

.venue-hero > div {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 760px;
}

.venue-hero p {
  color: #dfd8d2;
  font-size: clamp(18px, 2vw, 22px);
}

.club-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(34px, 5vw, 64px) clamp(16px, 4vw, 60px);
}

.club-main {
  display: grid;
  gap: 18px;
}

.club-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.94);
  padding: clamp(20px, 4vw, 32px);
}

.training-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.training-table article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.training-table strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 22px;
}

.training-table span {
  display: block;
  color: var(--brand-soft);
  font-weight: 900;
}

.training-table p {
  color: var(--muted);
}

.large-address {
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.18;
}

.club-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  align-self: start;
  gap: 14px;
}

.club-profile-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(34px, 5vw, 64px) clamp(16px, 4vw, 60px);
}

.club-profile-main {
  display: grid;
  gap: 18px;
}

.club-profile-card,
.club-values-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.94);
  padding: clamp(20px, 4vw, 32px);
}

.club-profile-card h2,
.club-values-card h2 {
  margin-bottom: 14px;
}

.club-profile-card p,
.club-profile-card li {
  color: #ded8d1;
}

.club-profile-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.values-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 900;
  padding: 14px;
}

.reports-page-shell {
  display: grid;
  gap: 18px;
  padding: clamp(34px, 5vw, 64px) clamp(16px, 4vw, 60px);
}

.reports-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.reports-filter {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(160px, 220px);
  gap: 10px;
}

.reports-filter label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.reports-filter input,
.reports-filter select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  padding: 9px 11px;
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.segmented-control button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 8px 12px;
}

.segmented-control button.active,
.segmented-control button:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.stat-card,
.report-detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.94);
}

.stat-card {
  display: grid;
  gap: 2px;
  padding: 16px;
}

.stat-card strong {
  color: var(--brand-soft);
  font-size: 32px;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 800;
}

.reports-page-list {
  display: grid;
  gap: 14px;
}

.report-detail-card {
  padding: 20px;
}

.published-report-card {
  display: grid;
  gap: 12px;
}

.published-report-card h2 {
  margin-bottom: 4px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.16;
}

.published-report-card p {
  margin-bottom: 0;
}

.published-report-image {
  width: calc(100% + 40px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: -20px -20px 4px;
  background: rgba(255, 255, 255, 0.04);
}

.report-open-button {
  justify-self: start;
  margin-top: 4px;
  border: 0;
}

.published-report-detail {
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.94);
  padding: clamp(20px, 4vw, 30px);
  box-shadow: var(--shadow);
}

.published-report-detail[hidden] {
  display: none;
}

.published-report-inline-detail {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.published-report-detail-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  margin: 16px 0 20px;
  background: rgba(255, 255, 255, 0.04);
}

.published-report-text {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  max-width: 860px;
  color: #e8e0d9;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65;
}

.published-report-text p {
  margin: 0;
}

.report-back-button {
  margin-bottom: 16px;
}

.report-detail-card h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.12;
}

.report-detail-card.status-ready {
  border-left: 5px solid var(--court);
}

.report-detail-card.status-review,
.report-detail-card.status-demo {
  border-left: 5px solid var(--gold);
}

.report-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.report-meta-grid span {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 12px;
}

.report-meta-grid strong {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero,
  .page-shell,
  .sponsor-band,
  .team-page-shell,
  .club-profile-shell,
  .club-page-shell,
  .news-page-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .sidebar {
    position: static;
  }

  .team-source-card {
    position: static;
  }

  .club-sidebar {
    position: static;
  }

  .news-side-card {
    position: static;
  }

  .reports-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .reports-filter {
    width: 100%;
  }

  .document-page-shell {
    grid-template-columns: 1fr;
  }

  .document-source-card {
    grid-row: auto;
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header,
  .ticker,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-more {
    width: 100%;
  }

  .nav-more summary {
    display: inline-flex;
  }

  .nav-more-menu {
    position: static;
    margin-top: 6px;
    width: 100%;
  }

  .preview-grid,
  .article-list,
  .team-grid,
  .team-overview,
  .reports-filter,
  .report-stats,
  .report-meta-grid,
  .values-grid,
  .training-table,
  .document-page-shell,
  .sponsors-page-shell,
  .sponsor-strip {
    grid-template-columns: 1fr;
  }

  .report-item,
  .schedule-list div {
    grid-template-columns: 1fr;
  }

  .article-card.featured {
    grid-column: auto;
  }
}
.linked-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.linked-card:hover,
.linked-card:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
  outline: none;
}

.team-item strong {
  color: #fff;
  font-weight: 900;
}
.match-detail-section {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.match-detail-section h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lineup-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.match-timeline {
  display: grid;
  gap: 10px;
}

.match-timeline-row {
  display: grid;
  grid-template-columns: minmax(90px, 0.6fr) minmax(180px, 1.4fr) minmax(120px, 1fr) minmax(120px, 0.7fr);
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.match-timeline-row p,
.match-timeline-row span,
.match-timeline-row small {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.match-timeline-row strong,
.match-timeline-row div span {
  display: block;
}

.match-timeline-row div span {
  color: var(--brand-soft);
  font-weight: 800;
}

@media (max-width: 760px) {
  .lineup-grid,
  .match-timeline-row {
    grid-template-columns: 1fr;
  }
}
