:root {
  --sve-navy-deep: #07102f;
  --sve-navy: #101b67;
  --sve-blue: #2439b8;
  --sve-red: #d6132c;
  --sve-red-dark: #b30f25;
  --sve-ink: #151a2e;
  --sve-muted: #626a82;
  --sve-paper: #f4f5f8;
  --sve-line: #dfe2eb;
  --sve-white: #fff;
  --sve-shell: min(1240px, calc(100% - 64px));
  --sve-narrow: min(820px, calc(100% - 48px));
  --sve-shadow: 0 18px 50px rgba(8, 17, 62, .13);
  --sve-display: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
  --sve-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--sve-ink);
  background: var(--sve-white);
  font-family: var(--sve-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.sve-menu-open { overflow: hidden; }

.wp-site-blocks { max-width: 100%; overflow-x: hidden; padding: 0; }
.wp-site-blocks > *,
.wp-block-template-part { margin-block: 0; }

@supports (overflow: clip) {
  html,
  body,
  .wp-site-blocks { overflow-x: clip; }
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.sve-shell { width: var(--sve-shell); margin-inline: auto; }
.sve-shell-narrow { width: var(--sve-narrow); margin-inline: auto; }

.sve-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--sve-white);
  background: var(--sve-red);
  font-weight: 800;
  transform: translateY(-160%);
}
.sve-skip-link:focus { transform: none; }

