/* ============================= */
/* Header (Topbar + Navbar)      */
/* ============================= */

.vq-sv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
}

.vq-sv-topbar {
  background: var(--col-gold);
  color: var(--col-white);
}

.vq-sv-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 1.5rem;
  gap: 1rem;
}

.vq-sv-topbar__inner--no-brand {
  justify-content: flex-end;
}

.vq-sv-topbar__brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--col-white);
  text-decoration: none;
}

.vq-sv-topbar__logo {
  height: 2.25rem;
  width: auto;
}

.vq-sv-navbar__logo-link {
  display: flex;
  align-items: center;
  padding: 0 .75rem;
}

.vq-sv-navbar__logo {
  height: 2.75rem;
  width: auto;
}

@media (max-width: 768px) {
  .vq-sv-navbar__logo {
    height: 2.1rem;
  }
}

.vq-sv-topbar__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
}

.vq-sv-topbar__name small {
  display: block;
  font-family: var(--bulma-family-primary);
  text-transform: none;
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .7);
}

.vq-sv-topbar__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.vq-sv-topbar__item {
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.vq-sv-topbar__icon {
  color: rgba(255, 255, 255, .85);
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  text-decoration: none;
}

.vq-sv-topbar__icon:hover {
  background: var(--col-white);
  color: var(--col-gold);
}

@media (max-width: 768px) {
  .vq-sv-topbar {
    display: none;
  }
}

.vq-sv-header .navbar {
  background: var(--bulma-scheme-main);
  box-shadow: 0 1px 0 var(--col-border);
}

/* #main-nav nutzt die native Popover-API statt Bulmas JS-Toggle (.is-active).
   Bulma setzt .navbar-menu aber unabhängig davon fest auf display:none — muss für
   den offenen Popover-Zustand explizit überschrieben werden (gleiches Muster wie
   Bulmas .navbar-dropdown{display:none}-Default). */
.navbar-menu:popover-open {
  display: block !important;
  position: static;
  box-shadow: none;
}

.vq-mobile-nav__header {
  display: none;
}

@media (max-width: 1023px) {
  /* Popover-Elemente rendern im Top-Layer und lösen sich damit aus dem normalen
     Containing-Block der Navbar — position:absolute funktioniert hier nicht wie
     bei einem regulären Dropdown. Stattdessen als Vollbild-Overlay fixieren. */
  .navbar-menu:popover-open {
    position: fixed;
    inset: 0;
    margin: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    background: var(--bulma-scheme-main);
    box-shadow: none;
    border: none;
    overflow-y: auto;
    padding: 5.5rem 1.5rem 2rem;
  }

  .navbar-menu:popover-open .vq-mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: var(--bulma-scheme-main);
    border-bottom: 1px solid var(--col-border);
    z-index: 1;
  }

  .vq-mobile-nav__logo {
    height: 2rem;
    width: auto;
  }

  .vq-mobile-nav__close {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: none;
    background: var(--col-surface);
    color: var(--col-text);
    font-size: 1.05rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Bulma vergibt .navbar-item ohne .has-dropdown zusätzliches Padding-Left (der
     Link darin hat sein eigenes Padding schon) — dadurch wirken Punkte ohne
     Untermenü im mobilen Akkordeon stärker eingerückt als solche mit. Angleichen. */
  .navbar-menu:popover-open .navbar-item {
    padding-left: 0;
  }

  /* Untermenüs standardmäßig eingeklappt, nur bei .is-mobile-expanded sichtbar
     (Klick-Akkordeon statt alles gleichzeitig offen, siehe tghilgen04.js) */
  .navbar-menu:popover-open .navbar-dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0 0 .5rem;
    min-width: 0;
  }

  .navbar-menu:popover-open .navbar-item.has-dropdown.is-mobile-expanded > .navbar-dropdown {
    display: block;
  }

  .navbar-menu:popover-open .navbar-link:not(.is-arrowless)::after {
    transition: transform .15s ease;
  }

  .navbar-menu:popover-open .navbar-item.has-dropdown.is-mobile-expanded > .navbar-link:not(.is-arrowless)::after {
    transform: rotate(225deg);
  }
}

