:root {
  --blue: #0028A5;
  --blue-dark: #001E7C;
  --blue-ultra: #001452;
  --blue-soft: #BDC9E8;
  --blue-pale: #E6EFFD;
  --teal: #1EA7C4;
  --teal-light: #D4EEF3;
  --ink: #11192d;
  --muted: #4D4D4D;
  --muted-pale: #DBDBDB;
  --paper: #fff;
  --canvas: #f6f8fc;
  --line: #dfe5ef;
  --success: #188e86;
  --success-pale: #D1E8E6;
  --error: #b43838;
  --error-pale: #F0D7D7;
  --shadow: 0 18px 60px rgba(24,50,104,.12);
  --radius: 20px;
  --shell: min(1180px, calc(100vw - 40px));
  --heading: clamp(2.4rem, 5vw, 3.5rem);
  --sub-heading: clamp(1.75rem, 3.5vw, 2.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--canvas); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; }
body.dialog-open { overflow: hidden; }
a { color: inherit; }
img, video { display: block; max-width: 100%; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; transform: translateY(-150%); padding: 10px 14px; border-radius: 10px; background: #fff; }
.skip-link:focus { transform: translateY(0); }
[hidden] { display: none !important; }

.menu-button {
  cursor: pointer;
}
.menu-button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}
*:focus {
  outline: none;
}

.eyebrow { margin: 0 0 14px; font-size: .74rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-blue { color: var(--blue); }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: relative;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--blue-soft);
}

.header-inner {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 92px;
  height: 92px; 
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
  display: grid;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.03em;}

.brand-copy strong {
  font-size: .98em;
}

.brand-copy b {
  color: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a {
  position: relative;
  text-decoration: none;
  font-weight: 750;
  white-space: nowrap;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transition: right .2s ease;
}

.main-nav > a:not(.button):hover::after, .main-nav > a.is-active:not(.button)::after { right: 0; }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: var(--blue-soft);
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-dark);
}

/* ============================================================
   MOBILE HEADER
   ============================================================ */

@media (max-width: 700px) {

  .header-inner {
    min-height: 92px;
    gap: 16px;
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand-copy {
    font-size: 1.05rem;
  }

  /* Hamburger button */
  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    flex: 0 0 auto;
    width: 46px;
    height: 46px;

    padding: 9px;
    border: 0;
    border-radius: 12px;

    background: var(--blue-soft);
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 3px 0;
    background: var(--blue-dark);
  }

  /* Navigation is hidden until the menu is opened */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: stretch;
    gap: 0;

    padding: 12px 24px 20px;

    background: var(--paper);
    border-bottom: 1px solid var(--blue-soft);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a {
    padding: 14px 0;
  }

}

