:root {
  --blue: #005bc3;
  --orange: #ff5c00;
  --navy: #003151;
  --ink: #14212d;
  --muted: #667383;
  --line: #dfe7ef;
  --paper: #f7f9fb;
  --white: #ffffff;
  --green: #1f7a5c;
  --shadow: 0 18px 45px rgba(0, 49, 81, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Verdana, Geneva, sans-serif;
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.development-notice {
  padding: 9px clamp(18px, 4vw, 56px);
  background: #fff4e8;
  color: #7a3500;
  border-bottom: 1px solid rgba(255, 92, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(0, 49, 81, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 58px;
  height: 42px;
  object-fit: contain;
}

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

.brand strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.nav-dropdown > a {
  min-height: 40px;
  padding: 12px 10px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a:hover,
.nav-dropdown:hover > a {
  background: #eef5fc;
}

.site-nav a.active,
.nav-dropdown.active > a {
  background: var(--blue);
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  display: none;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.nav-dropdown-menu a {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 10px 12px;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(82vh - 76px);
  padding: clamp(72px, 11vw, 132px) clamp(18px, 6vw, 76px) 54px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--navy);
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 49, 81, 0.94), rgba(0, 91, 195, 0.72) 48%, rgba(0, 49, 81, 0.22)),
    linear-gradient(0deg, rgba(0, 49, 81, 0.72), rgba(0, 49, 81, 0.08) 42%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb27d;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.25;
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.button.primary:hover {
  border-color: #d94f00;
  background: #d94f00;
}

.button.secondary {
  border-color: var(--blue);
  background: var(--white);
  color: var(--blue);
}

.button.secondary:hover {
  background: #eef5fc;
  color: var(--navy);
}

.hero .button.secondary,
.temporary-hero .button.secondary,
.page-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--white);
}

.hero .button.secondary:hover,
.temporary-hero .button.secondary:hover,
.page-hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.temporary-hero {
  min-height: 440px;
  padding: clamp(70px, 10vw, 124px) clamp(18px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(0, 49, 81, 0.96), rgba(0, 91, 195, 0.82)),
    url("paviljoen.jpg") center/cover;
  color: var(--white);
}

.temporary-hero-inner {
  max-width: 840px;
}

.temporary-hero h1 {
  color: var(--white);
}

.temporary-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

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

.temporary-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 6vw, 76px);
  background: var(--paper);
}

.temporary-link-card {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 49, 81, 0.08);
}

.temporary-link-card:hover {
  border-color: rgba(0, 91, 195, 0.34);
  transform: translateY(-2px);
}

.temporary-link-card span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.temporary-link-card strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.25;
}

.temporary-link-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.temporary-link-card.accent {
  background: var(--navy);
  color: var(--white);
}

.temporary-link-card.accent strong,
.temporary-link-card.accent p {
  color: var(--white);
}

.today-panel {
  position: absolute;
  right: clamp(18px, 6vw, 76px);
  bottom: 34px;
  width: min(360px, calc(100% - 36px));
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.panel-label {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.today-panel strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
}

.today-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-links a {
  min-height: 118px;
  padding: 22px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.quick-links span {
  display: block;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-links strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  line-height: 1.4;
}

.quick-links.task-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-links.task-links a {
  min-height: 142px;
}

.quick-links.task-links p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.quick-links strong p,
.quick-links strong ul,
.quick-links strong ol,
.info-tile strong p,
.info-tile strong ul,
.info-tile strong ol,
.contact-lead strong p,
.contact-lead strong ul,
.contact-lead strong ol,
.schedule-panel li strong p,
.schedule-panel li strong ul,
.schedule-panel li strong ol {
  margin: 0 0 8px;
}

.quick-links strong p:last-child,
.quick-links strong ul:last-child,
.quick-links strong ol:last-child,
.info-tile strong p:last-child,
.info-tile strong ul:last-child,
.info-tile strong ol:last-child,
.contact-lead strong p:last-child,
.contact-lead strong ul:last-child,
.contact-lead strong ol:last-child,
.schedule-panel li strong p:last-child,
.schedule-panel li strong ul:last-child,
.schedule-panel li strong ol:last-child {
  margin-bottom: 0;
}

.quick-links strong ul,
.quick-links strong ol,
.info-tile strong ul,
.info-tile strong ol,
.contact-lead strong ul,
.contact-lead strong ol,
.schedule-panel li strong ul,
.schedule-panel li strong ol {
  padding-left: 20px;
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 6vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 36px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.sport-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 49, 81, 0.08);
}

.sport-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.sport-card div {
  padding: 18px;
}

.sport-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.sport-card.accent {
  border-color: rgba(255, 92, 0, 0.42);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 9vw, 110px) clamp(18px, 6vw, 76px);
  background: var(--navy);
  color: var(--white);
}