.sve-topline { color: #d9def7; background: var(--sve-navy-deep); }
.sve-topline__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sve-topline p { margin: 0; font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.sve-topline__links { display: flex; gap: 24px; font-size: .7rem; font-weight: 700; }
.sve-topline a:hover, .sve-topline a:focus-visible { color: var(--sve-white); text-decoration: underline; }

.sve-site-header {
  position: relative;
  z-index: 500;
  border-bottom: 1px solid rgba(16, 27, 103, .1);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 6px 22px rgba(7, 16, 47, .05);
}
.sve-site-header::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: var(--sve-red); }
.sve-nav-wrap { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 32px; }
.sve-brand { display: block; flex: 0 1 280px; width: 280px; line-height: 0; }
.sve-brand-lockup { display: flex; width: 100%; align-items: center; gap: 8px; }
.sve-brand-lockup__word { color: var(--sve-navy); font-family: var(--sve-sans); font-size: .78rem; font-weight: 900; letter-spacing: .015em; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.sve-brand-lockup__crest { display: block; flex: 0 0 auto; width: 96px; height: auto; }

.sve-menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.sve-main-nav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 29px); font-size: .73rem; font-weight: 850; }
.sve-main-nav > a:not(.sve-nav-cta),
.sve-nav-group > button { position: relative; display: flex; min-height: 88px; align-items: center; border: 0; background: none; white-space: nowrap; cursor: pointer; }
.sve-main-nav > a:not(.sve-nav-cta)::after,
.sve-nav-group > button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--sve-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.sve-main-nav > a:hover::after,
.sve-main-nav > a:focus-visible::after,
.sve-main-nav > a[aria-current="page"]::after,
.sve-nav-group:hover > button::after,
.sve-nav-group:focus-within > button::after { transform: scaleX(1); transform-origin: left; }
.sve-nav-group { position: relative; align-self: stretch; }
.sve-nav-group > button { gap: 7px; padding: 0; }
.sve-nav-group > button span { color: var(--sve-red); transition: transform .2s; }
.sve-nav-submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: -20px;
  visibility: hidden;
  width: 245px;
  padding: 12px;
  border-top: 3px solid var(--sve-red);
  background: var(--sve-navy-deep);
  box-shadow: 0 24px 45px rgba(3, 8, 30, .3);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility 0s linear .18s;
}
.sve-nav-submenu a { display: block; padding: 12px 13px; border-bottom: 1px solid rgba(255,255,255,.1); color: #dce1fb; font-size: .76rem; }
.sve-nav-submenu a:last-child { border-bottom: 0; }
.sve-nav-submenu a:hover, .sve-nav-submenu a:focus-visible { color: var(--sve-white); background: rgba(255,255,255,.07); }
.sve-nav-submenu--teams { display: grid; width: 430px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sve-nav-group:hover .sve-nav-submenu,
.sve-nav-group:focus-within .sve-nav-submenu,
.sve-nav-group.is-open .sve-nav-submenu { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
.sve-nav-group.is-open > button span { transform: rotate(180deg); }
.sve-nav-cta, .sve-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 19px;
  border: 1px solid transparent;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .025em;
  text-transform: uppercase;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.sve-nav-cta { color: var(--sve-white); background: var(--sve-navy); }
.sve-nav-cta span, .sve-button span { color: inherit; font-size: 1rem; }
.sve-nav-cta:hover, .sve-nav-cta:focus-visible { background: var(--sve-red); }
.sve-button:hover, .sve-button:focus-visible { transform: translateY(-2px); }
.sve-button--red { color: var(--sve-white); background: var(--sve-red); }
.sve-button--red:hover, .sve-button--red:focus-visible { background: var(--sve-red-dark); }
.sve-button--navy { color: var(--sve-white); background: var(--sve-navy); }
.sve-button--navy:hover, .sve-button--navy:focus-visible { background: var(--sve-navy-deep); }
.sve-button--ghost { border-color: rgba(255,255,255,.65); color: var(--sve-white); background: rgba(255,255,255,.04); }
.sve-button--ghost:hover, .sve-button--ghost:focus-visible,
.sve-button--outline:hover, .sve-button--outline:focus-visible { border-color: var(--sve-white); background: var(--sve-white); color: var(--sve-navy-deep); }
.sve-button--outline { border-color: rgba(255,255,255,.55); color: var(--sve-white); }
.sve-button--light { color: var(--sve-navy); background: var(--sve-white); }
.sve-button--light:hover, .sve-button--light:focus-visible { color: var(--sve-white); background: var(--sve-red); }
.sve-button--full { width: 100%; }

.sve-main { margin: 0; }
.sve-hero { position: relative; min-height: 720px; overflow: hidden; color: var(--sve-white); background: var(--sve-navy-deep); }
.sve-hero__media, .sve-hero__shade { position: absolute; inset: 0; }
.sve-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.sve-hero__shade { background: linear-gradient(90deg, rgba(7,16,47,.88) 0%, rgba(7,16,47,.68) 42%, rgba(7,16,47,.10) 100%), linear-gradient(0deg, rgba(7,16,47,.42), transparent 45%); }
.sve-hero__inner { position: relative; z-index: 2; display: flex; min-height: 720px; align-items: center; padding-block: 85px 120px; }
.sve-hero__copy { width: min(675px, 64%); }
.sve-eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 18px; color: var(--sve-navy); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.sve-eyebrow > span { width: 28px; height: 3px; background: var(--sve-red); }
.sve-eyebrow--light { color: #d3d9f7; }
.sve-hero h1, .sve-page-hero h1, .sve-team-hero h1, .sve-article__header h1, .sve-not-found h1 {
  margin: 0;
  font-family: var(--sve-display);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .88;
  text-transform: uppercase;
}
.sve-hero h1 { max-width: 760px; color: var(--sve-white); font-size: clamp(4.5rem, 8.5vw, 8rem); text-shadow: 0 2px 22px rgba(0,0,0,.42); }
.sve-hero h1 > span { color: var(--sve-white); }
.sve-hero h1 em, .sve-page-hero h1 em, .sve-section-head h2 em, .sve-story h2 em, .sve-contact h1 em, .sve-contact h2 em, .sve-team-details h2 em { color: var(--sve-red); font-style: normal; }
.sve-hero__lead { max-width: 610px; margin: 30px 0 34px; color: #d5daf4; font-size: 1.12rem; line-height: 1.7; }
.sve-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.sve-hero__facts {
  position: absolute;
  right: 0;
  bottom: 35px;
  display: flex;
  margin: 0;
  padding: 18px 22px;
  background: rgba(7,16,47,.82);
  backdrop-filter: blur(12px);
}
.sve-hero__facts div { display: flex; min-width: 145px; align-items: center; gap: 10px; padding-inline: 21px; border-right: 1px solid rgba(255,255,255,.18); }
.sve-hero__facts div:last-child { border-right: 0; }
.sve-hero__facts dt { color: var(--sve-white); font-size: 2.3rem; font-weight: 950; line-height: 1; }
.sve-hero__facts dd { margin: 0; color: #bec7ef; font-size: .63rem; font-weight: 800; line-height: 1.25; text-transform: uppercase; }

.sve-motto { overflow: hidden; color: var(--sve-white); background: var(--sve-red); }
.sve-motto > div { display: flex; min-width: max-content; align-items: center; justify-content: center; gap: 34px; padding: 15px 28px; font-size: .9rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.sve-motto i { width: 5px; height: 5px; background: var(--sve-white); transform: rotate(45deg); }

.sve-home-match { color: var(--sve-ink); background: var(--sve-white); }
.sve-home-match__inner { display: flex; min-height: 250px; align-items: center; justify-content: space-between; gap: clamp(35px, 7vw, 100px); padding-block: 48px; }
.sve-home-match__inner > div { max-width: 780px; }
.sve-home-match h2 { margin: 0; color: var(--sve-navy-deep); font-family: var(--sve-display); font-size: clamp(2.8rem, 5vw, 5.2rem); font-weight: 950; letter-spacing: -.06em; line-height: .92; text-transform: uppercase; }
.sve-home-match h2 em { color: var(--sve-red); font-style: normal; }
.sve-home-match .sve-eyebrow--light { color: var(--sve-navy); }
.sve-home-match__inner > div > p:last-child { max-width: 690px; margin: 20px 0 0; color: var(--sve-muted); }

.sve-section { padding-block: 104px; }
.sve-section-head { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 48px; }
.sve-section-head h2, .sve-story h2, .sve-contact h1, .sve-contact h2, .sve-team-details h2 {
  margin: 0;
  color: var(--sve-navy-deep);
  font-family: var(--sve-display);
  font-size: clamp(3.2rem, 6.2vw, 6rem);
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: .93;
  text-transform: uppercase;
}
.sve-section-head--light h2 { color: var(--sve-white); }
.sve-section-intro { max-width: 420px; margin: 0 0 6px; color: var(--sve-muted); }
.sve-section-head--light .sve-section-intro { color: #c4ccef; }
.sve-text-link, .sve-arrow-link { display: inline-flex; align-items: center; gap: 12px; color: var(--sve-navy); font-size: .74rem; font-weight: 900; text-transform: uppercase; }
.sve-text-link { padding-bottom: 6px; border-bottom: 2px solid var(--sve-red); }
.sve-text-link span, .sve-arrow-link span { color: var(--sve-red); font-size: 1rem; }
.sve-text-link:hover, .sve-text-link:focus-visible, .sve-arrow-link:hover, .sve-arrow-link:focus-visible { color: var(--sve-red); }

.sve-news-section { background: var(--sve-navy-deep); }
.sve-news-section .sve-section-head h2 { color: var(--sve-white); }
.sve-news-section .sve-eyebrow { color: #d3d9f7; }
.sve-news-section .sve-text-link { color: var(--sve-white); }
.sve-news-section .sve-text-link:hover, .sve-news-section .sve-text-link:focus-visible { color: #ffd4da; }
.sve-related, .sve-team-news { background: var(--sve-paper); }
@media (min-width: 961px) {
  .sve-news-section > .sve-shell { width: min(1560px, calc(100% - 40px)); }
}
.sve-news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.sve-news-grid--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sve-news-card { display: flex; min-width: 0; flex-direction: column; border-bottom: 4px solid transparent; background: var(--sve-white); box-shadow: 0 10px 32px rgba(10,19,68,.08); transition: transform .23s, box-shadow .23s, border-color .23s; }
.sve-news-card:hover { border-bottom-color: var(--sve-red); box-shadow: var(--sve-shadow); transform: translateY(-5px); }
.sve-news-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 1.48; background: #e8eaf2; }
.sve-news-card__media > img { width: 100%; height: 100%; object-fit: contain; background: #e8eaf2; transition: transform .35s ease; }
.sve-news-card:hover .sve-news-card__media > img { transform: scale(1.035); }
.sve-news-card__media > .sve-news-card__fallback { padding: 11%; object-fit: contain; background: linear-gradient(145deg, #eef0f7, #fff); }
.sve-news-card__badge { position: absolute; right: 0; bottom: 0; max-width: calc(100% - 24px); padding: 7px 11px; overflow: hidden; color: var(--sve-white); background: var(--sve-red); font-size: .61rem; font-weight: 900; letter-spacing: .05em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.sve-news-card__body { display: flex; min-height: 250px; flex: 1; flex-direction: column; padding: 25px 25px 23px; }
.sve-news-card__meta { display: flex; flex-wrap: wrap; gap: 8px 15px; margin: 0 0 13px; color: var(--sve-muted); font-size: .64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.sve-news-card__meta span::before { content: "•"; margin-right: 15px; color: var(--sve-red); }
.sve-news-card h3 { margin: 0 0 12px; color: var(--sve-navy-deep); font-family: var(--sve-display); font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 900; letter-spacing: -.035em; line-height: 1.08; text-transform: uppercase; }
.sve-news-card h3 a:hover, .sve-news-card h3 a:focus-visible { color: var(--sve-red); }
.sve-news-card__excerpt { margin: 0 0 23px; color: #565e74; font-size: .84rem; line-height: 1.62; }
.sve-news-card .sve-arrow-link { margin-top: auto; }

.sve-teams-section { color: var(--sve-white); background: var(--sve-navy); }
.sve-filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin: -15px 0 30px; }
.sve-filter-row button, .sve-day-filters button {
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.28);
  color: #d1d7f4;
  background: transparent;
  font-size: .69rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.sve-filter-row button:hover, .sve-filter-row button:focus-visible, .sve-filter-row button.is-active,
.sve-day-filters button:hover, .sve-day-filters button:focus-visible, .sve-day-filters button.is-active { border-color: var(--sve-red); color: var(--sve-white); background: var(--sve-red); }
.sve-filter-row--dark button { border-color: var(--sve-line); color: var(--sve-navy); }
.sve-team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.sve-team-card { min-width: 0; overflow: hidden; color: var(--sve-ink); background: var(--sve-white); transition: transform .22s, box-shadow .22s; }
.sve-team-card[hidden] { display: none; }
.sve-team-card:hover { box-shadow: 0 18px 42px rgba(0,0,0,.23); transform: translateY(-5px); }
.sve-team-card > a { display: block; height: 100%; }
.sve-team-card__media { position: relative; display: grid; aspect-ratio: 1.35; place-items: center; overflow: hidden; background: linear-gradient(145deg, #e9ecf5, var(--sve-white)); }
.sve-team-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s; }
.sve-team-card__media .sve-team-card__crest { width: 65%; height: 65%; }
.sve-team-card__media--photo img { object-fit: contain; background: #e8eaf2; }
.sve-team-card:hover .sve-team-card__media img { transform: scale(1.04); }
.sve-team-card__media > span { position: absolute; right: 0; bottom: 0; padding: 6px 9px; color: var(--sve-white); background: var(--sve-red); font-size: .57rem; font-weight: 900; text-transform: uppercase; }
.sve-team-card__body { display: flex; min-height: 154px; flex-direction: column; padding: 20px; }
.sve-team-card h3 { margin: 0 0 5px; color: var(--sve-navy-deep); font-family: var(--sve-display); font-size: clamp(1.3rem, 2vw, 1.8rem); letter-spacing: -.04em; line-height: 1; text-transform: uppercase; }
.sve-team-card p { margin: 0 0 17px; color: var(--sve-muted); font-size: .75rem; }
.sve-team-card strong { display: flex; align-items: center; justify-content: space-between; margin-top: auto; color: var(--sve-navy); font-size: .66rem; text-transform: uppercase; }
.sve-team-card strong i { color: var(--sve-red); font-size: 1rem; font-style: normal; }
.sve-centered-action { display: flex; justify-content: center; margin-top: 35px; }

.sve-story { display: grid; min-height: 740px; grid-template-columns: 1fr 1fr; color: var(--sve-white); background: var(--sve-navy-deep); }
.sve-story__image { position: relative; min-height: 620px; overflow: hidden; background: var(--sve-navy-deep); }
.sve-story__image::before { content: ""; position: absolute; inset: -18px; background: url("../images/team-2.webp") center / cover no-repeat; filter: blur(14px); opacity: .3; transform: scale(1.06); }
.sve-story__image::after { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, transparent 65%, var(--sve-navy-deep)); }
.sve-story__image img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; }
.sve-story__copy { display: flex; justify-content: center; flex-direction: column; padding: clamp(60px, 8vw, 120px); }
.sve-story h2 { color: var(--sve-white); }
.sve-story__copy > p:not(.sve-eyebrow) { max-width: 650px; margin: 16px 0 0; color: #c8cff0; font-size: .94rem; line-height: 1.65; }
.sve-story__copy > p.sve-story__opportunities { margin: 26px 0 28px; padding: 15px 0; border-block: 1px solid rgba(255,255,255,.16); color: var(--sve-white); font-size: .78rem; font-weight: 900; letter-spacing: .035em; line-height: 1.55; text-transform: uppercase; }
.sve-story__values { margin-bottom: 30px; border-top: 1px solid rgba(255,255,255,.16); }
.sve-story__values > div { display: flex; gap: 15px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.sve-story__values span { color: var(--sve-red); font-size: .69rem; font-weight: 900; }
.sve-story__values p { margin: 0; color: #c7cff2; font-size: .77rem; text-transform: uppercase; }
.sve-story__values strong { color: var(--sve-white); }
.sve-story__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.sve-supporters { background: var(--sve-white); }
.sve-supporter-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--sve-line); border-left: 1px solid var(--sve-line); }
.sve-supporter-card { display: grid; min-height: 150px; place-items: center; padding: 28px; border-right: 1px solid var(--sve-line); border-bottom: 1px solid var(--sve-line); background: var(--sve-white); }
.sve-supporter-card img { max-width: 82%; max-height: 78px; object-fit: contain; filter: grayscale(1); opacity: .7; transition: filter .2s, opacity .2s, transform .2s; }
a.sve-supporter-card:hover img, a.sve-supporter-card:focus-visible img { filter: none; opacity: 1; transform: scale(1.04); }
.sve-supporter-card strong { color: var(--sve-navy); text-align: center; }
.sve-supporter-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 32px; padding: 34px 38px; color: var(--sve-white); background: var(--sve-navy); }
.sve-supporter-cta p { margin: 0 0 5px; color: #abb7ee; font-size: .67rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.sve-supporter-cta h3 { margin: 0; color: var(--sve-white); font-family: var(--sve-display); font-size: clamp(1.65rem, 3vw, 2.7rem); letter-spacing: -.04em; text-transform: uppercase; }

.sve-contact { position: relative; overflow: hidden; padding-block: 110px; color: var(--sve-white); background: var(--sve-navy-deep); }
.sve-contact::after { content: ""; position: absolute; right: -120px; bottom: -220px; width: 520px; height: 520px; border: 90px solid rgba(255,255,255,.025); transform: rotate(45deg); }
.sve-contact--home { background: linear-gradient(180deg, var(--sve-navy-deep) 0%, #102158 58%, #142769 100%); }
.sve-contact--home::after { display: none; }
.sve-contact__teamfinder { position: relative; z-index: 2; align-self: center; margin: 0; overflow-x: auto; background: var(--sve-white); box-shadow: 0 26px 70px rgba(0,0,0,.25); scrollbar-color: var(--sve-red) rgba(10,19,68,.15); }
.sve-contact__teamfinder-canvas { position: relative; min-width: 720px; }
.sve-contact__teamfinder img { display: block; width: 100%; height: auto; }
.sve-contact__teamfinder-links { position: absolute; z-index: 2; right: 1%; bottom: 19.5%; left: 1%; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); align-items: start; gap: .8%; }
.sve-contact__teamfinder-links-group { display: grid; gap: clamp(3px, .35vw, 6px); }
.sve-contact__teamfinder-links-group:has(a:nth-child(3)) { gap: clamp(3px, .28vw, 5px); }
.sve-contact__teamfinder-links-group:has(a:nth-child(3)) a { margin-inline: 5%; padding-block: clamp(2px, .32vw, 5px); font-size: clamp(.5rem, .64vw, .68rem); }
.sve-contact__teamfinder-links a { display: flex; min-width: 0; align-items: center; justify-content: center; gap: .45em; margin-inline: 3%; padding: clamp(6px, .65vw, 10px) 4px; border: 2px solid rgba(255,255,255,.9); border-radius: 4px; color: var(--sve-white); background: var(--sve-navy); box-shadow: 0 5px 14px rgba(4,13,50,.24); font-size: clamp(.55rem, .75vw, .75rem); font-weight: 900; line-height: 1; text-align: center; text-transform: uppercase; transition: background .2s, transform .2s; }
.sve-contact__teamfinder-links a:hover, .sve-contact__teamfinder-links a:focus-visible { color: var(--sve-white); background: var(--sve-red); transform: translateY(-2px); }
.sve-contact__teamfinder-links a i { flex: none; font-size: 1.1em; font-style: normal; }
.sve-contact__teamfinder-wrap { min-width: 0; align-self: center; }
.sve-teamfinder-mobile { display: none; }
.sve-contact__layout { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 120px); }
.sve-contact--home .sve-contact__layout { width: min(1500px, calc(100% - 32px)); grid-template-columns: minmax(270px, .58fr) minmax(0, 1.42fr); gap: clamp(28px, 4vw, 64px); }
.sve-contact--home .sve-contact__copy { margin-left: 0; }
.sve-contact h1, .sve-contact h2 { color: var(--sve-white); }
.sve-contact__copy > p:not(.sve-eyebrow) { max-width: 490px; color: #c8cff0; }
.sve-contact__cards { margin-block: 35px; border-top: 1px solid rgba(255,255,255,.16); }
.sve-contact__cards a { position: relative; display: flex; flex-direction: column; padding: 17px 40px 17px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.sve-contact__cards small { color: #9da9e5; font-size: .67rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.sve-contact__cards strong { font-size: .88rem; overflow-wrap: anywhere; }
.sve-contact__cards a > span { position: absolute; top: 50%; right: 7px; color: var(--sve-red); transform: translateY(-50%); }
.sve-social-links { display: flex; gap: 28px; font-size: .75rem; font-weight: 900; }
.sve-social-links span { color: var(--sve-red); }
.sve-footer-social { margin-top: 16px; }
.sve-footer-social a { display: inline-flex; align-items: center; gap: 4px; color: var(--sve-white); }
.sve-contact__actions { margin-top: 32px; }
.sve-contact-form { padding: clamp(26px, 4vw, 46px); color: var(--sve-ink); background: var(--sve-white); box-shadow: 0 26px 70px rgba(0,0,0,.25); }
.sve-contact__form-column { min-width: 0; }
.sve-form-trap { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.sve-form-notice { position: relative; z-index: 3; margin-bottom: 16px; padding: 17px 20px; border-left: 5px solid currentColor; color: var(--sve-navy-deep); background: var(--sve-white); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.sve-form-notice--success { color: #176b3a; }
.sve-form-notice--error { color: #a30f24; }
.sve-contact-form label { display: grid; gap: 7px; margin-bottom: 18px; color: var(--sve-navy-deep); font-size: .72rem; font-weight: 900; }
.sve-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sve-contact-form input:not([type="checkbox"]), .sve-contact-form select, .sve-contact-form textarea,
.sve-archive-tools input, .sve-archive-tools select, .sve-training-toolbar select { width: 100%; border: 0; border-bottom: 2px solid var(--sve-line); border-radius: 0; color: var(--sve-ink); background: #f8f9fb; outline: none; }
.sve-contact-form input:not([type="checkbox"]), .sve-contact-form select, .sve-archive-tools input, .sve-archive-tools select, .sve-training-toolbar select { height: 50px; padding: 0 12px; }
.sve-contact-form textarea { resize: vertical; padding: 12px; }
.sve-contact-form input:focus, .sve-contact-form select:focus, .sve-contact-form textarea:focus, .sve-archive-tools input:focus, .sve-archive-tools select:focus { border-bottom-color: var(--sve-red); }
.sve-contact-form .sve-check { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 10px; color: var(--sve-muted); font-size: .68rem; font-weight: 400; }
.sve-check input { margin: 3px 0 0; accent-color: var(--sve-red); }
.sve-check a { color: var(--sve-navy); text-decoration: underline; }
.sve-form-hint { margin: 12px 0 0; color: var(--sve-muted); font-size: .65rem; text-align: center; }

.sve-page-hero { padding-block: 90px 92px; color: var(--sve-white); background: var(--sve-navy-deep); }
.sve-page-hero h1 { max-width: 1100px; color: var(--sve-white); font-size: clamp(3.9rem, 8.5vw, 7.6rem); }
.sve-page-hero > .sve-shell > p:not(.sve-eyebrow), .sve-page-hero__intro { max-width: 780px; margin: 28px 0 0; color: #c8cff0; font-size: 1.05rem; }
.sve-page-hero__intro p { margin: 0; }
.sve-page-hero--training { background: linear-gradient(130deg, var(--sve-navy-deep), var(--sve-navy)); }
.sve-page-hero--editorial h1 { font-size: clamp(3.5rem, 7vw, 6.5rem); }
.sve-age-guide { position: relative; overflow: hidden; background: #eef0f7; }
.sve-age-guide::before { position: absolute; top: -180px; right: -150px; width: 430px; height: 430px; border: 74px solid rgba(10,31,84,.035); border-radius: 50%; content: ""; pointer-events: none; }
.sve-age-guide > .sve-shell { position: relative; z-index: 1; }
.sve-age-guide__head { align-items: end; }
.sve-age-guide__head > div:first-child { max-width: 780px; }
.sve-age-guide__intro { width: min(100%, 420px); }
.sve-age-guide__intro .sve-section-intro { max-width: none; }
.sve-age-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.sve-age-card { display: flex; min-width: 0; min-height: 420px; overflow: hidden; flex-direction: column; border-top: 5px solid var(--sve-red); background: var(--sve-white); box-shadow: 0 14px 38px rgba(10,19,68,.09); transition: transform .22s, box-shadow .22s; }
.sve-age-card:hover { box-shadow: 0 20px 48px rgba(10,19,68,.15); transform: translateY(-4px); }
.sve-age-card__header { display: flex; min-height: 65px; align-items: center; justify-content: space-between; gap: 15px; padding: 16px 19px; color: var(--sve-white); background: var(--sve-navy-deep); }
.sve-age-card__header h3 { margin: 0; color: inherit; font-family: var(--sve-display); font-size: clamp(1.35rem, 2vw, 1.75rem); letter-spacing: -.035em; line-height: 1; text-transform: uppercase; }
.sve-age-card__header > span { color: #9faddf; font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.sve-age-card__visual { position: relative; display: grid; min-height: 108px; overflow: hidden; place-items: center; background: linear-gradient(145deg, #f7f8fc, #e2e6f2); }
.sve-age-card__visual::before, .sve-age-card__visual::after { position: absolute; width: 90px; height: 180px; background: rgba(214,19,44,.055); content: ""; transform: rotate(28deg); }
.sve-age-card__visual::before { left: -35px; }
.sve-age-card__visual::after { right: -35px; transform: rotate(-28deg); }
.sve-age-card__visual > span { position: relative; z-index: 2; color: var(--sve-navy-deep); font-family: var(--sve-display); font-size: 3.3rem; font-weight: 950; letter-spacing: -.08em; line-height: 1; }
.sve-age-card__visual i { position: absolute; z-index: 1; width: 78px; height: 78px; border: 2px solid rgba(214,19,44,.42); border-radius: 50%; }
.sve-age-card__visual i::before, .sve-age-card__visual i::after { position: absolute; content: ""; }
.sve-age-card__visual i::before { inset: 12px -8px; border-top: 2px solid rgba(214,19,44,.35); border-bottom: 2px solid rgba(214,19,44,.35); border-radius: 50%; transform: rotate(38deg); }
.sve-age-card__visual i::after { inset: -8px 16px; border-right: 2px solid rgba(214,19,44,.35); border-left: 2px solid rgba(214,19,44,.35); border-radius: 50%; transform: rotate(-38deg); }
.sve-age-card__body { display: flex; flex: 1; flex-direction: column; padding: 20px 19px 22px; }
.sve-age-card__age { margin: 0 0 7px; color: var(--sve-red); font-family: var(--sve-display); font-size: 1.45rem; font-weight: 950; letter-spacing: -.025em; line-height: 1; text-transform: uppercase; }
.sve-age-card__focus { margin: 0 0 17px; color: var(--sve-navy-deep); font-size: .78rem; font-weight: 850; line-height: 1.45; }
.sve-age-card ul { display: grid; gap: 9px; margin: auto 0 0; padding: 0; list-style: none; }
.sve-age-card li { position: relative; padding-left: 16px; color: var(--sve-muted); font-size: .69rem; line-height: 1.4; }
.sve-age-card li::before { position: absolute; top: .48em; left: 1px; width: 6px; height: 6px; background: var(--sve-red); content: ""; transform: rotate(45deg); }
.sve-age-guide__notes { display: grid; gap: 5px; margin-top: 26px; padding: 18px 20px; border-left: 5px solid var(--sve-red); background: rgba(255,255,255,.78); }
.sve-age-guide__notes p { margin: 0; color: var(--sve-muted); font-size: .68rem; line-height: 1.55; }
.sve-age-guide__notes strong { color: var(--sve-navy-deep); }
.sve-age-path { display: grid; grid-template-columns: minmax(320px, .6fr) minmax(0, 1.4fr); align-items: center; gap: 22px 44px; margin-top: 28px; padding: clamp(30px, 3vw, 38px) clamp(30px, 3.5vw, 46px); color: var(--sve-white); background: linear-gradient(120deg, var(--sve-navy-deep), #152963); box-shadow: var(--sve-shadow); }
.sve-age-path__heading { width: min(100%, 330px); grid-row: 1 / span 2; align-self: center; }
.sve-age-path__heading p { margin: 0 0 7px; color: #aeb9e9; font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.sve-age-path__heading h3 { max-width: 100%; margin: 0; color: var(--sve-white); font-family: var(--sve-display); font-size: clamp(1.9rem, 2.4vw, 2.3rem); font-weight: 950; letter-spacing: -.04em; line-height: .98; text-wrap: balance; text-transform: uppercase; }
.sve-age-path ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-self: center; gap: clamp(18px, 2.2vw, 30px); margin: 0; padding: 0; list-style: none; }
.sve-age-path li { display: grid; min-width: 0; grid-template-columns: 38px minmax(0, 1fr); align-items: start; gap: 11px; }
.sve-age-path li > span { display: grid; width: 36px; height: 36px; border: 2px solid var(--sve-red); border-radius: 50%; place-items: center; color: var(--sve-white); font-family: var(--sve-display); font-weight: 950; }
.sve-age-path li div { display: grid; gap: 4px; }
.sve-age-path li strong { font-size: .71rem; text-transform: uppercase; }
.sve-age-path li small { color: #bec7eb; font-size: .66rem; line-height: 1.45; }
.sve-age-path__actions { display: flex; grid-column: 2; align-items: center; gap: 24px; }
.sve-age-path__actions .sve-text-link { color: var(--sve-white); }
.sve-age-path__actions .sve-text-link:hover, .sve-age-path__actions .sve-text-link:focus-visible { color: #f06b7d; }
.sve-team-directory { scroll-margin-top: 100px; background: var(--sve-paper); }
.sve-team-grid--directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sve-inline-cta { color: var(--sve-white); background: var(--sve-navy); }
.sve-inline-cta > div { display: flex; min-height: 190px; align-items: center; justify-content: space-between; gap: 30px; padding-block: 34px; }
.sve-inline-cta p { margin: 0 0 5px; color: #bfc8f0; font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.sve-inline-cta h2 { margin: 0; color: var(--sve-white); font-family: var(--sve-display); font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.045em; text-transform: uppercase; }

.sve-page-hero--broad { background: linear-gradient(125deg, #17265c, var(--sve-navy-deep)); }
.sve-broad-section { background: var(--sve-paper); }
.sve-broad-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.sve-broad-card { min-width: 0; overflow: hidden; background: var(--sve-white); box-shadow: 0 14px 38px rgba(10,19,68,.09); }
.sve-broad-card__media { display: block; overflow: hidden; aspect-ratio: 1.4; background: #e8eaf2; }
.sve-broad-card__media img { width: 100%; height: 100%; object-fit: contain; background: #e8eaf2; transition: transform .35s; }
.sve-broad-card:hover .sve-broad-card__media img { transform: scale(1.035); }
.sve-broad-card__body { padding: 28px; }
.sve-broad-card__body h2 { margin: 0 0 15px; color: var(--sve-navy-deep); font-family: var(--sve-display); font-size: 2.4rem; letter-spacing: -.045em; text-transform: uppercase; }
.sve-broad-card__body > p:not(.sve-eyebrow, .sve-broad-card__contact) { color: var(--sve-muted); }
.sve-broad-times { display: grid; gap: 11px; margin: 24px 0; }
.sve-broad-times div { padding: 13px 15px; border-left: 4px solid var(--sve-red); background: var(--sve-paper); }
.sve-broad-times dt { color: var(--sve-navy); font-size: .76rem; font-weight: 900; }
.sve-broad-times dd { margin: 3px 0 0; color: var(--sve-muted); font-size: .7rem; }
.sve-broad-card__contact { color: var(--sve-navy); font-size: .75rem; }

.sve-page-hero--matches { background: radial-gradient(circle at 82% 25%, rgba(214,19,44,.25), transparent 28%), linear-gradient(125deg, var(--sve-navy-deep), #13255f); }
.sve-club-schedule { background: var(--sve-paper); }
.sve-match-intro { max-width: 760px; margin: -25px 0 32px; color: var(--sve-muted); }
.sve-team-schedules { background: #eef0f7; }
.sve-team-schedule-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.sve-team-schedule-card { min-width: 0; padding: 26px; border-top: 5px solid var(--sve-red); background: var(--sve-white); box-shadow: 0 12px 35px rgba(10,19,68,.08); }
.sve-team-schedule-card > header { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; padding-bottom: 17px; border-bottom: 1px solid var(--sve-line); }
.sve-team-schedule-card > header p { margin: 0 0 5px; color: var(--sve-muted); font-size: .64rem; font-weight: 850; text-transform: uppercase; }
.sve-team-schedule-card > header h3 { margin: 0; color: var(--sve-navy-deep); font-family: var(--sve-display); font-size: 2rem; letter-spacing: -.04em; text-transform: uppercase; }
.sve-team-schedule-card > header > a { display: grid; width: 38px; height: 38px; flex: none; place-items: center; color: var(--sve-white); background: var(--sve-red); }
.sve-handball-widget { min-width: 0; }
.sve-handball-widget__embed { width: 100%; min-height: 180px; overflow-x: auto; background: var(--sve-white); }
.sve-handball-widget__embed:empty::before { content: "Spieldaten werden geladen …"; display: grid; min-height: 180px; place-items: center; padding: 20px; color: var(--sve-muted); background: var(--sve-paper); font-size: .73rem; font-weight: 800; text-align: center; }
.sve-handball-widget__source { margin: 12px 0 0; color: var(--sve-muted); font-size: .65rem; }
.sve-handball-widget__source a { color: var(--sve-red); font-weight: 850; }
.sve-widget-empty { padding: 28px; color: var(--sve-muted); background: var(--sve-paper); text-align: center; }
.sve-external-data-note { margin-top: 32px; padding: 22px 25px; border-left: 5px solid var(--sve-red); background: var(--sve-white); }
.sve-external-data-note strong { color: var(--sve-navy); }
.sve-external-data-note p { max-width: 860px; margin: 5px 0; color: var(--sve-muted); }
.sve-external-data-note a { color: var(--sve-red); font-size: .72rem; font-weight: 900; text-transform: uppercase; }

.sve-training-section { background: var(--sve-paper); }
.sve-training-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 28px; padding: 20px; background: var(--sve-white); box-shadow: 0 10px 30px rgba(10,19,68,.06); }
.sve-day-filters { display: grid; grid-template-columns: repeat(8, minmax(48px, auto)); gap: 5px; }
.sve-day-filters button { border-color: var(--sve-line); color: var(--sve-navy); padding-inline: 13px; }
.sve-training-toolbar label { width: min(230px, 100%); color: var(--sve-navy-deep); font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.sve-training-list { border-top: 4px solid var(--sve-navy); background: var(--sve-white); box-shadow: var(--sve-shadow); }
.sve-training-row { display: grid; grid-template-columns: 60px minmax(0, 1fr) 180px 44px; align-items: center; gap: 22px; min-height: 105px; padding: 16px 22px; border-bottom: 1px solid var(--sve-line); }
.sve-training-row[hidden] { display: none; }
.sve-training-row__day { display: grid; width: 48px; height: 48px; place-items: center; color: var(--sve-white); background: var(--sve-navy); font-size: .8rem; font-weight: 900; text-transform: uppercase; }
.sve-training-row__team p { margin: 0 0 2px; color: var(--sve-red); font-size: .6rem; font-weight: 900; text-transform: uppercase; }
.sve-training-row__team h2 { margin: 0; color: var(--sve-navy-deep); font-family: var(--sve-display); font-size: 1.35rem; letter-spacing: -.035em; text-transform: uppercase; }
.sve-training-row__team h2 a:hover { color: var(--sve-red); }
.sve-training-row__team span { color: var(--sve-muted); font-size: .74rem; }
.sve-training-row time { color: var(--sve-navy); font-size: .98rem; font-weight: 900; text-align: right; }
.sve-training-row__arrow { display: grid; width: 40px; height: 40px; place-items: center; color: var(--sve-white); background: var(--sve-red); }
.sve-no-results { padding: 30px; color: var(--sve-muted); background: var(--sve-white); text-align: center; }
.sve-training-note { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin-top: 26px; padding: 22px 25px; border-left: 5px solid var(--sve-red); background: var(--sve-white); }
.sve-training-note strong { color: var(--sve-navy); font-size: .7rem; text-transform: uppercase; }
.sve-training-note p { margin: 0; color: var(--sve-muted); font-size: .8rem; }
.sve-training-note a { color: var(--sve-red); font-size: .7rem; font-weight: 900; text-transform: uppercase; }

.sve-archive-hero { position: relative; overflow: hidden; }
.sve-archive-hero::after { content: ""; position: absolute; right: -100px; bottom: -240px; width: 500px; height: 500px; border: 80px solid rgba(255,255,255,.025); transform: rotate(45deg); }
.sve-archive-hero > .sve-shell { position: relative; z-index: 1; }
.sve-archive-stats { display: flex; gap: 0; margin: 42px 0 0; }
.sve-archive-stats div { min-width: 140px; padding: 0 25px; border-left: 1px solid rgba(255,255,255,.18); }
.sve-archive-stats div:first-child { padding-left: 0; border-left: 0; }
.sve-archive-stats dt { color: var(--sve-white); font-size: 2.5rem; font-weight: 950; line-height: 1; }
.sve-archive-stats dd { margin: 5px 0 0; color: #aeb8e8; font-size: .62rem; font-weight: 900; text-transform: uppercase; }
.sve-archive-section { background: var(--sve-paper); }
.sve-archive-tools { display: grid; grid-template-columns: minmax(240px, 1.6fr) repeat(2, minmax(145px, 1fr)) auto; align-items: end; gap: 12px; margin: -140px 0 45px; padding: 22px; background: var(--sve-white); box-shadow: 0 18px 50px rgba(7,16,47,.18); }
.sve-archive-tools.sve-archive-tools--compact { grid-template-columns: minmax(240px, 1.6fr) minmax(145px, 1fr) auto; }
.sve-archive-tools label { color: var(--sve-navy-deep); font-size: .63rem; font-weight: 900; text-transform: uppercase; }
.sve-archive-tools label > span { display: block; margin-bottom: 5px; }
.sve-result-count { margin-bottom: 18px; color: var(--sve-muted); font-size: .75rem; font-weight: 800; }
.sve-news-grid--archive { row-gap: 28px; }
.sve-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 45px; }
.sve-pagination .page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; padding-inline: 12px; border: 1px solid var(--sve-line); color: var(--sve-navy); background: var(--sve-white); font-size: .72rem; font-weight: 900; }
.sve-pagination .page-numbers.current, .sve-pagination a:hover { border-color: var(--sve-red); color: var(--sve-white); background: var(--sve-red); }

.sve-article__header { padding-block: 75px 105px; color: var(--sve-white); background: var(--sve-navy-deep); }
.sve-back-link { display: inline-block; margin-bottom: 38px; color: #bac3ec; font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.sve-back-link:hover, .sve-back-link:focus-visible { color: var(--sve-white); }
.sve-article__header h1 { color: var(--sve-white); font-size: clamp(3rem, 7vw, 6.4rem); line-height: .96; }
.sve-article__meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 28px; color: #b9c2ea; font-size: .72rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.sve-article__meta span::before { content: "•"; margin-right: 28px; color: var(--sve-red); }
.sve-article__image { position: relative; z-index: 2; overflow: hidden; margin-top: -65px; background: var(--sve-navy); box-shadow: var(--sve-shadow); }
.sve-article__image img { display: block; width: 100%; max-height: 720px; object-fit: contain; background: var(--sve-navy-deep); }
.sve-article__body { padding-block: 65px 95px; }
.sve-article__share { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--sve-line); }
.sve-article__share p { margin: 0 auto 0 0; color: var(--sve-muted); font-size: .68rem; font-weight: 900; text-transform: uppercase; }
.sve-article__share a, .sve-article__share button { padding: 8px 11px; border: 1px solid var(--sve-line); color: var(--sve-navy); background: var(--sve-white); font-size: .68rem; font-weight: 800; cursor: pointer; }

.sve-entry-content { color: #3f475e; font-size: 1rem; line-height: 1.78; }
.sve-article__body > .sve-entry-content { font-size: 1.08rem; }
.sve-entry-content > * { max-width: 100%; }
.sve-entry-content > *:first-child { margin-top: 0; }
.sve-entry-content > *:last-child { margin-bottom: 0; }
.sve-entry-content p { margin-block: 0 1.35em; }
.sve-entry-content h2, .sve-entry-content h3, .sve-entry-content h4 {
  margin: 2em 0 .65em;
  color: var(--sve-navy-deep);
  font-family: var(--sve-display);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1.07;
  text-transform: uppercase;
}
.sve-entry-content h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.sve-entry-content h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.sve-entry-content h4 { font-size: 1.25rem; }
.sve-entry-content a { color: var(--sve-red); text-decoration: underline; text-underline-offset: 3px; }
.sve-entry-content strong { color: var(--sve-navy-deep); }
.sve-entry-content blockquote { margin: 2em 0; padding: 20px 25px; border-left: 5px solid var(--sve-red); color: var(--sve-navy); background: var(--sve-paper); font-size: 1.16rem; font-weight: 750; }
.sve-entry-content ul, .sve-entry-content ol { padding-left: 1.3em; }
.sve-entry-content li { margin-bottom: .4em; }
.sve-entry-content figure { margin: 2.2em 0; }
.sve-entry-content figcaption { color: var(--sve-muted); font-size: .72rem; }
.sve-entry-content table { width: 100%; border-collapse: collapse; }
.sve-entry-content th, .sve-entry-content td { padding: 11px; border: 1px solid var(--sve-line); text-align: left; }
.sve-entry-content th { color: var(--sve-white); background: var(--sve-navy); }

.sve-editorial--documents .wp-block-file {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 22px;
  margin: 1.35rem 0;
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid var(--sve-line);
  border-left: 5px solid var(--sve-red);
  background: var(--sve-white);
  box-shadow: 0 12px 32px rgba(10, 19, 68, .08);
}
.sve-editorial--documents .wp-block-file > a:not(.wp-block-file__button) {
  min-width: 0;
  color: var(--sve-navy-deep);
  font-size: .96rem;
  font-weight: 850;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration: none;
}
.sve-editorial--documents .wp-block-file > a:not(.wp-block-file__button):hover,
.sve-editorial--documents .wp-block-file > a:not(.wp-block-file__button):focus-visible { color: var(--sve-red); }
.sve-editorial--documents .wp-block-file .wp-block-file__button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 18px;
  border: 0;
  border-radius: 0;
  color: var(--sve-white);
  background: var(--sve-red);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.sve-editorial--documents .wp-block-file .wp-block-file__button:hover,
.sve-editorial--documents .wp-block-file .wp-block-file__button:focus-visible {
  color: var(--sve-white);
  background: var(--sve-red-dark);
}
.sve-editorial--documents .wp-block-file .wp-block-file__embed {
  order: 3;
  width: 100%;
  max-height: 70vh;
  grid-column: 1 / -1;
  border: 1px solid var(--sve-line);
  background: var(--sve-paper);
}

.sve-contacts-directory > .is-style-lead { max-width: 820px; }
.sve-contacts-directory > h2 { margin-top: 1.7em; }
.sve-contacts-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; margin: 28px 0 62px; }
.sve-contacts-grid--handball { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sve-contact-person { min-width: 0; overflow: hidden; margin: 0; border-top: 5px solid var(--sve-red); background: var(--sve-white); box-shadow: 0 14px 38px rgba(10, 19, 68, .1); }
.sve-contact-person__image { display: block; aspect-ratio: 4 / 3; margin: 0 !important; overflow: hidden; background: #e9ecf5; }
.sve-contacts-grid:not(.sve-contacts-grid--handball) .sve-contact-person__image { aspect-ratio: 4 / 5; }
.sve-contact-person__image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.sve-contact-person__image img.wp-image-2234 { object-position: center center; }
.sve-contact-person__image img[src*="vereinswappen.png"] { padding: clamp(24px, 5vw, 42px); object-fit: contain; }
.sve-contact-person__content { padding: 24px; }
.sve-entry-content .sve-contact-person__role { margin: 0 0 7px; color: var(--sve-red); font-size: .66rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.sve-entry-content .sve-contact-person h3 { margin: 0 0 14px; font-size: clamp(1.15rem, 1.55vw, 1.55rem); hyphens: auto; letter-spacing: -.025em; overflow-wrap: break-word; }
.sve-entry-content .sve-contacts-grid--handball .sve-contact-person h3 { font-size: clamp(.95rem, 1.1vw, 1.1rem); letter-spacing: -.045em; }
.sve-entry-content .sve-contact-person__name { margin: 0 0 13px; color: var(--sve-navy-deep); font-weight: 800; }
.sve-entry-content .sve-contact-person__email { margin: 0; }
.sve-entry-content .sve-contact-person__email a { display: inline-flex; min-width: 0; align-items: center; color: var(--sve-red); font-size: .75rem; font-weight: 850; overflow-wrap: anywhere; }

.sve-editorial { padding-block: 70px 100px; }
.sve-editorial__lead-image { margin: 0 0 50px; }
.sve-editorial__lead-image img { display: block; width: 100%; max-height: 650px; object-fit: contain; background: var(--sve-navy-deep); }

.sve-team-hero { position: relative; min-height: 630px; overflow: hidden; color: var(--sve-white); background: var(--sve-navy-deep); }
.sve-team-hero__media, .sve-team-hero__shade { position: absolute; inset: 0; }
.sve-team-hero__media img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: var(--sve-navy-deep); }
.sve-team-hero__media .sve-team-hero__fallback { padding: 8%; object-fit: contain; opacity: .4; }
.sve-team-hero__shade { background: linear-gradient(0deg, rgba(7,16,47,.95), rgba(7,16,47,.08) 75%), linear-gradient(90deg, rgba(7,16,47,.5), transparent); }
.sve-team-hero__copy { position: relative; z-index: 2; display: flex; min-height: 630px; justify-content: end; flex-direction: column; padding-block: 75px; }
.sve-team-hero h1 { color: var(--sve-white); font-size: clamp(4rem, 9vw, 8rem); }
.sve-team-hero__subtitle { margin: 18px 0 0; color: #d2d9f6; font-size: 1.05rem; font-weight: 800; }
.sve-team-details { background: var(--sve-white); }
.sve-team-details__layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); gap: clamp(50px, 8vw, 110px); }
.sve-team-details__intro > p:not(.sve-eyebrow) { color: var(--sve-muted); }
.sve-coach { display: grid; gap: 4px; margin: 30px 0; padding: 19px 22px; border-left: 5px solid var(--sve-red); background: var(--sve-paper); }
.sve-coach span { color: var(--sve-muted); font-size: .64rem; font-weight: 900; text-transform: uppercase; }
.sve-coach strong { color: var(--sve-navy); }
.sve-team-times { align-self: start; padding: 30px; color: var(--sve-white); background: var(--sve-navy); box-shadow: var(--sve-shadow); }
.sve-team-times__label { margin: 0 0 20px; color: #aeb9e9; font-size: .67rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.sve-team-times > div { display: grid; gap: 4px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.18); }
.sve-team-times strong { font-size: .9rem; }
.sve-team-times span { color: #c6cef0; font-size: .75rem; }
.sve-team-times > a { display: inline-block; margin-top: 20px; padding-bottom: 4px; border-bottom: 2px solid var(--sve-red); font-size: .68rem; font-weight: 900; text-transform: uppercase; }
.sve-team-match { color: var(--sve-white); background: linear-gradient(120deg, var(--sve-navy-deep), #152963); }
.sve-team-match__layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(560px, 1.15fr); align-items: center; gap: clamp(42px, 5vw, 72px); }
.sve-team-match__intro { min-width: 0; }
.sve-team-match__intro h2 { max-width: 100%; margin: 0; color: var(--sve-white); font-family: var(--sve-display); font-size: clamp(3rem, 4.15vw, 4rem); font-weight: 950; letter-spacing: -.06em; line-height: .92; overflow-wrap: normal; text-transform: uppercase; }
.sve-team-match__intro h2 em { color: var(--sve-red); font-style: normal; }
.sve-team-match__intro > p:not(.sve-eyebrow) { margin: 22px 0 28px; color: #cad2f3; }
.sve-team-match__widget { min-width: 0; padding: 24px; color: var(--sve-ink); background: var(--sve-white); box-shadow: var(--sve-shadow); }

.sve-empty-state { padding: 42px; border-left: 5px solid var(--sve-red); background: var(--sve-white); }
.sve-empty-state h2, .sve-empty-state h3 { margin: 0 0 8px; color: var(--sve-navy-deep); font-family: var(--sve-display); text-transform: uppercase; }
.sve-empty-state p { margin: 0 0 20px; color: var(--sve-muted); }
.sve-empty-state--dark { color: var(--sve-white); background: rgba(255,255,255,.08); }
.sve-empty-state--dark h3 { color: var(--sve-white); }

.sve-not-found { display: grid; min-height: 70vh; place-items: center; padding-block: 90px; color: var(--sve-white); background: var(--sve-navy-deep); text-align: center; }
.sve-not-found p { margin: 0; color: var(--sve-red); font-size: clamp(5rem, 17vw, 13rem); font-weight: 950; line-height: .8; }
.sve-not-found h1 { margin: 25px auto; font-size: clamp(2.8rem, 7vw, 6rem); }
.sve-not-found div > div { margin-bottom: 28px; color: #c3cbef; }

.sve-site-footer { padding-top: 70px; color: #c9d0f2; background: #050b25; }
.sve-footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .9fr 1.15fr; gap: 50px; padding-bottom: 55px; }
.sve-site-footer .sve-footer-brand > a { display: inline-flex; width: min(330px, 100%); max-width: 100%; margin: 0; padding: 0; background: transparent; }
.sve-footer-brand .sve-brand-lockup--footer { gap: 10px; }
.sve-footer-brand .sve-brand-lockup--footer .sve-brand-lockup__word { color: var(--sve-white); font-family: var(--sve-display); font-size: .83rem; letter-spacing: .035em; }
.sve-footer-brand .sve-brand-lockup--footer .sve-brand-lockup__crest { width: 96px; }
.sve-footer-brand > p { margin: 18px 0 0; color: #7f8ac3; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.sve-site-footer h2 { margin: 0 0 18px; color: var(--sve-white); font-family: var(--sve-sans); font-size: .71rem; letter-spacing: .12em; text-transform: uppercase; }
.sve-site-footer a, .sve-site-footer address p { display: block; margin-bottom: 9px; color: #9ca7dd; font-size: .76rem; font-style: normal; }
.sve-site-footer a:hover, .sve-site-footer a:focus-visible { color: var(--sve-white); }
.sve-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .67rem; }
.sve-footer-bottom p { margin: 0; }
.sve-footer-bottom div { display: flex; gap: 24px; }
.sve-footer-bottom a { margin: 0; }

@media (max-width: 1120px) {
  .sve-main-nav { gap: 14px; }
  .sve-main-nav > a:not(.sve-nav-cta), .sve-nav-group > button { font-size: .68rem; }
  .sve-age-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sve-age-path { grid-template-columns: 1fr; }
  .sve-age-path__heading { width: min(100%, 470px); grid-row: auto; }
  .sve-age-path__actions { grid-column: auto; }
  .sve-team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sve-team-match__layout { grid-template-columns: 1fr; gap: 48px; }
  .sve-team-match__intro { max-width: 760px; }
  .sve-team-match__intro h2 { font-size: clamp(3rem, 7vw, 4.5rem); }
  .sve-archive-tools { grid-template-columns: 1.5fr repeat(2, 1fr) auto; }
}

@media (max-width: 960px) {
  :root { --sve-shell: min(760px, calc(100% - 38px)); }
  .sve-topline__links a:first-child { display: none; }
  .sve-nav-wrap { min-height: 76px; flex-wrap: wrap; padding-bottom: 16px; }
  .sve-js .sve-nav-wrap { flex-wrap: nowrap; padding-bottom: 0; }
  .sve-brand { width: 220px; flex-basis: 220px; }
  .sve-brand-lockup { gap: 6px; }
  .sve-brand-lockup__word { font-size: .68rem; }
  .sve-brand-lockup__crest { width: 78px; }
  .sve-contacts-grid--handball { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sve-js .sve-menu-toggle { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
  .sve-menu-toggle > span { color: var(--sve-navy); font-size: .74rem; font-weight: 900; }
  .sve-menu-toggle i { display: grid; gap: 4px; }
  .sve-menu-toggle b { display: block; width: 24px; height: 2px; background: var(--sve-navy); transition: transform .2s, opacity .2s; }
  .sve-menu-toggle[aria-expanded="true"] b:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .sve-menu-toggle[aria-expanded="true"] b:nth-child(2) { opacity: 0; }
  .sve-menu-toggle[aria-expanded="true"] b:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .sve-main-nav {
    width: 100%;
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    background: var(--sve-navy-deep);
  }
  .sve-js .sve-main-nav {
    position: absolute;
    z-index: 500;
    top: 100%;
    right: 0;
    left: 0;
    visibility: hidden;
    width: auto;
    height: calc(100svh - 114px);
    max-height: calc(100svh - 114px);
    padding: 27px 24px max(27px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    clip-path: inset(0 0 0 100%);
    transform: none;
    transition: clip-path .3s ease, visibility 0s linear .3s;
  }
  @supports (height: 100dvh) {
    .sve-js .sve-main-nav { height: calc(100dvh - 114px); max-height: calc(100dvh - 114px); }
  }
  .sve-js .sve-main-nav.is-open { visibility: visible; pointer-events: auto; clip-path: inset(0); transform: none; transition-delay: 0s; }
  .sve-main-nav > a:not(.sve-nav-cta), .sve-nav-group > button { width: 100%; min-height: 0; padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.14); color: var(--sve-white); font-size: 1.05rem; text-align: left; }
  .sve-main-nav > a::after, .sve-nav-group > button::after { display: none; }
  .sve-nav-group { align-self: auto; }
  .sve-nav-group > button { justify-content: space-between; }
  .sve-nav-submenu { position: static; display: block; visibility: visible; width: auto; padding: 4px 0 7px 16px; border: 0; border-left: 2px solid rgba(214,19,44,.85); background: rgba(255,255,255,.035); box-shadow: none; opacity: 1; transform: none; transition: none; }
  .sve-nav-submenu--teams { grid-template-columns: minmax(0, 1fr); }
  .sve-js .sve-nav-submenu { display: none; }
  .sve-js .sve-nav-group.is-open .sve-nav-submenu { display: block; }
  .sve-nav-submenu a { padding: 11px 9px; color: #ccd3f5; }
  .sve-nav-cta { margin-top: 20px; justify-content: space-between; }
  .sve-hero, .sve-hero__inner { min-height: 690px; }
  .sve-hero__copy { width: 82%; }
  .sve-hero__facts { right: 20px; bottom: 22px; }
  .sve-hero__facts div:last-child { display: none; }
  .sve-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sve-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sve-story { grid-template-columns: minmax(0, 1fr); }
  .sve-story__image, .sve-story__copy { min-width: 0; }
  .sve-story__image { min-height: 470px; }
  .sve-story__image::after { background: linear-gradient(0deg, var(--sve-navy-deep), transparent 45%); }
  .sve-story__copy { padding: 70px max(24px, calc((100% - 760px) / 2)); }
  .sve-contact__layout, .sve-contact--home .sve-contact__layout, .sve-team-details__layout, .sve-team-match__layout { grid-template-columns: 1fr; }
  .sve-broad-grid, .sve-team-schedule-grid { grid-template-columns: 1fr; }
  .sve-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .sve-footer-grid address { grid-column: 1 / -1; }
  .sve-training-toolbar { align-items: stretch; flex-direction: column; }
  .sve-training-toolbar label { width: 100%; }
  .sve-day-filters { grid-template-columns: repeat(8, 1fr); }
  .sve-archive-tools { grid-template-columns: 1fr 1fr; margin-top: -125px; }
  .sve-archive-tools.sve-archive-tools--compact { grid-template-columns: 1fr 1fr; }
  .sve-archive-search { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --sve-shell: calc(100% - 28px); --sve-narrow: calc(100% - 34px); }
  .sve-topline__inner { min-height: 32px; }
  .sve-topline p { font-size: .56rem; }
  .sve-topline__links { font-size: .6rem; }
  .sve-site-header::before { width: 4px; }
  .sve-nav-wrap { min-height: 68px; padding-bottom: 14px; }
  .sve-js .sve-nav-wrap { padding-bottom: 0; }
  .sve-brand { width: 178px; flex-basis: 178px; }
  .sve-brand-lockup { gap: 5px; }
  .sve-brand-lockup__word { font-size: .56rem; }
  .sve-brand-lockup__crest { width: 62px; }
  .sve-js .sve-main-nav { height: calc(100svh - 100px); max-height: calc(100svh - 100px); }
  @supports (height: 100dvh) {
    .sve-js .sve-main-nav { height: calc(100dvh - 100px); max-height: calc(100dvh - 100px); }
  }
  .sve-hero, .sve-hero__inner { min-height: calc(100svh - 100px); }
  .sve-hero__media img { object-position: 62% center; }
  .sve-hero__shade { background: linear-gradient(90deg, rgba(7,16,47,.98), rgba(7,16,47,.63)), linear-gradient(0deg, rgba(7,16,47,.7), transparent); }
  .sve-hero__inner { align-items: end; padding-block: 65px 145px; }
  .sve-hero__copy { width: 100%; }
  .sve-hero h1 { max-width: 100%; font-size: clamp(2.5rem, 12.8vw, 5rem); overflow-wrap: normal; }
  .sve-hero h1 em { white-space: nowrap; }
  .sve-hero__lead { margin: 20px 0 25px; font-size: .95rem; }
  .sve-hero__actions .sve-button { width: 100%; }
  .sve-hero__facts { right: 14px; bottom: 16px; left: 14px; justify-content: space-around; padding: 13px; }
  .sve-hero__facts div { min-width: 0; flex: 1; justify-content: center; padding-inline: 8px; }
  .sve-hero__facts dt { font-size: 1.65rem; }
  .sve-motto > div { gap: 14px; padding-inline: 14px; font-size: .68rem; }
  .sve-home-match__inner { min-height: 0; align-items: stretch; flex-direction: column; padding-block: 48px; }
  .sve-home-match h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .sve-home-match .sve-button { width: 100%; }
  .sve-section { padding-block: 72px; }
  .sve-section-head { display: block; margin-bottom: 30px; }
  .sve-section-head .sve-text-link, .sve-section-head .sve-section-intro { display: inline-flex; margin-top: 18px; }
  .sve-section-head h2, .sve-story h2, .sve-contact h1, .sve-contact h2, .sve-team-details h2 { font-size: clamp(2.35rem, 12vw, 4rem); overflow-wrap: anywhere; }
  .sve-age-guide__intro { margin-top: 22px; }
  .sve-age-guide__intro .sve-section-intro { display: block; margin-top: 0; }
  .sve-age-grid { grid-template-columns: 1fr; }
  .sve-age-card { min-height: 0; }
  .sve-age-card__body { min-height: 215px; }
  .sve-age-path { gap: 24px; padding: 27px 20px; }
  .sve-age-path__heading h3 { font-size: clamp(1.85rem, 9vw, 2.3rem); text-wrap: pretty; }
  .sve-age-path ol { grid-template-columns: 1fr; }
  .sve-age-path__actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .sve-age-path__actions .sve-button { width: 100%; }
  .sve-age-path__actions .sve-text-link { align-self: center; }
  .sve-news-grid, .sve-team-grid { grid-template-columns: 1fr; }
  .sve-news-card__body { min-height: 225px; }
  .sve-team-card > a { display: block; }
  .sve-team-card__media { height: auto; aspect-ratio: 4 / 3; }
  .sve-team-card__body { min-height: 150px; padding: 17px; }
  .sve-story__image { min-height: 330px; }
  .sve-story__copy { padding: 55px 20px 70px; }
  .sve-story h2 { max-width: 100%; font-size: clamp(2.35rem, 11.5vw, 3.8rem); overflow-wrap: anywhere; }
  .sve-supporter-grid { grid-template-columns: 1fr 1fr; }
  .sve-supporter-card { min-height: 108px; padding: 17px; }
  .sve-supporter-cta { align-items: stretch; flex-direction: column; padding: 25px; }
  .sve-contact { padding-block: 75px; }
  .sve-contact__teamfinder { box-shadow: 0 18px 42px rgba(0,0,0,.22); }
  .sve-teamfinder-mobile { display: block; margin-top: 22px; }
  .sve-teamfinder-mobile > h3 { margin: 0 0 14px; color: var(--sve-white); font-family: var(--sve-display); font-size: 1.65rem; letter-spacing: -.035em; text-transform: uppercase; }
  .sve-teamfinder-mobile__list { display: grid; gap: 9px; }
  .sve-teamfinder-mobile__card { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 14px 13px 17px; border-left: 5px solid var(--sve-red); color: var(--sve-navy-deep); background: var(--sve-white); box-shadow: 0 8px 20px rgba(0,0,0,.14); }
  .sve-teamfinder-mobile__card div { display: grid; gap: 3px; }
  .sve-teamfinder-mobile__card strong { font-family: var(--sve-display); font-size: 1.15rem; letter-spacing: -.025em; text-transform: uppercase; }
  .sve-teamfinder-mobile__card span { color: var(--sve-muted); font-size: .78rem; font-weight: 800; }
  .sve-teamfinder-mobile__card > a { display: grid; width: 40px; height: 40px; flex: none; place-items: center; color: var(--sve-white); background: var(--sve-navy); font-size: 1.1rem; }
  .sve-teamfinder-mobile__card > a:hover, .sve-teamfinder-mobile__card > a:focus-visible { color: var(--sve-white); background: var(--sve-red); }
  .sve-contact-form { padding: 23px 18px; }
  .sve-form-row { grid-template-columns: 1fr; gap: 0; }
  .sve-page-hero { padding-block: 66px; }
  .sve-page-hero h1 { font-size: clamp(2.55rem, 12.5vw, 4.6rem); overflow-wrap: anywhere; }
  .sve-page-hero--contacts h1 { font-size: clamp(1.95rem, 8.2vw, 3.2rem); overflow-wrap: normal; }
  .sve-page-hero--broad h1 { font-size: clamp(2.35rem, 10.5vw, 4.2rem); overflow-wrap: normal; }
  .sve-broad-card__body { padding: 23px 20px; }
  .sve-team-schedule-card { padding: 20px 15px; }
  .sve-team-schedule-card > header h3 { font-size: 1.65rem; }
  .sve-team-match__layout { gap: 34px; }
  .sve-team-match__intro h2 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .sve-team-match__widget { padding: 14px; }
  .sve-inline-cta > div { align-items: stretch; flex-direction: column; justify-content: center; }
  .sve-day-filters { grid-template-columns: repeat(4, 1fr); }
  .sve-day-filters button { padding-inline: 6px; }
  .sve-training-row { grid-template-columns: 44px minmax(0, 1fr) 36px; gap: 10px; padding: 15px 10px; }
  .sve-training-row__day { width: 38px; height: 38px; }
  .sve-training-row time { grid-column: 2; font-size: .8rem; text-align: left; }
  .sve-training-row__arrow { grid-column: 3; grid-row: 1 / span 2; width: 34px; height: 34px; }
  .sve-training-row__team h2 { font-size: 1.08rem; }
  .sve-training-note { grid-template-columns: 1fr; }
  .sve-archive-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sve-archive-stats div { min-width: 0; padding-inline: 11px; }
  .sve-archive-stats dt { font-size: 1.8rem; }
  .sve-archive-stats dd { font-size: .55rem; }
  .sve-archive-tools { grid-template-columns: 1fr; margin-top: -80px; padding: 15px; }
  .sve-archive-tools.sve-archive-tools--compact { grid-template-columns: 1fr; }
  .sve-archive-search { grid-column: auto; }
  .sve-article__header { padding-block: 56px 88px; }
  .sve-article__header h1 { font-size: clamp(2.7rem, 13vw, 4.6rem); }
  .sve-article__image { width: calc(100% - 28px); margin-top: -48px; }
  .sve-article__image img { max-height: 500px; }
  .sve-article__body { padding-block: 48px 75px; }
  .sve-article__body > .sve-entry-content { font-size: .98rem; }
  .sve-article__share p { width: 100%; }
  .sve-editorial--documents .wp-block-file { grid-template-columns: 1fr; gap: 14px; padding: 20px 17px; }
  .sve-editorial--documents .wp-block-file .wp-block-file__button { width: 100%; white-space: normal; }
  .sve-editorial--documents .wp-block-file .wp-block-file__embed { grid-column: 1; max-height: 55vh; }
  .sve-team-hero { min-height: 0; }
  .sve-team-hero__media { position: relative; inset: auto; aspect-ratio: 16 / 9; }
  .sve-team-hero__shade { display: none; }
  .sve-team-hero__copy { min-height: 0; padding-block: 34px 44px; }
  .sve-team-hero h1 { font-size: clamp(2.75rem, 14vw, 5.2rem); overflow-wrap: anywhere; }
  .sve-team-times { padding: 24px 20px; }
  .sve-empty-state { padding: 28px 23px; }
  .sve-footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
  .sve-footer-brand { grid-column: 1 / -1; }
  .sve-contacts-grid, .sve-contacts-grid--handball { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .sve-footer-grid address { grid-column: 1 / -1; }
  .sve-footer-bottom { align-items: flex-start; flex-direction: column; }
  .sve-footer-bottom div { flex-wrap: wrap; gap: 12px 20px; }
}

@media (max-width: 420px) {
  .sve-motto > div { gap: 8px; padding-inline: 8px; font-size: .56rem; letter-spacing: .08em; }
  .sve-motto i { width: 4px; height: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .sve-topline, .sve-site-header, .sve-site-footer, .sve-contact, .sve-supporter-cta, .sve-archive-tools, .sve-article__share { display: none !important; }
  .sve-page-hero, .sve-article__header { padding: 20px 0; color: #000; background: #fff; }
  .sve-page-hero h1, .sve-article__header h1 { color: #000; }
  .sve-section { padding-block: 30px; }
}