.site-footer { padding: 38px 0; background: #fff; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: 45px; align-items: center; }
.footer-club { display: flex; align-items: center; gap: 18px; }
.footer-club img { width: 84px; height: 84px; object-fit: contain; }
.footer-club div { display: grid; gap: 3px; }
.footer-club span, .footer-club a, .footer-legal { color: var(--muted); font-size: .84rem; }
.footer-club a { color: var(--blue); text-decoration: none; }
.footer-social strong { display: block; margin-bottom: 9px; }
.social-links { display: flex; gap: 9px; }
.social-links a { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; background: var(--teal); border-radius: 50%; text-decoration: none; font-weight: 900; }
.social-links a img {width: 24px; height: 24px; max-width: 24px; max-height: 24px; object-fit: contain; display: block; }
.footer-legal { display: grid; gap: 12px; justify-items: end; text-align: right; }
.footer-legal div { display: flex; gap: 10px; }
.footer-legal a { color: var(--blue); text-decoration: none; }

/* =========================================
   PAGE HERO
   ========================================= */

.page-hero {
    position: relative;
    min-height: 600px;

    display: flex;
    align-items: center;

    overflow: hidden;
    color: #fff;
}

/* Single-image hero */
.page-hero--static {
    min-height: 380px;

    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/* =========================================
   HERO CONTENT
   ========================================= */

.page-hero__content {
    position: absolute;
    inset: 0;
    z-index: 3;

    width: var(--shell);
    margin-inline: auto;

    padding: 80px 0;
}


.page-hero--static .page-hero__description {
    max-width: 1000px;
}


.page-hero__eyebrow {
    margin: 0 0 16px;

    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.page-hero__title {
    margin: 0;
    font-size: clamp(3.6rem, 7.2vw, 6.7rem);
    line-height: .91;
    letter-spacing: -.065em;
}


.page-hero__description {
    max-width: none;

    margin: 24px 0 0;

    font-size: 1.2rem;
    line-height: 1.6;
}


/* =========================================
   DARK TRANSPARENT OVERLAY
   ========================================= */

.page-hero__overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background: rgba(0, 0, 0, 0.55);
}


/* =========================================
   STATIC HERO
   ========================================= */

.page-hero--static {
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================
   SLIDESHOW
   ========================================= */

.page-hero__slides {
    position: absolute;
    inset: 0;

    z-index: 1;
}


.page-hero__slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;

    transition: opacity 1.2s ease;
}


.page-hero__slide.is-active {
    opacity: 1;
}

.hero-wave {
  position: absolute;
  z-index: 3;
  left: -3%;
  right: -3%;
  bottom: -42px;
  height: 80px;
  border-top: 9px solid var(--teal);
  border-radius: 50% 50% 0 0;
  background: var(--paper);
  transform: rotate(-.4deg);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .page-hero {
        min-height: 420px;
    }

    .page-hero--static {
      min-height: 250px;
    }

    .page-hero__content {
  
        padding: 30px 0;
    }

    .page-hero__description {
        font-size: 1rem;
    }
    

}

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 20px; border: 1px solid transparent; border-radius: 11px; text-decoration: none; font-weight: 800; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 28px var(--blue-very-dark); }
.button-ghost { color: #fff; border-color: var(--blue-soft); background: var(--ink); backdrop-filter: blur(8px); }
.button-light { color: var(--blue); background: #fff; }
.nav-join { min-height: 50px; padding-inline: 24px; }
.text-action { display: inline-flex; align-items: center; padding-bottom: 4px; color: var(--blue); border: 0; border-bottom: 1px solid currentColor; background: none; text-decoration: none; font-weight: 800; cursor: pointer; }

* {box-sizing:border-box}


/* ================================
   Slideshow
   ================================ */

.impression-gallery {
  padding: 86px 0 92px;
}   


.slideshow-container {
  position: relative;
  width: 75%;
  margin-inline: auto;
  margin: 3rem auto 0;
}

/* Slides */
.mySlides {
  display: none;
  position: relative;
  aspect-ratio: 16 / 9;
}

/* Images */
.mySlides img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 12px;
}


/* ================================
   Previous / Next buttons
   ================================ */

.prev,
.next {
  position: absolute;
  top: 50%;
  z-index: 2;

  display: grid;
  place-items: center;

  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;

  color: var(--paper);
  background: rgb(0 0 0 / 45%);
  border-radius: 50%;

  cursor: pointer;
  user-select: none;

  font-size: 18px;
  font-weight: 700;
  line-height: 1;

  transform: translateY(-50%);

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

/* Inset buttons slightly from the image edges */
.prev {
  left: 12px;
}

.next {
  right: 12px;
}

.prev:hover,
.next:hover,
.prev:focus-visible,
.next:focus-visible {
  background: rgb(0 0 0 / 75%);
  transform: translateY(-50%) scale(1.05);
}


/* ================================
   Caption
   ================================ */

.text {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;

  width: auto;
  padding: 10px 14px;

  color: #fff;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-align: center;

  background: rgb(0 0 0 / 55%);
  border-radius: 8px;
}


/* ================================
   Hide 1/3, 2/3, etc.
   ================================ */

.numbertext {
  display: none;
}


/* ================================
   Dots
   ================================ */

.slideshow-dots {
  text-align: center;
}

.dot {
  display: inline-block;

  width: 10px;
  height: 10px;
  margin: 0 3px;

  background: var(--muted-pale);
  border-radius: 50%;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.dot:hover,
.dot:focus-visible {
  background: var(--muted);
  transform: scale(1.15);
}

.dot.active {
  background: var(--muted);
}


/* ================================
   Fade animation
   ================================ */

.fade {
  animation: fade 0.6s ease;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}


/* ================================
   Mobile
   ================================ */

@media (max-width: 700px) {


  .slideshow-container {
    width: 100%;
    margin: 1.5rem auto 0;
  }

  

  .mySlides img {
    border-radius: 8px;
  }

  .prev,
  .next {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .prev {
    left: 8px;
  }

  .next {
    right: 8px;
  }
}

.archive-promo { padding: 85px 0; }
.archive-promo-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.archive-promo-inner p:not(.eyebrow) { max-width: 670px; margin: 15px 0 0; color: var(--muted); }


.section-white { background: #fff; }
.section-icon { color: var(--blue); font-size: .8rem; }
.section-icon img { font-size: var(--heading); width: 1rem; height: 1rem; object-fit: contain; display: block; }
.home-intro { padding: 95px 0; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.intro-grid h2, .about-us-inner h2, .document-heading, .section-header h2, .archive-promo h2, .events-heading h2, .section-heading h2, .honorary-heading h2,
.documents-section h2, .contact-section h2, .donations-section h2, .legal-section h2, .impression-gallery h2 { margin: 0; font-size: var(--heading); line-height: .98; letter-spacing: -.055em; }
.contact-section h3, .donations-section h3, .legal-section h3 {  margin: 0; font-size: var(--sub-heading); line-height: .98; letter-spacing: -.055em; }
.intro-grid > div:last-child > p { margin: 30px 0 22px; color: var(--muted); font-size: 1.12rem; line-height: 1.8; }

.about-us { padding: 86px 0 92px; }
.about-us-par { width: 100%; margin-top: 28px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }

.about-us-image { 
  width: 75%;
  margin: 2.5rem auto 0;
  text-align: center;
}

.about-us-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.about-us-image figcaption { margin-top: 0.75rem;
  font-size: 1.08rem;
  font-family: inherit;
  line-height: 1.8;
  font-style: italic;
  color: var(--muted); }

.documents-section { padding: 72px 0 50px; }
.document-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.document-card { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 18px; min-height: 120px; padding: 22px; border: 1px solid var(--line); border-radius: 13px; background: #fff; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.document-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(22,44,91,.09); }
.document-icon { width: 58px; height: 58px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: none; font-size: 1.7rem; }
.document-icon img { width: auto; height: 58px; max-width: 58px; object-fit: contain; display: block; }
.document-icon.shield { border-radius: 0; }
.document-card strong, .document-card small { display: block; }
.document-card small { margin-top: 5px; color: var(--muted); }
.document-arrow { color: var(--blue); font-size: 2rem; }
.legal-section { padding: 80px 0 100px; }

/* ========================================
   Contact Page
   ======================================== */

.contact-page {
  width: 100%;
  overflow: hidden;
}

.contact-shell {
  width: var(--shell);
  margin-inline: auto;
}

.contact-mail {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}


/* ========================================
   Sections
   ======================================== */

.contact-section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.contact-section--general {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.contact-section--legal {
  padding-bottom: clamp(6rem, 12vw, 10rem);
}


/* ========================================
   Section heading
   ======================================== */



.section-heading p {
  color: var(--ink);
  width: 100%; margin-top: 28px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.8; 
}



/* ========================================
   General Contact
   ======================================== */

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  font-size: 1rem;
  
  margin-top: 28px; margin: 0;
}

.contact-intro-heading h2 {
  margin: 0 0 1rem;
}

.contact-intro .section-heading {
  margin: 0;
}

.contact-intro-heading .eyebrow {
  display: block;
  margin-bottom: 1rem;
}


/* Contact information box */

.contact-info-box {
  padding: clamp(1.5rem, 3vw, 2.5rem);

  background-color: var(--canvas);
  border-radius: 12px;
  outline: 1px solid var(--line);
  color: var(--muted);
}

.contact-info-heading {
  margin: 0 0 1rem;

  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;

  
}

.contact-info-box address {
  margin: 0;

  font-size: 1rem;
  line-height: 1.6;
  font-style: normal;
  color: var(--ink);
}

.contact-info-box a {
  display: inline-block;
  margin-top: 1.5rem;

  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}




/* ========================================
   Responsive
   ======================================== */

@media (max-width: 700px) {

  .contact-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

}



/* ========================================
   Cards
   ======================================== */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.contact-card {
  position: relative;

  display: flex;
  min-height: 22rem;

  padding: clamp(1.5rem, 3vw, 2.5rem);

  border: 1px solid var(--line);
  border-radius: 1rem;

  background: var(--paper);
}

.contact-card__content {
  display: flex;
  flex-direction:column;
  width: 100%;
}

.contact-card h3 {
  margin: 0;

  font-size: var(--sub-heading);
  line-height: 1;
  letter-spacing: -0.025em;
}

.contact-card p {
  max-width: 34rem;
  margin: 1.25rem 0 0;

  font-size: 1rem;
  line-height: 1.6;

  color: var(--muted);
}


/* ========================================
   Money donation
   ======================================== */

.donation-card {
  display: block;
}

.donation-card__content {
  width: 100%;
}

.donation-card__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.5rem;

  margin-top: 2rem;
}

.donation-card__bottom .bank-details {
  margin: 0;
  min-width: 0;
  border-radius: 12px;
  background-color: var(--blue-pale);
}

.bank-details {
  border-radius: 12px;
  background-color: var(--blue-pale);
  padding: 1rem 1.25rem;
}

.bank-details__row {
  display: grid;
  grid-template-columns: minmax(4rem, 0.5fr) 1.3fr;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--muted);
}

.bank-details__row:last-child { border-bottom: none; }

.bank-details dt, .bank-details dd {
  margin: 0; text-align: 0 center; display: flex;
}

.bank-details dd {
  display: felx; font-size: 0.9rem; line-height: 1.4;
}

.bank-details dt {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  line-height: 1.4;
}

.bank-details dd { font-weight: 600; overflow-wrap: anywhere; }

.iban { font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }

.donation-card__qr {
  width: clamp(6rem, 10vw, 8rem);
  aspect-ratio: 1;
  flex-shrink: 0;
}

.donation-card__qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bank-placeholder { margin-top: 18px !important; padding: 14px 16px; border-left: 3px solid var(--teal); background: var(--teal-light); }

/* ========================================
   Card links
   ======================================== */

.contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  width: fit-content;
  margin-top: auto;
  padding-top: 2rem;


  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;

  transition:
    gap 180ms ease,
    opacity 180ms ease;
}

.contact-card__link span {
  transition: transform 180ms ease;
}

.contact-card__link:hover {
  gap: 0.8rem;
}

.contact-card__link:hover span {
  transform: translate(2px, -2px);
}


/* ========================================
   Legal cards
   ======================================== */

.contact-cards--legal .contact-card {
  min-height: 20rem;
}

.legal-card p + p {
  margin-top: 1rem;
}

.contact-section--legal h2 {
  margin-bottom: 2rem;
}


/* ========================================
   Responsive
   ======================================== */

@media (max-width: 800px) {

  .contact-address {
    grid-template-columns: 1fr;
  }

  .contact-address__item + .contact-address__item {
    padding-left: 0;
    border-top: 1px solid currentColor;
    border-left: 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 20rem;
  }

  .donation-card__bottom {
    grid-template-columns: 1fr;
  }

  .donation-card__qr {
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
  }

  .donation-card__qr img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

}


@media (max-width: 520px) {

  .contact-section {
    padding-block: 4rem;
  }

  .donation-card {
    grid-template-columns: 1fr;
  }

  .donation-card__qr {
    align-self: start;
    width: 7rem;
  }

  .bank-details__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

}

/* ============================================================
   HONORARY GRID
   ============================================================ */

.honorary-section {
  width: var(--shell);
  margin: 50px auto;
}

.honorary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.honorary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: var(--heading);
  font-weight: 700;
}
.honorary-heading::-webkit-details-marker {
  display: none;
}

.honorary-heading:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: -3px;
}

.honorary-toggle {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .2s ease;
}

.honorary-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.honorary-disclosure[open] .honorary-toggle {
  transform: rotate(45deg);
}

/* ============================================================
   VORSTAND GRID
   ============================================================ */

.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.vorstand-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.vorstand-content {
  min-width: 0;
}

.vorstand-portrait {
  width: 110px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  flex-shrink: 0;
}
.vorstand-role {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vorstand-section {
  width: var(--shell);
  margin: 50px auto;
}

.vorstand-name {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.25;
}

.vorstand-details {
  display: grid;
  align-items: center;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 6px;
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--muted);
}

.vorstand-details dt {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7rem;
}

.vorstand-details dt,
.vorstand-details dd {
  overflow-wrap: anywhere;
}

.vorstand-contact {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 3px;
}

.vorstand-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: var(--heading);
  font-weight: 700;
}
.vorstand-heading::-webkit-details-marker {
  display: none;
}

.vorstand-heading:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: -3px;
}

.vorstand-toggle {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .2s ease;
}

.vorstand-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.vorstand-disclosure[open] .vorstand-toggle {
  transform: rotate(45deg);
}


@media (max-width: 700px) {

  .archive-promo-inner { align-items: flex-start; flex-direction: column; }

  .intro-grid { grid-template-columns: 1fr; gap: 20px; }


  .about-us-image {
    width: 100%;
  }


  .documents-section {
    padding: 50px 0 36px;
  }

  .document-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .document-card {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 14px;
    min-height: 100px;
    padding: 16px;
  }

  .document-icon {
    width: 52px;
    height: 52px;
  }

  .document-icon img {
    height: 52px;
    max-width: 52px;
  }

  .document-card small {
    line-height: 1.45;
  }

  .document-arrow {
    font-size: 1.7rem;
  }

  .vorstand-section {
    width: var(--shell);
    margin: 32px auto;
  }

  .vorstand-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vorstand-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .vorstand-portrait {
    width: 82px;
  }

  .vorstand-role {
    font-size: 0.75rem;
  }

  .vorstand-name {
    margin-bottom: 12px;
    font-size: 1.3rem;
  }

  .vorstand-details {
    font-size: 0.88rem;
  }


  .vorstand-heading {
    min-height: 56px;
    padding: 14px 16px;

  }

  .honorary-section {
    width: var(--shell);
    margin: 32px auto;
  }

  .honorary-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .honorary-heading {
    min-height: 56px;
    padding: 14px 16px;

  }
}

/* ============================================================
   MOBILE FOOTER
   ============================================================ */

@media (max-width: 700px) {

  .site-footer {
    padding: 36px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  /* Club information */

  .footer-club {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .footer-club img {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
  }

  .footer-club div {
    min-width: 0;
  }


  /* Social media */

  .footer-social {
    padding-top: 0;
  }

  .footer-social strong {
    display: block;
    margin-bottom: 10px;
  }

  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-links a {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    color: #fff;
    background: var(--teal);
    border-radius: 50%;

    text-decoration: none;
    font-weight: 900;
  }


  /* Legal / copyright */

  .footer-legal {
    justify-items: start;
    text-align: left;
    gap: 10px;
  }

  .footer-legal div {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
  }

  .footer-legal a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

}



@media (max-width: 420px) {

  .vorstand-card {
    grid-template-columns: 1fr;
  }

  .vorstand-portrait {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 3 / 4;
    margin-inline: auto;
  }

}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .page-hero__slide {
        transition: none;
    }
}

.events-heading {
  display: flex;
  gap: 30px;
  margin-top: 3rem;
}

/* ============================================================
   CALENDAR / EVENTS
   ============================================================ */

.events-shell {
  width: var(--shell);
  display: flex;
  flex-direction: column;
  margin: 3rem auto;
}

/* ------------------------------------------------------------
   EVENT LIST
   ------------------------------------------------------------ */

.events-container {
    width: var(--shell);
    max-width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* ------------------------------------------------------------
   EVENT CARD
   ------------------------------------------------------------ */

.event-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 120px;
    gap: 28px;

    width: 100%;
    padding: 20px;

    border: 1px solid var(--line);
    border-radius: 16px;

    background: var(--paper);

    cursor: pointer;

}

.event-card:hover {
  
    box-shadow: 0 10px 24px rgba(22, 44, 91, .09);
}

.event-card:focus-visible {
    outline: 3px solid var(--blue-soft);
    outline-offset: 3px;
}


/* ------------------------------------------------------------
   EVENT IMAGE
   ------------------------------------------------------------ */

.event-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 12px;

    background: var(--canvas);
}

.event-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}