.split-section h2 {
  color: var(--white);
}

.content-column {
  max-width: 720px;
}

.content-column p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
}

.schedule-panel {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.schedule-header {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.schedule-header span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.schedule-header strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.2rem;
}

.schedule-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule-panel li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 82px;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.schedule-panel li:last-child {
  border-bottom: 0;
}

.schedule-panel time {
  color: var(--blue);
  font-weight: 800;
}

.schedule-panel span {
  min-width: 0;
  font-size: 0.88rem;
}

.schedule-panel li strong {
  color: var(--green);
  font-size: 0.8rem;
  text-align: right;
}

.department-panel li {
  grid-template-columns: 48px minmax(120px, 0.55fr) minmax(0, 1fr);
}

.department-panel li strong {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}

.soft {
  background: var(--paper);
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  max-width: 1180px;
  margin: 0 auto;
}

.join-layout > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

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

.join-steps article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.join-steps span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
}

.join-steps h3 {
  margin-top: 18px;
}

.join-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.pavilion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(58px, 9vw, 110px) clamp(18px, 6vw, 76px);
}

.pavilion > img {
  width: 100%;
  min-height: 340px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.pavilion p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.pavilion .button {
  margin-top: 10px;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.info-band div {
  min-height: 130px;
  padding: 26px clamp(18px, 4vw, 42px);
  background: var(--blue);
  color: var(--white);
}

.info-band span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-band strong {
  display: block;
  margin-top: 10px;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 36px clamp(18px, 6vw, 76px);
  background: var(--navy);
  color: var(--white);
}

.site-footer img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.site-version {
  display: inline-flex;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer a {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 56vh;
  padding: clamp(72px, 11vw, 132px) clamp(18px, 6vw, 76px) clamp(42px, 7vw, 74px);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.page-hero.image {
  background-color: var(--navy);
  background-position: center, center, 62% center;
  background-repeat: no-repeat;
  background-size: auto, auto, cover;
}

.page-hero.compact {
  min-height: 44vh;
  background:
    linear-gradient(120deg, rgba(0, 49, 81, 0.98), rgba(0, 91, 195, 0.9) 66%, rgba(255, 92, 0, 0.95));
}

.page-hero.listing-hero {
  min-height: 34vh;
  padding-top: clamp(54px, 8vw, 96px);
  padding-bottom: clamp(34px, 5vw, 54px);
}

.page-hero.listing-hero h1 {
  font-size: clamp(2rem, 4.4vw, 4rem);
}

.page-hero.image::before {
  content: none;
}

.page-hero.image::after {
  content: none;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5.7vw, 5rem);
}

.page-hero p:not(.eyebrow),
.page-hero .hero-rich {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.page-hero .hero-rich p {
  margin: 0 0 10px;
}

.page-hero .hero-rich p:last-child {
  margin-bottom: 0;
}

.hero-social-badge {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(22px, 4vw, 54px);
  z-index: 2;
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  background: rgba(0, 49, 81, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(8px);
}

.hero-social-badge span {
  display: block;
  color: #ffb27d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-social-badge strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.hero-social-badge div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-social-badge a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
}

.hero-social-badge a:hover,
.hero-social-badge a:focus-visible {
  background: var(--orange);
  color: var(--white);
}

.page-hero.sportlink-hero {
  min-height: 0;
  padding-top: clamp(30px, 5vw, 58px);
  padding-bottom: clamp(24px, 4vw, 38px);
}

.page-hero.sportlink-hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.page-hero.sportlink-hero p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.55;
}

.not-found-hero {
  min-height: 38vh;
}

.not-found-section {
  background:
    linear-gradient(180deg, #f7f9fb 0%, #ffffff 72%);
}

.not-found-card {
  display: grid;
  grid-template-columns: minmax(120px, 210px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.not-found-code {
  display: grid;
  place-items: center;
  min-height: 170px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 49, 81, 0.96), rgba(0, 91, 195, 0.88)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 10px, transparent 10px 20px);
  color: var(--white);
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-weight: 900;
  letter-spacing: 0;
}

.not-found-card h2 {
  max-width: 620px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.not-found-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.not-found-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sportlink-section {
  padding-top: clamp(18px, 3vw, 32px);
  padding-bottom: clamp(30px, 5vw, 58px);
  background: #f4f6f5;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.department-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 49, 81, 0.08);
}

.department-card.large {
  grid-column: span 2;
}

.department-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.department-card div {
  padding: 20px;
}

.department-card span,
.info-tile span {
  display: block;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.department-card p,
.two-column p {
  color: var(--muted);
  line-height: 1.7;
}

.blue-card {
  display: flex;
  align-items: end;
  min-height: 250px;
  background: var(--navy);
}

.blue-card h2,
.blue-card p {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.35;
}

.text-link::after {
  content: "›";
  color: var(--orange);
  font-size: 1.08em;
  line-height: 1;
}

.text-link:hover {
  color: var(--orange);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.more-content-list {
  max-width: 1180px;
  margin: 18px auto 0;
}

.more-content-list summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  box-shadow: 0 10px 24px rgba(0, 49, 81, 0.06);
}

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

.more-content-list summary span {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: #fff4ed;
  color: var(--orange);
  font-size: 0.78rem;
}

.more-content-list .tile-grid {
  margin-top: 18px;
}

.media-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 20px auto 0;
}

.media-page-featured {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 49, 81, 0.1);
}

.media-page-featured[hidden],
.media-page-card[hidden] {
  display: none;
}

.media-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1080px;
  margin: 0 auto 18px;
}

.media-filter-bar button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 49, 81, 0.06);
}

.media-filter-bar button:hover,
.media-filter-bar button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.media-filter-bar em {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--blue);
  font-size: 0.78rem;
  font-style: normal;
}

.media-filter-bar button.is-active em,
.media-filter-bar button:hover em {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.media-page-featured-image,
.media-page-card-image {
  min-height: 230px;
  background-position: center;
  background-size: cover;
}

.media-page-featured-image {
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.media-page-card-image {
  display: flex;
  align-items: flex-end;
  min-height: 126px;
  margin: -16px -16px 0;
  padding: 14px 16px;
}

.media-page-featured-image span,
.media-page-card-image span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-page-featured-content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
}

.media-page-featured-content h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  line-height: 1.12;
}

.media-page-featured-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.media-page-card {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 49, 81, 0.06);
}

