/* DivasX site template (REF-008).
   Design taken from the DivasX portal (divax-node-app): PortalHeader.vue, PortalFooter.vue,
   BackgroundLayout.vue + Impressum.vue (glass pages), Contact.vue (contact page).
   Breakpoints follow the portal: 640 / 768 / 950 (menu) / 1024 / 1200 / 1280 / 1440 px. */

:root {
  --blue: #1d5eff;
  --blue-dark: #1340a6;
  --blue-deep: #1647bf;
  --ink: #0e0e0e;
  --text: #363636;
  --muted: #595959;
  --sep: #9ca3af;
  --footer-bg: #040404;
  --footer-text: #fefefe;
  --footer-title: #9b9b9b;
  --footer-muted: #868686;
  --footer-rule: #4b5563;
  --overlay: rgba(30, 58, 138, 0.9);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --header-h: 80px;
  --font: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
}

/* ---------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul { margin: 0; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 3000;
  padding: 0.75rem 1rem;
  background: var(--blue);
  color: #fff;
  border-radius: 0.5rem;
}
.skip-link:focus { top: 1rem; }

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

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

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  white-space: nowrap;
}
@media (min-width: 640px)  { .header-inner { padding: 0 2rem; } }
@media (min-width: 768px)  { .header-inner { padding: 0 3rem; } }
@media (min-width: 1024px) { .header-inner { padding: 0 4rem; } }
@media (min-width: 1280px) { .header-inner { padding: 0 6rem; } }
@media (min-width: 1440px) { .header-inner { padding: 0 8rem; } }

.logo { flex-shrink: 0; }
.logo img { width: 191.25px; height: 60px; object-fit: contain; }
@media (max-width: 1200px) { .logo img { width: 150px; height: 45px; } }
@media (max-width: 768px)  { .logo img { width: 120px; height: 36px; } }

/* Logo on the left, menu (and the NL/FR switch on divasx.be) on the right. */
.nav-wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px)  { .nav-wrap { gap: 2rem; } }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 0;
}
.nav a {
  font-size: 18px;
  letter-spacing: -0.4px;
  color: var(--ink);
  transition: color 0.2s ease;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--blue); }

.nav-sep {
  color: var(--sep);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 0 0.25rem;
  user-select: none;
}