/* ------------------------------------------------------------
   EVENT CONTENT
   ------------------------------------------------------------ */

.event-card-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


/* ------------------------------------------------------------
   TITLE + TYPE
   ------------------------------------------------------------ */

.event-card-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.event-card-title {
    margin: 0;

    font-size: 1.5rem;
    line-height: 1.2;

    letter-spacing: -.025em;

    color: var(--blue);
}

.event-type-label {
    display: inline-flex;
    align-items: center;

    padding: 4px 9px;

    border-radius: 999px;

    font-size: .75rem;
    font-weight: 750;
    line-height: 1;
    letter-spacing: -.025em;

    text-transform: uppercase;

    background: var(--blue-pale);
    color: var(--blue);
}


/* ------------------------------------------------------------
   DATE / TIME / LOCATION
   ------------------------------------------------------------ */

.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 18px;

    margin-top: 12px;

    color: var(--muted);

    font-size: .92rem;
}

.event-meta-item {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    min-width: 0;
}

.event-meta-item img {
    width: 17px;
    height: 17px;

    flex-shrink: 0;

    object-fit: contain;
}


/* ------------------------------------------------------------
   REGISTRATION / AUDIENCE LABELS
   ------------------------------------------------------------ */

.event-card-labels {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 10px;
}

.event-label {
    display: inline-flex;
    align-items: center;

    padding: 5px 9px;

    border-radius: 999px;

    font-size: .72rem;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;
}