.navbar-item, .navbar-link {
  font-weight: 600;
  font-size: .95rem;
}

.navbar-dropdown.vq-sv-mega {
  padding: 0;
  min-width: 300px;
  border: 1px solid var(--col-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow-dark);
}

.vq-sv-mega__header {
  background: var(--col-ice-gradient);
  color: var(--col-white);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: .95rem;
  padding: .85rem 1.35rem;
}

.vq-sv-mega__list .navbar-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-transform: none;
  font-weight: 600;
  padding: .8rem 1.35rem;
  border-bottom: 1px solid var(--col-border);
  color: var(--col-text);
}

.vq-sv-mega__list .navbar-link:last-child {
  border-bottom: none;
}

.vq-sv-mega__list .navbar-link:hover {
  background: var(--col-light-blue);
  color: var(--col-blue);
}

.vq-sv-mega__list .navbar-link i {
  color: var(--col-blue);
  font-size: .7rem;
}

.vq-nav-join-btn {
  background: var(--col-gold) !important;
  color: var(--col-white) !important;
  font-weight: 700;
  border-radius: 10px !important;
  border: none !important;
}

.vq-nav-join-btn:hover {
  background: var(--col-dark-gold) !important;
}

/* ============================= */
/* Body offset for fixed header  */
/* ============================= */

body.vq-site {
  padding-top: calc(var(--bulma-navbar-height) + 2.9rem);
}

@media (max-width: 768px) {
  body.vq-site {
    padding-top: var(--bulma-navbar-height);
  }
}

/* ============================= */
/* Hero                          */
/* ============================= */

.vq-hero {
  position: relative;
  min-height: 34rem;
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
  color: var(--col-white);
}

.vq-hero::before {
  content: '';
  position: absolute;
  right: -15%;
  top: -30%;
  width: 65%;
  height: 160%;
  background: var(--col-ice);
  opacity: .16;
  transform: skewX(-14deg);
  z-index: 0;
  pointer-events: none;
}

.vq-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.vq-hero-bg--fallback {
  background-image: linear-gradient(125deg, var(--col-dark-gold) 0%, var(--col-gold) 45%, var(--col-ice) 100%);
}

.vq-hero .container {
  position: relative;
  z-index: 1;
  /* .vq-hero nutzt kein Bulma-.section (liefert seitliches Padding), nur .container,
     das serienmäßig keins hat — sonst klebt der Inhalt am Viewport-Rand. */
  padding-inline: 1.5rem;
}

.vq-hero-content {
  max-width: 44rem;
}

.vq-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(4px);
  color: var(--col-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.vq-hero-title {
  color: var(--col-white) !important;
  font-size: 3rem;
  line-height: 1.05;
  margin-bottom: 1.25rem !important;
}

.vq-hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 2rem;
  max-width: 38rem;
}

.vq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.vq-hero-btn-primary {
  background: var(--col-gold) !important;
  border-color: var(--col-gold) !important;
  color: var(--col-white) !important;
  font-weight: 700;
  padding: 1.5rem 1.75rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px -6px rgba(196, 40, 31, .55);
}

.vq-hero-btn-primary:hover {
  background: var(--col-dark-gold) !important;
  border-color: var(--col-dark-gold) !important;
}

.vq-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: .85rem 1.75rem;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, .5);
  color: var(--col-white);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}

.vq-hero-btn-ghost:hover {
  border-color: var(--col-white);
  background: rgba(255, 255, 255, .1);
}

.vq-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.vq-hero-badge {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--col-white);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 999px;
}

/* ============================= */
/* Buttons                       */
/* ============================= */

.button.is-primary {
  font-weight: 700;
  border-radius: 10px;
  /* Bulma 1.x berechnet is-primary-Hintergründe aus --bulma-primary-h/-s/-l statt aus
     --bulma-primary selbst (bekanntes Muster, siehe Knowledge Base) — explizit erzwingen. */
  background-color: var(--col-gold) !important;
  border-color: var(--col-gold) !important;
  color: var(--col-white) !important;
}

