/* TV Leuchertz – Mobile-First Styles */

:root {
  --bg-deep: #070b12;
  --bg-base: #0d1421;
  --bg-card: #151d2e;
  --bg-elevated: #1c2740;
  --text: #eef2f7;
  --text-muted: #8b9cb3;
  --accent: #ff5722;
  --accent-glow: #ff8a50;
  --gold: #ffc940;
  --success: #22c55e;
  --warning: #eab308;
  --danger: #ef4444;
  --draw: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 80px;
  --max-w: 1200px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-glow);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--gold); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus { top: 1rem; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-label .season-badge {
  color: var(--gold);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

.section { padding: 3rem 0; }
.section--alt { background: var(--bg-base); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0.4rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.logo img {
  width: clamp(128px, 32vw, 188px);
  height: auto;
  object-fit: contain;
}

.logo__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(139, 156, 179, 0.75);
  line-height: 1.35;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .logo {
    gap: 0.85rem;
  }

  .logo img {
    width: 200px;
  }

  .logo__sub {
    font-size: 0.65rem;
  }
}

.logo--footer img {
  width: 148px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg-deep);
  padding: 1.5rem;
  overflow-y: auto;
}

.site-nav.is-open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav > ul > li { border-bottom: 1px solid var(--border); }

.site-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--accent); }

.site-nav .submenu { padding-left: 1rem; padding-bottom: 0.5rem; }
.site-nav .submenu a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); padding: 0.5rem 0; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; position: static; padding: 0; background: none; overflow: visible; }
  .site-nav > ul { display: flex; gap: 0.25rem; align-items: center; }
  .site-nav > ul > li { border: none; position: relative; }
  .site-nav a { padding: 0.5rem 0.85rem; font-size: 0.9rem; border-radius: var(--radius); }
  .site-nav a:hover { background: var(--bg-elevated); }
  .site-nav .has-submenu:hover .submenu,
  .site-nav .has-submenu:focus-within .submenu { display: block; }
  .site-nav .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav .submenu a { padding: 0.6rem 0.85rem; }
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-base);
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-deep) 0%, rgba(7, 11, 18, 0.6) 50%, rgba(7, 11, 18, 0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem 0 4rem;
}

.hero__badge {
  display: inline-block;
  position: relative;
  padding: 0.2rem 1.25rem 0.2rem 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-left: 3px solid var(--accent);
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 87, 34, 0.28) 0%, rgba(255, 87, 34, 0.08) 45%, transparent 100%);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-glow);
  cursor: default;
  user-select: none;
}

.hero__title em { font-style: normal; color: var(--accent); }
.hero__lead { font-size: 1.1rem; color: var(--text-muted); max-width: 540px; margin: 1rem 0 2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-glow); color: #fff; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.card__body { padding: 1.25rem; }
.card__image { aspect-ratio: 16/10; object-fit: cover; width: 100%; }

.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.stat { background: var(--bg-card); padding: 1.25rem; text-align: center; }
.stat__value { font-family: var(--font-display); font-size: 2rem; color: var(--accent); line-height: 1; }
.stat__label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

@media (min-width: 640px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }

.data-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--border); min-width: 0; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table caption { text-align: left; padding: 1rem; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.04em; background: var(--bg-elevated); border-bottom: 1px solid var(--border); }
.data-table th, .data-table td { padding: 0.65rem 0.85rem; text-align: left; border-bottom: 1px solid var(--border); overflow: hidden; }
.data-table th { background: var(--bg-elevated); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); white-space: nowrap; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr.is-own { background: rgba(255, 87, 34, 0.12); font-weight: 600; }
.data-table tr.is-own td:first-child { border-left: 3px solid var(--accent); }
.data-table tr.is-home { background: rgba(255, 201, 64, 0.08); }
.data-table .col-rank { text-align: center; }
.data-table .col-score { font-weight: 700; white-space: nowrap; text-align: center; }

.data-table--ranking {
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
}