/* Registration required */

.registration-required {
    background: var(--teal-light);
    color: var(--teal);
}


/* Registration open */

.registration-open {
    background: var(--success-pale);
    color: var(--success);
}


/* Registration closed / booked out */

.registration-closed {
    background: var(--error-pale);
    color: var(--error);
}


/* Audience */

.audience-label {
    background: var(--muted-pale);
    color: var(--muted);
}


/* ------------------------------------------------------------
   SHORT DESCRIPTION
   ------------------------------------------------------------ */

.event-card-short {
    margin: auto 0;

    padding-top: 0px;

    color: var(--muted);

    font-size: 1rem;
    line-height: 1.5;
}


/* ------------------------------------------------------------
   MEHR INFOS
   ------------------------------------------------------------ */

.event-card-more {
    align-self: stretch;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--blue);

    font-size: 1rem;
    font-weight: 750;

    text-align: center;
}

.event-card-more span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    white-space: nowrap;

    transition:
        gap .18s ease,
        transform .18s ease;
}


/*
 * The > is created with CSS rather than requiring
 * another SVG asset.
 */

.event-card-more span::after {
    content: "›";

    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5rem;


}


/* ============================================================
   EVENT STATUS / EMPTY STATES
   ============================================================ */

.event-status-card {
    width: 100%;
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    padding: 40px 30px;

    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);

    text-align: center;
}