.button.is-primary:hover,
.button.is-primary:focus {
  background-color: var(--col-dark-gold) !important;
  border-color: var(--col-dark-gold) !important;
}

/* ============================= */
/* Section basics                */
/* ============================= */

.vq-section-eyebrow {
  display: block;
  text-align: center;
  color: var(--col-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
  margin-bottom: .5rem;
}

.vq-section-title {
  text-align: center;
  margin-bottom: .75rem !important;
}

.vq-section-lead {
  text-align: center;
  color: var(--col-text-muted);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-transform: none;
  font-family: var(--bulma-family-primary);
  font-weight: 500;
  letter-spacing: normal;
}

.vq-section-dark {
  background: var(--col-dark-blue);
  color: var(--col-white);
}

.vq-section-dark .vq-section-title,
.vq-section-dark h2 {
  color: var(--col-white) !important;
}

.vq-section-dark .vq-section-lead {
  color: rgba(255, 255, 255, .85);
}

/* ============================= */
/* Generic text/media/html blocks*/
/* ============================= */

.vq-lightbox-thumb {
  display: block;
  cursor: zoom-in;
}

.vq-lightbox-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--box-shadow-big);
}

.vq-lightbox {
  display: none;
  position: fixed;
  z-index: 60;
  inset: 0;
  padding: 1.5rem;
  background: rgba(20, 22, 24, .85);
}

.vq-lightbox:target {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vq-lightbox-content {
  position: relative;
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vq-lightbox-content img, .vq-lightbox-content video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
}

.vq-lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: none;
  background: var(--col-dark-blue);
  color: var(--col-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.vq-block-text-body, .vq-text-media-body {
  color: var(--col-text);
  line-height: 1.7;
}

.vq-block-text-body--center {
  margin: 0 auto;
}

.vq-headline {
  text-align: center;
}

/* ============================= */
/* Card family (generic)         */
/* ============================= */

.vq-card {
  border-radius: 16px;
  background: var(--bulma-scheme-main);
  border: 1px solid var(--col-border);
  box-shadow: var(--box-shadow-big);
  overflow: hidden;
  color: var(--col-text);
  height: 100%;
}

.vq-card-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1.3rem;
  margin-bottom: .6rem;
}

.vq-card-body {
  color: var(--col-text-muted);
  font-size: .95rem;
  line-height: 1.65;
}

.vq-card-text {
  padding: 1.5rem 1.65rem;
}

.vq-card-caption {
  font-size: .75rem;
  color: var(--col-text-muted);
}

.vq-card-media img {
  display: block;
  width: 100%;
  height: auto;
}

.vq-card-cta {
  margin-top: 1rem;
}

.vq-card-button {
  display: inline-block;
  border-radius: 10px;
  padding: .55rem 1.3rem;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
}

.vq-card-button-primary {
  background: var(--col-gold);
  color: var(--col-white) !important;
}

.vq-card-button-primary:hover {
  background: var(--col-dark-gold);
}

.vq-card-variant-muted {
  background: var(--col-surface);
  color: var(--col-black-80);
}

.vq-card-variant-highlight {
  background: linear-gradient(125deg, var(--col-dark-gold), var(--col-ice));
  color: var(--col-white);
  border-color: transparent;
}

.vq-card-variant-highlight .vq-card-title,
.vq-card-variant-highlight .vq-card-body {
  color: var(--col-white);
}

.vq-card.vq-card-layout-text_left, .vq-card.vq-card-layout-text_right {
  display: flex;
}

.vq-card.vq-card-layout-text_left .vq-card-media, .vq-card.vq-card-layout-text_right .vq-card-media {
  flex: 0 0 40%;
}

@media (max-width: 600px) {
  .vq-card.vq-card-layout-text_left, .vq-card.vq-card-layout-text_right {
    flex-direction: column;
  }
}

.vq-card-overlay-wrapper {
  position: relative;
}

.vq-card-overlay-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vq-card-overlay {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vq-card-overlay.is-dark {
  background: linear-gradient(to top, rgba(20, 22, 24, .85), transparent 60%);
  color: var(--col-white);
}

.vq-card-overlay.is-light {
  background: linear-gradient(to top, rgba(255, 255, 255, .9), transparent 60%);
  color: var(--col-black-90);
}

/* ============================= */
/* News (Aktuelles)              */
/* ============================= */

.vq-news-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--col-border);
  box-shadow: var(--box-shadow-big);
  height: 100%;
  transition: transform .15s ease, box-shadow .15s ease;
}

