:root {
  --mtv-hero-image: url("original/erlengrund-hero.jpg");
  color-scheme: light;
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-2: #eef2ec;
  --ink: #151a17;
  --muted: #5f6862;
  --line: #d8ded6;
  --red: #205b41;
  --red-dark: #205b41;
  --green: #205b41;
  --blue: #255f86;
  --gold: #205b41;
  --shadow: 0 18px 50px rgba(21, 26, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 90px;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(21, 26, 23, 0.12);
  background: rgba(246, 247, 244, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 220px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-header nav {
  justify-content: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-header nav .menu-item {
  display: contents;
  list-style: none;
}

.site-header nav a,
.site-footer nav a {
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer nav a:hover,
.text-link:hover {
  color: var(--red-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle-icon {
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-icon::before {
  top: -6px;
}

.menu-toggle-icon::after {
  top: 6px;
}

.site-header.is-menu-open .menu-toggle-icon {
  background: transparent;
}

.site-header.is-menu-open .menu-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
}

.header-action {
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(430px, 58svh, 620px);
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: clamp(430px, 58svh, 620px);
  object-fit: cover;
  object-position: center 24%;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 19, 16, 0.82), rgba(18, 19, 16, 0.35) 58%, rgba(18, 19, 16, 0.08)),
    linear-gradient(0deg, rgba(18, 19, 16, 0.42), rgba(18, 19, 16, 0.02) 45%);
}

.hero-content {
  z-index: 2;
  align-self: end;
  max-width: 920px;
  padding: clamp(34px, 7vw, 84px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

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

.hero-actions .menu-item {
  display: contents;
}

.hero-actions .menu-item a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 7px;
  color: #fff;
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
}

.hero-actions .menu-item:first-child a {
  border-color: var(--red);
  background: var(--red);
}

.hero-news-slider {
  --hero-green: #205b41;
  background: var(--ink);
}

.hero-news-stage {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 0;
  max-height: min(72svh, 720px);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  isolation: isolate;
}

.hero-news-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-news-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-news-slide::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 20, 17, 0.68), rgba(15, 20, 17, 0.18) 52%, rgba(15, 20, 17, 0.1)),
    linear-gradient(0deg, rgba(15, 20, 17, 0.46), rgba(15, 20, 17, 0.04) 48%);
}

.hero-news-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-news-content {
  position: relative;
  z-index: 3;
  grid-area: 1 / 1;
  align-self: center;
  justify-self: start;
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  max-width: min(980px, 76vw);
  margin-left: clamp(20px, 8vw, 138px);
  color: #fff;
}

.hero-news-content h1 {
  margin: 0;
  font-size: calc(1.475rem + 2.7vw);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.hero-news-read-more {
  position: relative;
  z-index: 4;
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.hero-news-read-more:hover,
.hero-news-read-more:focus-visible {
  background: #fff;
  color: var(--hero-green);
}

.hero-news-meta {
  position: absolute;
  right: clamp(12px, 1.8vw, 28px);
  bottom: clamp(12px, 1.8vw, 28px);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: min(520px, calc(100% - 36px));
  padding: 14px 18px;
  background: rgba(238, 242, 236, 0.88);
  color: var(--hero-green);
  font-size: 0.9em;
  font-weight: 850;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.hero-news-dots {
  position: absolute;
  right: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(50%);
}

.hero-news-dots button {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-news-dots button.is-active {
  background: var(--hero-green);
}

.hero-news-thumbs {
  display: grid;
  grid-template-columns: repeat(var(--home-news-columns, 5), minmax(0, 1fr));
  gap: 0;
  border-top: 8px solid var(--surface);
  background: var(--surface);
}

.hero-news-thumb {
  position: relative;
  min-height: clamp(132px, 14vw, 200px);
  padding: 0;
  border: 0;
  border-right: 8px solid var(--surface);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  text-align: center;
}

.hero-news-thumb:last-child {
  border-right: 0;
}

.hero-news-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-news-thumb.is-active img,
.hero-news-thumb:hover img,
.hero-news-thumb:focus-visible img {
  opacity: 0.92;
  transform: scale(1.03);
}

.hero-news-thumb span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: block;
  padding: 12px 14px;
  background: var(--hero-green);
  color: #fff;
  font-size: clamp(0.94rem, 1.5vw, 1.22rem);
  font-weight: 850;
  line-height: 1.2;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.button.ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -48px auto 0;
  padding: 0 clamp(18px, 4vw, 36px);
  position: relative;
  z-index: 5;
}

.hero-news-slider + .quick-actions {
  margin-top: 0;
}

.home-match-area {
  max-width: 1840px;
  margin: 34px auto 0;
  padding: 0 clamp(18px, 3vw, 44px);
}

.home-team-filter {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  justify-content: center;
  gap: 24px;
  align-items: start;
  max-width: 1680px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(21, 26, 23, 0.06);
}

.home-team-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.home-team-filter-group span {
  width: 100%;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.home-team-filter button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}

.home-team-filter button:hover,
.home-team-filter button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.home-team-filter button[hidden] {
  display: none;
}

.team-filter-select {
  display: grid;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
}

.team-filter-select > span,
.team-filter-select > label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.team-filter-select select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.filter-button-bar > .team-filter-select {
  grid-column: 1 / -2;
  width: min(100%, 340px);
}

.home-match-slider {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}

.home-match-track {
  display: grid;
  grid-auto-columns: 300px;
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 0 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.home-match-card {
  display: grid;
  grid-template-rows: 86px 60px 1fr 84px;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(21, 26, 23, 0.08);
  scroll-snap-align: start;
}

.home-match-card[hidden] {
  display: none;
}

.home-match-head {
  display: grid;
  gap: 6px;
  align-content: start;
  min-width: 0;
  padding: 20px 18px 0;
  text-align: center;
}

.home-match-head span {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 780;
}

.home-match-head strong {
  min-width: 0;
  overflow: hidden;
  font-size: 1.08rem;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-match-teams {
  display: -webkit-box;
  min-width: 0;
  margin: 12px 18px 0;
  overflow: hidden;
  color: #566071;
  font-size: 1.08rem;
  font-weight: 720;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: center;
}

.home-match-body {
  display: grid;
  grid-template-columns: minmax(76px, 1fr) auto minmax(76px, 1fr);
  gap: 12px;
  align-items: center;
  padding: 18px 18px 20px;
}

.home-match-body img {
  width: min(82px, 100%);
  height: 82px;
  display: block;
  justify-self: center;
  object-fit: contain;
}

.home-match-body time {
  display: grid;
  gap: 4px;
  min-width: 76px;
  color: var(--ink);
  font-size: 1.08rem;
  text-align: center;
}

.home-match-body time strong {
  font-size: 1.28rem;
}

.home-match-ticket {
  min-height: 84px;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 16px 24px;
  color: #fff;
  font-weight: 850;
  text-align: center;
}

.home-match-ticket strong,
.home-match-ticket span {
  display: block;
  line-height: 1.15;
}

.home-match-ticket.has-ticket {
  background: var(--green);
}

.home-match-ticket.is-empty {
  background: transparent;
}

.home-match-nav {
  width: 54px;
  height: 90px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
}

.home-match-nav span {
  width: 36px;
  height: 36px;
  display: block;
  border-top: 6px solid currentColor;
  border-left: 6px solid currentColor;
  border-radius: 3px;
}

.home-match-prev span {
  transform: rotate(-45deg);
}

.home-match-next span {
  transform: rotate(135deg);
}

.home-standings {
  margin-top: 26px;
}

.home-standings[hidden] {
  display: none !important;
}

.home-match-area:has([data-gender-filter="all"].is-active) .home-standings,
.home-match-area:has([data-class-filter="all"].is-active) .home-standings {
  display: none !important;
}

.home-standings-panel {
  display: none;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(21, 26, 23, 0.06);
}

.home-standings-panel.is-active {
  display: block;
}

.home-standings-panel h2 {
  max-width: none;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.home-standings-panel p {
  max-width: 720px;
  color: var(--muted);
}

.home-standings-head {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.home-standings-head span {
  color: var(--green);
  font-weight: 850;
  text-align: right;
}

.home-standings-table-wrap {
  overflow-x: auto;
}

.home-standings-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 0.98rem;
}

.home-standings-table th,
.home-standings-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.home-standings-table th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-standings-table th:nth-child(2),
.home-standings-table td:nth-child(2) {
  text-align: left;
}

.home-standings-team {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.home-standings-team img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}

.home-standings-table tbody tr:hover {
  background: rgba(32, 91, 65, 0.06);
}

.home-standings-table .is-mtv-row {
  background: rgba(32, 91, 65, 0.1);
  color: var(--green);
  font-weight: 850;
}

.quick-actions a {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.quick-actions span,
.label {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-actions strong {
  display: block;
  margin-top: 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 104px) clamp(18px, 4vw, 36px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 96px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 8px 0 10px;
  font-size: 1.24rem;
  line-height: 1.18;
}

p {
  margin-top: 0;
}

.section-intro p:not(.eyebrow),
.match-hub p,
.live-grid p,
.service-grid p,
.contact-section p,
.news-list p {
  color: var(--muted);
}

.text-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.news-list,
.match-hub,
.live-grid,
.service-grid {
  display: grid;
  gap: 14px;
}

.news-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-list article,
.news-card,
.match-hub article,
.live-grid article,
.service-grid article,
.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.news-card,
.post-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.featured-news {
  grid-row: span 2;
  min-height: 320px;
  background:
    linear-gradient(160deg, rgba(32, 91, 65, 0.1), transparent 54%),
    var(--surface);
}

.news-list img {
  width: calc(100% + 48px);
  height: clamp(140px, 18vw, 190px);
  margin: -24px -24px 20px;
  display: block;
  object-fit: cover;
}

.featured-news img {
  height: clamp(170px, 24vw, 240px);
}

.news-list article > p:first-child,
.news-card > p:first-of-type {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 820;
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(230px, 28vw, 390px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #034833 var(--mtv-hero-image) center center / cover no-repeat;
  color: #fff;
}

.page-hero::before,
.page-hero::after {
  display: none;
  content: none;
}

.page-hero-inner {
  width: min(1180px, calc(100% - clamp(36px, 8vw, 104px)));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0 clamp(34px, 6vw, 64px);
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero h1 {
  max-width: 16ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero-meta {
  max-width: 58ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 780;
}

.page-hero-subnav,
.staff-subnav,
.fan-subnav,
.sponsor-subnav,
.team-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.page-hero-subnav {
  justify-content: flex-start;
  margin-top: clamp(22px, 4vw, 38px);
}

.page-hero-subnav a,
.staff-subnav a,
.fan-subnav a,
.sponsor-subnav a,
.team-subnav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
}

.page-hero-subnav a {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.content-page {
  max-width: 1180px;
}

.page-hero + main.section {
  padding-top: clamp(30px, 5vw, 58px);
}

.page-hero + main .news-search-bar,
.page-hero + main .sponsor-page {
  margin-top: 0;
}

.content-header {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.content-header:empty {
  display: none;
}

.content-header h1,
.content-title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero + main .content-title,
.page-hero + main .single-post-title {
  display: none;
}

.content-header p:not(.eyebrow),
.post-meta {
  color: var(--muted);
}

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

.news-archive-grid {
  grid-template-columns: repeat(3, minmax(0, 360px));
  justify-content: center;
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto auto;
  gap: 12px;
  align-items: end;
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.filter-bar label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.filter-bar span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.filter-button-bar {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) minmax(0, 1.1fr) auto;
  align-items: start;
}

.news-search-bar {
  grid-template-columns: minmax(0, 1fr) auto auto;
  margin-bottom: 12px;
}

.filter-disclosure {
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.filter-disclosure summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  cursor: pointer;
  list-style: none;
}

.filter-disclosure summary::-webkit-details-marker {
  display: none;
}

.filter-disclosure summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.filter-disclosure summary strong {
  color: var(--red);
  font-size: 0.96rem;
}

.filter-disclosure summary::after {
  content: "+";
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1;
}

.filter-disclosure[open] summary {
  border-bottom: 1px solid var(--line);
}

.filter-disclosure[open] summary::after {
  content: "-";
}

.filter-disclosure .filter-bar {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.news-filter-buttons {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.filter-button-group {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: rgba(32, 91, 65, 0.36);
  color: var(--red);
}

.filter-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.team-directory,
.event-list {
  display: grid;
  gap: 12px;
}

.team-directory {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.staff-page {
  display: grid;
  gap: clamp(32px, 5vw, 58px);
}

.staff-intro {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.staff-intro h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.staff-callout {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-align: left;
}

.staff-callout h3,
.staff-callout p {
  margin: 0;
}

.staff-callout p {
  color: var(--muted);
}

.staff-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.staff-subnav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
}

.staff-section {
  display: grid;
  gap: 18px;
  scroll-margin-top: 96px;
}

.staff-section h3 {
  margin: 0;
  color: var(--red);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

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

.staff-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.staff-card:hover,
.staff-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 16px 32px rgba(26, 26, 26, 0.14);
}

.staff-email {
  color: var(--red);
  font-weight: 700;
  justify-self: start;
}

.staff-email::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 8px;
}

.staff-email:focus-visible::after {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

.staff-description a {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .staff-card {
    transition: none;
  }

  .staff-card:hover,
  .staff-card:focus-within {
    transform: none;
  }
}

.staff-photo {
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  background: rgba(26, 26, 26, 0.06);
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.staff-photo span {
  color: var(--red);
  font-size: 3rem;
  font-weight: 900;
}

.staff-body {
  display: grid;
  gap: 6px;
  padding: 15px;
}

.staff-body h4,
.staff-body p {
  margin: 0;
}

.staff-body h4 {
  font-size: 1.05rem;
}

.staff-body p,
.staff-description {
  color: var(--muted);
}

.staff-description {
  font-size: 0.94rem;
}

.staff-description > * {
  margin: 0;
}

.event-list {
  grid-template-columns: 1fr;
}

.post-card,
.team-card,
.event-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.news-archive-grid .post-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.news-archive-grid .post-card:hover,
.news-archive-grid .post-card:focus-within {
  border-color: rgba(32, 91, 65, 0.35);
  box-shadow: 0 18px 42px rgba(21, 26, 23, 0.12);
  transform: translateY(-4px);
}

.post-card a,
.team-card a,
.event-card a {
  display: block;
  height: 100%;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}

.post-card a {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
}

.news-archive-grid .post-card {
  width: 100%;
  max-width: 360px;
  height: 500px;
  justify-self: center;
}

.event-card a {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
}

.team-card > .text-link {
  height: auto;
  padding: 0 24px 24px;
}

.team-card {
  align-self: start;
}

.team-card > a:first-child {
  height: auto;
  padding-bottom: 18px;
}

.team-card .label {
  display: block;
  margin-bottom: 6px;
}

.event-card h2,
.team-card h2 {
  max-width: none;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.event-card h2 {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.event-matchup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.event-team {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.event-team img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
}

.event-team span {
  min-width: 0;
}

.event-match-score {
  min-width: 48px;
  color: var(--red);
  font-size: 1.02rem;
  font-weight: 900;
  text-align: center;
}

.event-card p,
.team-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.event-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.event-venue {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(21, 26, 23, 0.08);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
}

.event-venue-heim {
  background: rgba(32, 91, 65, 0.12);
  color: var(--red);
}

.event-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(110px, 0.55fr) minmax(140px, 0.7fr);
  gap: 8px 18px;
  align-items: start;
  margin: 0;
}

.event-meta div {
  min-width: 0;
}

.event-meta-location {
  text-align: center;
}

.event-meta-status {
  text-align: center;
}

.event-meta-tickets {
  text-align: right;
}

.event-meta dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.event-meta dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.post-card img,
.team-card img {
  width: calc(100% + 48px);
  height: 220px;
  margin: -24px -24px 20px;
  display: block;
  object-fit: cover;
}

.news-archive-grid .post-card img {
  transition: transform 220ms ease;
}

.news-archive-grid .post-card:hover img,
.news-archive-grid .post-card:focus-within img {
  transform: scale(1.04);
}

.team-card img {
  height: 190px;
}

.team-coming-soon-photo {
  position: relative;
  display: block;
  width: calc(100% + 48px);
  height: 190px;
  margin: -24px -24px 20px;
  overflow: hidden;
  background: var(--surface-2);
}

.team-coming-soon-photo img {
  width: 100%;
  height: 100%;
  margin: 0;
  filter: saturate(0.9) brightness(0.72);
  object-fit: cover;
}

.team-coming-soon-photo span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 850;
  text-transform: uppercase;
}

.post-card h2 {
  max-width: none;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.12;
}

.news-archive-grid .post-card h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-card p:not(.post-meta) {
  margin-bottom: 18px;
}

.news-archive-grid .post-card p:not(.post-meta) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.post-card .text-link {
  align-self: end;
  justify-self: start;
}

.news-archive-grid .post-card .text-link {
  transition: transform 180ms ease;
}

.news-archive-grid .post-card:hover .text-link,
.news-archive-grid .post-card:focus-within .text-link {
  transform: translateX(4px);
}

.article-detail {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.article-detail-wide {
  max-width: 1180px;
}

.article-hero {
  margin: 0 0 34px;
}

.article-hero img {
  width: 100%;
  max-height: 520px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.article-content {
  max-width: 820px;
  color: var(--ink);
  font-size: 1.08rem;
}

.article-detail-wide .article-content {
  max-width: none;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.article-content a {
  color: var(--red);
  font-weight: 750;
}

.article-content h2,
.article-content h3 {
  max-width: none;
  margin-top: 34px;
}

body.single-post {
  --article-navy: #0b1f3a;
  --article-blue: #1f6feb;
  --article-yellow: #f2bd2f;
  --article-bg: #fff;
  --article-text: #142033;
  --article-muted: #687386;
  --article-line: #d9e1ec;
  padding-bottom: 0;
  background: var(--article-bg);
  color: var(--article-text);
}

body.single-post a:focus-visible,
body.single-post button:focus-visible {
  outline: 3px solid rgba(242, 189, 47, 0.78);
  outline-offset: 3px;
}

.single-post-page {
  width: 100%;
  overflow-x: clip;
  padding: clamp(22px, 5vw, 62px) clamp(20px, 5vw, 72px) clamp(46px, 7vw, 86px);
}

.single-post-article {
  display: grid;
  gap: clamp(22px, 4vw, 38px);
  min-width: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.single-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  color: var(--article-muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.single-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.single-breadcrumb a:hover {
  color: var(--article-blue);
}

.single-post-header {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.single-category-badge,
.recommendation-category {
  width: fit-content;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--article-yellow);
  color: var(--article-navy);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.single-post-header h1,
.single-post-title {
  margin: 0;
  color: var(--article-navy);
  font-size: clamp(2.2rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0;
  color: var(--article-muted);
  font-size: 0.95rem;
  font-weight: 780;
}

.single-post-meta > span {
  display: inline-flex;
  align-items: center;
}

.single-post-meta > span:not(:last-child)::after {
  width: 5px;
  height: 5px;
  margin-left: 12px;
  border-radius: 999px;
  background: var(--article-blue);
  content: "";
}

.single-reading-time-compact {
  display: none;
}

.single-action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.single-action-bar .single-share-link {
  min-height: 42px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--article-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--article-navy);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.single-action-bar .single-share-link:hover,
.single-action-bar .single-share-link:focus-visible {
  border-color: var(--article-blue);
  background: var(--article-blue);
  color: #fff;
  transform: translateY(-1px);
}

.single-share-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
}

.single-share-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.single-share-link--whatsapp {
  color: #128c7e;
}

.single-share-link--facebook {
  color: #1877f2;
}

.single-share-link--x {
  color: #111;
}

.single-share-link--linkedin {
  color: #0a66c2;
}

.single-featured-image {
  width: min(100%, 860px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe7f1;
  box-shadow: 0 20px 48px rgba(11, 31, 58, 0.14);
}

.single-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 480px;
  display: block;
  object-fit: cover;
}

.single-post-content {
  width: min(100%, 760px);
  min-width: 0;
  max-width: 760px;
  margin: 0 auto;
  color: var(--article-text);
  font-size: clamp(1.04rem, 1.2vw, 1.16rem);
  line-height: 1.78;
}

.single-post-content > * {
  margin-block: 0 1.24em;
}

.single-post-content > :last-child {
  margin-bottom: 0;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  color: var(--article-navy);
  line-height: 1.12;
  letter-spacing: 0;
}

.single-post-content h2 {
  margin-top: 2.1em;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.single-post-content h3 {
  margin-top: 1.8em;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.single-post-content p,
.single-post-content li {
  color: var(--article-text);
}

.single-post-content a {
  color: var(--article-blue);
  font-weight: 850;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.single-post-content ul,
.single-post-content ol {
  padding-left: 1.25em;
}

.single-post-content li + li {
  margin-top: 0.35em;
}

.single-post-content blockquote,
.single-post-content .wp-block-quote,
.single-post-content .wp-block-pullquote,
.single-post-content .wp-block-group.has-background {
  margin: 1.7em 0;
  padding: 20px 22px;
  border-left: 5px solid var(--article-yellow);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.08);
}

.single-post-content blockquote p,
.single-post-content .wp-block-pullquote p {
  color: var(--article-navy);
  font-size: 1.08em;
  font-weight: 750;
  line-height: 1.55;
}

.single-post-content figure {
  margin: 1.8em 0;
}

.single-post-content > *,
.single-post-content figure,
.single-post-content .wp-block-image,
.single-post-content .wp-block-gallery,
.single-post-content .wp-block-embed,
.single-post-content .wp-block-table {
  max-width: 100%;
}

.single-post-content img,
.single-post-content video,
.single-post-content iframe {
  max-width: 100%;
  height: auto;
}

.single-post-content iframe {
  width: 100%;
  border: 0;
  border-radius: 8px;
}

.single-post-content .wp-block-image img,
.single-post-content .wp-block-gallery img {
  border-radius: 8px;
}

.single-post-content .wp-block-gallery:not(.has-nested-images) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-post-content .wp-block-gallery.has-nested-images {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 12px;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.single-post-content .wp-block-gallery.has-nested-images::-webkit-scrollbar {
  display: none;
}

.single-post-content .wp-block-gallery.has-nested-images > .wp-block-image {
  width: 100% !important;
  max-width: none !important;
  flex-basis: 100% !important;
  flex-grow: 0 !important;
  margin: 0 !important;
  scroll-snap-align: start;
}

.single-post-content .wp-block-gallery.has-nested-images > .wp-block-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(68vh, 560px);
  object-fit: cover;
}

.single-post-content .mtv-swipe-gallery-shell {
  position: relative;
  margin: 2em 0;
}

.single-post-content .mtv-swipe-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 12px;
  margin: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  list-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.single-post-content .mtv-swipe-gallery-track::-webkit-scrollbar {
  display: none;
}

.single-post-content .mtv-swipe-gallery-track .mtv-swipe-gallery-slide {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  scroll-snap-align: start;
}

.single-post-content .mtv-swipe-gallery-track .mtv-swipe-gallery-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(68vh, 560px);
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.single-post-content .mtv-swipe-gallery-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.single-post-content .mtv-swipe-gallery-nav {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--article-line);
  border-radius: 999px;
  background: #fff;
  color: var(--article-navy);
  cursor: pointer;
  font: inherit;
  font-size: 1.9rem;
  font-weight: 850;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.single-post-content .mtv-swipe-gallery-nav:hover,
.single-post-content .mtv-swipe-gallery-nav:focus-visible {
  border-color: var(--article-blue);
  background: var(--article-blue);
  color: #fff;
}

.single-post-content .mtv-swipe-gallery-nav:disabled {
  cursor: default;
  opacity: 0.38;
}

.single-post-content .mtv-swipe-gallery-nav:disabled:hover {
  border-color: var(--article-line);
  background: #fff;
  color: var(--article-navy);
}

.single-post-content .mtv-swipe-gallery-progress {
  min-width: 54px;
  color: var(--article-muted);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.single-post-content .mtv-swipe-gallery-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-top: 10px;
}

.single-post-content .mtv-swipe-gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(104, 115, 134, 0.35);
  cursor: pointer;
}

.single-post-content .mtv-swipe-gallery-dot.is-active {
  width: 22px;
  background: var(--article-blue);
}

.single-post-content figcaption {
  margin-top: 8px;
  color: var(--article-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.single-post-content table {
  width: 100%;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}

.single-post-content th,
.single-post-content td {
  padding: 10px;
  border: 1px solid var(--article-line);
}

.recommendation-section {
  width: min(100%, 1100px);
  display: grid;
  gap: 16px;
  min-width: 0;
  margin: clamp(38px, 6vw, 72px) auto 0;
}

.recommendation-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.recommendation-head h2 {
  margin: 0;
  color: var(--article-navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.recommendation-controls {
  display: flex;
  gap: 8px;
}

.recommendation-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--article-line);
  border-radius: 999px;
  background: #fff;
  color: var(--article-navy);
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.recommendation-controls button:hover {
  border-color: var(--article-blue);
  background: var(--article-blue);
  color: #fff;
}

.recommendation-track {
  display: grid;
  grid-auto-columns: minmax(270px, 31%);
  grid-auto-flow: column;
  gap: 14px;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 14px;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.recommendation-card {
  scroll-snap-align: start;
}

.recommendation-card a {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--article-line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.recommendation-card a:hover,
.recommendation-card a:focus-visible {
  border-color: var(--article-blue);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.12);
  transform: translateY(-3px);
}

.recommendation-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.2), rgba(242, 189, 47, 0.2)),
    #dfe7f1;
}

.recommendation-media img,
.recommendation-media-fallback {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.recommendation-body {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
}

.recommendation-body strong {
  color: var(--article-navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

.recommendation-body > span:last-child {
  color: var(--article-muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.recommendation-progress {
  color: var(--article-muted);
  font-size: 0.9rem;
  font-weight: 850;
}

@media (prefers-reduced-motion: reduce) {
  .single-action-bar .single-share-link,
  .recommendation-card a,
  .recommendation-track {
    scroll-behavior: auto;
    transition: none;
  }
}

@media (max-width: 900px) {
  .single-post-page {
    padding-inline: clamp(20px, 4vw, 34px);
  }

  .recommendation-track {
    grid-auto-columns: minmax(260px, 48%);
  }
}

@media (max-width: 640px) {
  body.single-post {
    overflow-x: clip;
  }

  .single-post-page {
    max-width: 100vw;
    overflow-x: clip;
    padding: 24px 20px 48px;
  }

  .single-post-article {
    gap: 22px;
    max-width: 100%;
  }

  .single-post-header h1,
  .single-post-title {
    font-size: clamp(2rem, 11vw, 3.05rem);
  }

  .single-post-meta > span:not(:last-child)::after {
    margin-left: 10px;
  }

  .single-reading-time-full {
    display: none;
  }

  .single-reading-time-compact {
    display: inline;
  }

  .single-action-bar {
    max-width: 100%;
    justify-content: center;
  }

  .single-action-bar .single-share-link {
    width: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
  }

  .single-action-bar .single-share-link > span:not(.single-share-icon) {
    display: none;
  }

  .single-featured-image {
    border-radius: 7px;
  }

  .single-post-content {
    width: 100%;
    max-width: 100%;
    font-size: 1.02rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .single-post-content .wp-block-gallery.has-nested-images,
  .single-post-content .mtv-swipe-gallery-shell,
  .single-post-content .mtv-swipe-gallery-track,
  .single-post-content .wp-block-embed,
  .single-post-content .wp-block-table {
    max-width: 100%;
  }

  .single-post-content .wp-block-table,
  .single-post-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .single-post-content blockquote,
  .single-post-content .wp-block-quote,
  .single-post-content .wp-block-pullquote,
  .single-post-content .wp-block-group.has-background {
    padding: 18px;
  }

  .recommendation-head {
    align-items: flex-start;
  }

  .recommendation-section {
    max-width: 100%;
    overflow: hidden;
  }

  .recommendation-track {
    display: flex;
    margin-right: 0;
    padding-right: 2px;
  }

  .recommendation-card {
    flex: 0 0 min(290px, calc(100vw - 54px));
    max-width: min(290px, calc(100vw - 54px));
  }

  .recommendation-controls button {
    width: 40px;
    height: 40px;
  }
}

.media-page {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.media-lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.media-document-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
}

.media-document-card .media-document-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.media-document-card h2 {
  margin: 0;
  color: var(--red);
  font-size: 1.35rem;
}

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

.media-document-card strong {
  align-self: end;
  color: var(--red);
  font-size: 0.9rem;
}

.media-document-card a {
  display: inline-flex;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.media-social-section {
  display: grid;
  gap: 14px;
}

.media-social-section h2,
.media-social-section p {
  margin: 0;
}

.legal-contact-page {
  display: grid;
  gap: 28px;
}

.contact-lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.contact-lead strong {
  color: var(--ink);
}

.contact-info-grid,
.social-link-grid {
  display: grid;
  gap: 14px;
}

.contact-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.legal-contact-page .contact-info-grid {
  grid-template-columns: repeat(3, 330px);
  align-items: stretch;
  justify-content: center;
}

.contact-info-grid > br {
  display: none;
}

.contact-info-card,
.social-link-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
}

.contact-info-card {
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 150px;
  padding: 20px;
}

.contact-info-card span,
.contact-info-card small,
.social-link-card small,
.contact-social-section p {
  color: var(--muted);
}

.contact-info-card span {
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-info-card strong {
  overflow-wrap: anywhere;
  font-size: 1.12rem;
}

.contact-info-card br,
.social-link-card br {
  display: none;
}

.contact-info-card:hover,
.contact-info-card:focus-visible,
.social-link-card:hover,
.social-link-card:focus-visible {
  border-color: rgba(32, 91, 65, 0.34);
  transform: translateY(-1px);
}

.contact-social-section {
  display: grid;
  gap: 14px;
  padding-top: 8px;
}

.contact-social-section h2,
.contact-social-section p {
  margin: 0;
}

.contact-social-section h2 {
  color: var(--red);
}

.social-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-link-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
}

.social-logo {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-color, var(--red));
  color: #fff;
}

.social-logo svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.social-link-card strong,
.social-link-card small {
  display: block;
}

.social-link-card strong {
  font-size: 1.05rem;
}

.social-link-card small {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.social-link-card.facebook {
  --brand-color: #1877f2;
}

.social-link-card.twitter {
  --brand-color: #111;
}

.social-link-card.youtube {
  --brand-color: #ff0000;
}

.social-link-card.instagram {
  --brand-color: #c13584;
}

.social-link-card.twitch {
  --brand-color: #9146ff;
}

.detail-facts {
  display: grid;
  gap: 10px;
  margin: 0 0 32px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.detail-facts p {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr);
  gap: 16px;
  margin: 0;
}

.detail-facts strong {
  color: var(--red);
}

.detail-facts a {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.team-detail-page {
  display: grid;
  gap: clamp(30px, 5vw, 58px);
}

.team-hero-panel {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.team-hero-panel.has-team-image {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.team-intro-news {
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  align-items: start;
}

.team-profile-card,
.team-latest-news,
.team-standings-card,
.team-schedule-card {
  min-width: 0;
}

.team-profile-card {
  display: grid;
  align-content: start;
}

.team-hero-image {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.team-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-hero-image .team-coming-soon-photo {
  width: 100%;
  height: 100%;
  margin: 0;
}

.team-hero-image .team-coming-soon-photo span {
  left: 24px;
  bottom: 22px;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.team-hero-body {
  display: grid;
  gap: 14px;
  align-content: start;
}

.team-summary {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.team-summary > *:first-child {
  margin-top: 0;
}

.team-summary > *:last-child {
  margin-bottom: 0;
}

.team-latest-news {
  display: grid;
  gap: 10px;
  align-content: start;
}

.team-news-list {
  display: grid;
  gap: 10px;
}

.team-intro-news .team-news-list {
  grid-template-rows: repeat(3, 112px);
  height: auto;
}

.team-news-all-link {
  justify-self: end;
  line-height: 1.1;
}

.team-news-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.team-intro-news .team-news-item {
  min-height: 0;
}

.team-news-item a {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 132px;
  color: inherit;
  text-decoration: none;
}

.team-intro-news .team-news-item a {
  grid-template-columns: minmax(118px, 36%) minmax(0, 1fr);
  height: 100%;
  min-height: 0;
}

.team-intro-news .team-news-thumb {
  height: 100%;
}

.team-news-thumb {
  display: block;
  min-width: 0;
  background: var(--surface-2);
}

.team-news-thumb img,
.team-news-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-news-thumb-placeholder {
  background: linear-gradient(135deg, rgba(32, 91, 65, 0.18), rgba(151, 31, 42, 0.14));
}

.team-news-body {
  display: grid;
  gap: 5px;
  align-content: start;
  min-width: 0;
  padding: 14px 16px;
}

.team-intro-news .team-news-body {
  gap: 4px;
  padding: 10px 12px;
}

.team-news-body time,
.team-news-body span {
  color: var(--muted);
}

.team-news-body time {
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.team-news-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.team-intro-news .team-news-body strong {
  font-size: 1rem;
  -webkit-line-clamp: 2;
}

.team-news-body span {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.94rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.team-intro-news .team-news-body span {
  display: none;
}

.team-news-body em {
  align-self: end;
  color: var(--green);
  font-style: normal;
  font-weight: 850;
}

.team-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.team-subnav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
}

.team-section {
  display: grid;
  gap: 18px;
  scroll-margin-top: 96px;
}

.team-section h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.team-page-grid:not(.news-archive-grid) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.video-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.video-embed iframe {
  width: 100%;
  min-height: 460px;
  display: block;
  border: 0;
}

.team-video-section {
  display: block;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 0;
  background: #111719;
  color: #fff;
}

.team-video-layout {
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(0, 2.7fr) auto;
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
}

.team-video-copy {
  display: grid;
  gap: 10px;
}

.team-video-copy h2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  text-align: center;
  text-transform: uppercase;
}

.team-video-copy h2::before,
.team-video-copy h2::after {
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.team-video-copy strong {
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.08;
}

.team-video-copy p {
  max-width: 210px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
}

.team-video-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.team-video-entry {
  min-width: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  overflow: hidden;
}

.team-video-entry a {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.team-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.08);
}

.team-video-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.team-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.team-video-play::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  content: "";
  transform: translate(-40%, -50%);
}

.team-video-body {
  display: grid;
  gap: 5px;
  padding: 10px 0 0;
}

.team-video-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.team-video-body time {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
}

.team-video-body .label {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.team-video-all-link {
  border-color: var(--red);
  color: var(--red);
  white-space: nowrap;
}

.team-video-card {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.team-video-card h3,
.team-video-card p {
  margin: 0;
}

.team-video-card p,
.team-empty {
  color: var(--muted);
}

.team-competition-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.team-training-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.team-training-grid.has-training-times {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
}

.team-trainers,
.team-training-times {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.team-trainers .team-staff-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}

.team-training-times p {
  margin: 0;
  color: var(--muted);
}

.team-training-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.team-training-list li {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.team-training-list a {
  color: var(--red);
  overflow-wrap: anywhere;
}

.team-training-list small {
  display: block;
  color: var(--muted);
}

@media (max-width: 900px) {
  .team-training-grid.has-training-times {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .team-trainers .team-staff-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.team-standings-card,
.team-schedule-card {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
}

.team-standings-table-wrap {
  overflow-x: hidden;
}

.team-standings-table {
  min-width: 0;
  table-layout: fixed;
  font-size: 0.9rem;
}

.team-standings-table th,
.team-standings-table td {
  padding: 10px 8px;
}

.team-standings-table th:nth-child(1),
.team-standings-table td:nth-child(1) {
  width: 42px;
}

.team-standings-table th:nth-child(3),
.team-standings-table td:nth-child(3),
.team-standings-table th:nth-child(5),
.team-standings-table td:nth-child(5) {
  width: 46px;
}

.team-standings-table th:nth-child(4),
.team-standings-table td:nth-child(4) {
  width: 68px;
}

.team-standings-table .home-standings-team {
  width: 100%;
}

.team-standings-table .home-standings-team span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.team-match-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.team-match-card a {
  display: grid;
  gap: 10px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
}

.team-match-date,
.team-match-meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 780;
}

.team-match-teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.team-match-teams span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.team-match-teams span:last-child {
  justify-content: flex-end;
  text-align: right;
}

.team-match-teams img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
}

.team-match-teams strong {
  min-width: 42px;
  color: var(--green);
  text-align: center;
}

.team-match-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: space-between;
}

.team-sponsor-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.team-sponsor-logos a,
.team-sponsor-logos div,
.team-sponsor-logos img {
  min-width: 0;
}

.team-sponsor-logos a,
.team-sponsor-logos div {
  display: grid;
  gap: 8px;
  align-content: start;
  text-decoration: none;
}

.team-sponsor-logos img {
  width: 100%;
  height: 82px;
  display: block;
  object-fit: contain;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.team-sponsor-logos span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.fans-page {
  display: grid;
  gap: clamp(32px, 5vw, 58px);
}

.fan-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.fan-subnav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
}

.fan-section {
  display: grid;
  gap: 18px;
  scroll-margin-top: 96px;
}

.fan-section-header {
  display: grid;
  gap: 10px;
  max-width: 960px;
}

.fan-section-header h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  white-space: nowrap;
}

.fan-section-header p {
  margin: 0;
}

.ticket-grid,
.fan-info-grid {
  display: grid;
  gap: 14px;
}

.ticket-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fan-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ticket-card,
.fan-info-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
}

.ticket-card {
  display: grid;
  gap: 8px;
}

.ticket-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ticket-card h3,
.fan-info-grid h3 {
  margin: 0;
}

.ticket-card strong {
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.ticket-card p,
.fan-info-grid p {
  margin: 0;
  color: var(--muted);
}

.fan-info-grid a {
  color: var(--red);
  font-weight: 820;
  text-decoration: none;
}

.sponsor-content {
  padding: clamp(32px, 5vw, 56px) 0 0;
}

.sponsor-content h2 {
  margin-bottom: 28px;
  max-width: none;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 34px;
}

.pagination a,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.pagination a {
  padding: 10px 16px;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.news-load-more {
  display: grid;
  min-height: 64px;
  place-items: center;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 800;
}

.news-load-more.is-done,
.news-load-more.is-hidden {
  display: none;
}

.empty-state {
  padding: 28px;
}

.empty-state h2 {
  max-width: none;
  font-size: 1.8rem;
}

.match-hub,
.live-grid,
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 14px;
}

.teams-section {
  max-width: none;
  background: var(--surface-2);
}

.teams-section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.team-columns {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 18px;
}

.team-columns > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list a,
.pill-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 740;
  text-decoration: none;
}

.live-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
}

.sponsor-band {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 4vw, 36px);
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.sponsor-band h2 {
  margin: 0 auto 28px;
  max-width: none;
}

.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1060px;
  margin: 0 auto 32px;
}

.sponsor-logos a,
.sponsor-logos > img,
.mini-logos img {
  width: 100%;
  height: clamp(70px, 8vw, 96px);
}

.sponsor-logos a {
  display: block;
  text-decoration: none;
}

.sponsor-logos a img,
.sponsor-logos > img,
.mini-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.partner-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1060px;
  margin: 0 auto;
  text-align: left;
}

.partner-groups article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.partner-groups p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.mini-logos a {
  display: block;
  height: clamp(70px, 8vw, 96px);
  text-decoration: none;
}

.mini-logos a img {
  height: 100%;
}

.sponsor-page {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
}

.sponsor-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sponsor-subnav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
}

.sponsor-sections {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  max-width: 1180px;
  margin: 0 auto;
}

.sponsor-tier {
  display: grid;
  gap: 18px;
  scroll-margin-top: 96px;
}

.sponsor-tier h3,
.supporter-section h3 {
  margin: 0;
  color: var(--red);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.sponsor-empty {
  margin: 0;
  color: var(--muted);
}

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

.sponsor-card {
  display: grid;
  min-height: 132px;
  gap: 10px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
}

.sponsor-card img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

.sponsor-card strong {
  font-size: 1.02rem;
  line-height: 1.25;
}

.sponsor-card span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.supporter-section {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding-top: 10px;
  scroll-margin-top: 96px;
}

.supporter-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.supporter-list li {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.05);
  color: var(--ink);
  font-weight: 680;
}

.sponsor-rules {
  max-width: 860px;
}

.sponsor-rules h4 {
  margin: 0;
  font-size: 1.2rem;
}

.sponsor-rules p {
  margin: 0;
  color: var(--muted);
}

.venue-page {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.venue-intro {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.venue-intro h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.venue-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.venue-card {
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
}

.venue-card-body {
  display: grid;
  gap: 8px;
}

.venue-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.venue-card h3,
.venue-card p {
  margin: 0;
}

.venue-card h3 {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
}

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

.venue-teams {
  font-size: 0.9rem;
  font-weight: 760;
}

.occupancy-section {
  display: grid;
  gap: 18px;
  padding-top: clamp(12px, 2vw, 22px);
}

.occupancy-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.62fr);
  gap: 18px;
  align-items: end;
}

.occupancy-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.occupancy-head h2,
.occupancy-head p {
  margin: 0;
}

.occupancy-head h2 {
  color: var(--red);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 0.98;
}

.occupancy-head p {
  color: var(--muted);
}

.occupancy-list {
  display: grid;
  gap: 18px;
}

.occupancy-hall {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
}

.occupancy-hall-head {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--green);
  color: #fff;
}

.occupancy-hall-head h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.occupancy-hall-head .occupancy-location {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  min-width: 0;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.occupancy-hall-head .occupancy-address {
  font-size: 0.94rem;
  font-weight: 400;
  white-space: normal;
}

.occupancy-hall-head span {
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.occupancy-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--line);
  gap: 1px;
}

.occupancy-day {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  background: #fff;
}

.occupancy-day h4 {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1;
  text-transform: uppercase;
}

.occupancy-day ol {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.occupancy-day li {
  display: grid;
  gap: 4px;
  min-height: 72px;
  align-content: center;
  padding: 10px;
  border: 1px solid rgba(21, 26, 23, 0.08);
  border-radius: 8px;
  background: rgba(21, 26, 23, 0.05);
}

.occupancy-day li.is-female {
  background: rgba(151, 31, 42, 0.12);
}

.occupancy-day li.is-male {
  background: rgba(32, 91, 65, 0.13);
}

.occupancy-day li.is-mix {
  background: rgba(255, 190, 40, 0.22);
}

.occupancy-day li.is-kids {
  background: rgba(37, 95, 134, 0.12);
}

.occupancy-day time {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.occupancy-day strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.12;
}

.occupancy-team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.28em;
  align-items: baseline;
}

.occupancy-team-links a,
.occupancy-team-links span {
  color: inherit;
}

.occupancy-team-links a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.occupancy-team-separator {
  color: var(--muted);
}

.occupancy-day > p {
  margin: 0;
  color: rgba(95, 104, 98, 0.72);
  font-size: 0.9rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

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

.contact-card > a {
  color: var(--red);
  font-size: 1.15rem;
  font-weight: 820;
  text-decoration: none;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.socials a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 64px);
  padding: 34px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-social,
.footer-center,
.footer-nav {
  min-width: 0;
}

.footer-social {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-social h2 {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-color, var(--red));
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  box-shadow: 0 10px 24px rgba(21, 26, 23, 0.16);
  color: #fff;
  transform: translateY(-1px);
}

.footer-social-link svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-social-link.facebook {
  --brand-color: #1877f2;
}

.footer-social-link.twitter {
  --brand-color: #111;
}

.footer-social-link.youtube {
  --brand-color: #ff0000;
}

.footer-social-link.instagram {
  --brand-color: #c13584;
}

.footer-social-link.twitch {
  --brand-color: #9146ff;
}

.footer-center {
  display: grid;
  gap: 5px;
  justify-items: center;
  text-align: center;
}

.footer-center strong {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.1;
}

.footer-center span {
  max-width: 38ch;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}

.sticky-sponsors {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 52px);
  border-top: 1px solid rgba(21, 26, 23, 0.14);
  background: rgba(246, 247, 244, 0.96);
  box-shadow: 0 -14px 36px rgba(21, 26, 23, 0.12);
  backdrop-filter: blur(16px);
}

.sticky-sponsors span {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.sticky-sponsor-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(82px, 1fr));
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.sticky-sponsor-logos img {
  width: 100%;
  height: 52px;
  display: block;
  object-fit: contain;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.sticky-sponsor-logos a {
  min-width: 0;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 4;
    grid-row: 1;
    position: relative;
    z-index: 50;
  }

  .site-header nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40;
    display: flex;
    width: min(75vw, 390px);
    min-width: 280px;
    max-height: calc(100svh - 16px);
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: flex-start;
    padding: 92px 22px 24px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-bottom-left-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 180ms ease;
  }

  .site-header.is-menu-open nav {
    transform: translateX(0);
  }

  .site-header nav a {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(21, 26, 23, 0.08);
    border-radius: 7px;
    background: rgba(246, 247, 244, 0.84);
    color: var(--ink);
    font-size: 1rem;
    font-weight: 760;
  }

  .site-header nav a:hover {
    background: rgba(32, 91, 65, 0.08);
  }

  .header-action {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .quick-actions,
  .news-list,
  .archive-grid,
  .team-directory,
  .filter-bar,
  .match-hub,
  .live-grid,
  .service-grid,
  .section-grid,
  .team-columns,
  .team-hero-panel,
  .team-intro-news,
  .team-competition-grid,
  .live-section,
  .contact-section,
  .partner-groups {
    grid-template-columns: 1fr;
  }

  .sponsor-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sponsor-grid,
  .supporter-list,
  .staff-grid,
  .team-page-grid:not(.news-archive-grid),
  .venue-grid,
  .ticket-grid,
  .fan-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-link-grid {
    grid-template-columns: 1fr;
  }

	  .quick-actions {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

  .team-video-list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .team-video-entry {
    flex: 0 0 min(420px, 72vw);
    scroll-snap-align: start;
  }

  .team-video-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .occupancy-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .occupancy-days {
    display: flex;
    overflow-x: auto;
    background: #fff;
    gap: 10px;
    padding: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .occupancy-day {
    flex: 0 0 min(230px, 46vw);
    border: 1px solid var(--line);
    border-radius: 8px;
    scroll-snap-align: start;
  }

  .team-video-copy p {
    max-width: none;
  }

  .team-video-all-link {
    justify-self: start;
  }

  .home-match-area {
    padding-inline: clamp(14px, 4vw, 28px);
  }

  .home-team-filter {
    grid-template-columns: 1fr 1fr;
  }

  .home-team-filter-group {
    flex-wrap: wrap;
  }

  .home-match-slider {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .home-match-track {
    grid-auto-columns: 300px;
  }

  .home-match-body img {
    width: min(82px, 100%);
    height: 82px;
  }

  .hero-news-thumbs {
    display: flex;
    overflow-x: auto;
    border-top-width: 6px;
    scrollbar-width: thin;
  }

  .hero-news-thumb {
    flex: 0 0 min(42vw, 360px);
    min-height: 170px;
    border-right-width: 6px;
  }

  .section-intro {
    position: static;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 104px;
  }

  .page-hero-subnav {
    flex-wrap: nowrap;
    margin-right: -18px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .page-hero-subnav::-webkit-scrollbar {
    display: none;
  }

  .page-hero-subnav a {
    flex: 0 0 auto;
    min-height: 34px;
    padding-inline: 13px;
    font-size: 0.84rem;
  }

  .site-header {
    min-height: 64px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 160px;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 13px;
  }

  .hero {
    min-height: clamp(430px, 68svh, 520px);
  }

  .hero-image {
    min-height: clamp(430px, 68svh, 520px);
    object-position: 56% 20%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(18, 19, 16, 0.9), rgba(18, 19, 16, 0.18)),
      linear-gradient(90deg, rgba(18, 19, 16, 0.7), rgba(18, 19, 16, 0.12));
  }

  .hero-content {
    padding: 22px 18px 30px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.48rem, 13vw, 3.05rem);
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-news-stage,
  .hero-news-slide {
    min-height: 0;
  }

  .hero-news-content {
    align-self: center;
    max-width: calc(100% - 36px);
    margin-inline: 18px;
  }

  .hero-news-content h1 {
    max-width: 13ch;
    font-size: clamp(2rem, 9vw, 2.72rem);
    line-height: 0.98;
  }

  .team-video-section {
    padding: 22px 16px;
  }

  .team-video-list {
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
  }

  .team-video-entry {
    flex-basis: min(315px, 82vw);
  }

  .team-video-copy h2 {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .team-video-copy h2::before,
  .team-video-copy h2::after {
    display: none;
  }

  .hero-news-read-more {
    min-height: 38px;
    padding: 9px 15px;
    border-radius: 7px;
    font-size: 0.78rem;
  }

  .hero-news-meta {
    right: 10px;
    bottom: 8px;
    left: auto;
    max-width: calc(100% - 24px);
    justify-content: flex-end;
    gap: 4px;
    padding: 6px 9px;
    font-size: 0.68rem;
    line-height: 1;
  }

  .hero-news-dots {
    bottom: 22px;
  }

  .hero-news-thumbs {
    border-top-width: 6px;
  }

  .hero-news-thumb {
    flex: 0 0 78vw;
    min-height: 150px;
    border-right-width: 6px;
  }

  .hero-news-thumb span {
    right: 10px;
    bottom: 10px;
    left: 10px;
    font-size: 0.84rem;
    line-height: 1.12;
  }

  .home-match-slider {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .home-match-area {
    margin-top: 24px;
    padding-inline: 12px;
  }

  .home-team-filter {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .home-team-filter button {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 0.9rem;
  }

  .home-match-nav {
    display: none;
  }

  .home-match-track {
    grid-auto-columns: 300px;
    gap: 14px;
  }

  .home-match-card {
    width: 300px;
    height: 400px;
    border-radius: 14px;
  }

  .home-match-head {
    padding: 18px 16px 0;
  }

  .home-match-teams {
    margin: 18px 16px 0;
    font-size: 0.98rem;
  }

  .home-match-body {
    gap: 12px;
    padding: 22px 16px;
  }

  .home-match-body img {
    width: min(90px, 100%);
    height: 90px;
  }

  .home-match-body time {
    min-width: 76px;
    font-size: 0.94rem;
  }

  .home-match-body time strong {
    font-size: 1.06rem;
  }

  .home-match-ticket {
    min-height: 64px;
    padding: 12px 16px;
    font-size: 0.88rem;
  }

  .home-standings-head {
    display: grid;
    align-items: start;
  }

  .home-standings-head span {
    text-align: left;
  }

  .home-standings-panel {
    padding: 16px;
  }

  .home-standings-table-wrap {
    overflow-x: hidden;
  }

  .home-standings-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 0.82rem;
  }

  .home-standings-table th,
  .home-standings-table td {
    padding: 9px 5px;
  }

  .home-standings-table th:nth-child(1),
  .home-standings-table td:nth-child(1) {
    width: 34px;
  }

  .home-standings-table th:nth-child(3),
  .home-standings-table td:nth-child(3),
  .home-standings-table th:nth-child(8),
  .home-standings-table td:nth-child(8) {
    width: 38px;
  }

  .home-standings-table th:nth-child(4),
  .home-standings-table td:nth-child(4),
  .home-standings-table th:nth-child(5),
  .home-standings-table td:nth-child(5),
  .home-standings-table th:nth-child(6),
  .home-standings-table td:nth-child(6) {
    display: none;
  }

  .home-standings-table th:nth-child(7),
  .home-standings-table td:nth-child(7) {
    width: 58px;
  }

  .home-standings-team {
    width: 100%;
    gap: 7px;
  }

  .home-standings-team img {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .home-standings-team span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-actions {
    gap: 10px;
  }

  .occupancy-hall-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }

  .occupancy-days {
    gap: 8px;
    padding: 10px;
  }

  .occupancy-day {
    flex-basis: min(260px, 82vw);
    padding: 12px;
  }

  .occupancy-day li {
    min-height: 64px;
  }

  .button {
    width: 100%;
    min-height: 42px;
  }

  .filter-bar {
    padding: 14px;
  }

  .filter-button-bar {
    grid-template-columns: 1fr;
  }

  .filter-button-bar > .team-filter-select {
    grid-column: 1;
  }

  .event-meta {
    grid-template-columns: 1fr;
  }

  .news-archive-grid .post-card {
    height: auto;
    min-height: 0;
  }

  .news-archive-grid .post-card a {
    grid-template-rows: auto auto auto auto auto;
  }

  .news-archive-grid .post-card p:not(.post-meta) {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .team-match-teams {
    grid-template-columns: 1fr;
  }

  .team-intro-news .team-news-list {
    grid-template-rows: none;
    gap: 8px;
  }

  .team-intro-news .team-news-item a {
    grid-template-columns: minmax(108px, 38%) minmax(0, 1fr);
    height: 92px;
    min-height: 92px;
  }

  .team-intro-news .team-news-thumb {
    height: 100%;
    aspect-ratio: auto;
  }

  .team-intro-news .team-news-body {
    gap: 3px;
    align-content: center;
    padding: 8px 10px;
  }

  .team-intro-news .team-news-body time {
    font-size: 0.68rem;
    line-height: 1;
  }

  .team-intro-news .team-news-body strong {
    font-size: clamp(0.92rem, 4vw, 1.05rem);
    line-height: 1.08;
  }

  .team-intro-news .team-news-body em {
    font-size: 0.9rem;
    line-height: 1.05;
  }

  .team-news-all-link {
    margin-top: 2px;
  }

  .team-match-teams {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
  }

  .team-match-teams span {
    display: grid;
    gap: 4px;
    justify-items: center;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.08;
    text-align: center;
  }

  .team-match-teams span:last-child {
    justify-content: initial;
    text-align: center;
  }

  .team-match-teams img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .team-match-teams strong {
    min-width: 48px;
    font-size: 1.05rem;
    text-align: center;
  }

  .team-video-list {
    grid-template-columns: 1fr;
  }

.event-meta-location,
.event-meta-status,
.event-meta-tickets {
  text-align: left;
}

  .fan-section-header h2 {
    white-space: normal;
  }

  .sponsor-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .sponsor-logos a,
  .sponsor-logos > img,
  .mini-logos img {
    height: 64px;
  }

  .sponsor-logos img,
  .mini-logos img {
    padding: 8px;
  }

  .sponsor-grid,
  .supporter-list,
  .staff-grid,
  .team-page-grid:not(.news-archive-grid),
  .media-document-grid,
  .venue-grid,
  .ticket-grid,
  .fan-info-grid,
  .contact-info-grid,
  .social-link-grid {
    grid-template-columns: 1fr;
  }

  .team-sponsor-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-sponsor-logos img {
    height: 64px;
  }

  .team-sponsor-logos span {
    font-size: 0.76rem;
  }

  .social-link-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 18px;
    align-items: center;
  }

  .social-logo {
    width: 56px;
    height: 56px;
  }

  .social-logo svg {
    width: 30px;
    height: 30px;
  }

  .social-link-card strong {
    font-size: 1.2rem;
  }

  .social-link-card small {
    font-size: 1rem;
  }

  .news-list img,
  .featured-news img {
    height: 150px;
  }

  .card-icon {
    width: 26px;
    height: 26px;
  }

  .quick-actions {
    margin-top: 0;
    padding: 0;
  }

  .quick-actions a {
    min-height: 110px;
    box-shadow: none;
  }

  .featured-news {
    min-height: 0;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-social,
  .footer-center,
  .footer-nav {
    align-items: flex-start;
    justify-content: start;
    justify-items: start;
    text-align: left;
  }

  .sticky-sponsors {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    min-height: 86px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  }

  .sticky-sponsors span {
    font-size: 0.68rem;
    line-height: 1;
  }

  .sticky-sponsor-logos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
  }

  .sticky-sponsor-logos a,
  .sticky-sponsor-logos img {
    min-width: 0;
    width: 100%;
    height: 38px;
  }

  .sticky-sponsor-logos img {
    padding: 5px 4px;
    border-radius: 6px;
  }
}

@media (max-width: 340px) {
  .home-match-track {
    grid-auto-columns: 292px;
  }

  .home-match-card {
    width: 292px;
  }
}

/* Homepage cover and latest matchdays. */
body.home-without-sponsors { padding-bottom: 0; }
.home-hero {
  --hero-green: #205b41;
}
.home-hero-cover {
  background: #034833;
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: min(72svh, 720px);
  overflow: hidden;
}
.home-hero-image {
  position: absolute;
  inset: 0;
  min-width: 0;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}
.home-hero-title {
  grid-area: 1 / 1;
  z-index: 1;
  align-self: end;
  justify-self: start;
  margin: 18px clamp(18px, 8vw, 138px);
  margin-bottom: clamp(24px, 8vw, 120px);
  padding: clamp(16px, 3vw, 32px);
  max-width: 76vw;
  background: rgb(15 20 17 / var(--home-title-opacity, .4));
  color: #fff;
}
.home-hero-title[data-title-position="top"] { align-self: start; margin-block: 18px; }
.home-hero-title[data-title-position="center"] { align-self: center; margin-block: 18px; }
.home-hero-title h1 {
  margin: 0;
  font-size: calc((.921875rem + 1.6875vw) * var(--home-title-scale, 1));
  line-height: 1.15;
  text-wrap: balance;
}
.home-hero .hero-news-thumb span {
  background: rgb(15 20 17 / 40%);
}
.home-hero .hero-news-thumb:focus-visible {
  outline: 3px solid var(--green, #205b41);
  outline-offset: -3px;
}
@media (max-width: 1100px) {
  .home-hero .hero-news-thumbs {
    gap: 6px;
    scroll-snap-type: x proximity;
  }
  .home-hero .hero-news-thumb {
    display: grid;
    align-items: end;
    flex: 0 0 calc((100% - 12px) * 3 / 7);
    min-width: 0;
    min-height: clamp(170px, 30vw, 240px);
    border-right: 0;
    scroll-snap-align: start;
    text-decoration: none;
  }
  .home-hero .hero-news-thumb span {
    position: relative;
    inset: auto;
    padding: 10px 8px;
    font-size: clamp(.875rem, 2.2vw, 1.1rem);
    line-height: 1.3;
    overflow-wrap: anywhere;
  }
}
.home-latest-results.section {
  max-width: none;
  width: 100%;
  padding-inline: clamp(18px, 3vw, 44px);
}
.home-latest-results h2 { max-width: none; }
.home-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
  margin-top: 24px;
}
.home-result-team h3 { margin: 0; }
.home-result-team h3 a { color: inherit; text-decoration: none; }
.home-result-team h3 a:hover { color: var(--green); text-decoration: underline; }
.fan-section { scroll-margin-top: 160px; }
@media (max-width: 1000px) {
  .home-result-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .home-hero-title { max-width: calc(100% - 36px); }
  .home-hero-title h1 { font-size: calc(clamp(1.25rem, 5.625vw, 1.7rem) * var(--home-title-scale, 1)); }
  .home-result-grid { grid-template-columns: 1fr; }
}
.home-match-area .home-team-filter {
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.home-match-area .home-team-filter-group {
  justify-content: flex-end;
  gap: 6px;
}
.home-match-area .home-team-filter button {
  min-height: 32px;
  padding: 5px 10px;
  font-size: .75rem;
  line-height: 1.25;
}
.home-match-area .home-match-slider { margin-top: 12px; }

@media (max-width: 1100px) {
  .site-header nav { visibility: hidden; transform: none; }
  .site-header.is-menu-open nav { visibility: visible; }
}
@media (max-width: 700px) {
  .home-hero-cover { min-height: 220px; }
}

.single-post-header {
  width: 100%;
  max-width: none;
  padding: clamp(24px, 5vw, 64px);
  background: #034833 var(--mtv-hero-image) center / cover no-repeat;
}
.single-post-header h1,
.single-post-header .single-post-meta { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-livestream { flex-direction: column; gap: 2px; }
.livestream-onair {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6ef5a5;
  font-size: .7rem;
  line-height: 1;
  text-transform: uppercase;
}
.livestream-onair[hidden] { display: none; }
.header-livestream.is-live { border-color: #205b41; }
.livestream-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: mtv-onair 1.8s ease-in-out infinite;
}
@keyframes mtv-onair {
  50% { opacity: .35; }
}
@media (prefers-reduced-motion: reduce) {
  .livestream-dot { animation: none; }
}
@media (max-width: 1100px) {
  .header-actions { grid-column: 3; grid-row: 1; }
}
@media (max-width: 640px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto auto; gap: 6px; padding-inline: 8px; }
  .site-header .brand { grid-column: 1; grid-row: 1; }
  .site-header .brand-logo { width: 140px; max-width: 100%; }
  .site-header .menu-toggle { grid-column: 3; grid-row: 1; height: 100%; min-height: 44px; }
  .header-actions { grid-column: 2; grid-row: 1; gap: 4px; justify-content: flex-end; align-items: stretch; align-self: stretch; }
  .header-actions .header-action { min-height: 44px; padding-inline: clamp(6px, 1.5vw, 10px); font-size: clamp(.75rem, 2.7vw, .875rem); }
  .site-header nav { position: absolute; top: 100%; padding-top: 16px; max-height: calc(100svh - 100px); }
}
