@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tektur";
  src: url("/fonts/tektur-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tektur";
  src: url("/fonts/tektur-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tektur";
  src: url("/fonts/tektur-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: light;
  --blue: #0054a6;
  --navy: #1b3f7a;
  --light-blue: #3e7fc4;
  --silver: #b8bbc0;
  --grey: #8f9399;
  --ink: #142a43;
  --muted: #657382;
  --line: #d7e0e9;
  --paper: #f4f7fb;
  --white: #fff;
  --body-font: Inter, Arial, Helvetica, sans-serif;
  --display-font: Tektur, Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  line-height: 1.45;
}
body::before {
  content: "";
  display: block;
  height: 10px;
  background: linear-gradient(90deg, var(--blue) 0 38%, #fff 38% 48%, var(--navy) 48% 78%, var(--silver) 78% 100%);
}
a { color: inherit; }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #f3b53f;
  outline-offset: 3px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 247, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display-font);
  text-decoration: none;
  min-width: max-content;
}
.crest {
  width: 52px;
  height: 62px;
  object-fit: contain;
}
.brand strong {
  display: block;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}
.brand span {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}
.nav-links a {
  padding: 8px 7px;
  border-radius: 6px;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--blue);
  color: #fff;
}
.hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(110deg, rgba(27, 63, 122, 0.95), rgba(0, 84, 166, 0.82) 47%, rgba(20, 42, 67, 0.38)),
    url("/images/wrfc-crest.png") right 7vw center / min(360px, 46vw) no-repeat,
    var(--navy);
  color: #fff;
}
.hero-inner {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 64px 0 50px;
}
.eyebrow {
  margin: 0 0 10px;
  color: #dfe8f4;
  font-family: var(--display-font);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--display-font);
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}
.hero p {
  max-width: 660px;
  margin: 18px 0 0;
  color: #edf4fb;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
}
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--blue);
  color: #fff;
  font-family: var(--display-font);
  font-weight: 900;
  text-decoration: none;
}
.button.secondary {
  background: #fff;
  color: var(--blue);
}
.button.dark {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}
.button:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.page {
  width: min(1180px, calc(100% - 28px));
  margin: 34px auto 56px;
}
.band { padding: 36px 0; }
.section-head {
  display: flex;
  gap: 14px;
  align-items: start;
  justify-content: space-between;
}
.section-title {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.intro {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.05rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.panel,
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(20, 42, 67, 0.08);
}
.card h2,
.panel h2,
.card h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: var(--display-font);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}
.card p,
.panel p {
  margin: 0 0 12px;
  color: var(--muted);
}
.link-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.link-list a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--navy);
  font-family: var(--display-font);
  font-weight: 900;
  text-decoration: none;
}
.link-list a:hover { border-color: var(--blue); background: #f7fbff; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}
#team-output .two-col {
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.9fr);
}
.team-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}
.team-tabs button {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 11px;
  background: #fff;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: inherit;
  font-weight: 900;
  cursor: pointer;
}
.team-tabs button.active,
.team-tabs button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.fixture-list { display: grid; gap: 10px; }
.home-fixtures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.home-team-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(20, 42, 67, 0.08);
}
.home-fixtures h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}
.home-fixture-card {
  display: grid;
  grid-template-columns: 64px 92px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  text-decoration: none;
  min-width: 0;
}
.home-fixture-card:hover {
  border-color: var(--blue);
  background: #f7fbff;
}
.home-fixture-matchup {
  display: grid;
  grid-template-columns: 40px auto 40px;
  gap: 6px;
  align-items: center;
}
.home-fixture-matchup .team-crest {
  width: 40px;
  height: 40px;
  font-size: 0.68rem;
}
.home-fixture-matchup .score {
  min-width: 42px;
  padding: 6px;
}
.fixture-type {
  border-radius: 6px;
  padding: 5px 7px;
  background: var(--navy);
  color: #fff;
  font-family: var(--display-font);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.fixture {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  min-width: 0;
}
.fixture-date {
  color: var(--blue);
  font-family: var(--display-font);
  font-weight: 900;
  text-transform: uppercase;
}
.fixture-teams {
  min-width: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-weight: 900;
  overflow-wrap: anywhere;
}
.fixture-meta {
  color: var(--muted);
  font-size: 0.9rem;
}
.fixture-matchup {
  display: grid;
  grid-template-columns: 56px auto 56px;
  gap: 9px;
  align-items: center;
}
.team-crest {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f5f8fc;
  color: var(--blue);
  font-family: var(--display-font);
  font-size: 0.8rem;
  font-weight: 900;
}
.team-crest img {
  position: absolute;
  inset: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  object-fit: contain;
}
.score {
  min-width: 54px;
  border-radius: 6px;
  padding: 7px 8px;
  background: #eef5fc;
  color: var(--navy);
  font-family: var(--display-font);
  font-weight: 900;
  text-align: center;
}
.table-wrap {
  max-width: 100%;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  font-size: 0.92rem;
}
.league-table {
  min-width: 540px;
  table-layout: fixed;
}
.league-table .rank-col { width: 42px; }
.league-table .team-col { width: 180px; }
.league-table .stat-col { width: 44px; }
th, td {
  border-bottom: 1px solid var(--line);
  padding: 9px 8px;
  text-align: left;
  overflow-wrap: normal;
  word-break: normal;
}
th {
  color: var(--navy);
  font-family: var(--display-font);
  font-weight: 900;
  text-transform: uppercase;
}
td.numeric,
th.numeric { text-align: right; }
.team-cell {
  white-space: nowrap;
}
.rfu-source {
  margin: 12px 0 0;
}
.rfu-source a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  white-space: nowrap;
}
.official-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.official {
  min-height: 230px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(0, 84, 166, 0), rgba(27, 63, 122, 0.92)),
    #dce6f2;
  color: #fff;
}
.photo-placeholder {
  width: 72px;
  height: 72px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.28);
}
.official h2 { color: #fff; }
.site-footer { background: var(--navy); color: #fff; }
.footer-inner {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.footer-inner a { color: #fff; font-weight: 700; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(280px, 1.5fr) minmax(220px, 1fr);
  gap: 28px;
  align-items: start;
}
.footer-grid strong,
.footer-grid span,
.footer-grid > div > a { display: block; }
.footer-grid strong {
  margin-bottom: 6px;
  font-family: var(--display-font);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.footer-grid span { color: #d9e7f7; }
.footer-grid > div > a { margin-top: 8px; color: #fff; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.footer-links a { color: #fff; font-weight: 700; }
.footer-actions { justify-content: flex-end; }
.sponsor-section {
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}
.sponsor-inner {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0;
}
.sponsor-inner > p {
  margin: 0 0 14px;
  font-family: var(--display-font);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
  gap: 18px;
  align-items: center;
}
.sponsor-logos img {
  display: block;
  width: 100%;
  height: 62px;
  object-fit: contain;
}
.muted { color: var(--muted); }
.update-note {
  margin: 22px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}
.empty {
  border: 1px dashed var(--silver);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  color: var(--muted);
}
.photo-hero {
  min-height: clamp(470px, 46vw, 620px);
  background:
    linear-gradient(105deg, rgba(20, 42, 67, 0.82), rgba(0, 84, 166, 0.56) 48%, rgba(20, 42, 67, 0.22)),
    url("/images/legacy/main-hero.webp") center 42% / cover no-repeat,
    var(--navy);
}
.media-card,
.media-stack,
.media-banner,
.gallery-grid figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 42, 67, 0.08);
}
.media-card img,
.media-stack img,
.media-banner img,
.gallery-grid img,
.news-card img,
.card img {
  display: block;
  width: 100%;
  height: auto;
}
.media-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.media-card div { padding: 18px; }
.media-stack { display: grid; gap: 0; }
.media-stack img { aspect-ratio: 16 / 10; object-fit: cover; }
.media-banner { margin-top: 18px; }
.media-banner img { max-height: 420px; object-fit: cover; }
.gallery-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 20px;
  align-items: center;
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  max-width: 360px;
  justify-self: end;
}
.gallery-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}
.story-flow p { color: var(--ink); }
details { margin-top: 14px; }
summary {
  cursor: pointer;
  color: var(--blue);
  font-family: var(--display-font);
  font-weight: 900;
}
.meta { color: var(--muted); font-size: 0.86rem; font-weight: 700; }
.page-eyebrow { margin-bottom: 8px; color: var(--blue); }
.archive-toolbar { margin: 20px 0 24px; }
.news-label,
.membership-type {
  margin: 0 0 8px !important;
  color: var(--light-blue) !important;
  font-family: var(--display-font);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-grid,
.news-list { display: grid; gap: 16px; }
.news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.news-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.news-card > div {
  position: relative;
  z-index: 1;
  min-width: 0;
  background: #fff;
}
.news-card > div:only-child { grid-column: 1 / -1; }
.news-card img {
  height: 100%;
  min-height: 180px;
  max-height: 280px;
  object-fit: cover;
  border-radius: 6px;
}
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.membership-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
}
.membership-card .button { align-self: flex-start; margin-top: auto; }
.membership-price { color: var(--ink) !important; }
.membership-price strong {
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 2rem;
  font-weight: 900;
}
.membership-note { font-size: 0.9rem; }
.breadcrumb { margin: 0 0 14px; color: var(--muted); font-weight: 700; }
.breadcrumb a { color: var(--blue); }
.article-page { max-width: 920px; }
.article-body { padding: clamp(20px, 5vw, 48px); }
.article-body .meta { margin-bottom: 24px; }
.article-hero {
  display: block;
  width: 100%;
  max-height: 540px;
  margin: 0 0 28px;
  border-radius: 8px;
  object-fit: cover;
}
.article-figure { margin: 0 0 28px; }
.article-figure .article-hero { margin-bottom: 8px; }
.article-figure figcaption {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}
.article-figure figcaption a { color: var(--blue); }
.article-body .story-flow { font-size: 1.04rem; line-height: 1.7; }
.article-body .story-flow p { margin: 0 0 1.15em; }
.archive-note {
  margin: 0 0 24px;
  border-left: 5px solid var(--light-blue);
  border-radius: 6px;
  padding: 14px 16px;
  background: #eef6ff;
}
.archive-note p { margin: 0 0 8px !important; }
.archive-note p:last-child { margin-bottom: 0 !important; }
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 960px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: #fff;
}
.faq-list summary {
  padding: 15px 28px 15px 0;
  color: var(--navy);
  font-family: var(--display-font);
  font-weight: 900;
  cursor: pointer;
}
.faq-list details[open] summary { color: var(--blue); }
.faq-list p { margin: 0 0 16px; }
.error-page {
  display: grid;
  min-height: 56vh;
  max-width: 820px;
  align-items: center;
}
.error-panel { padding: clamp(28px, 7vw, 72px); }
.error-code {
  margin: 0 0 8px;
  color: var(--light-blue);
  font-family: var(--display-font);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
}
.policy-copy { max-width: 1000px; }
.policy-copy .panel { padding: clamp(18px, 4vw, 42px); }
.policy-copy table { margin: 20px 0; }
.policy-index { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.policy-index a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}
.policy-index a:hover { border-color: var(--blue); color: var(--blue); }
.policy-list { display: grid; gap: 14px; margin-bottom: 18px; }
.policy-item { scroll-margin-top: 110px; }
.policy-item details { max-height: 520px; overflow: auto; padding-right: 8px; }
.legacy-bullet::before { content: "* "; color: var(--blue); font-weight: 900; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gallery-grid figure { margin: 0; }
.gallery-grid img { aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-grid figcaption {
  padding: 10px 12px;
  color: var(--navy);
  font-family: var(--display-font);
  font-weight: 900;
}
.contact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.contact-card { min-height: 150px; }
.contact-card strong { color: var(--ink); }
@media (max-width: 900px) {
  .news-grid,
  .gallery-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .news-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .news-card img {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
  }
  .photo-hero { background-size: cover; background-position: center; }
}
@media (max-width: 900px) {
  .nav-wrap { align-items: center; flex-direction: column; padding: 10px 0 0; }
  .nav-links {
    width: 100%;
    margin-left: 0;
    padding: 2px 0 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .nav-links a { flex: 0 0 auto; }
  .grid, .two-col, #team-output .two-col, .official-grid, .news-grid, .gallery-grid, .contact-grid, .home-fixtures, .gallery-feature, .membership-grid, .footer-grid { grid-template-columns: 1fr; }
  #team-output .two-col,
  #team-output .two-col > * { min-width: 0; }
  .footer-actions { justify-content: flex-start; }
  .sponsor-logos { grid-template-columns: repeat(4, minmax(70px, 1fr)); }
  .section-head { display: block; }
  .gallery-strip {
    justify-self: stretch;
    max-width: 100%;
  }
  .hero { min-height: 370px; background-size: 230px; background-position: right -40px center; }
  .photo-hero { background-size: cover; background-position: center 42%; }
  .fixture {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .fixture-date { grid-column: 1 / -1; }
  .fixture-matchup { justify-self: end; }
}
@media (max-width: 540px) {
  .nav-links { gap: 4px; }
  .nav-links a { padding: 8px 6px; font-size: 0.76rem; }
  .brand strong { font-size: 1rem; }
  .crest { width: 44px; height: 54px; }
  .page { margin-top: 22px; }
  .panel,
  .card { padding: 14px; }
  .team-tabs { gap: 6px; }
  .team-tabs button { padding: 8px 9px; font-size: 0.8rem; }
  .fixture {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 10px;
  }
  .fixture-matchup {
    grid-template-columns: 48px auto 48px;
    justify-self: start;
  }
  .team-crest { width: 48px; height: 48px; }
  .home-fixture-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 10px;
  }
  .home-fixture-matchup { justify-self: start; }
  .score {
    justify-self: start;
    min-width: 48px;
    padding: 6px 7px;
  }
  table { font-size: 0.76rem; }
  .league-table {
    min-width: 500px;
  }
  .league-table .rank-col { width: 36px; }
  .league-table .team-col { width: 168px; }
  .league-table .stat-col { width: 40px; }
  .sponsor-logos { grid-template-columns: repeat(2, minmax(90px, 1fr)); }
  th, td { padding: 7px 5px; }
  th:nth-child(5),
  td:nth-child(5),
  th:nth-child(6),
  td:nth-child(6),
  th:nth-child(7),
  td:nth-child(7) {
    display: none;
  }
}