.media-page-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.media-page-card-top span,
.media-page-card-top em,
.media-page-card dt {
  color: var(--orange);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.media-page-card-top em {
  color: var(--blue);
}

.media-page-card > strong {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.28;
}

.media-page-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.media-page-source span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.media-page-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.media-page-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.media-page-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  text-align: right;
}

.media-page-source {
  display: grid;
  gap: 7px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
  align-self: end;
}

.media-page-source p {
  display: -webkit-box;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  -webkit-line-clamp: 1;
}

.media-page-source.compact {
  align-self: auto;
}

.media-page-source.compact p {
  display: -webkit-box;
}

.media-more-list {
  max-width: 1080px;
  margin: 16px auto 0;
}

.media-more-list .media-page-grid {
  margin-top: 18px;
}

.media-page-strip a strong {
  font-size: 0.96rem;
  line-height: 1.35;
}

.media-page-note {
  background: #f7f9fb;
}

.media-page-note > div {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 49, 81, 0.08);
}

.department-social-section {
  background: #f7f9fb;
  padding-top: 46px;
  padding-bottom: 46px;
}

.department-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 500px));
  justify-content: center;
  align-items: start;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.social-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e6ec;
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 49, 81, 0.10);
}

.social-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.social-panel-header span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
}

.social-panel-header a {
  color: #ffb27d;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-panel iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  background: var(--white);
}

.facebook-panel iframe {
  height: 780px;
}

.instagram-panel {
  display: grid;
  align-content: start;
}

.instagram-panel .instagram-media {
  width: calc(100% - 32px) !important;
  min-width: 0 !important;
  margin: 16px !important;
}

.instagram-profile-card {
  min-height: 170px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 92, 0, 0.08), rgba(0, 49, 81, 0.05)),
    var(--white);
}

.instagram-profile-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.35;
}

.instagram-profile-card p {
  color: var(--muted);
  line-height: 1.7;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 22px;
}