.data-table--ranking th:nth-child(1),
.data-table--ranking td:nth-child(1) { width: 7%; text-align: center; }

.data-table--ranking th:nth-child(2),
.data-table--ranking td:nth-child(2) {
  width: 36%;
  max-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.data-table--ranking th:nth-child(3),
.data-table--ranking td:nth-child(3) { width: 11%; text-align: center; white-space: nowrap; }

.data-table--ranking th:nth-child(4),
.data-table--ranking td:nth-child(4) { width: 23%; text-align: center; white-space: nowrap; }

.data-table--ranking th:nth-child(5),
.data-table--ranking td:nth-child(5) { width: 23%; text-align: center; white-space: nowrap; }

@media (min-width: 640px) {
  .rankings-grid .data-table-wrap { overflow-x: hidden; }

  .data-table--schedule {
    table-layout: fixed;
    font-size: 0.8125rem;
  }

  .data-table--schedule caption {
    font-size: 1rem;
    padding: 0.75rem 0.65rem;
  }

  .data-table--schedule th,
  .data-table--schedule td {
    padding: 0.4rem 0.35rem;
    vertical-align: top;
    line-height: 1.35;
  }

  .data-table--schedule th:nth-child(1),
  .data-table--schedule td:nth-child(1) { width: 11%; white-space: nowrap; }

  .data-table--schedule th:nth-child(2),
  .data-table--schedule td:nth-child(2) { width: 7%; white-space: nowrap; }

  .data-table--schedule th:nth-child(3),
  .data-table--schedule td:nth-child(3) { width: 12%; }

  .data-table--schedule th:nth-child(4),
  .data-table--schedule td:nth-child(4),
  .data-table--schedule th:nth-child(5),
  .data-table--schedule td:nth-child(5) {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .data-table--schedule th:nth-child(6),
  .data-table--schedule td:nth-child(6) { width: 8%; text-align: center; white-space: nowrap; }

  .data-table--schedule th:nth-child(7),
  .data-table--schedule td:nth-child(7) { width: 5%; text-align: center; white-space: nowrap; }
}
.data-table-empty { padding: 2rem; text-align: center; color: var(--text-muted); }

.pause-message {
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
}

.season-badge {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .data-table--responsive thead { display: none; }
  .data-table--responsive tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 1rem;
    padding: 0.85rem;
    border-bottom: 1px solid var(--border);
  }
  .data-table--responsive tbody tr.is-own,
  .data-table--responsive tbody tr.is-home { border-left: 3px solid var(--accent); }
  .data-table--responsive td { border: none; padding: 0.15rem 0; }
  .data-table--responsive td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
  }
  .data-table--responsive td:first-child { grid-column: 1 / -1; font-weight: 700; font-size: 0.95rem; }
}

.rankings-grid { display: grid; gap: 1.25rem; }
.rankings-grid > .data-table-wrap { min-width: 0; }
@media (min-width: 768px) { .rankings-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .rankings-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.match-cards { display: grid; gap: 0.75rem; }

.match-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.match-card.is-home { border-color: rgba(255, 201, 64, 0.35); background: rgba(255, 201, 64, 0.05); }
.match-card__date { text-align: center; min-width: 3.5rem; }
.match-card__day { font-family: var(--font-display); font-size: 1.75rem; line-height: 1; color: var(--accent); }
.match-card__month { font-size: 0.7rem; text-transform: uppercase; color: var(--text-muted); }
.match-card__teams { font-size: 0.9rem; }
.match-card__liga { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.match-card__vs { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; font-weight: 600; }
.match-card__score { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold); }

.reports-list { display: flex; flex-direction: column; gap: 0.5rem; }

.report-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-card); scroll-margin-top: 6rem; }
#spielberichte { scroll-margin-top: 5rem; }

.report-item__trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  min-height: 44px;
}

.report-item__trigger:hover { background: var(--bg-elevated); }