.header-extra {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* NL | FR switch (divasx.be only) */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  font-weight: 600;
}
.lang-switch a {
  padding: 0.375rem 0.625rem;
  border-radius: 0.5rem;
  color: var(--ink);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.lang-switch a:hover { color: var(--blue); }
.lang-switch a[aria-current="true"] { background: #e8efff; color: var(--blue-deep); }

/* hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: none;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--blue);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translate(0, 6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translate(0, -6px) rotate(-45deg); }

@media (max-width: 950px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
}

/* Without JavaScript the menu button cannot work: show the links inline instead. */
@media (max-width: 950px) {
  .no-js .menu-btn { display: none; }
  .no-js .nav { display: flex; gap: 0.5rem; }
  .no-js .nav a { font-size: 14px; }
  .no-js .nav-sep { display: none; }
}

/* slide-in menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0, 0, 0, 0.5);
}
.menu-overlay[hidden] { display: none; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  padding-top: var(--header-h);
  background: #fff;
  box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease-in-out, visibility 0s linear 0.3s;
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s ease-in-out, visibility 0s;
}
.menu-close {
  position: absolute;
  top: 20px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: var(--blue);
  cursor: pointer;
}
.menu-close svg { width: 24px; height: 24px; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}
.mobile-nav a {
  padding: 1rem 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid #e5e7eb;
  transition: color 0.2s ease;
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] { color: var(--blue); }
.mobile-menu .lang-switch { padding: 1.25rem 1.5rem 0; }

@media (min-width: 951px) {
  .mobile-menu, .menu-overlay { display: none !important; }
}

body.menu-open { overflow: hidden; }

/* ---------------------------------------------------------------- glass pages */
.bg-image,
.bg-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.bg-image {
  z-index: -2;
  background: url("/assets/img/background.webp?v=24eaf04bec") center / cover no-repeat;
}
.bg-overlay {
  z-index: -1;
  background: var(--overlay);
}
.page-glass { background: transparent; }
/* Short pages still show the background down to the fold before the footer starts. */
.page-glass main { min-height: calc(100vh - var(--header-h)); min-height: calc(100dvh - var(--header-h)); }

.glass-main {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  color: #fff;
}
@media (min-width: 768px) { .glass-main { padding-top: 3rem; } }

.page-title {
  margin-bottom: 2rem;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
}
.page-title--large { font-size: clamp(1.875rem, 4vw + 0.5rem, 2.75rem); }

.lead {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.stack { display: flex; flex-direction: column; gap: 2rem; }

.glass-section h2 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.glass {
  padding: 1.5rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
}
.glass p + p,
.glass p + ul,
.glass ul + p { margin-top: 0.75rem; }
.glass p.line { margin-top: 0.5rem; }
.glass p.line:first-child { margin-top: 0; }
.glass p.gap { margin-top: 1rem; }
.glass strong { font-weight: 600; }
.glass h3 { margin-bottom: 0.5rem; font-size: 1rem; font-weight: 600; }
.glass ul { padding-left: 1.5rem; list-style: disc; }
.glass li + li { margin-top: 0.5rem; }
.glass a:not(.btn) { text-decoration: underline; text-underline-offset: 2px; }
.glass a:not(.btn):hover { color: #c7d7ff; }

.placeholder-note {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.btn:hover { background: var(--blue-dark); }
.btn svg { width: 18px; height: 18px; }

/* ---------------------------------------------------------------- homepage */
.glass-main--home { max-width: 64rem; }
.glass-main--home > section + section { margin-top: 3.5rem; }
@media (min-width: 768px) { .glass-main--home > section + section { margin-top: 4.5rem; } }

.hero { padding-top: 0.5rem; }
.hero .page-title { max-width: 22ch; margin-bottom: 1.25rem; }
.hero .lead { max-width: 46rem; margin-bottom: 1rem; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-bg);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.kicker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 10px rgba(125, 211, 252, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 211, 252, 0); }
}
@media (prefers-reduced-motion: reduce) { .kicker-dot { animation: none; } }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.btn-row .btn { margin-top: 0; }
.btn--ghost { background: transparent; border: 1px solid rgba(255, 255, 255, 0.6); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn--light { background: #fff; color: var(--blue-deep); }
.btn--light:hover { background: #e8efff; }

.glass-main--home .glass-section h2 { font-size: clamp(1.375rem, 1.5vw + 0.9rem, 1.75rem); margin-bottom: 0.75rem; }
.section-intro { max-width: 46rem; margin-bottom: 1.25rem; color: rgba(255, 255, 255, 0.88); line-height: 1.6; }
.prose { line-height: 1.7; }
.prose p { max-width: 50rem; }
.glass-main--home .glass a:not(.btn) { color: #fff; font-weight: 500; }

.icon { width: 22px; height: 22px; flex-shrink: 0; }

/* numbered steps */
.steps { display: grid; gap: 0.75rem; padding: 0; list-style: none; counter-reset: none; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step { display: flex; gap: 0.875rem; align-items: flex-start; }
.step h3 { margin-bottom: 0.375rem; font-size: 1.0625rem; }
.step p { font-size: 0.9375rem; line-height: 1.6; color: rgba(255, 255, 255, 0.88); }
.step-mark {
  display: grid; place-items: center;
  width: 2.25rem; height: 2.25rem; flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

/* feature cards */
.cards { display: grid; gap: 1rem; padding: 0; list-style: none; }
@media (min-width: 640px)  { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.glass .cards, .cards { padding-left: 0; }
.card h3 { margin: 0.875rem 0 0.375rem; font-size: 1.0625rem; }
.card p { font-size: 0.9375rem; line-height: 1.6; color: rgba(255, 255, 255, 0.88); }
.card-icon {
  display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.625rem;
  background: rgba(29, 94, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* check list */
.glass ul.checks { padding: 0; list-style: none; }
.checks li { display: flex; gap: 0.625rem; align-items: flex-start; }
.checks .icon { width: 20px; height: 20px; margin-top: 0.2rem; color: #86efac; }
.checks + p { margin-top: 1.25rem; }

/* portal band */
.glass--accent {
  background: linear-gradient(135deg, rgba(29, 94, 255, 0.55), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.3);
}
.portal-band { padding: 1.75rem; }
@media (min-width: 768px) { .portal-band { padding: 2.5rem; } }
.portal-band p { max-width: 48rem; line-height: 1.7; }
.follow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1rem;
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.follow p { font-size: 0.9375rem; }
.glass .follow p + ul { margin-top: 0; }
.glass ul.follow-links { display: flex; gap: 0.5rem; padding: 0; list-style: none; }
.glass .follow-links li + li { margin-top: 0; }
.glass .follow-links a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.875rem;
}
.glass .follow-links a:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.follow-links img { width: 14px; height: 14px; }

/* faq */
.faq { display: grid; gap: 0.625rem; }
.faq-item { padding: 0; }
.faq-item summary {
  position: relative;
  padding: 1rem 3rem 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 1.25rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.375rem; font-weight: 400; line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 1.25rem 1.125rem; line-height: 1.65; color: rgba(255, 255, 255, 0.9); }

/* network */
.network { display: grid; gap: 0.625rem; padding: 0; list-style: none; }
@media (min-width: 640px)  { .network { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .network { grid-template-columns: repeat(3, 1fr); } }
/* A card left alone in the last row sits in the middle (the shop card, 10 cards in 3 columns). */
@media (min-width: 1024px) {
  .network > li:last-child:nth-child(3n+1) { grid-column: 2; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .network > li:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: calc(50% - 0.3125rem); }
}
.net-item { display: flex; align-items: center; gap: 0.875rem; padding: 0.875rem 1rem; }
.net-badge {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.04em;
}
.net-badge .icon { width: 20px; height: 20px; }
.net-names { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.glass-main--home .glass a.net-name { font-weight: 600; text-decoration: none; }
.glass-main--home .glass a.net-name:hover { text-decoration: underline; color: #fff; }
.net-name { font-weight: 600; }
.net-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem 0.5rem; margin-top: 0.25rem; }
.net-domain { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.7); }
.net-state {
  line-height: 1.4;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}
.net-item.is-live .net-state { background: #22c55e; border-color: #22c55e; color: #04200f; font-weight: 600; }
.net-item.is-current { border-color: rgba(125, 211, 252, 0.8); background: rgba(29, 94, 255, 0.35); }
.net-item.is-current .net-state { background: #fff; color: var(--blue-deep); font-weight: 600; }

/* ---------------------------------------------------------------- contact page */
.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 1190px at 59% -63px,
      #043f90 0%, rgba(4, 63, 144, 0.2) 65%, rgba(4, 63, 144, 0) 100%),
    linear-gradient(180deg, #041c5f 0px, #041441 700px);
}
@media (min-width: 768px) { .contact-hero { min-height: 550px; } }

.contact-hero-inner {
  width: 100%;
  max-width: 914px;
  padding: 0 1rem;
}
@media (min-width: 768px) { .contact-hero-inner { padding: 0 2rem; } }

.contact-hero h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 640px)  { .contact-hero h1 { font-size: 2.5rem; } }
@media (min-width: 768px)  { .contact-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-hero h1 { font-size: 3.75rem; } }

.contact-hero p { font-size: 1.125rem; line-height: 1.5rem; }

.contact-main { padding: 3rem 1rem 5rem; }
@media (min-width: 640px)  { .contact-main { padding: 4rem 2rem 6rem; } }
@media (min-width: 768px)  { .contact-main { padding: 5rem 3rem 7rem; } }

.contact-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) { .contact-center { gap: 3rem; } }

.contact-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-badge {
  display: inline-flex;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  background: #e8efff;
  color: var(--blue-deep);
  font-size: 1.125rem;
  line-height: 1.5rem;
}

.contact-title {
  max-width: 40rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
@media (min-width: 640px)  { .contact-title { font-size: 2rem; } }
@media (min-width: 768px)  { .contact-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 2.75rem; } }

.contact-desc {
  max-width: 40rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--muted);
}

.contact-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) { .contact-items { grid-template-columns: repeat(3, 1fr); } }

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text);
}
@media (min-width: 768px) { .contact-item { font-size: 1.25rem; } }
.contact-item a:hover { color: var(--blue); }

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.2px solid var(--blue);
  border-radius: 36px;
  color: var(--blue);
}
.contact-icon svg { width: 21px; height: 21px; }

.contact-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.contact-social h2 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  color: #040404;
}
@media (min-width: 768px) { .contact-social h2 { font-size: 1.5rem; } }

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  padding: 0;
  list-style: none;
}
.social-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 42px;
  background: var(--blue);
  transition: background-color 0.2s ease;
}
.social-btn:hover { background: var(--blue-deep); }
.social-btn img { width: 21px; height: 21px; }

/* ---------------------------------------------------------------- footer */
.site-footer {
  padding: 4rem 0 45px;
  background: var(--footer-bg);
  color: var(--footer-text);
}
@media (max-width: 768px) { .site-footer { padding-top: 2.5rem; } }

.footer-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .footer-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 0 2rem; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr; gap: 3rem; } }

.footer-logo { display: inline-block; margin-bottom: 1.5rem; }
.footer-logo img { width: 191.25px; height: 60px; }

.footer-brand p {
  max-width: 370px;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media (max-width: 768px) {
  .footer-brand p { margin-bottom: 1.5rem; font-size: 0.9rem; line-height: 1.3; }
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--footer-text);
  border-radius: 36px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); }
.footer-social img { width: 14px; height: 14px; }

.footer-links h2 {
  margin-bottom: 23px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.36px;
  color: var(--footer-title);
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.footer-links a {
  font-size: 18px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--footer-rule);
  text-align: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
@media (min-width: 768px) { .legal-links { font-size: 16px; } }
.legal-links a { transition: color 0.2s ease; }
.legal-links a:hover { color: var(--blue); }
.legal-links li + li::before {
  content: "•";
  margin-right: 1rem;
  color: var(--footer-muted);
}

.footer-note {
  max-width: 64rem;
  font-size: 14px;
  color: var(--footer-muted);
}

.youth-badge { display: inline-block; margin-top: 0.5rem; transition: opacity 0.2s ease; }
.youth-badge:hover { opacity: 0.8; }
.youth-badge img { height: 8rem; width: auto; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

.contact-item address { font-style: normal; }