.category-filter a,
.article-tags span,
.update-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
}

.category-filter a.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.content-switcher {
  margin-bottom: 14px;
}

.content-switcher a {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
}

.article-tags,
.update-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.update-tags {
  margin-top: 0;
}

.category-select-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 22px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fb;
}

.category-select-filter label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.category-select-filter select {
  flex: 1 1 220px;
  min-height: 38px;
  min-width: 0;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
}

.category-select-filter a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.update-item .update-tags span {
  color: var(--navy);
  line-height: 1;
}

.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1180px;
  margin: 24px auto 0;
}

.contact-grid {
  margin-top: 32px;
}

.contact-hub,
.contact-directory {
  display: grid;
  gap: 18px;
  max-width: 1020px;
  margin: 0 auto;
}

.contact-hub {
  display: block;
}

.contact-hub-heading {
  display: grid;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto 20px;
}

.contact-hub-heading h2 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.contact-hub-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-directory {
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
}

.contact-lead-stack {
  position: sticky;
  top: 104px;
  display: grid;
  align-self: start;
  gap: 12px;
}

.contact-lead {
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 8px 22px rgba(0, 49, 81, 0.055);
}

a.contact-lead {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.contact-lead:hover {
  border-color: rgba(0, 91, 195, 0.32);
  box-shadow: 0 12px 28px rgba(0, 49, 81, 0.1);
  transform: translateY(-1px);
}

a.contact-lead::after,
a.contact-row-card::after {
  content: "Bekijk overzicht";
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-lead span,
.contact-row-card span {
  display: block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-lead strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.55;
}

.contact-route-list,
.contact-person-list,
.contact-group-list {
  display: grid;
  gap: 10px;
}

.contact-hub .contact-route-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

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

.contact-group-list {
  gap: 16px;
}

.contact-group-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 10px 26px rgba(0, 49, 81, 0.06);
}

.contact-group-card h2 {
  margin: 0 0 12px;
  padding: 9px 12px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.2;
}

.contact-row-card {
  display: grid;
  gap: 8px;
  min-height: 0;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 49, 81, 0.055);
}

.contact-hub .contact-row-card {
  min-height: 210px;
  border-top: 4px solid var(--blue);
}

.contact-person-photo {
  width: 72px;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(0, 91, 195, 0.12);
  border-radius: 50%;
  background: #eef5fc;
  object-fit: cover;
}

a.contact-row-card {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.contact-row-card:hover {
  border-color: rgba(0, 91, 195, 0.32);
  box-shadow: 0 12px 28px rgba(0, 49, 81, 0.1);
  transform: translateY(-1px);
}

.contact-hub a.contact-row-card::after {
  align-self: end;
  margin-top: 12px;
  padding: 9px 12px;
  border-radius: 6px;
  background: #eef5fc;
  color: var(--blue);
}

.contact-row-card strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

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

.contact-card-lines p {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.45;
}

.contact-card-lines .primary-line {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.contact-card-lines p strong {
  color: inherit;
  font: inherit;
}

.contact-card-lines .meta-line {
  gap: 3px;
  padding-top: 2px;
}

.contact-card-lines .meta-line span {
  display: block;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card-lines .meta-line strong {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-card-lines .meta-line a {
  color: inherit;
  text-decoration-color: rgba(238, 101, 46, 0.45);
  text-underline-offset: 3px;
}

.info-tile {
  display: block;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 49, 81, 0.07);
}

a.info-tile {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

a.info-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 91, 195, 0.34);
  box-shadow: 0 16px 34px rgba(0, 49, 81, 0.12);
}

.info-tile.with-image {
  padding-top: 12px;
}

.info-tile > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 8px;
  border-radius: 6px;
  object-fit: cover;
}

.tile-image-source {
  display: block;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.info-tile strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.4;
}

.info-tile > .text-link {
  display: inline-flex;
  margin-top: 12px;
}

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

.content-card {
  min-height: auto;
}

.content-card.with-image {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  grid-auto-rows: min-content;
  column-gap: 16px;
  padding: 14px;
}

.content-card.with-image > img {
  grid-row: 1 / span 4;
  width: 150px;
  height: 124px;
  aspect-ratio: auto;
  margin: 0;
}

.content-card > span {
  line-height: 1.25;
}

.content-card strong {
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.32;
}

.content-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-card > .text-link {
  margin-top: 10px;
}

.department-gallery-section {
  background: #fff;
}

.department-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.department-photo-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 49, 81, 0.08);
}