.vq-news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-dark);
}

.vq-news-card .title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .01em;
}

.vq-news-card .card-footer-item {
  color: var(--col-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .03em;
}

/* ============================= */
/* Custom block: verein_department */
/* ============================= */

.vq-sv-dept {
  border-radius: 16px;
  background: var(--bulma-scheme-main);
  border: 1px solid var(--col-border);
  box-shadow: var(--box-shadow-big);
  overflow: hidden;
  height: 100%;
  transition: transform .15s ease, box-shadow .15s ease;
}

.vq-sv-dept:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-dark);
}

.vq-sv-dept__media {
  position: relative;
  height: 160px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vq-sv-dept__media--icon {
  background: var(--col-ice-gradient);
}

.vq-sv-dept__media i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, .9);
}

.vq-sv-dept__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 22, 24, .45), transparent 60%);
}

.vq-sv-dept__tag {
  position: absolute;
  top: .85rem;
  left: .85rem;
  background: var(--col-gold);
  color: var(--col-white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .01em;
  padding: .3rem .7rem;
  border-radius: 999px;
  z-index: 1;
}

.vq-sv-dept__body {
  padding: 1.35rem 1.5rem;
}

.vq-sv-dept__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.2rem;
  margin: 0 0 .5rem;
}

.vq-sv-dept__text {
  color: var(--col-text-muted);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: .9rem;
}

.vq-sv-dept__link {
  color: var(--col-blue);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
}

.vq-sv-dept__link:hover {
  color: var(--col-dark-blue);
}

/* ============================= */
/* Custom block: verein_stat_badge */
/* ============================= */

.vq-sv-stat {
  text-align: center;
  padding: 1.5rem 1rem;
}

.vq-sv-stat__icon {
  font-size: 1.75rem;
  color: var(--col-ice);
  margin-bottom: .6rem;
}

.vq-sv-stat__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--col-white);
}

.vq-sv-stat__label {
  display: block;
  margin-top: .5rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ============================= */
/* Custom block: verein_event_teaser */
/* ============================= */

.vq-sv-event {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bulma-scheme-main);
  border: 1px solid var(--col-border);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--box-shadow-big);
}

.vq-sv-event__date {
  flex: 0 0 auto;
  width: 4.25rem;
  text-align: center;
  background: var(--col-ice-gradient);
  color: var(--col-white);
  border-radius: 10px;
  padding: .5rem .25rem;
}

.vq-sv-event__date-day {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}

.vq-sv-event__date-month {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.vq-sv-event__body {
  flex: 1;
  min-width: 0;
}

.vq-sv-event__cat {
  display: inline-block;
  background: var(--col-light-blue);
  color: var(--col-blue);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: .2rem .6rem;
  border-radius: 999px;
  margin-bottom: .4rem;
}

.vq-sv-event__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  margin: 0 0 .3rem;
  color: var(--col-text);
}

.vq-sv-event__meta {
  color: var(--col-text-muted);
  font-size: .85rem;
}

.vq-sv-event__meta i {
  margin-right: .35rem;
  color: var(--col-blue);
}

/* ============================= */
/* Custom block: verein_sponsor_logo */
/* ============================= */

.vq-sv-sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--col-white);
  border: 1px solid var(--col-border);
  border-radius: 12px;
  padding: 1.5rem;
  height: 110px;
}

.vq-sv-sponsor img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (prefers-color-scheme: dark) {
  .vq-sv-sponsor {
    background: var(--col-white);
  }
}

/* ============================= */
/* Custom block: verein_cta_tile */
/* ============================= */

.vq-sv-cta {
  background: var(--bulma-scheme-main);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--box-shadow-big);
}