.event-status-card p {
    margin: 0;

    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.event-status-card p + p {
    margin-top: 4px;
}

.event-status-card .event-status-title {
    color: var(--muted);
    font-weight: 700;
    font-size: 1rem;
}


/* ------------------------------------------------------------
   FILTERS
   ------------------------------------------------------------ */

.event-filters {
    width: var(--shell);
    margin: 0 auto 40px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;

    gap: 8px;
    box-sizing: border-box;
}

.event-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 14px;

    border: 1px solid var(--line);
    border-radius: 999px;

    background: var(--paper);
    color: var(--muted);

    font: inherit;
    font-size: 1rem;
    font-weight: 700;

    cursor: pointer;
}

.event-filter:hover {
    border-color: var(--blue-soft);
    color: var(--blue);
}

.event-filter.active {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.event-filter:focus-visible {
    outline: 3px solid var(--blue-soft);
    outline-offset: 2px;
}

/* ============================================================
   ARCHIVE SEMESTER DISCLOSURES
   ============================================================ */

.archive-semester {
    width: 100%;
}

.archive-semester + .archive-semester {
    margin-top: 48px;
}

.archive-semester-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin: 0 0 24px;
    padding: 0;

    cursor: pointer;
    list-style: none;

    color: var(--blue);
}

.archive-semester-heading::-webkit-details-marker {
    display: none;
}