.department-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eaf0f5;
}

.department-photo-card figcaption {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.department-photo-card figcaption strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
}

.department-photo-card figcaption span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.department-photo-card figcaption small {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-updates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.update-column {
  display: grid;
  gap: 12px;
}

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

.update-heading h3 {
  margin: 0;
  color: var(--navy);
}

.update-item {
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 49, 81, 0.06);
}

.update-item time {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.update-item strong {
  color: var(--navy);
  line-height: 1.35;
}

.update-item span {
  color: var(--muted);
  line-height: 1.55;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(24px, 5vw, 64px);
  max-width: 1120px;
  margin: 0 auto;
}

.article-body {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.8;
}

.article-meta {
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.article-meta h2 {
  margin: 20px 0 0;
  color: var(--navy);
  font-size: 1rem;
}

.article-meta h2:first-child {
  margin-top: 0;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags span,
.article-meta span {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.article-facts {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
}

.article-facts div {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.article-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-facts dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.compact-heading {
  margin-bottom: 24px;
}

.compact-heading h2 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.article-related {
  margin-top: 0;
}

.image-credit {
  max-width: 1180px;
  margin: 10px auto 0;
  padding: 0 24px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-back-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 72px;
  padding: 22px 24px 0;
  border-top: 1px solid var(--line);
}

.article-back-nav .button,
.article-back-nav .text-link,
.article-back-nav .link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.article-back-nav .button.secondary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.article-back-nav .text-link::after {
  content: none;
}

.link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.link-button:hover {
  color: var(--orange);
}

@media (max-width: 640px) {
  .article-back-nav {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 52px;
  }

  .article-back-nav .button,
  .article-back-nav .text-link,
  .article-back-nav .link-button {
    width: 100%;
  }

  .instagram-panel .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}

.article-source-text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  max-width: 1180px;
  margin: 0 auto;
}

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

.stack-list article,
.address-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 49, 81, 0.06);
}

.stack-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.address-card {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.address-card strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  max-width: 1080px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 49, 81, 0.07);
}

.page-form {
  max-width: 760px;
  margin: 36px auto 0;
}

.contact-form h2 {
  margin: 0;
  color: var(--navy);
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(238, 101, 46, 0.28);
  border-radius: 6px;
  background: rgba(238, 101, 46, 0.09);
  color: var(--navy);
  font-weight: 800;
}

.form-error,
.form-target {
  margin: 0;
  padding: 14px 16px;
  border-radius: 6px;
  color: var(--navy);
  font-weight: 800;
}

.form-error {
  border: 1px solid rgba(210, 38, 38, 0.25);
  background: rgba(210, 38, 38, 0.08);
}

.form-target {
  border: 1px solid rgba(0, 91, 195, 0.16);
  background: rgba(0, 91, 195, 0.07);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
}

.team-overview {
  display: grid;
  gap: 34px;
  max-width: 1220px;
  margin: 0 auto;
}

.team-discipline {
  display: grid;
  gap: 22px;
}

.team-discipline-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.team-discipline-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.team-discipline-heading span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-category {
  display: grid;
  gap: 16px;
}

.team-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.team-category-heading h3 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.team-category-heading span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.team-card {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 49, 81, 0.06);
}

.team-card-logo {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.team-card-logo img {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
}

.team-card span {
  display: block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-card strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  line-height: 1.35;
}

.team-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.competition-list ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.competition-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 49, 81, 0.05);
}

.competition-list span {
  display: block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.competition-list strong,
.competition-list small {
  display: block;
}

.competition-list strong {
  margin-top: 8px;
  color: var(--navy);
  line-height: 1.4;
}

.competition-list small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.team-card em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.4;
}

.narrow-button {
  width: auto;
  margin-top: 12px;
}

.sportlink-shell {
  max-width: 1220px;
  margin: 0 auto;
  border: 1px solid #dbe3df;
  border-radius: 8px;
  background: #f4f6f5;
  box-shadow: 0 16px 38px rgba(0, 49, 81, 0.08);
  overflow: hidden;
}

.sportlink-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  background: var(--navy);
  color: var(--white);
}

.sportlink-dashboard h2 {
  margin: 10px 0 8px;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}