.vq-sv-cta__icon {
  font-size: 1.75rem;
  color: var(--col-blue);
  margin-bottom: .75rem;
}

.vq-sv-cta__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  margin-bottom: .65rem;
  color: var(--col-text);
}

.vq-sv-cta__text {
  color: var(--col-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.vq-sv-cta__btn {
  display: inline-block;
  background: var(--col-gold);
  color: var(--col-white) !important;
  font-weight: 700;
  font-size: .85rem;
  padding: .65rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
}

.vq-sv-cta__btn:hover {
  background: var(--col-dark-gold);
}

/* ============================= */
/* Floating quick-action rail    */
/* ============================= */

.vq-sv-rail {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
}

.vq-sv-rail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--col-gold);
  color: var(--col-white);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  text-decoration: none;
  font-size: 1.1rem;
  box-sizing: border-box;
  transition: background .15s ease, color .15s ease;
}

.vq-sv-rail a:hover {
  background: var(--col-white);
  color: var(--col-gold);
}

.vq-sv-rail a:first-child {
  border-radius: 10px 0 0 0;
}

.vq-sv-rail a:last-child {
  border-radius: 0 0 0 10px;
  border-bottom: none;
}

@media (max-width: 768px) {
  .vq-sv-rail {
    display: none;
  }
}

/* ============================= */
/* Sponsor marquee                */
/* ============================= */

.vq-sv-marquee {
  overflow: hidden;
  width: 100%;
}

.vq-sv-marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: vq-sv-marquee-scroll 28s linear infinite;
}

.vq-sv-marquee:hover .vq-sv-marquee__track {
  animation-play-state: paused;
}

.vq-sv-marquee__track > * {
  flex: 0 0 auto;
  width: 200px;
}

@keyframes vq-sv-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ============================= */
/* Kursplan (HTML-Block)         */
/* ============================= */

.vq-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
  max-width: 60rem;
  margin: 0 auto;
}

.vq-schedule-day {
  border-radius: 16px;
  background: var(--bulma-scheme-main);
  border: 1px solid var(--col-border);
  box-shadow: var(--box-shadow-big);
  overflow: hidden;
}

.vq-schedule-day__label {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.25rem;
  background: var(--col-gold-gradient);
  color: var(--col-white);
}

.vq-schedule-day__label i {
  font-size: 1.1rem;
  opacity: .85;
}

.vq-schedule-day__weekday {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 800;
  font-size: 1.05rem;
}

.vq-schedule-day__slots {
  padding: .5rem 1.1rem .9rem;
}

.vq-schedule-slot {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--col-border);
}

.vq-schedule-slot:last-child {
  border-bottom: none;
}

.vq-schedule-slot__time {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--col-ice);
  color: var(--col-white);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .01em;
  padding: .3rem .65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.vq-schedule-slot__body {
  min-width: 0;
}

.vq-schedule-slot__title {
  display: block;
  font-weight: 700;
  color: var(--col-text);
  font-size: .95rem;
  line-height: 1.3;
}

.vq-schedule-slot__meta {
  display: block;
  color: var(--col-text-muted);
  font-size: .8rem;
  margin-top: .1rem;
}

/* ============================= */
/* Chronik-Timeline (HTML-Block) */
/* ============================= */

.vq-timeline {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  padding-left: 2.5rem;
}

.vq-timeline::before {
  content: '';
  position: absolute;
  left: .5rem;
  top: .5rem;
  bottom: .5rem;
  width: 3px;
  background: linear-gradient(to bottom, var(--col-gold), var(--col-ice));
  border-radius: 999px;
}

.vq-timeline-entry {
  position: relative;
  padding-bottom: 2.5rem;
}

.vq-timeline-entry:last-child {
  padding-bottom: 0;
}

.vq-timeline-entry::before {
  content: '';
  position: absolute;
  left: -2.1rem;
  top: .4rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--col-gold);
  border: 3px solid var(--bulma-scheme-main);
  box-shadow: 0 0 0 2px var(--col-gold);
}