.archive-semester-heading:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 6px;
}

.archive-semester-title {
    font-size: var(--heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.archive-semester-toggle {
    flex: 0 0 auto;

    width: 14px;
    height: 14px;

    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    transform: rotate(-45deg);
    transition: transform .2s ease;
}

.archive-semester[open] .archive-semester-toggle {
    transform: rotate(45deg);
}

.archive-semester-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-dialog {
    position: relative;

    width: min(1100px, calc(100vw - 40px));
    max-width: 1100px;
    max-height: calc(100vh - 40px);

    padding: 0;
    border: 0;
    border-radius: var(--radius);

    background: var(--paper);
    color: var(--ink);

    box-shadow: var(--shadow);

    overflow-y: auto;
    overflow-x: hidden;
}

.event-dialog::backdrop {
    background: rgba(6,18,41,.72);
    backdrop-filter: blur(5px);
}


/* ------------------------------------------------------------
   DIALOG IMAGE
   ------------------------------------------------------------ */

#dialog-image {
    width: 100%;
}

.dialog-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}

.dialog-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ------------------------------------------------------------
   DIALOG CLOSE BUTTON
   ------------------------------------------------------------ */

#dialog-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: var(--paper);
    color: var(--ink);

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

#dialog-close:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .22);
}


/* ------------------------------------------------------------
   DIALOG CONTENT
   ------------------------------------------------------------ */