.sportlink-dashboard p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.sportlink-live-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sportlink-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sportlink-stats span {
  display: inline-flex;
  gap: 7px;
  align-items: baseline;
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sportlink-stats strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1;
}

.sportlink-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 460px);
  gap: 18px;
  align-items: end;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: #edf2f0;
}

.sportlink-controls h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.sportlink-note {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sportlink-controls label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.sportlink-controls select {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.sportlink-filter-panel {
  display: grid;
  gap: 10px;
  padding: 12px 22px 14px;
  border-bottom: 1px solid var(--line);
  background: #f4f6f5;
}

.sportlink-team-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 244, 237, 0.72), rgba(244, 246, 245, 0.96));
}

.sportlink-team-overview article {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.sportlink-team-overview span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sportlink-team-overview strong {
  min-width: 0;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.3;
}

.sportlink-team-overview small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.sportlink-view-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sportlink-view-tabs a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.sportlink-view-tabs a.active {
  border-color: var(--orange);
  background: #fff4ed;
  color: var(--orange);
}

.sportlink-view-tabs span {
  min-width: 0;
}

.sportlink-view-tabs strong {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-size: 0.76rem;
}

.sportlink-shell iframe {
  display: block;
  width: 100%;
  min-height: 1040px;
  border: 0;
  background: var(--white);
}

.sportlink-shell iframe.is-hidden {
  display: none;
}

.sportlink-panel {
  display: grid;
  gap: 22px;
  padding: 22px;
  background: var(--white);
}

.sportlink-home-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff7f0 0%, #f4f6f5 62%);
}

.sportlink-home-strip h3 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
}

.sportlink-home-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.sportlink-home-match {
  display: grid;
  gap: 7px;
  min-height: 154px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 49, 81, 0.06);
}

.sportlink-home-match time,
.home-match-date {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sportlink-home-match strong {
  color: var(--navy);
  line-height: 1.28;
}

.sportlink-home-match span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.sportlink-data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 18px 22px 22px;
  background: #f4f6f5;
}

.sportlink-status {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #edf2f0;
  color: var(--muted);
  line-height: 1.6;
}