.vq-timeline-entry.vq-timeline-milestone::before {
  background: var(--col-ice);
  box-shadow: 0 0 0 2px var(--col-ice);
  width: 18px;
  height: 18px;
  left: -2.25rem;
}

.vq-timeline-year {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--col-gold);
  letter-spacing: .01em;
  margin-bottom: .35rem;
}

.vq-timeline-milestone .vq-timeline-year {
  font-size: 1.9rem;
  color: var(--col-ice);
}

.vq-timeline-text {
  color: var(--col-text);
  line-height: 1.7;
}

.vq-timeline-text p {
  margin: 0 0 .5rem;
}

.vq-timeline-text p:last-child {
  margin-bottom: 0;
}

.vq-timeline-photo {
  margin-top: .85rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow-big);
  max-width: 26rem;
}

.vq-timeline-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.vq-timeline-photo figcaption {
  padding: .5rem .85rem;
  font-size: .78rem;
  color: var(--col-text-muted);
  background: var(--col-surface);
}

@media (max-width: 600px) {
  .vq-timeline {
    padding-left: 1.75rem;
  }
  .vq-timeline-entry::before {
    left: -1.4rem;
  }
  .vq-timeline-entry.vq-timeline-milestone::before {
    left: -1.5rem;
  }
}

/* ============================= */
/* Formulare (veloquill-form)    */
/* ============================= */

.vq-form-submit {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

/* ============================= */
/* Liga-Tabelle (HTML-Block)     */
/* ============================= */

.vq-fb-widget-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--col-border);
  box-shadow: var(--box-shadow-big);
  padding: 1.25rem;
  background: var(--bulma-scheme-main);
  min-height: 220px;
}

.vq-fb-widget-placeholder {
  border-radius: 16px;
  border: 1px dashed var(--col-border);
  background: var(--col-surface);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--col-text-muted);
}

.vq-fb-widget-placeholder i {
  font-size: 1.75rem;
  color: var(--col-ice);
  margin-bottom: .75rem;
  display: block;
}

.vq-fb-widget-placeholder strong {
  display: block;
  color: var(--col-text);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.vq-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--col-border);
  box-shadow: var(--box-shadow-big);
  overflow-x: auto;
}

.vq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 560px;
}

.vq-table thead th {
  background: var(--col-gold);
  color: var(--col-white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 800;
  text-align: left;
  padding: .85rem 1rem;
  white-space: nowrap;
}

.vq-table thead th.vq-table-num {
  text-align: center;
}

.vq-table tbody td {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--col-border);
  color: var(--col-text);
}

.vq-table tbody td.vq-table-num {
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.vq-table tbody tr:nth-child(even) {
  background: var(--col-surface);
}

.vq-table tbody tr:last-child td {
  border-bottom: none;
}

.vq-table tbody tr.vq-table-highlight td {
  background: color-mix(in oklab, var(--col-gold) 12%, transparent);
  font-weight: 700;
  color: var(--col-black-90);
}

.vq-table-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--col-black-10);
  font-weight: 700;
  font-size: .8rem;
}

.vq-table-highlight .vq-table-rank {
  background: var(--col-gold);
  color: var(--col-white);
}

/* ============================= */
/* Footer                        */
/* ============================= */

.veloquill-footer {
  background: var(--col-light-blue);
  color: var(--col-text-muted);
  padding-top: 3.5rem;
}

.veloquill-footer .title,
.veloquill-footer h5 {
  color: var(--col-text) !important;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.veloquill-footer a {
  color: var(--col-text);
}

.veloquill-footer a:hover {
  color: var(--col-gold);
}

.footer-brand-logo {
  display: inline-flex;
}

.footer-logo, .footer-brand-logo img {
  height: 3rem;
  width: auto;
}

.veloquill-footer .button.social {
  background: var(--col-white);
  color: var(--col-text);
  border: 1px solid var(--col-border);
}

.veloquill-footer .button.social:hover {
  background: var(--col-gold);
  border-color: var(--col-gold);
  color: var(--col-white);
}

.copyright-line {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--col-border);
  font-size: .85rem;
  color: var(--col-text-muted);
}