#dialog-content {
    padding: 52px;
}

.dialog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 64px;
    align-items: start;
}

.dialog-main {
    min-width: 0;
}

.dialog-sidebar {
    min-width: 0;
}


/* ------------------------------------------------------------
   MAIN CONTENT
   ------------------------------------------------------------ */

.dialog-main {
    min-width: 0;
}

.dialog-main .event-type {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;
    padding: 5px 10px;

    border-radius: 999px;

    font-size: .75rem;
    font-weight: 700;
    line-height: 1;

    text-transform: uppercase;

    background: var(--blue-pale);
    color: var(--blue);
}

.dialog-title {
    margin: 0;

    font-size: clamp(2.4rem, 5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -.04em;

    color: var(--blue);
}


/* ------------------------------------------------------------
   REGISTRATION
   ------------------------------------------------------------ */

.registration-action {
    margin-top: 32px;
}

.registration-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 12px 18px;

    border-radius: 12px;

    background: var(--blue);
    color: var(--paper);

    font-weight: 700;
    text-decoration: none;
}

.registration-button:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.registration-button span {
    font-size: 1.1em;
}


/* ------------------------------------------------------------
   DIALOG — MARKDOWN DESCRIPTION
   ------------------------------------------------------------ */

.dialog-description {
    line-height: 1.65;
    margin-top: 2rem;
}