.sportlink-block {
  display: grid;
  gap: 14px;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

.sportlink-block-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.sportlink-block-heading span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef6f4;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sportlink-block-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.sportlink-results-details {
  gap: 12px;
}

.sportlink-results-details summary {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.sportlink-results-details summary::-webkit-details-marker {
  display: none;
}

.sportlink-results-details summary span {
  display: grid;
  gap: 4px;
}

.sportlink-results-details summary strong {
  font-size: 1.05rem;
}

.sportlink-results-details summary small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.sportlink-results-details summary > b {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.86rem;
}

.sportlink-match-list {
  display: grid;
  gap: 8px;
}

.sportlink-date-groups {
  display: grid;
  gap: 14px;
}

.sportlink-date-group {
  display: grid;
  gap: 10px;
}

.sportlink-date-group h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sportlink-date-group h4::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.sportlink-match-card,
.sportlink-result-row {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.sportlink-match-card {
  border-left: 3px solid var(--orange);
}

.sportlink-match-card.is-veld {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(246, 252, 246, 0.76)),
    linear-gradient(135deg, rgba(46, 125, 76, 0.08), rgba(255, 255, 255, 0));
}

.sportlink-match-card.is-zaal {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(241, 248, 255, 0.78)),
    linear-gradient(135deg, rgba(0, 91, 195, 0.11), rgba(255, 255, 255, 0));
  border-left-color: #1d78c8;
}

.sportlink-match-card.is-away {
  border-left-color: var(--green);
}

.sportlink-match-card.is-away.is-zaal {
  border-left-color: #1d78c8;
}

.foys-shell {
  background: #f7f9fb;
}

.foys-dashboard {
  background:
    linear-gradient(135deg, rgba(0, 49, 81, 0.96), rgba(0, 91, 195, 0.76)),
    var(--navy);
}

.foys-source-strip {
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
}

.foys-source-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.foys-source-card strong {
  color: var(--navy);
}

.foys-source-card span,
.foys-source-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.foys-block-wide {
  max-width: 980px;
}

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

.foys-team-card {
  display: grid;
  gap: 7px;
  min-height: 156px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
}

.foys-team-card span,
.foys-team-card em {
  color: var(--orange);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.foys-team-card strong {
  color: var(--navy);
  line-height: 1.3;
}

.foys-team-card small {
  color: var(--muted);
  line-height: 1.45;
}

.foys-team-card em {
  width: fit-content;
  margin-top: auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff4ed;
}

.foys-match-card.is-softball {
  border-left-color: var(--orange);
}

.foys-match-card.is-baseball {
  border-left-color: var(--green);
}

.foys-match-card .sportlink-side {
  display: block;
}

.foys-result-row {
  grid-template-columns: 96px minmax(0, 1fr) auto;
}

.foys-result-row b {
  color: var(--navy);
  font-size: 1.08rem;
}

.foys-result-row small {
  grid-column: 2 / -1;
  color: var(--muted);
}

.foys-standings-list {
  display: grid;
  gap: 8px;
}

.foys-standings-list article {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.foys-standings-list strong {
  color: var(--navy);
}

.foys-standings-list span,
.foys-standings-list small {
  color: var(--muted);
  line-height: 1.4;
}

.sportlink-match-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
}

.sportlink-match-card time,
.sportlink-result-row span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sportlink-match-meta span {
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff4ed;
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sportlink-match-meta .sportlink-match-badges {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 5px;
  padding: 0;
  background: transparent;
}

.sportlink-match-meta .sportlink-match-badges span {
  white-space: nowrap;
}

.sportlink-match-card strong,
.sportlink-result-row strong {
  color: var(--navy);
  line-height: 1.35;
}

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

@media (min-width: 760px) {
  .sportlink-match-card {
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: 18px;
    align-items: center;
  }

  .sportlink-match-meta {
    align-content: center;
  }

  .sportlink-versus,
  .sportlink-match-footer {
    grid-column: 2;
  }

  .sportlink-match-footer {
    margin-top: 2px;
  }
}

.sportlink-side {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.sportlink-side img {
  width: 28px;
  height: 28px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.sportlink-vs {
  display: none;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sportlink-match-footer {
  display: grid;
  gap: 4px;
}

.sportlink-match-heading,
.sportlink-result-teams,
.sportlink-team-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sportlink-match-heading {
  justify-content: space-between;
}

.sportlink-match-heading strong {
  flex: 1;
}

.sportlink-match-heading img,
.sportlink-result-teams img,
.sportlink-team-cell img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.sportlink-result-teams img,
.sportlink-team-cell img {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}

.sportlink-match-card span,
.sportlink-match-card small {
  color: var(--muted);
  line-height: 1.45;
}

.sportlink-result-row {
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
}

.sportlink-program-row {
  grid-template-columns: 118px minmax(0, 1fr) auto;
}

.sportlink-result-row b {
  color: var(--navy);
  white-space: nowrap;
}

.sportlink-stand-section {
  padding: 0 22px 22px;
}

.sportlink-stand-tabs {
  gap: 12px;
}

.sportlink-stand-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sportlink-tab-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sportlink-tab-labels label {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
}

#standCompetitie:checked ~ .sportlink-tab-labels label[for="standCompetitie"],
#standPeriode:checked ~ .sportlink-tab-labels label[for="standPeriode"],
#standBeker:checked ~ .sportlink-tab-labels label[for="standBeker"] {
  border-color: var(--orange);
  background: #fff4ed;
  color: var(--orange);
}

.sportlink-tab-panel {
  display: none;
}

#standCompetitie:checked ~ .sportlink-tab-competitie,
#standPeriode:checked ~ .sportlink-tab-periode,
#standBeker:checked ~ .sportlink-tab-beker {
  display: block;
}

.sportlink-cup-standings {
  display: grid;
  gap: 10px;
}

.sportlink-widget-fallback {
  margin: 0 22px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.sportlink-widget-fallback summary {
  padding: 16px 18px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.sportlink-block h3,
.sportlink-block h4 {
  margin: 0;
  color: var(--navy);
}

.sportlink-block h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.sportlink-block h4 {
  font-size: 1rem;
}

.sportlink-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sportlink-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--white);
}

.sportlink-table-wrap th,
.sportlink-table-wrap td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.86rem;
  line-height: 1.45;
}

.sportlink-table-wrap th {
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.sportlink-table-wrap tr:last-child td {
  border-bottom: 0;
}

.sportlink-table-wrap tr.is-olympia td {
  background: #fff4ed;
  color: var(--navy);
  font-weight: 800;
}

.sportlink-standings {
  display: grid;
  gap: 18px;
}

.sportlink-standings article {
  display: grid;
  gap: 10px;
}

.home-sportlink {
  background: var(--paper);
}

.home-match-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 0.85fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.home-match-card,
.home-sportlink-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 49, 81, 0.06);
}

.home-match-card {
  display: grid;
  gap: 8px;
  min-height: 164px;
  padding: 18px;
  border-left: 4px solid var(--orange);
}

.home-match-card.featured {
  grid-row: span 2;
  align-content: end;
  min-height: 342px;
  background:
    linear-gradient(180deg, rgba(0, 49, 81, 0.16), rgba(0, 49, 81, 0.88)),
    url("paviljoen.jpg") center/cover;
  color: var(--white);
}

.home-match-card strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.32;
}

.home-match-card.featured strong {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.home-match-card span,
.home-match-card small {
  color: var(--muted);
  line-height: 1.45;
}

.home-match-card.featured span,
.home-match-card.featured small,
.home-match-card.featured .home-match-date {
  color: rgba(255, 255, 255, 0.86);
}

.home-sportlink-empty {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  color: var(--muted);
}

.home-sportlink-action {
  max-width: 1180px;
  margin: 18px auto 0;
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    margin-top: 6px;
    box-shadow: none;
  }

  .quick-links,
  .sports-grid,
  .department-grid,
  .tile-grid,
  .media-page-featured,
  .media-page-grid,
  .department-social-grid,
  .department-gallery,
  .team-grid,
  .section-heading,
  .split-section,
  .join-layout,
  .pavilion,
  .info-band,
  .two-column,
  .contact-layout,
  .contact-hub,
  .contact-directory,
  .contact-route-list,
  .contact-person-list,
  .contact-group-list,
  .sportlink-controls,
  .sportlink-data-grid,
  .sportlink-dashboard,
  .sportlink-home-strip,
  .sportlink-home-list,
  .foys-team-grid,
  .home-match-grid,
  .home-updates,
  .temporary-links,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .sportlink-dashboard {
    align-items: start;
  }

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

  .department-card.large {
    grid-column: auto;
  }

  .media-page-featured-image,
  .media-page-card-image {
    min-height: 190px;
  }

  .media-page-card-image {
    min-height: 118px;
  }

  .media-page-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .media-page-card-top {
    display: flex;
    justify-content: space-between;
  }

  .media-page-source {
    justify-items: start;
    min-width: 0;
  }

  .quick-links a {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-links.task-links {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .join-steps {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 24px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .today-panel {
    position: static;
    margin-top: 36px;
  }

  .contact-lead-stack,
  .contact-lead {
    position: static;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .page-hero.image {
    min-height: 420px;
    padding-top: 46px;
    padding-bottom: 34px;
  }

  .page-hero.image h1 {
    font-size: 2.25rem;
  }

  .page-hero.image p:not(.eyebrow),
  .page-hero.image .hero-rich {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-social-badge {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    margin-top: 20px;
    width: 100%;
    max-width: 320px;
  }

  .page-hero.sportlink-hero {
    padding: 24px;
  }

  .content-card.with-image {
    display: block;
  }

  .content-card.with-image > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 10px;
  }

  .page-hero.sportlink-hero h1 {
    font-size: 2rem;
  }

  .page-hero.sportlink-hero p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .sportlink-section {
    padding: 0;
  }

  .sportlink-shell {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .foys-result-row {
    grid-template-columns: 1fr;
  }

  .foys-result-row small {
    grid-column: auto;
  }

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

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 36px;
  }

  .brand small {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .temporary-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .sportlink-dashboard,
  .sportlink-controls,
  .sportlink-team-overview,
  .sportlink-data-grid,
  .sportlink-view-tabs {
    padding: 18px;
  }

  .sportlink-team-overview {
    grid-template-columns: 1fr;
  }

  .sportlink-stats {
    grid-template-columns: 1fr;
  }

  .sportlink-view-tabs {
    grid-template-columns: 1fr;
  }

  .sportlink-result-row {
    grid-template-columns: 1fr;
  }

  .sportlink-home-match,
  .home-match-card,
  .home-match-card.featured {
    min-height: 0;
  }

  .home-match-card.featured {
    grid-row: auto;
  }

  .not-found-card {
    grid-template-columns: 1fr;
  }

  .not-found-code {
    min-height: 110px;
  }

  .schedule-panel li {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .schedule-panel li strong {
    grid-column: 2;
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
