: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-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  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;
}

.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.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) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.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;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

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

.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);
}

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

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

.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;
}

.info-tile {
  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);
}

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

.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-top: 0;
  color: var(--navy);
  font-size: 1rem;
}

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

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

.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;
}

.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-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 h2 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.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 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;
}

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

.sportlink-shell {
  max-width: 1220px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

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

.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-shell iframe {
  display: block;
  width: 100%;
  min-height: 980px;
  border: 0;
  background: var(--white);
}

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

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

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

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

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

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

.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;
}

@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,
  .team-grid,
  .section-heading,
  .split-section,
  .join-layout,
  .pavilion,
  .info-band,
  .two-column,
  .contact-layout,
  .sportlink-controls,
  .home-updates,
  .temporary-links,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .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%;
  }

  .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;
  }
}