.dialog-description p {
    margin: 0 0 1.2em;
}

.dialog-description p:last-child {
    margin-bottom: 0;
}

.dialog-description h2,
.dialog-description h3,
.dialog-description h4 {
    margin: 1.8em 0 .7em;
    color: var(--blue);
    line-height: 1.2;
}

.dialog-description h2:first-child,
.dialog-description h3:first-child,
.dialog-description h4:first-child {
    margin-top: 0;
}

.dialog-description h2 {
    font-size: 1.7rem;
}

.dialog-description h3 {
    font-size: 1.35rem;
}

.dialog-description h4 {
    font-size: 1.1rem;
}

.dialog-description strong {
    font-weight: 700;
}

.dialog-description em {
    font-style: italic;
}

.dialog-description ul,
.dialog-description ol {
    margin: 0 0 1.2em;
    padding-left: 1.5em;
}

.dialog-description li {
    margin-bottom: .05em;
}

.dialog-description blockquote {
    margin: 1.4em 0;
    padding: 14px 18px;
    border-left: 4px solid var(--teal);
    background: var(--blue-pale);
}

.dialog-description a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dialog-description a:hover {
    color: var(--teal);
}



/* ------------------------------------------------------------
   RIGHT COLUMN
   ------------------------------------------------------------ */

.dialog-sidebar {
    min-width: 0;
}


.dialog-registration-closed {
  padding: 12px 18px;
  margin-top: 32px;

  
  align-items: center;

  border-radius: 12px;

  font-weight: 700;
}


/* ------------------------------------------------------------
   EVENT DETAILS
   ------------------------------------------------------------ */

.dialog-details {
    display: flex;
    flex-direction: column;

    border-top: 1px solid var(--line);
}

.dialog-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;

    padding: 15px 0;

    border-bottom: 1px solid var(--line);
}

.dialog-detail strong {
    font-size: .72rem;
    line-height: 1.2;

    color: var(--blue);

    text-transform: uppercase;
    letter-spacing: .06em;
}

.dialog-detail span {
    font-size: .95rem;
    line-height: 1.45;

    color: var(--ink);
}

html:has(dialog[open]) {
    overflow: hidden;
}

/* ------------------------------------------------------------
   RESPONSIVE — DIALOG
   ------------------------------------------------------------ */

@media (max-width: 700px) {

  .events-shell { 
  margin: 1.5rem auto;
    }

    .event-card {
    grid-template-columns: 1fr;
    gap: 20px;
    }

    .event-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.event-card-image {
    width: 100%;
  }

.event-card-content {
    min-width: 0;
}

.event-card-short {
  margin-top: 15px;
}

.event-card-more {
    justify-content: flex-start;
}


    .event-dialog {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
    }

    .dialog-image-wrap {
        aspect-ratio: 16 / 9;
    }

    #dialog-content {
        padding: 32px 26px;
    }

    .dialog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dialog-main {
        order: 1;
    }

    .dialog-sidebar {
        order: 2;
    }

    .dialog-title {
        font-size: 2.4rem;
        line-height: 1.1;
    }
}


@media (max-width: 420px) {

    #dialog-content {
        padding: 26px 20px;
    }

    #dialog-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .dialog-title {
        font-size: 2rem;
        line-height: 1.1;
    }
}