.report-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.report-item__icon--win { background: rgba(34, 197, 94, 0.2); color: var(--success); }
.report-item__icon--loss { background: rgba(239, 68, 68, 0.2); color: var(--danger); }
.report-item__icon--draw { background: rgba(100, 116, 139, 0.2); color: var(--draw); }

.report-item__panel { display: none; padding: 0 1.25rem 1.25rem; border-top: 1px solid var(--border); }
.report-item.is-open .report-item__panel { display: block; }
.report-item__title { font-weight: 700; margin: 1rem 0 0.75rem; color: var(--gold); }
.report-item__panel p { margin: 0 0 0.75rem; color: var(--text-muted); font-size: 0.925rem; }
.report-item__author { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }

.report-teasers {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.report-teaser__team {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.report-teaser {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 1.25rem;
}
.report-teaser__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.report-teaser__label {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}
.report-teaser__title {
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--gold);
}
.report-teaser__excerpt p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.925rem;
}
.report-teaser__more {
  margin: 1rem 0 0;
}
.report-teaser__more a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.report-teaser__more a:hover { text-decoration: underline; }

.team-card { display: block; text-decoration: none; color: inherit; transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card:hover .team-card__cta { color: var(--accent); }
.team-card__cta { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); margin-top: 0.5rem; }

.team-hero { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 768px) { .team-hero { grid-template-columns: 280px 1fr; } }

.team-photo { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.team-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.team-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1rem 0; }
.tag { display: inline-block; padding: 0.35rem 0.75rem; background: var(--bg-elevated); border-radius: 999px; font-size: 0.8rem; color: var(--text-muted); }

.training-block { margin: 1.25rem 0; }

.training-block h2 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.training-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.training-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.5;
}

.training-list li:last-child { border-bottom: none; }

.training-list__day {
  font-weight: 600;
  color: var(--text);
}

.training-list__time {
  color: var(--text-muted);
}

.training-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.team-jahrgang {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
}

.team-contacts {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trainer-card { display: flex; gap: 1rem; align-items: center; padding: 1.25rem; }
.trainer-card img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }

.dept-hero { display: grid; gap: 2rem; }
@media (min-width: 768px) { .dept-hero { grid-template-columns: 1fr 1fr; align-items: center; } }

.info-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.info-list li { padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.info-list strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.25rem; }

.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } }

.contact-block h3 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin: 1.5rem 0 0.5rem; }
.contact-block h3:first-child { margin-top: 0; }

.site-footer { background: var(--bg-base); border-top: 1px solid var(--border); padding: 3rem 0 2rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a { color: var(--text-muted); text-decoration: none; }
.footer-nav a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.loading { padding: 2rem; text-align: center; color: var(--text-muted); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .sponsors__track { animation: none; flex-wrap: wrap; justify-content: center; }
  .sponsors__viewport { overflow: visible; mask-image: none; }
}

/* Sponsoren-Karussell */
.sponsors {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  background: var(--bg-base);
}

.sponsors__heading {
  text-align: center;
  margin-bottom: 1.75rem;
}

.sponsors__heading h2 {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0;
}

.sponsors__viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.sponsors__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  width: max-content;
  animation: sponsors-scroll 55s linear infinite;
  padding: 0.5rem 0;
}

.sponsors__viewport:hover .sponsors__track,
.sponsors__viewport:focus-within .sponsors__track {
  animation-play-state: paused;
}

@keyframes sponsors-scroll {
  to { transform: translateX(-50%); }
}

.sponsors__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.25rem;
  text-decoration: none;
  border-radius: var(--radius);
}

.sponsors__link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.sponsors__logo {
  width: auto;
  height: clamp(36px, 8vw, 52px);
  max-width: 148px;
  object-fit: contain;
  opacity: 0.38;
  filter: grayscale(1) brightness(1.15);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.sponsors__link:hover .sponsors__logo,
.sponsors__link:focus-visible .sponsors__logo {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

.sponsors__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
