
:root {
  --vro-red: #d7192d;
  --vro-red-dark: #ad1222;
  --vro-black: #0d0d0f;
  --vro-anthracite: #1b1b1f;
  --vro-text: #33353a;
  --vro-muted: #73767d;
  --vro-light: #f4f4f5;
  --vro-white: #ffffff;
  --vro-border: #e1e2e5;
  --vro-radius: 16px;
  --vro-shadow: 0 16px 40px rgba(0,0,0,.10);
  --vro-content: 1240px;
  --vro-section-space: clamp(72px, 8vw, 120px);
}

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

.vro-page {
  color: var(--vro-text);
  background: var(--vro-white);
}

.vro-page h1,
.vro-page h2,
.vro-page h3,
.vro-page h4 {
  color: var(--vro-anthracite);
  font-weight: 900;
  letter-spacing: -.02em;
}

.vro-section {
  padding: var(--vro-section-space) 24px;
}

.vro-container {
  width: min(100%, var(--vro-content));
  margin-inline: auto;
}

.vro-kicker {
  margin: 0 0 14px;
  color: var(--vro-red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.vro-section-title {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  text-transform: uppercase;
}

.vro-section-intro {
  max-width: 820px;
  margin: 22px auto 0;
  color: #4b4d52;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.vro-center { text-align: center; }

.vro-btn-primary .wp-block-button__link,
.vro-btn-outline .wp-block-button__link,
.vro-card-link .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: .2s ease;
}

.vro-btn-primary .wp-block-button__link {
  border: 2px solid var(--vro-red);
  background: var(--vro-red);
  color: #fff;
}

.vro-btn-primary .wp-block-button__link:hover {
  border-color: var(--vro-red-dark);
  background: var(--vro-red-dark);
  transform: translateY(-2px);
}

.vro-btn-outline .wp-block-button__link {
  border: 2px solid currentColor;
  background: transparent;
}

.vro-main-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.vro-main-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.97));
  pointer-events: none;
}

.vro-main-hero .wp-block-cover__background {
  background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.68) 45%, rgba(0,0,0,.18) 78%, rgba(0,0,0,.24) 100%) !important;
  opacity: 1 !important;
}

.vro-main-hero .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.vro-hero-inner {
  display: flex;
  min-height: 850px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(130px, 14vw, 200px) 28px 42px;
}

.vro-hero-copy {
  max-width: 820px;
  margin: 0 auto 64px 0 !important;
}

.vro-hero-title {
  margin: 0 0 26px !important;
  color: #fff !important;
  font-size: clamp(50px, 6vw, 88px);
  line-height: .98;
  text-transform: uppercase;
}

.vro-hero-text {
  max-width: 720px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.92) !important;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.vro-hero-features {
  margin: 0 !important;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.2);
}

.vro-hero-features > .wp-block-column {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.2);
}

.vro-hero-features > .wp-block-column:last-child { border-right: 0; }

.vro-hero-features h3 {
  margin: 0 0 5px !important;
  color: #fff !important;
  font-size: 18px;
  text-transform: uppercase;
}

.vro-hero-features p {
  margin: 0;
  color: rgba(255,255,255,.72) !important;
  font-size: 14px;
}

.vro-why-section { background: var(--vro-light); }

.vro-card-grid {
  margin-top: 58px;
  gap: 26px;
}

.vro-card-grid > .wp-block-column {
  display: flex;
}

.vro-info-card {
  display: flex;
  width: 100%;
  min-height: 350px;
  flex-direction: column;
  padding: 32px 28px 26px;
  border: 1px solid var(--vro-border);
  border-top: 5px solid var(--vro-red);
  border-radius: var(--vro-radius);
  background: #fff;
  box-shadow: var(--vro-shadow);
  transition: .2s ease;
}

.vro-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(0,0,0,.14);
}

.vro-info-card h3 {
  margin: 10px 0 0 !important;
  font-size: 29px;
}

.vro-info-card p {
  margin: 18px 0 28px;
  line-height: 1.65;
}

.vro-icon {
  width: 48px;
  height: 48px;
  color: var(--vro-red);
}

.vro-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.vro-card-link {
  margin-top: auto;
}

.vro-card-link .wp-block-button__link {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid #ddd;
  background: #f6f6f7;
  color: var(--vro-anthracite);
  font-size: 14px;
}

.vro-news-section { background: #fff; }

.vro-news-query .wp-block-post-template {
  gap: 24px;
  margin-top: 54px;
}

.vro-news-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--vro-border);
  border-radius: var(--vro-radius);
  background: #fff;
  box-shadow: var(--vro-shadow);
}

.vro-news-card .wp-block-post-featured-image {
  margin: 0;
}

.vro-news-card .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vro-news-card > *:not(figure) {
  margin-inline: 22px;
}

.vro-news-card .wp-block-post-date {
  margin-top: 20px;
  color: var(--vro-red);
  font-size: 14px;
  font-weight: 800;
}

.vro-news-card .wp-block-post-title {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.18;
}

.vro-news-card .wp-block-post-excerpt {
  margin-bottom: 22px;
  line-height: 1.6;
}

.vro-events-section {
  background: var(--vro-light);
}

.vro-event-grid {
  margin-top: 54px;
  gap: 24px;
}

.vro-event-grid > .wp-block-column { display: flex; }

.vro-event-card {
  display: flex;
  width: 100%;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--vro-radius);
  background: var(--vro-black);
  color: #fff;
  box-shadow: var(--vro-shadow);
  border-bottom: 4px solid var(--vro-red);
}

.vro-event-image {
  margin: 0;
}

.vro-event-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vro-event-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.vro-event-label {
  display: inline-block;
  width: fit-content;
  margin: 0 0 12px;
  padding: 5px 9px;
  border-radius: 4px;
  background: var(--vro-red);
  color: #fff !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vro-event-card h3 {
  margin: 0 0 12px !important;
  color: #fff !important;
  font-size: 28px;
  text-transform: uppercase;
}

.vro-event-card p {
  color: rgba(255,255,255,.78) !important;
  line-height: 1.55;
}

.vro-event-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

.vro-gallery-section { background: #fff; }

.vro-gallery-wrap {
  position: relative;
  margin-top: 54px;
}

.vro-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 145px;
  gap: 8px;
}

.vro-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.vro-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.vro-gallery-item:hover img { transform: scale(1.05); }

.vro-gallery-item-1 { grid-column: span 4; grid-row: span 2; }
.vro-gallery-item-2 { grid-column: span 5; grid-row: span 2; }
.vro-gallery-item-3 { grid-column: span 3; grid-row: span 2; }
.vro-gallery-item-4 { grid-column: span 3; grid-row: span 2; }
.vro-gallery-item-5 { grid-column: span 3; grid-row: span 1; }
.vro-gallery-item-6 { grid-column: span 3; grid-row: span 1; }
.vro-gallery-item-7 { grid-column: span 3; grid-row: span 2; }
.vro-gallery-item-8 { grid-column: span 3; grid-row: span 1; }

.vro-gallery-overlay {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  width: min(90%, 390px);
  padding: 34px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(10,10,12,.94);
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.vro-gallery-overlay h3 {
  color: #fff !important;
  font-size: 30px;
  text-transform: uppercase;
}

.vro-upload-strip {
  margin-top: 18px;
  padding: 24px 30px;
  border-radius: 14px;
  background: var(--vro-black);
  color: #fff;
}

.vro-region-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.86) 48%, rgba(255,255,255,.2) 100%);
}

.vro-region-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.vro-region-chip {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 6px;
  background: var(--vro-black);
  color: #fff !important;
  font-weight: 800;
}

.vro-community-section {
  background: var(--vro-black);
  color: #fff;
}

.vro-community-section h2,
.vro-community-section h3 { color: #fff !important; }

.vro-community-steps {
  margin-top: 38px;
  gap: 24px;
}

.vro-community-step {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
}

.vro-community-step strong {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--vro-red);
  color: #fff;
}

.vro-final-cta {
  padding: 28px 24px;
  background: var(--vro-red);
  color: #fff;
}

.vro-final-cta h2 { color: #fff !important; }

.vro-empty-state {
  padding: 40px;
  border: 1px dashed var(--vro-border);
  text-align: center;
}

@media (max-width: 1024px) {
  .vro-hero-features,
  .vro-card-grid,
  .vro-event-grid {
    flex-wrap: wrap !important;
  }

  .vro-hero-features > .wp-block-column,
  .vro-card-grid > .wp-block-column,
  .vro-event-grid > .wp-block-column {
    flex-basis: calc(50% - 12px) !important;
  }

  .vro-gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .vro-gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

@media (max-width: 700px) {
  .vro-section { padding: 62px 18px; }

  .vro-main-hero { min-height: auto; }

  .vro-main-hero .wp-block-cover__background {
    background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.96)) !important;
  }

  .vro-hero-inner {
    min-height: 760px;
    padding: 110px 18px 24px;
  }

  .vro-hero-copy { margin-bottom: 40px !important; }

  .vro-hero-title { font-size: clamp(40px, 12vw, 58px); }

  .vro-hero-buttons,
  .vro-hero-buttons .wp-block-button,
  .vro-hero-buttons .wp-block-button__link {
    width: 100%;
  }

  .vro-hero-features > .wp-block-column,
  .vro-card-grid > .wp-block-column,
  .vro-event-grid > .wp-block-column {
    flex-basis: 100% !important;
  }

  .vro-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .vro-gallery-overlay {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 14px;
    transform: none;
  }
}


/* =========================================================
   VRO v1.1 – Header und Hero-Korrektur
   ========================================================= */

/*
 * Die Testseite und die spätere echte Startseite erhalten keinen
 * Blocksy-Innenabstand oberhalb oder seitlich des Hero-Bereichs.
 */
body.vro-new-home .site-main,
body.vro-front-page .site-main,
body.vro-new-home .content-area,
body.vro-front-page .content-area,
body.vro-new-home article.page,
body.vro-front-page article.page,
body.vro-new-home .entry-content,
body.vro-front-page .entry-content {
  margin: 0 !important;
  padding: 0 !important;
}

body.vro-new-home .site-main > .ct-container,
body.vro-new-home .site-main > .ct-container-full,
body.vro-front-page .site-main > .ct-container,
body.vro-front-page .site-main > .ct-container-full {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * Der Header liegt direkt über dem Hero. Dadurch verschwindet der
 * schwarze Zwischenstreifen vollständig.
 */
body.vro-new-home #header,
body.vro-front-page #header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
}

body.admin-bar.vro-new-home #header,
body.admin-bar.vro-front-page #header {
  top: 32px;
}

/*
 * Leicht transparenter Header, damit das Menü lesbar bleibt und das
 * Hintergrundbild trotzdem direkt dahinter beginnt.
 */
body.vro-new-home #header [data-row],
body.vro-front-page #header [data-row] {
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 10, .92),
    rgba(8, 8, 10, .72)
  ) !important;
  box-shadow: none !important;
}

/* Der komplette Hero geht wirklich von Browserkante zu Browserkante. */
body.vro-new-home .vro-page,
body.vro-front-page .vro-page {
  margin: 0 !important;
  padding: 0 !important;
}

.vro-main-hero {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 calc(50% - 50vw) !important;
}

/*
 * Kein zentrierter 1240-px-Container mehr im Hero:
 * Der Text rückt deutlich weiter nach links.
 */
.vro-main-hero .vro-hero-inner {
  width: 100% !important;
  max-width: none !important;
  min-height: 850px;
  justify-content: flex-start;
  padding:
    clamp(190px, 15vh, 230px)
    clamp(24px, 4vw, 72px)
    38px !important;
}

.vro-main-hero .vro-hero-copy {
  width: min(820px, 68vw);
  max-width: 820px !important;
  margin: 0 0 auto 0 !important;
}

/* Etwas kompaktere H1, damit sie nicht den gesamten Hero erschlägt. */
.vro-main-hero .vro-hero-title {
  max-width: 790px;
  font-size: clamp(46px, 5.3vw, 78px);
  line-height: 1.01;
}

/* Die vier Merkmale bleiben am unteren Rand des Hero. */
.vro-main-hero .vro-hero-features {
  margin-top: auto !important;
}

/* Header-Logo etwas präsenter. */
body.vro-new-home #header .site-logo-container img,
body.vro-front-page #header .site-logo-container img {
  width: auto;
  max-height: 74px;
}

/* Tablet */
@media (max-width: 1024px) {
  .vro-main-hero .vro-hero-inner {
    padding:
      165px
      28px
      28px !important;
  }

  .vro-main-hero .vro-hero-copy {
    width: min(760px, 86vw);
  }
}

/* Mobil */
@media (max-width: 782px) {
  body.admin-bar.vro-new-home #header,
  body.admin-bar.vro-front-page #header {
    top: 46px;
  }
}

@media (max-width: 700px) {
  body.vro-new-home #header,
  body.vro-front-page #header {
    position: relative;
  }

  body.admin-bar.vro-new-home #header,
  body.admin-bar.vro-front-page #header {
    top: auto;
  }

  .vro-main-hero .vro-hero-inner {
    min-height: 760px;
    padding:
      54px
      18px
      24px !important;
  }

  .vro-main-hero .vro-hero-copy {
    width: 100%;
  }

  .vro-main-hero .vro-hero-title {
    font-size: clamp(39px, 11vw, 54px);
  }
}


/* =========================================================
   VRO v1.2 – kontrollierter Zeilenumbruch der Hero-H1
   ========================================================= */

.vro-hero-title .vro-title-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .vro-hero-title .vro-title-line {
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .vro-hero-title .vro-title-line:first-child {
    max-width: 100%;
  }

  .vro-hero-title .vro-title-line:last-child {
    max-width: 100%;
  }
}


/* =========================================================
   VRO v1.3 – eigenständige mobile Hero-Typografie
   ========================================================= */

.vro-title-mobile {
  display: none;
}

@media (max-width: 700px) {
  .vro-title-desktop {
    display: none;
  }

  .vro-title-mobile {
    display: block;
  }

  .vro-main-hero .vro-hero-inner {
    min-height: 760px;
    padding:
      48px
      18px
      24px !important;
  }

  .vro-main-hero .vro-hero-copy {
    width: 100%;
    max-width: 100% !important;
    margin-bottom: 34px !important;
  }

  .vro-main-hero .vro-hero-title {
    max-width: 100%;
    margin-bottom: 24px !important;
    font-size: clamp(40px, 10.5vw, 50px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.02em;
  }

  .vro-main-hero .vro-title-line {
    display: block;
    white-space: nowrap;
  }

  .vro-main-hero .vro-title-line:last-child {
    font-size: .86em;
  }

  .vro-main-hero .vro-hero-text {
    width: 88%;
    max-width: 33rem;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.55;
  }

  .vro-main-hero .vro-hero-buttons {
    width: 100%;
    gap: 14px;
    align-items: flex-start;
  }

  .vro-main-hero .vro-hero-buttons .wp-block-button {
    width: auto;
    min-width: 0;
  }

  .vro-main-hero .vro-hero-buttons .wp-block-button__link {
    width: auto;
    min-width: 230px;
    padding: 14px 22px;
    font-size: 16px;
  }

  .vro-main-hero .vro-hero-features {
    margin-top: 28px !important;
  }
}

@media (max-width: 390px) {
  .vro-main-hero .vro-hero-title {
    font-size: 38px;
  }

  .vro-main-hero .vro-title-line {
    white-space: normal;
  }

  .vro-main-hero .vro-hero-text {
    width: 94%;
    font-size: 16px;
  }

  .vro-main-hero .vro-hero-buttons .wp-block-button,
  .vro-main-hero .vro-hero-buttons .wp-block-button__link {
    width: 100%;
  }
}


/* =========================================================
   VRO v1.4 – Mobile H1 und doppelten Seitentitel korrigieren
   ========================================================= */

/*
 * Blocksy gibt je nach Seiteneinstellung oberhalb des Inhalts noch einen
 * eigenen Seiten-/Hero-Titel aus. Auf der neuen Startseite wird dieser
 * vollständig entfernt, weil die Seite bereits eine echte H1 im Hero hat.
 */
body.vro-new-home .hero-section,
body.vro-front-page .hero-section,
body.vro-new-home .entry-header,
body.vro-front-page .entry-header,
body.vro-new-home [class*="page-title"],
body.vro-front-page [class*="page-title"] {
  display: none !important;
}

/* Kein Restabstand des ausgeblendeten Blocksy-Seitentitels. */
body.vro-new-home #main,
body.vro-front-page #main,
body.vro-new-home .site-main,
body.vro-front-page .site-main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

@media (max-width: 700px) {
  /*
   * Vier bewusst gesetzte Zeilen verhindern jeden horizontalen Überlauf:
   * Quad & ATV
   * Community
   * im Oberbergischen
   * Kreis
   */
  .vro-main-hero .vro-hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(38px, 9.6vw, 48px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }

  .vro-main-hero .vro-title-line {
    display: block;
    width: 100%;
    white-space: nowrap;
  }

  .vro-main-hero .vro-title-line:last-child {
    font-size: 1em;
  }

  /* Etwas mehr Luft unter der H1 wie im freigegebenen Mobile-Mock-up. */
  .vro-main-hero .vro-hero-title {
    margin-bottom: 30px !important;
  }

  .vro-main-hero .vro-hero-text {
    width: 92%;
    max-width: 31rem;
  }
}

@media (max-width: 370px) {
  .vro-main-hero .vro-hero-title {
    font-size: 35px;
  }

  .vro-main-hero .vro-title-line {
    white-space: normal;
  }
}


/* =========================================================
   VRO v1.5 – Header-Site-Title ausblenden und mobile H1 feiner
   ========================================================= */

/*
 * Blocksy-Site-Title im Header vollständig ausblenden.
 * Das Logo bleibt erhalten.
 */
body.vro-new-home #header .site-title,
body.vro-front-page #header .site-title,
body.vro-new-home #header .site-description,
body.vro-front-page #header .site-description,
body.vro-new-home #header .site-branding .site-title,
body.vro-front-page #header .site-branding .site-title,
body.vro-new-home #header .site-branding .site-description,
body.vro-front-page #header .site-branding .site-description,
body.vro-new-home #header [data-id="logo"] .site-title,
body.vro-front-page #header [data-id="logo"] .site-title,
body.vro-new-home #header [data-id="logo"] .site-description,
body.vro-front-page #header [data-id="logo"] .site-description {
  display: none !important;
}

/*
 * Falls Blocksy den Seitentitel als Link neben dem Logo rendert:
 * nur das Bild-Logo sichtbar lassen.
 */
body.vro-new-home #header .site-logo-container > a:not(:has(img)),
body.vro-front-page #header .site-logo-container > a:not(:has(img)) {
  display: none !important;
}

@media (max-width: 700px) {
  .vro-main-hero .vro-hero-title {
    font-size: clamp(34px, 8.7vw, 42px);
    font-weight: 800;
    line-height: 1.10;
    letter-spacing: -.015em;
    margin-bottom: 26px !important;
  }

  .vro-main-hero .vro-title-line {
    white-space: nowrap;
  }

  .vro-main-hero .vro-hero-text {
    width: 90%;
    max-width: 30rem;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 28px;
  }

  .vro-main-hero .vro-hero-buttons .wp-block-button__link {
    min-width: 220px;
    padding: 13px 20px;
    font-size: 15px;
  }
}

@media (max-width: 370px) {
  .vro-main-hero .vro-hero-title {
    font-size: 32px;
  }

  .vro-main-hero .vro-title-line {
    white-space: normal;
  }
}


/* =========================================================
   VRO v1.6 – finaler Feinschliff mobile Hero-H1
   ========================================================= */

@media (max-width: 700px) {
  .vro-main-hero .vro-hero-title {
    font-size: clamp(32px, 8.2vw, 40px);
    line-height: 1.10;
  }
}

@media (max-width: 370px) {
  .vro-main-hero .vro-hero-title {
    font-size: 30px;
  }
}


/* =========================================================
   VRO v1.7 – Galerie mobil kompakter + Kontrastkorrektur
   ========================================================= */

.vro-gallery-overlay h2,
.vro-gallery-overlay h3,
.vro-gallery-overlay h4,
.vro-upload-strip h2,
.vro-upload-strip h3,
.vro-upload-strip h4 {
  color: #ffffff !important;
  opacity: 1 !important;
}

.vro-upload-strip p,
.vro-gallery-overlay p {
  color: rgba(255,255,255,.86) !important;
}

@media (max-width: 700px) {
  .vro-gallery-wrap {
    margin-top: 34px;
  }

  .vro-gallery-mosaic {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: 150px 110px 150px !important;
    grid-auto-rows: 0 !important;
    gap: 7px !important;
    overflow: hidden;
    border-radius: 12px;
  }

  .vro-gallery-item {
    min-width: 0;
    min-height: 0;
    border-radius: 8px;
  }

  .vro-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .vro-gallery-item-1 {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .vro-gallery-item-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .vro-gallery-item-3 {
    grid-column: 2;
    grid-row: 2;
  }

  .vro-gallery-item-4 {
    grid-column: 1;
    grid-row: 3;
  }

  .vro-gallery-item-5 {
    grid-column: 2;
    grid-row: 3;
  }

  .vro-gallery-item-6,
  .vro-gallery-item-7,
  .vro-gallery-item-8,
  .vro-gallery-item:nth-child(n+6) {
    display: none !important;
  }

  .vro-gallery-overlay {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    margin: 12px 0 0 !important;
    padding: 28px 22px !important;
    transform: none !important;
  }

  .vro-gallery-overlay h3 {
    margin-bottom: 14px !important;
    font-size: 25px;
    line-height: 1.16;
  }

  .vro-gallery-overlay p {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .vro-upload-strip {
    display: block !important;
    margin-top: 14px;
    padding: 27px 22px !important;
  }

  .vro-upload-strip h3 {
    margin: 0 0 12px !important;
    font-size: 27px;
    line-height: 1.15;
  }

  .vro-upload-strip p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .vro-upload-strip .wp-block-button,
  .vro-upload-strip .wp-block-button__link {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .vro-gallery-mosaic {
    grid-template-rows: 130px 95px 130px !important;
  }
}


/* =========================================================
   VRO v1.8 – „Das macht VRO besonders“
   ========================================================= */

.vro-why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(215,25,45,.055), transparent 27rem),
    linear-gradient(180deg, #f7f7f8 0%, #f1f1f3 100%);
}

.vro-why-section::before,
.vro-why-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(215,25,45,.08);
  border-radius: 50%;
  pointer-events: none;
}

.vro-why-section::before {
  top: -210px;
  left: -170px;
}

.vro-why-section::after {
  right: -210px;
  bottom: -240px;
}

.vro-why-section > * {
  position: relative;
  z-index: 1;
}

.vro-why-section .vro-section-title {
  color: var(--vro-anthracite) !important;
}

.vro-why-section .vro-section-intro {
  max-width: 790px;
}

.vro-why-section .vro-card-grid {
  align-items: stretch !important;
  margin-top: 58px;
  gap: 24px;
}

.vro-why-section .vro-card-grid > .wp-block-column {
  display: flex;
  min-width: 0;
}

.vro-why-section .vro-info-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 390px;
  flex-direction: column;
  padding: 34px 28px 26px;
  overflow: hidden;
  border: 1px solid #dedfe3;
  border-top: 5px solid var(--vro-red);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 38px rgba(0,0,0,.09);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.vro-why-section .vro-info-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  background: var(--vro-red);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: transform .22s ease;
}

/* Gemeinschaft */
.vro-why-section .vro-card-grid > .wp-block-column:nth-child(1) .vro-info-card::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 31c7 0 12-5 12-12S31 7 24 7 12 12 12 19s5 12 12 12Zm20-3c5 0 9-4 9-9s-4-9-9-9-9 4-9 9 4 9 9 9ZM24 36C13 36 4 42 4 50v7h40v-7c0-8-9-14-20-14Zm20-2c-3 0-6 .7-8.5 2 6.2 3.4 10.5 8.4 10.5 14v7h14v-6c0-9-7-17-16-17Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 31c7 0 12-5 12-12S31 7 24 7 12 12 12 19s5 12 12 12Zm20-3c5 0 9-4 9-9s-4-9-9-9-9 4-9 9 4 9 9 9ZM24 36C13 36 4 42 4 50v7h40v-7c0-8-9-14-20-14Zm20-2c-3 0-6 .7-8.5 2 6.2 3.4 10.5 8.4 10.5 14v7h14v-6c0-9-7-17-16-17Z'/%3E%3C/svg%3E");
}

/* Stammtisch */
.vro-why-section .vro-card-grid > .wp-block-column:nth-child(2) .vro-info-card::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22h36v14c0 13-8 22-18 22S12 49 12 36V22Zm36 5v6h5c4 0 7 3 7 7s-3 7-7 7h-8c2-3 3-7 3-11v-9ZM18 6c5 5-4 10 1 15m11-16c5 5-4 11 1 16M42 6c5 5-4 10 1 15' fill='none' stroke='black' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22h36v14c0 13-8 22-18 22S12 49 12 36V22Zm36 5v6h5c4 0 7 3 7 7s-3 7-7 7h-8c2-3 3-7 3-11v-9ZM18 6c5 5-4 10 1 15m11-16c5 5-4 11 1 16M42 6c5 5-4 10 1 15' fill='none' stroke='black' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Touren */
.vro-why-section .vro-card-grid > .wp-block-column:nth-child(3) .vro-info-card::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 52 21 26l8 13 9-16 21 29H5Zm12-5h32L39 33 29 50l-8-13-4 10Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 52 21 26l8 13 9-16 21 29H5Zm12-5h32L39 33 29 50l-8-13-4 10Z'/%3E%3C/svg%3E");
}

/* Veranstaltungen */
.vro-why-section .vro-card-grid > .wp-block-column:nth-child(4) .vro-info-card::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 9h6V3h5v6h18V3h5v6h6c4 0 7 3 7 7v35c0 4-3 7-7 7H12c-4 0-7-3-7-7V16c0-4 3-7 7-7Zm0 14v28h40V23H12Zm8 6h8v8h-8v-8Zm16 0h8v8h-8v-8Zm-16 13h8v8h-8v-8Zm16 0h8v8h-8v-8Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 9h6V3h5v6h18V3h5v6h6c4 0 7 3 7 7v35c0 4-3 7-7 7H12c-4 0-7-3-7-7V16c0-4 3-7 7-7Zm0 14v28h40V23H12Zm8 6h8v8h-8v-8Zm16 0h8v8h-8v-8Zm-16 13h8v8h-8v-8Zm16 0h8v8h-8v-8Z'/%3E%3C/svg%3E");
}

.vro-why-section .vro-info-card::after {
  content: "";
  width: 38px;
  height: 3px;
  margin: 18px 0 2px;
  order: 2;
  border-radius: 999px;
  background: var(--vro-red);
}

.vro-why-section .vro-info-card h3 {
  order: 1;
  margin: 0 !important;
  color: var(--vro-anthracite) !important;
  font-size: clamp(25px, 2vw, 31px);
  line-height: 1.12;
  text-transform: none;
}

.vro-why-section .vro-info-card p {
  order: 3;
  margin: 18px 0 28px;
  color: #44464b !important;
  font-size: 16px;
  line-height: 1.65;
}

.vro-why-section .vro-info-card .vro-card-link {
  order: 4;
  margin-top: auto;
}

.vro-why-section .vro-info-card .vro-card-link .wp-block-button__link {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #dadbe0;
  border-radius: 8px;
  background: #f6f6f7;
  color: var(--vro-anthracite);
  font-size: 14px;
  font-weight: 900;
  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.vro-why-section .vro-info-card .vro-card-link .wp-block-button__link:hover {
  border-color: var(--vro-red);
  background: var(--vro-red);
  color: #fff;
  transform: translateX(2px);
}

.vro-why-section .vro-info-card:hover {
  border-color: rgba(215,25,45,.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,.14);
}

.vro-why-section .vro-info-card:hover::before {
  transform: scale(1.08) translateY(-2px);
}

@media (max-width: 1024px) {
  .vro-why-section .vro-card-grid {
    flex-wrap: wrap !important;
  }

  .vro-why-section .vro-card-grid > .wp-block-column {
    flex-basis: calc(50% - 12px) !important;
  }

  .vro-why-section .vro-info-card {
    min-height: 350px;
  }
}

@media (max-width: 700px) {
  .vro-why-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .vro-why-section .vro-card-grid {
    margin-top: 38px;
    gap: 18px;
  }

  .vro-why-section .vro-card-grid > .wp-block-column {
    flex-basis: 100% !important;
  }

  .vro-why-section .vro-info-card {
    min-height: 0;
    padding: 28px 24px 24px;
  }

  .vro-why-section .vro-info-card::before {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
  }

  .vro-why-section .vro-info-card h3 {
    font-size: 25px;
  }

  .vro-why-section .vro-info-card p {
    margin-bottom: 24px;
  }

  .vro-why-section .vro-info-card:hover {
    transform: none;
  }
}


/* =========================================================
   VRO v1.9 – Karten- und Terminüberschriften
   ========================================================= */

/* Lange Kartenüberschrift auf Desktop sicher in einer Zeile halten. */
@media (min-width: 1025px) {
  .vro-why-section .vro-card-grid > .wp-block-column:nth-child(4) .vro-info-card h3 {
    font-size: 25px;
    letter-spacing: -.025em;
    white-space: nowrap;
  }
}

/* Tablet darf etwas kleiner werden, ohne den letzten Buchstaben abzutrennen. */
@media (min-width: 701px) and (max-width: 1024px) {
  .vro-why-section .vro-card-grid > .wp-block-column:nth-child(4) .vro-info-card h3 {
    font-size: 24px;
    letter-spacing: -.02em;
    white-space: nowrap;
  }
}

/* Desktop zeigt den normalen Titel. */
.vro-events-title-mobile {
  display: none;
}

/* Mobil bekommt der Terminbereich einen bewusst gesetzten Zweizeiler. */
@media (max-width: 700px) {
  .vro-events-title-desktop {
    display: none;
  }

  .vro-events-title-mobile {
    display: block;
  }

  .vro-events-title-mobile > span {
    display: block;
    white-space: nowrap;
  }

  .vro-events-section .vro-section-title {
    font-size: clamp(31px, 8.2vw, 38px);
    line-height: 1.06;
    letter-spacing: -.025em;
  }
}

@media (max-width: 370px) {
  .vro-events-section .vro-section-title {
    font-size: 29px;
  }
}


/* =========================================================
   VRO v1.10 – konsistentes Designsystem
   ========================================================= */

/*
 * Grundregel für alle Karten:
 * - roter Akzent oben
 * - 16 px Radius
 * - gleicher Schatten
 * - gleiche Hover-Bewegung
 */
.vro-info-card,
.vro-news-card,
.vro-event-card,
.vro-community-step {
  position: relative;
  border: 1px solid var(--vro-border);
  border-top: 5px solid var(--vro-red) !important;
  border-bottom: 1px solid var(--vro-border) !important;
  border-radius: var(--vro-radius);
  box-shadow: var(--vro-shadow);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.vro-info-card:hover,
.vro-news-card:hover,
.vro-event-card:hover,
.vro-community-step:hover {
  border-color: rgba(215,25,45,.35);
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(0,0,0,.14);
}

/* Veranstaltungskarten behalten dunklen Hintergrund, aber Akzent oben. */
.vro-event-card {
  overflow: hidden;
  background: var(--vro-black);
  color: #fff;
}

/* Einheitliche Bildsprache in News und Events. */
.vro-news-card .wp-block-post-featured-image,
.vro-event-card .vro-event-image {
  overflow: hidden;
  border-radius: calc(var(--vro-radius) - 5px) calc(var(--vro-radius) - 5px) 0 0;
}

.vro-news-card .wp-block-post-featured-image img,
.vro-event-card .vro-event-image img {
  transition: transform .35s ease;
}

.vro-news-card:hover .wp-block-post-featured-image img,
.vro-event-card:hover .vro-event-image img {
  transform: scale(1.04);
}

/* Newskarten erhalten den gleichen roten Kartenakzent. */
.vro-news-card {
  border-top: 5px solid var(--vro-red) !important;
}

/* „Weiterlesen“ konsequent in VRO-Rot. */
.vro-news-card .wp-block-post-excerpt__more-link,
.vro-news-card .wp-block-post-title a:hover,
.vro-news-card a.more-link,
.vro-news-card .more-link {
  color: var(--vro-red) !important;
  font-weight: 900;
  text-decoration: none;
}

.vro-news-card .wp-block-post-excerpt__more-link:hover,
.vro-news-card a.more-link:hover,
.vro-news-card .more-link:hover {
  color: var(--vro-red-dark) !important;
}

/* Datum in News als rotes, ruhiges Meta-Element. */
.vro-news-card .wp-block-post-date {
  color: var(--vro-red) !important;
  font-weight: 800;
}

/* Alle primären Links und Text-CTAs im VRO-System rot statt blau. */
.vro-page a {
  text-decoration-thickness: .08em;
  text-underline-offset: .15em;
}

.vro-page a:not(.wp-block-button__link):not(.wp-block-post-title__link) {
  color: var(--vro-red);
}

.vro-page a:not(.wp-block-button__link):not(.wp-block-post-title__link):hover {
  color: var(--vro-red-dark);
}

/*
 * Backlog: „Mitfahren“ soll nicht mehr blau oder transparent wirken,
 * sondern als klarer roter Sekundär-Button.
 */
.vro-main-hero .vro-btn-outline .wp-block-button__link,
.vro-main-hero .vro-outline-button .wp-block-button__link {
  border-color: var(--vro-red) !important;
  background: rgba(215,25,45,.08) !important;
  color: var(--vro-red) !important;
}

.vro-main-hero .vro-btn-outline .wp-block-button__link:hover,
.vro-main-hero .vro-outline-button .wp-block-button__link:hover {
  border-color: var(--vro-red-dark) !important;
  background: var(--vro-red) !important;
  color: #fff !important;
}

/* Primärbuttons überall identisch. */
.vro-btn-primary .wp-block-button__link,
.vro-primary-button .wp-block-button__link {
  border-color: var(--vro-red) !important;
  background: var(--vro-red) !important;
  color: #fff !important;
}

.vro-btn-primary .wp-block-button__link:hover,
.vro-primary-button .wp-block-button__link:hover {
  border-color: var(--vro-red-dark) !important;
  background: var(--vro-red-dark) !important;
  color: #fff !important;
}

/* Sekundärbuttons: weiß/transparent mit roter Kontur und rotem Text. */
.vro-btn-outline .wp-block-button__link,
.vro-outline-button .wp-block-button__link {
  border: 2px solid var(--vro-red) !important;
  color: var(--vro-red) !important;
}

/* Tertiäre Kartenlinks: neutral, beim Hover rot gefüllt. */
.vro-card-link .wp-block-button__link {
  border: 1px solid #dadbe0 !important;
  background: #f6f6f7 !important;
  color: var(--vro-anthracite) !important;
}

.vro-card-link .wp-block-button__link:hover {
  border-color: var(--vro-red) !important;
  background: var(--vro-red) !important;
  color: #fff !important;
}

/* Upload- und Community-Karten folgen derselben Akzentlogik. */
.vro-upload-strip,
.vro-gallery-overlay {
  border-top: 5px solid var(--vro-red);
}

/* Einheitlicher Radius auch bei dunklen CTA-Flächen. */
.vro-upload-strip,
.vro-gallery-overlay,
.vro-community-step {
  border-radius: var(--vro-radius);
}

/* Mobile: Hover-Bewegungen auf Touch-Geräten vermeiden. */
@media (max-width: 700px) {
  .vro-info-card:hover,
  .vro-news-card:hover,
  .vro-event-card:hover,
  .vro-community-step:hover {
    transform: none;
  }
}


/* =========================================================
   VRO v1.11 – redaktioneller News-Bereich
   ========================================================= */

.vro-featured-news {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, .85fr);
  gap: 24px;
  margin-top: 54px;
}

.vro-featured-news-main,
.vro-featured-news-small {
  overflow: hidden;
  border: 1px solid var(--vro-border);
  border-top: 5px solid var(--vro-red);
  border-radius: var(--vro-radius);
  background: #fff;
  box-shadow: var(--vro-shadow);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.vro-featured-news-main:hover,
.vro-featured-news-small:hover {
  border-color: rgba(215,25,45,.35);
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(0,0,0,.14);
}

.vro-featured-news-main {
  display: flex;
  min-height: 585px;
  flex-direction: column;
}

.vro-featured-news-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e9e9eb;
}

.vro-featured-news-image img,
.vro-featured-news-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.vro-featured-news-main:hover .vro-featured-news-image img,
.vro-featured-news-small:hover .vro-featured-news-small-image img {
  transform: scale(1.045);
}

.vro-featured-news-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.vro-news-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 15px;
  color: var(--vro-muted);
  font-size: 14px;
  font-weight: 800;
}

.vro-news-badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 4px;
  background: var(--vro-red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vro-featured-news h3 {
  margin: 0 !important;
}

.vro-featured-news h3 a {
  color: var(--vro-anthracite) !important;
  text-decoration: none;
}

.vro-featured-news-main h3 {
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.08;
}

.vro-featured-news-excerpt {
  margin: 20px 0 27px;
  color: #4b4d52;
  font-size: 17px;
  line-height: 1.65;
}

.vro-news-readmore {
  display: inline-flex;
  width: fit-content;
  gap: 9px;
  align-items: center;
  margin-top: auto;
  color: var(--vro-red) !important;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none !important;
  text-transform: uppercase;
}

.vro-news-readmore span {
  font-size: 24px;
  line-height: .8;
  transition: transform .2s ease;
}

.vro-news-readmore:hover {
  color: var(--vro-red-dark) !important;
}

.vro-news-readmore:hover span {
  transform: translateX(3px);
}

.vro-featured-news-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vro-featured-news-small {
  display: grid;
  min-height: 0;
  grid-template-columns: 145px minmax(0, 1fr);
}

.vro-featured-news-small-image {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #e9e9eb;
}

.vro-featured-news-small-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
}

.vro-featured-news-small time {
  margin-bottom: 8px;
  color: var(--vro-red);
  font-size: 12px;
  font-weight: 800;
}

.vro-featured-news-small h3 {
  margin-bottom: 14px !important;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.15;
}

.vro-featured-news-small .vro-news-readmore {
  font-size: 12px;
}

.vro-news-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background:
    linear-gradient(135deg, rgba(215,25,45,.14), transparent),
    #dedfe2;
}

@media (max-width: 1024px) {
  .vro-featured-news {
    grid-template-columns: 1fr;
  }

  .vro-featured-news-main {
    min-height: 0;
  }

  .vro-featured-news-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .vro-featured-news-small {
    display: flex;
    flex-direction: column;
  }

  .vro-featured-news-small-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 700px) {
  .vro-featured-news {
    gap: 16px;
    margin-top: 38px;
  }

  .vro-featured-news-main:hover,
  .vro-featured-news-small:hover {
    transform: none;
  }

  .vro-featured-news-content {
    padding: 23px 21px 24px;
  }

  .vro-featured-news-main h3 {
    font-size: 27px;
    line-height: 1.12;
  }

  .vro-featured-news-excerpt {
    margin: 16px 0 23px;
    font-size: 16px;
  }

  .vro-featured-news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vro-featured-news-small {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .vro-featured-news-small-image {
    aspect-ratio: auto;
  }

  .vro-featured-news-small-content {
    padding: 16px;
  }

  .vro-featured-news-small h3 {
    font-size: 18px;
  }
}


/* =========================================================
   VRO v1.12 – News-Bereich kompakter
   ========================================================= */

@media (min-width: 1025px) {
  .vro-featured-news {
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, .85fr);
    gap: 22px;
    margin-top: 44px;
  }

  .vro-featured-news-main {
    min-height: 470px;
  }

  .vro-featured-news-image {
    aspect-ratio: 16 / 7.7;
    max-height: 365px;
  }

  .vro-featured-news-content {
    padding: 24px 28px 25px;
  }

  .vro-featured-news-main h3 {
    font-size: clamp(27px, 2.45vw, 37px);
    line-height: 1.08;
  }

  .vro-featured-news-excerpt {
    display: -webkit-box;
    margin: 15px 0 21px;
    overflow: hidden;
    color: #4b4d52;
    font-size: 16px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .vro-news-meta {
    margin-bottom: 12px;
  }

  .vro-featured-news-list {
    gap: 15px;
  }

  .vro-featured-news-small {
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 0;
  }

  .vro-featured-news-small-content {
    padding: 16px 18px;
  }

  .vro-featured-news-small h3 {
    margin-bottom: 10px !important;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.12;
  }

  .vro-featured-news-small time {
    margin-bottom: 6px;
  }

  .vro-featured-news-small .vro-news-readmore {
    margin-top: auto;
    font-size: 11px;
  }

  .vro-news-section > .wp-block-buttons {
    margin-top: 28px;
  }
}

/* Tablet ebenfalls etwas kompakter, ohne das Layout grundlegend zu ändern. */
@media (min-width: 701px) and (max-width: 1024px) {
  .vro-featured-news {
    margin-top: 42px;
  }

  .vro-featured-news-image {
    max-height: 390px;
  }

  .vro-featured-news-content {
    padding: 25px;
  }

  .vro-featured-news-main h3 {
    font-size: 33px;
  }

  .vro-featured-news-excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

/* Mobil nur leicht verdichten; Lesbarkeit bleibt wichtiger als maximale Kürze. */
@media (max-width: 700px) {
  .vro-featured-news-content {
    padding: 21px 20px 22px;
  }

  .vro-featured-news-main h3 {
    font-size: 25px;
  }

  .vro-featured-news-excerpt {
    display: -webkit-box;
    margin: 14px 0 20px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .vro-news-section > .wp-block-buttons {
    margin-top: 24px;
  }
}


/* =========================================================
   VRO v1.13 – kompakterer Desktop-Rhythmus
   ========================================================= */

@media (min-width: 1025px) {
  :root {
    --vro-section-space: clamp(56px, 6vw, 88px);
  }

  /* Allgemeine Abschnittsabstände */
  .vro-section {
    padding-top: var(--vro-section-space);
    padding-bottom: var(--vro-section-space);
  }

  /* Intro-Bereiche etwas kompakter */
  .vro-section-intro {
    margin-top: 18px;
  }

  .vro-card-grid,
  .vro-event-grid,
  .vro-featured-news,
  .vro-gallery-wrap {
    margin-top: 42px;
  }

  /* USP-Bereich */
  .vro-why-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .vro-why-section .vro-card-grid {
    margin-top: 44px;
  }

  /* News bleibt in der freigegebenen Größe,
     rückt aber näher an die Folge-Sektion. */
  .vro-news-section {
    padding-top: 72px;
    padding-bottom: 66px;
  }

  .vro-news-section > .wp-block-buttons {
    margin-top: 24px;
  }

  /* Veranstaltungen */
  .vro-events-section {
    padding-top: 72px;
    padding-bottom: 70px;
  }

  .vro-events-section .vro-event-grid {
    margin-top: 42px;
  }

  .vro-event-card {
    min-height: 480px;
  }

  .vro-event-body {
    padding: 21px 22px 22px;
  }

  /* Galerie */
  .vro-gallery-section {
    padding-top: 72px;
    padding-bottom: 68px;
  }

  .vro-gallery-wrap {
    margin-top: 42px;
  }

  .vro-upload-strip {
    margin-top: 14px;
  }

  /* Regionalbereich */
  .vro-region-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  /* Community */
  .vro-community-section {
    padding-top: 72px;
    padding-bottom: 70px;
  }

  .vro-community-steps {
    margin-top: 30px;
  }

  /* Schluss-CTA kompakter */
  .vro-final-cta {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

/* Große Monitore: etwas mehr Luft als auf Standard-Desktop,
   aber weiterhin deutlich kompakter als vor v1.13. */
@media (min-width: 1500px) {
  :root {
    --vro-section-space: 92px;
  }
}


/* =========================================================
   VRO v1.14 – Veranstaltungsbereich im finalen Kartendesign
   ========================================================= */

.vro-events-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(215,25,45,.055), transparent 25rem),
    linear-gradient(180deg, #f5f5f6 0%, #eeeeef 100%);
}

.vro-events-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(215,25,45,.08);
  border-radius: 50%;
  pointer-events: none;
}

.vro-events-section > * {
  position: relative;
  z-index: 1;
}

.vro-events-section .vro-event-grid {
  align-items: stretch !important;
  gap: 24px;
}

.vro-events-section .vro-event-grid > .wp-block-column {
  display: flex;
  min-width: 0;
}

.vro-events-section .vro-event-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 510px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 5px solid var(--vro-red) !important;
  border-radius: var(--vro-radius);
  background: #111216;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.vro-events-section .vro-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(0,0,0,.22);
}

.vro-events-section .vro-event-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #22242a;
}

.vro-events-section .vro-event-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent, rgba(17,18,22,.92));
  pointer-events: none;
}

.vro-events-section .vro-event-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .35s ease;
}

.vro-events-section .vro-event-card:hover .vro-event-image img {
  transform: scale(1.045);
}

.vro-events-section .vro-event-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.vro-events-section .vro-event-label {
  display: inline-flex;
  width: fit-content;
  margin: -42px 0 17px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 5px;
  background: var(--vro-red);
  color: #fff !important;
  box-shadow: 0 7px 20px rgba(0,0,0,.22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.vro-events-section .vro-event-card h3 {
  margin: 0 0 12px !important;
  color: #fff !important;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.08;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.vro-events-section .vro-event-card > .vro-event-body > p:not(.vro-event-label):not(.vro-event-meta) {
  margin: 0 0 20px;
  color: rgba(255,255,255,.78) !important;
  font-size: 16px;
  line-height: 1.55;
}

.vro-events-section .vro-event-meta {
  position: relative;
  margin: auto 0 18px;
  padding: 17px 0 0 26px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.vro-events-section .vro-event-meta::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--vro-red);
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v2h6V2h2v2h2a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h2V2Zm12 8H5v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v2h6V2h2v2h2a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h2V2Zm12 8H5v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.vro-events-section .vro-event-card .vro-card-link {
  width: 100%;
  margin-top: 0;
}

.vro-events-section .vro-event-card .vro-card-link .wp-block-button__link {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 7px;
  background: rgba(255,255,255,.07) !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.vro-events-section .vro-event-card .vro-card-link .wp-block-button__link:hover {
  border-color: var(--vro-red) !important;
  background: var(--vro-red) !important;
  color: #fff !important;
}

.vro-events-section > .wp-block-buttons {
  margin-top: 28px;
}

/* Tablet: weiterhin gleich große Karten, zwei plus eine darunter. */
@media (min-width: 701px) and (max-width: 1024px) {
  .vro-events-section .vro-event-grid {
    flex-wrap: wrap !important;
  }

  .vro-events-section .vro-event-grid > .wp-block-column {
    flex-basis: calc(50% - 12px) !important;
  }

  .vro-events-section .vro-event-grid > .wp-block-column:last-child {
    flex-basis: 100% !important;
  }

  .vro-events-section .vro-event-card {
    min-height: 490px;
  }
}

/* Mobil: kompakte horizontale Eventkarten statt sehr langer Karten. */
@media (max-width: 700px) {
  .vro-events-section .vro-event-grid {
    gap: 16px;
  }

  .vro-events-section .vro-event-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .vro-events-section .vro-event-image {
    min-height: 100%;
  }

  .vro-events-section .vro-event-image::after {
    display: none;
  }

  .vro-events-section .vro-event-image img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .vro-events-section .vro-event-body {
    min-width: 0;
    padding: 18px 16px 17px;
  }

  .vro-events-section .vro-event-label {
    margin: 0 0 11px;
    padding: 5px 8px;
    font-size: 9px;
    box-shadow: none;
  }

  .vro-events-section .vro-event-card h3 {
    margin-bottom: 8px !important;
    font-size: 20px;
    line-height: 1.08;
  }

  .vro-events-section .vro-event-card > .vro-event-body > p:not(.vro-event-label):not(.vro-event-meta) {
    display: -webkit-box;
    margin-bottom: 13px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .vro-events-section .vro-event-meta {
    margin: auto 0 12px;
    padding: 12px 0 0 20px;
    font-size: 12px;
  }

  .vro-events-section .vro-event-meta::before {
    top: 13px;
    width: 13px;
    height: 13px;
  }

  .vro-events-section .vro-event-card .vro-card-link .wp-block-button__link {
    min-height: 39px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .vro-events-section .vro-event-card:hover {
    transform: none;
  }
}

@media (max-width: 390px) {
  .vro-events-section .vro-event-card {
    grid-template-columns: 102px minmax(0, 1fr);
  }

  .vro-events-section .vro-event-image img {
    min-height: 218px;
  }

  .vro-events-section .vro-event-card h3 {
    font-size: 18px;
  }
}


/* =========================================================
   VRO v1.15 – Header, Galerie und Footer
   ========================================================= */

/* -------------------------
   HEADER
   ------------------------- */

body.vro-new-home #header,
body.vro-front-page #header {
  transition:
    background .25s ease,
    box-shadow .25s ease,
    backdrop-filter .25s ease,
    transform .25s ease;
}

body.vro-new-home #header [data-row],
body.vro-front-page #header [data-row] {
  transition:
    min-height .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

body.vro-new-home #header.vro-header-scrolled,
body.vro-front-page #header.vro-header-scrolled {
  position: fixed;
  inset: 0 0 auto;
  background: rgba(10,10,12,.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

body.admin-bar.vro-new-home #header.vro-header-scrolled,
body.admin-bar.vro-front-page #header.vro-header-scrolled {
  top: 32px;
}

body.vro-new-home #header.vro-header-scrolled [data-row],
body.vro-front-page #header.vro-header-scrolled [data-row] {
  background: transparent !important;
}

body.vro-new-home #header.vro-header-scrolled .site-logo-container img,
body.vro-front-page #header.vro-header-scrolled .site-logo-container img {
  max-height: 58px;
  transition: max-height .25s ease;
}

body.vro-new-home #header nav a,
body.vro-front-page #header nav a {
  position: relative;
  font-weight: 800;
  letter-spacing: .01em;
}

body.vro-new-home #header nav a::after,
body.vro-front-page #header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--vro-red);
  transition: transform .2s ease;
}

body.vro-new-home #header nav a:hover::after,
body.vro-front-page #header nav a:hover::after,
body.vro-new-home #header nav .current-menu-item > a::after,
body.vro-front-page #header nav .current-menu-item > a::after {
  transform: scaleX(1);
}

/* -------------------------
   GALERIE
   ------------------------- */

.vro-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(215,25,45,.05), transparent 24rem),
    #ffffff;
}

.vro-gallery-section::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -200px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(215,25,45,.08);
  border-radius: 50%;
  pointer-events: none;
}

.vro-gallery-section > * {
  position: relative;
  z-index: 1;
}

.vro-gallery-wrap {
  padding: 10px;
  border: 1px solid var(--vro-border);
  border-top: 5px solid var(--vro-red);
  border-radius: 18px;
  background: #111216;
  box-shadow: 0 20px 48px rgba(0,0,0,.13);
}

.vro-gallery-mosaic {
  border-radius: 11px;
  overflow: hidden;
}

.vro-gallery-item {
  position: relative;
}

.vro-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35));
  opacity: 0;
  transition: opacity .25s ease;
}

.vro-gallery-item:hover::after {
  opacity: 1;
}

.vro-gallery-overlay {
  border-top: 5px solid var(--vro-red);
  background: rgba(12,12,15,.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.vro-gallery-overlay h3 {
  margin-top: 0 !important;
}

.vro-upload-strip {
  border-top: 5px solid var(--vro-red);
  background:
    linear-gradient(90deg, rgba(215,25,45,.13), transparent 55%),
    var(--vro-black);
}

.vro-upload-strip h3 {
  color: #fff !important;
}

@media (min-width: 1025px) {
  .vro-gallery-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .vro-gallery-wrap {
    margin-top: 42px;
  }

  .vro-gallery-mosaic {
    grid-auto-rows: 132px;
    gap: 7px;
  }

  .vro-gallery-overlay {
    width: min(88%, 370px);
    padding: 30px;
  }

  .vro-gallery-overlay h3 {
    font-size: 28px;
  }
}

/* -------------------------
   FOOTER
   ------------------------- */

/* Blocksy-Standardfooter nur auf neuer bzw. echter Startseite ausblenden. */
body.vro-new-home #footer,
body.vro-front-page #footer {
  display: none !important;
}

.vro-site-footer {
  position: relative;
  overflow: hidden;
  padding: 76px 24px 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(215,25,45,.13), transparent 26rem),
    #0d0d0f;
  color: #fff;
}

.vro-site-footer::before {
  content: "VRO";
  position: absolute;
  right: -35px;
  bottom: -72px;
  color: rgba(255,255,255,.025);
  font-size: clamp(180px, 28vw, 430px);
  font-weight: 900;
  line-height: .8;
  pointer-events: none;
}

.vro-site-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, var(--vro-content));
  grid-template-columns: minmax(0, 1.3fr) minmax(440px, .9fr);
  gap: 70px;
  margin: 0 auto;
}

.vro-site-footer-kicker {
  margin: 0 0 14px;
  color: var(--vro-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

.vro-site-footer-brand h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  text-transform: uppercase;
}

.vro-site-footer-brand > p:last-child {
  max-width: 650px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.65;
}

.vro-site-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.vro-site-footer-nav h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.vro-site-footer-nav a {
  display: block;
  width: fit-content;
  margin-bottom: 11px;
  color: rgba(255,255,255,.70) !important;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.vro-site-footer-nav a:hover {
  color: var(--vro-red) !important;
  transform: translateX(3px);
}

.vro-site-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, var(--vro-content));
  justify-content: space-between;
  margin: 58px auto 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .vro-site-footer-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 700px) {
  body.vro-new-home #header.vro-header-scrolled,
  body.vro-front-page #header.vro-header-scrolled {
    position: fixed;
  }

  body.admin-bar.vro-new-home #header.vro-header-scrolled,
  body.admin-bar.vro-front-page #header.vro-header-scrolled {
    top: 46px;
  }

  .vro-gallery-wrap {
    padding: 7px;
  }

  .vro-site-footer {
    padding: 58px 18px 0;
  }

  .vro-site-footer-brand h2 {
    font-size: 34px;
  }

  .vro-site-footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }

  .vro-site-footer-nav > div:last-child {
    grid-column: 1 / -1;
  }

  .vro-site-footer-bottom {
    display: block;
    margin-top: 40px;
    padding: 20px 0;
  }

  .vro-site-footer-bottom span {
    display: block;
    margin-bottom: 6px;
  }
}


/* v1.15.1 mobile header */
@media (max-width:700px){
#header.vro-header-scrolled.vro-hide-header{transform:translateY(-120%)}
#header.vro-header-scrolled{transition:transform .22s ease}
.mobile-menu a,.ct-header-trigger,.ct-toggle-close{color:#fff!important}
.mobile-menu a:hover,.mobile-menu .current-menu-item>a{color:var(--vro-red)!important}
}


/* =========================================================
   VRO v1.15.1 A/B – Hamburger und dunkler News-Bereich
   ========================================================= */

/* Blocksy-Hamburger in allen Zuständen weiß, aktiv rot. */
body.vro-new-home #header .ct-header-trigger svg,
body.vro-front-page #header .ct-header-trigger svg,
body.vro-new-home #header .ct-header-trigger .ct-icon,
body.vro-front-page #header .ct-header-trigger .ct-icon,
body.vro-new-home #header button[data-toggle-panel] svg,
body.vro-front-page #header button[data-toggle-panel] svg,
body.vro-new-home #header .ct-trigger span,
body.vro-front-page #header .ct-trigger span {
  color: #fff !important;
  fill: #fff !important;
  stroke: #fff !important;
}

body.vro-new-home #header .ct-header-trigger:hover svg,
body.vro-front-page #header .ct-header-trigger:hover svg,
body.vro-new-home #header .ct-header-trigger:focus-visible svg,
body.vro-front-page #header .ct-header-trigger:focus-visible svg {
  color: var(--vro-red) !important;
  fill: var(--vro-red) !important;
  stroke: var(--vro-red) !important;
}

/* News-Bereich dunkel. */
.vro-news-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(215,25,45,.08), transparent 27rem),
    linear-gradient(180deg, #17181c 0%, #101115 100%) !important;
  color: #fff;
}

.vro-news-section .vro-section-title,
.vro-news-section .vro-section-intro {
  color: #fff !important;
}

.vro-news-section .vro-section-intro {
  color: rgba(255,255,255,.76) !important;
}

.vro-featured-news-main,
.vro-featured-news-small {
  border-color: rgba(255,255,255,.10) !important;
  border-top-color: var(--vro-red) !important;
  background: #1b1c21 !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.24) !important;
}

.vro-featured-news h3 a {
  color: #fff !important;
}

.vro-featured-news-excerpt,
.vro-featured-news-small-content {
  color: rgba(255,255,255,.76) !important;
}

.vro-featured-news-excerpt {
  color: rgba(255,255,255,.76) !important;
}

.vro-featured-news-small time,
.vro-news-meta time {
  color: rgba(255,255,255,.58) !important;
}

.vro-news-image-placeholder {
  background:
    linear-gradient(135deg, rgba(215,25,45,.18), transparent),
    #27282e;
}


/* =========================================================
   Variante A – USP bleibt hell
   ========================================================= */
/* bewusst keine weitere Änderung am USP-Bereich */


/* ===== VRO Launch Candidate 1 ===== */
.vro-news-section{
background:linear-gradient(180deg,#1b1d21 0%,#17191d 100%)!important;
}
.vro-gallery-section{
background:linear-gradient(180deg,#181a1e 0%,#14161a 100%)!important;
}
#header .ct-header-trigger svg,
#header .ct-trigger span,
#header button[data-toggle-panel] svg{
fill:#fff!important;stroke:#fff!important;color:#fff!important;
}
#header .ct-header-trigger:hover svg{
fill:var(--vro-red)!important;stroke:var(--vro-red)!important;
}


/* =========================================================
   VRO LC1.1 – Kontrastkorrektur Galerie
   ========================================================= */

.vro-gallery-section .vro-section-title {
  color: #ffffff !important;
  opacity: 1 !important;
}

.vro-gallery-section .vro-section-intro {
  color: rgba(255,255,255,.78) !important;
  opacity: 1 !important;
}

.vro-gallery-section .vro-kicker {
  color: var(--vro-red) !important;
  opacity: 1 !important;
}


/* =========================================================
   VRO LC1.2 – dekorative Kreise im USP-Bereich entfernt
   ========================================================= */

.vro-why-section::before,
.vro-why-section::after {
  display: none !important;
  content: none !important;
}


/* =========================================================
   VRO LC1.3 – dekorative Kreisbögen durchgängig entfernt
   ========================================================= */

.vro-why-section::before,
.vro-why-section::after,
.vro-events-section::before,
.vro-events-section::after,
.vro-gallery-section::before,
.vro-gallery-section::after {
  display: none !important;
  content: none !important;
}

/* =========================================================
   VRO LC1.4 – Header, Menü, News-Filter und Footer-Wasserzeichen
   ========================================================= */

body.vro-new-home #header,
body.vro-front-page #header {
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease, backdrop-filter .24s ease !important;
  will-change: transform;
}

body.vro-new-home #header.vro-hide-header,
body.vro-front-page #header.vro-hide-header {
  transform: translateY(-125%) !important;
}

body.vro-new-home #header nav a,
body.vro-front-page #header nav a,
body.vro-new-home #header .menu-item > a,
body.vro-front-page #header .menu-item > a {
  color: #ffffff !important;
}

body.vro-new-home #header nav a:hover,
body.vro-front-page #header nav a:hover,
body.vro-new-home #header .menu-item > a:hover,
body.vro-front-page #header .menu-item > a:hover,
body.vro-new-home #header .current-menu-item > a,
body.vro-front-page #header .current-menu-item > a,
body.vro-new-home #header .current-menu-ancestor > a,
body.vro-front-page #header .current-menu-ancestor > a {
  color: var(--vro-red) !important;
}

body.vro-new-home .ct-panel a,
body.vro-front-page .ct-panel a,
body.vro-new-home .mobile-menu a,
body.vro-front-page .mobile-menu a,
body.vro-new-home .sub-menu a,
body.vro-front-page .sub-menu a {
  color: #ffffff !important;
}

body.vro-new-home .ct-panel a:hover,
body.vro-front-page .ct-panel a:hover,
body.vro-new-home .mobile-menu a:hover,
body.vro-front-page .mobile-menu a:hover,
body.vro-new-home .mobile-menu .current-menu-item > a,
body.vro-front-page .mobile-menu .current-menu-item > a,
body.vro-new-home .sub-menu a:hover,
body.vro-front-page .sub-menu a:hover {
  color: var(--vro-red) !important;
}

body.vro-new-home #header .ct-header-trigger,
body.vro-front-page #header .ct-header-trigger,
body.vro-new-home #header .ct-header-trigger svg,
body.vro-front-page #header .ct-header-trigger svg,
body.vro-new-home .ct-toggle-close,
body.vro-front-page .ct-toggle-close,
body.vro-new-home .ct-toggle-close svg,
body.vro-front-page .ct-toggle-close svg {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

body.vro-new-home #header .ct-header-trigger:hover,
body.vro-front-page #header .ct-header-trigger:hover,
body.vro-new-home #header .ct-header-trigger:hover svg,
body.vro-front-page #header .ct-header-trigger:hover svg,
body.vro-new-home .ct-toggle-close:hover,
body.vro-front-page .ct-toggle-close:hover,
body.vro-new-home .ct-toggle-close:hover svg,
body.vro-front-page .ct-toggle-close:hover svg {
  color: var(--vro-red) !important;
  fill: var(--vro-red) !important;
  stroke: var(--vro-red) !important;
}

.vro-site-footer::before {
  color: rgba(255,255,255,.05) !important;
}


/* =========================================================
   VRO LC1.5 – dynamisches Veranstaltungssystem
   ========================================================= */

.vro-event-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(215,25,45,.20), transparent 48%),
    #24262c;
}

.vro-event-card h3 a,
.vro-past-event h3 a {
  color: inherit !important;
  text-decoration: none !important;
}

.vro-event-page-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.vro-event-page-kicker {
  margin: 0 0 12px;
  color: var(--vro-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.vro-event-archive {
  background: #f1f1f2;
}

.vro-event-archive-hero {
  padding: clamp(90px, 10vw, 145px) 0 clamp(62px, 7vw, 95px);
  background:
    radial-gradient(circle at 85% 10%, rgba(215,25,45,.15), transparent 28rem),
    #0e0f12;
  color: #fff;
}

.vro-event-archive-hero h1,
.vro-single-event-header h1 {
  max-width: 930px;
  margin: 0 0 18px;
  color: #fff !important;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.vro-event-archive-hero > .vro-event-page-container > p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.vro-event-archive-section {
  padding: clamp(68px, 8vw, 105px) 0;
}

.vro-event-archive-upcoming {
  background:
    radial-gradient(circle at 80% 12%, rgba(215,25,45,.05), transparent 28rem),
    linear-gradient(180deg, #f5f5f6, #eeeeef);
}

.vro-event-archive-heading {
  margin-bottom: 34px;
}

.vro-event-archive-heading h2 {
  margin: 0;
  color: #17181c !important;
  font-size: clamp(35px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.vro-event-archive-grid.vro-events-section {
  overflow: visible;
  background: transparent;
}

.vro-event-archive-grid.vro-events-section .vro-event-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vro-event-archive-grid.vro-events-section .vro-event-grid > .wp-block-column {
  width: auto;
}

.vro-event-archive-past {
  background: #141519;
  color: #fff;
}

.vro-event-archive-past .vro-event-archive-heading h2 {
  color: #fff !important;
}

.vro-past-event-list {
  display: grid;
  gap: 20px;
}

.vro-past-event {
  display: grid;
  grid-template-columns: minmax(240px, 34%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--vro-radius);
  background: #1b1c21;
  box-shadow: 0 16px 38px rgba(0,0,0,.16);
}

.vro-past-event-image {
  display: block;
  min-height: 260px;
  overflow: hidden;
  background: #25272d;
}

.vro-past-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.vro-past-event:hover .vro-past-event-image img {
  transform: scale(1.035);
}

.vro-past-event-content {
  align-self: center;
  padding: 30px 34px;
}

.vro-past-event .vro-event-label {
  display: inline-flex;
  margin: 0 0 13px;
  padding: 6px 9px;
  border-radius: 4px;
  background: var(--vro-red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.vro-past-event h3 {
  margin: 0 0 9px !important;
  color: #fff !important;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
  text-transform: uppercase;
}

.vro-past-event-meta {
  margin: 0 0 14px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  font-weight: 800;
}

.vro-past-event-content > p:not(.vro-event-label):not(.vro-past-event-meta) {
  margin: 0 0 16px;
  color: rgba(255,255,255,.74);
}

.vro-event-text-link {
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.vro-event-text-link:hover {
  color: var(--vro-red) !important;
}

.vro-event-archive-empty {
  padding: 25px;
  border-radius: 9px;
  background: rgba(127,127,127,.08);
}

/* Einzelveranstaltung */
.vro-single-event {
  background: #f1f1f2;
}

.vro-single-event-header {
  padding: clamp(90px, 10vw, 140px) 0 52px;
  background:
    radial-gradient(circle at 80% 10%, rgba(215,25,45,.16), transparent 30rem),
    #0e0f12;
}

.vro-single-event-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 45px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.vro-single-event-summary > div {
  display: grid;
  gap: 4px;
}

.vro-single-event-summary span {
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vro-single-event-summary strong,
.vro-single-event-summary a {
  color: #fff !important;
  font-size: 16px;
  text-decoration: none;
}

.vro-single-event-summary a:hover {
  color: var(--vro-red) !important;
}

.vro-single-event-hero-image {
  width: min(1380px, 100%);
  max-height: 680px;
  margin-inline: auto;
  overflow: hidden;
  background: #222;
}

.vro-single-event-hero-image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.vro-single-event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(38px, 6vw, 80px);
  padding-top: clamp(55px, 7vw, 92px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.vro-single-event-content {
  color: #2c2d31;
  font-size: 18px;
  line-height: 1.75;
}

.vro-single-event-content > :first-child {
  margin-top: 0;
}

.vro-single-event-content h2,
.vro-single-event-content h3 {
  color: #15161a !important;
}

.vro-single-event-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.vro-single-event-box,
.vro-external-event-note {
  padding: 25px;
  border-radius: 12px;
  background: #17181c;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.13);
}

.vro-single-event-box {
  position: sticky;
  top: 25px;
}

.vro-single-event-box h2 {
  margin: 0 0 19px;
  color: #fff !important;
  font-size: 23px;
  text-transform: uppercase;
}

.vro-single-event-box dl {
  display: grid;
  gap: 15px;
  margin: 0 0 23px;
}

.vro-single-event-box dl > div {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.vro-single-event-box dt {
  margin-bottom: 4px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vro-single-event-box dd {
  margin: 0;
  font-weight: 750;
}

.vro-event-primary-button,
.vro-event-secondary-button {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 13px 16px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
}

.vro-event-primary-button {
  background: var(--vro-red);
  color: #fff !important;
}

.vro-event-secondary-button {
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(255,255,255,.05);
  color: #fff !important;
}

.vro-event-primary-button:hover,
.vro-event-secondary-button:hover {
  transform: translateY(-1px);
  color: #fff !important;
}

.vro-external-event-note {
  border-top: 4px solid var(--vro-red);
  background: #fff;
  color: #303136;
  box-shadow: 0 15px 35px rgba(0,0,0,.09);
}

.vro-external-event-note strong,
.vro-external-event-note span {
  display: block;
}

.vro-external-event-note strong {
  margin-bottom: 7px;
  color: #17181c;
}

.vro-external-event-note span {
  margin-bottom: 12px;
  color: var(--vro-red);
  font-size: 13px;
  font-weight: 850;
}

.vro-external-event-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 950px) {
  .vro-event-archive-grid.vro-events-section .vro-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vro-single-event-layout {
    grid-template-columns: 1fr;
  }

  .vro-single-event-box {
    position: static;
  }
}

@media (max-width: 700px) {
  .vro-event-page-container {
    width: min(100% - 28px, 1180px);
  }

  .vro-event-archive-hero,
  .vro-single-event-header {
    padding-top: 75px;
  }

  .vro-event-archive-grid.vro-events-section .vro-event-grid {
    display: flex !important;
  }

  .vro-past-event {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .vro-past-event-image {
    min-height: 230px;
  }

  .vro-past-event-content {
    padding: 18px 16px;
  }

  .vro-past-event h3 {
    font-size: 21px;
  }

  .vro-past-event-content > p:not(.vro-event-label):not(.vro-past-event-meta) {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .vro-single-event-summary {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vro-single-event-layout {
    padding-top: 42px;
  }

  .vro-single-event-content {
    font-size: 16px;
  }
}


/* =========================================================
   VRO LC1.6 – kompakte Startseitentermine und Event-Header
   ========================================================= */

/*
 * Startseite:
 * Die dynamischen Termine bleiben immer als kompakte Karten in einem
 * Drei-Spalten-Raster. Auch ein einzelner Termin wird nicht mehr über
 * die gesamte Seitenbreite gezogen.
 */
body.vro-new-home .vro-events-section .vro-event-grid,
body.vro-front-page .vro-events-section .vro-event-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 24px !important;
}

body.vro-new-home .vro-events-section .vro-event-grid > .wp-block-column,
body.vro-front-page .vro-events-section .vro-event-grid > .wp-block-column {
  display: flex !important;
  width: auto !important;
  min-width: 0 !important;
  flex: none !important;
}

body.vro-new-home .vro-events-section .vro-event-card,
body.vro-front-page .vro-events-section .vro-event-card {
  min-height: 405px !important;
}

body.vro-new-home .vro-events-section .vro-event-image,
body.vro-front-page .vro-events-section .vro-event-image {
  height: 205px !important;
  min-height: 205px !important;
}

body.vro-new-home .vro-events-section .vro-event-image a,
body.vro-front-page .vro-events-section .vro-event-image a {
  display: block;
  width: 100%;
  height: 100%;
}

body.vro-new-home .vro-events-section .vro-event-image img,
body.vro-front-page .vro-events-section .vro-event-image img {
  width: 100%;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover;
}

body.vro-new-home .vro-events-section .vro-event-body,
body.vro-front-page .vro-events-section .vro-event-body {
  padding: 18px 20px 20px !important;
}

body.vro-new-home .vro-events-section .vro-event-label,
body.vro-front-page .vro-events-section .vro-event-label {
  margin-top: -35px !important;
  margin-bottom: 14px !important;
  padding: 6px 9px !important;
  font-size: 10px !important;
}

body.vro-new-home .vro-events-section .vro-event-card h3,
body.vro-front-page .vro-events-section .vro-event-card h3 {
  margin-bottom: 9px !important;
  font-size: clamp(21px, 2vw, 27px) !important;
  line-height: 1.06 !important;
}

body.vro-new-home .vro-events-section .vro-event-body > p:not(.vro-event-label):not(.vro-event-meta),
body.vro-front-page .vro-events-section .vro-event-body > p:not(.vro-event-label):not(.vro-event-meta) {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 13px !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.vro-new-home .vro-events-section .vro-event-meta,
body.vro-front-page .vro-events-section .vro-event-meta {
  padding-top: 13px !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

body.vro-new-home .vro-events-section .vro-card-link,
body.vro-front-page .vro-events-section .vro-card-link {
  margin-top: 14px !important;
}

body.vro-new-home .vro-events-section .vro-card-link .wp-block-button__link,
body.vro-front-page .vro-events-section .vro-card-link .wp-block-button__link {
  padding: 10px 14px !important;
  font-size: 11px !important;
}

/*
 * Veranstaltungsarchiv und Detailseiten:
 * gleicher dunkler Header wie auf der Startseite.
 */
body.post-type-archive-vro_event #header,
body.single-vro_event #header {
  position: absolute !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(10,10,12,.92) !important;
  transition:
    transform .24s ease,
    background .24s ease,
    box-shadow .24s ease,
    backdrop-filter .24s ease !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  will-change: transform;
}

body.post-type-archive-vro_event #header [data-row],
body.single-vro_event #header [data-row],
body.post-type-archive-vro_event #header [data-row*="middle"],
body.single-vro_event #header [data-row*="middle"] {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.post-type-archive-vro_event #header.vro-header-scrolled,
body.single-vro_event #header.vro-header-scrolled {
  position: fixed !important;
  background: rgba(10,10,12,.94) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

body.post-type-archive-vro_event #header.vro-hide-header,
body.single-vro_event #header.vro-hide-header {
  transform: translateY(-125%) !important;
}

body.post-type-archive-vro_event #header nav a,
body.single-vro_event #header nav a,
body.post-type-archive-vro_event #header .menu-item > a,
body.single-vro_event #header .menu-item > a {
  color: #fff !important;
  font-weight: 800;
}

body.post-type-archive-vro_event #header nav a:hover,
body.single-vro_event #header nav a:hover,
body.post-type-archive-vro_event #header .menu-item > a:hover,
body.single-vro_event #header .menu-item > a:hover,
body.post-type-archive-vro_event #header .current-menu-item > a,
body.single-vro_event #header .current-menu-item > a,
body.post-type-archive-vro_event #header .current-menu-ancestor > a,
body.single-vro_event #header .current-menu-ancestor > a {
  color: var(--vro-red) !important;
}

body.post-type-archive-vro_event #header .ct-header-trigger,
body.single-vro_event #header .ct-header-trigger,
body.post-type-archive-vro_event #header .ct-header-trigger svg,
body.single-vro_event #header .ct-header-trigger svg,
body.post-type-archive-vro_event .ct-toggle-close,
body.single-vro_event .ct-toggle-close,
body.post-type-archive-vro_event .ct-toggle-close svg,
body.single-vro_event .ct-toggle-close svg {
  color: #fff !important;
  fill: #fff !important;
  stroke: #fff !important;
}

body.post-type-archive-vro_event #header .ct-header-trigger:hover,
body.single-vro_event #header .ct-header-trigger:hover,
body.post-type-archive-vro_event #header .ct-header-trigger:hover svg,
body.single-vro_event #header .ct-header-trigger:hover svg,
body.post-type-archive-vro_event .ct-toggle-close:hover,
body.single-vro_event .ct-toggle-close:hover,
body.post-type-archive-vro_event .ct-toggle-close:hover svg,
body.single-vro_event .ct-toggle-close:hover svg {
  color: var(--vro-red) !important;
  fill: var(--vro-red) !important;
  stroke: var(--vro-red) !important;
}

body.post-type-archive-vro_event .ct-panel,
body.single-vro_event .ct-panel {
  --theme-link-initial-color: #fff;
  --theme-link-hover-color: var(--vro-red);
  background: #111216 !important;
}

body.post-type-archive-vro_event .ct-panel a,
body.single-vro_event .ct-panel a,
body.post-type-archive-vro_event .mobile-menu a,
body.single-vro_event .mobile-menu a {
  color: #fff !important;
}

body.post-type-archive-vro_event .ct-panel a:hover,
body.single-vro_event .ct-panel a:hover,
body.post-type-archive-vro_event .mobile-menu a:hover,
body.single-vro_event .mobile-menu a:hover,
body.post-type-archive-vro_event .mobile-menu .current-menu-item > a,
body.single-vro_event .mobile-menu .current-menu-item > a {
  color: var(--vro-red) !important;
}

@media (max-width: 950px) {
  body.vro-new-home .vro-events-section .vro-event-grid,
  body.vro-front-page .vro-events-section .vro-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  body.vro-new-home .vro-events-section .vro-event-grid,
  body.vro-front-page .vro-events-section .vro-event-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body.vro-new-home .vro-events-section .vro-event-card,
  body.vro-front-page .vro-events-section .vro-event-card {
    min-height: 0 !important;
  }

  body.vro-new-home .vro-events-section .vro-event-image,
  body.vro-front-page .vro-events-section .vro-event-image {
    height: 190px !important;
    min-height: 190px !important;
  }

  body.post-type-archive-vro_event #header,
  body.single-vro_event #header {
    position: absolute !important;
  }

  body.post-type-archive-vro_event #header.vro-header-scrolled,
  body.single-vro_event #header.vro-header-scrolled {
    position: fixed !important;
  }
}


/* =========================================================
   VRO LC1.7 – Event-Badge und Header-Titel korrigiert
   ========================================================= */

/*
 * Veranstaltungstyp-Badge:
 * nicht mehr zwischen Bild und Inhalt hochziehen, damit es weder auf der
 * Startseite noch im Veranstaltungsarchiv abgeschnitten wird.
 */
.vro-event-card .vro-event-label,
body.vro-new-home .vro-events-section .vro-event-label,
body.vro-front-page .vro-events-section .vro-event-label,
.vro-event-archive .vro-event-label {
  position: relative !important;
  z-index: 2;
  display: inline-flex !important;
  align-items: center;
  max-width: 100%;
  margin-top: 0 !important;
  margin-bottom: 14px !important;
  padding: 6px 10px !important;
  overflow: visible !important;
  line-height: 1.2 !important;
  white-space: normal;
}

/*
 * Zusätzliche Sicherheit gegen abgeschnittene Inhalte innerhalb der Karten.
 */
.vro-event-card,
.vro-event-card .vro-event-body,
.vro-event-archive .vro-event-card,
.vro-event-archive .vro-event-body {
  overflow: visible;
}

.vro-event-card .vro-event-image {
  overflow: hidden;
}

/*
 * Seitentitel / Website-Titel im Header der Veranstaltungsseiten:
 * konsequent VRO-Rot statt Blocksy-Blau.
 */
body.post-type-archive-vro_event #header .site-title,
body.single-vro_event #header .site-title,
body.post-type-archive-vro_event #header .site-title a,
body.single-vro_event #header .site-title a,
body.post-type-archive-vro_event #header [data-id="logo"] .site-title,
body.single-vro_event #header [data-id="logo"] .site-title,
body.post-type-archive-vro_event #header [data-id="logo"] .site-title a,
body.single-vro_event #header [data-id="logo"] .site-title a {
  color: var(--vro-red) !important;
}

body.post-type-archive-vro_event #header .site-title a:hover,
body.single-vro_event #header .site-title a:hover {
  color: #ffffff !important;
}


/* =========================================================
   VRO LC1.8 – Event-Hero mobil und rote CTA-Buttons
   ========================================================= */

/* Veranstaltungsarchiv-Hero klarer und ohne abgeschnittenen Titel. */
.vro-event-archive-hero {
  min-height: 0 !important;
  height: auto !important;
  overflow: visible !important;
}

.vro-event-archive-hero .vro-event-page-container {
  overflow: visible !important;
}

.vro-event-archive-hero h1 {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 0 18px !important;
  overflow: visible !important;
  color: #ffffff !important;
  white-space: normal !important;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

/* Karten-Buttons konsequent im VRO-Design. */
.vro-event-card .vro-card-link .wp-block-button__link,
.vro-event-archive .vro-event-card .vro-card-link .wp-block-button__link,
body.vro-new-home .vro-events-section .vro-card-link .wp-block-button__link,
body.vro-front-page .vro-events-section .vro-card-link .wp-block-button__link {
  border: 0 !important;
  background: var(--vro-red) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.vro-event-card .vro-card-link .wp-block-button__link:hover,
.vro-event-archive .vro-event-card .vro-card-link .wp-block-button__link:hover,
body.vro-new-home .vro-events-section .vro-card-link .wp-block-button__link:hover,
body.vro-front-page .vro-events-section .vro-card-link .wp-block-button__link:hover {
  background: #b81224 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .vro-event-archive-hero {
    padding: 76px 0 54px !important;
  }

  .vro-event-archive-hero h1 {
    font-size: clamp(39px, 12vw, 52px) !important;
    line-height: .94 !important;
    letter-spacing: -.035em !important;
  }

  .vro-event-archive-hero > .vro-event-page-container > p:last-child {
    max-width: 31rem;
    font-size: 17px !important;
    line-height: 1.5 !important;
  }
}


/* =========================================================
   VRO LC1.9 – Sitetitel auf Veranstaltungsseiten entfernt
   ========================================================= */

/*
 * Blocksy-Sitetitel „Vier Räder Oberberg – VRO“ auf
 * Veranstaltungsarchiv und Veranstaltungsdetailseiten ausblenden.
 * Logo und Navigation bleiben erhalten.
 */
body.post-type-archive-vro_event #header .site-title,
body.single-vro_event #header .site-title,
body.post-type-archive-vro_event #header [data-id="logo"] .site-title,
body.single-vro_event #header [data-id="logo"] .site-title,
body.post-type-archive-vro_event #header .site-description,
body.single-vro_event #header .site-description {
  display: none !important;
}

/*
 * Verhindert, dass der ausgeblendete Titel weiterhin Platz beansprucht.
 */
body.post-type-archive-vro_event #header [data-id="logo"] .site-branding,
body.single-vro_event #header [data-id="logo"] .site-branding,
body.post-type-archive-vro_event #header [data-id="logo"] .site-logo-container,
body.single-vro_event #header [data-id="logo"] .site-logo-container {
  gap: 0 !important;
}

/*
 * Hero beginnt direkt und sauber unter dem reduzierten Header.
 */
body.post-type-archive-vro_event .vro-event-archive-hero,
body.single-vro_event .vro-single-event-header {
  padding-top: clamp(88px, 9vw, 128px) !important;
}

@media (max-width: 700px) {
  body.post-type-archive-vro_event .vro-event-archive-hero,
  body.single-vro_event .vro-single-event-header {
    padding-top: 74px !important;
  }
}


/* =========================================================
   VRO LC1.10 – kompakter mobil, Kalender + Anmeldung
   ========================================================= */

.vro-event-card-actions {
  display: grid;
  gap: 9px;
  margin-top: auto;
}

.vro-calendar-button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  background: rgba(255,255,255,.06);
  color: #fff !important;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
}

.vro-calendar-button:hover {
  border-color: var(--vro-red);
  background: var(--vro-red);
  color: #fff !important;
}

.vro-calendar-button-mobile {
  display: none;
  border-color: rgba(215,25,45,.28);
  background: transparent;
  color: var(--vro-red) !important;
}

.vro-registration-page {
  min-height: 65vh;
  padding: clamp(95px, 11vw, 145px) 0 clamp(65px, 8vw, 105px);
  background: #eeeeef;
}

.vro-registration-panel {
  width: min(100% - 32px, 820px);
  margin-inline: auto;
  padding: clamp(24px, 5vw, 50px);
  border-top: 5px solid var(--vro-red);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.vro-registration-panel h1 {
  margin: 0 0 16px;
  color: #17181c !important;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.vro-registration-event-meta {
  display: grid;
  gap: 4px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dedee1;
}

.vro-registration-event-meta strong {
  color: #17181c;
}

.vro-registration-event-meta span {
  color: #686a70;
}

.vro-registration-admin-note {
  padding: 15px;
  border-left: 4px solid var(--vro-red);
  background: #f4f4f5;
}

@media (max-width: 700px) {
  /* zwei sichtbare Stufen kleiner als LC1.9 */
  .vro-event-archive-hero h1,
  .vro-single-event-header h1 {
    font-size: clamp(30px, 9vw, 38px) !important;
    line-height: 1 !important;
  }

  .vro-event-archive-heading h2 {
    font-size: clamp(27px, 8vw, 34px) !important;
    line-height: 1.05 !important;
  }

  .vro-event-archive-hero {
    padding-bottom: 38px !important;
  }

  .vro-event-archive-hero > .vro-event-page-container > p:last-child {
    font-size: 15px !important;
  }

  .vro-calendar-button-mobile {
    display: block;
  }

  .vro-registration-page {
    padding-top: 82px;
  }

  .vro-registration-panel {
    width: min(100% - 24px, 820px);
    padding: 24px 19px;
  }

  .vro-registration-panel h1 {
    font-size: clamp(29px, 9vw, 38px);
  }
}


/* =========================================================
   VRO LC1.11 – kompaktere Veranstaltungsseiten
   ========================================================= */

/* Archiv-Hero auf Desktop deutlich ruhiger und niedriger */
body.post-type-archive-vro_event .vro-event-archive-hero {
  min-height: 0 !important;
  padding-top: 92px !important;
  padding-bottom: 58px !important;
}

body.post-type-archive-vro_event .vro-event-archive-hero h1 {
  max-width: 980px;
  margin-bottom: 14px !important;
  font-size: clamp(48px, 5.1vw, 70px) !important;
  line-height: .96 !important;
  letter-spacing: -.045em !important;
}

body.post-type-archive-vro_event .vro-event-archive-hero p {
  max-width: 760px;
  margin-bottom: 0 !important;
  font-size: clamp(17px, 1.65vw, 22px) !important;
  line-height: 1.45 !important;
}

/* Inhaltsbereich näher an den Hero heranführen */
body.post-type-archive-vro_event .vro-event-archive-content {
  padding-top: 66px !important;
}

body.post-type-archive-vro_event .vro-event-archive-heading {
  margin-bottom: 42px !important;
}

body.post-type-archive-vro_event .vro-event-archive-heading h2 {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  font-size: clamp(40px, 4.5vw, 62px) !important;
  line-height: 1 !important;
  letter-spacing: -.04em !important;
}

/* Einzelveranstaltung kompakter */
body.single-vro_event .vro-single-event-header {
  min-height: 0 !important;
  padding-top: 92px !important;
  padding-bottom: 46px !important;
}

body.single-vro_event .vro-single-event-header h1 {
  max-width: 1060px;
  margin-top: 20px !important;
  margin-bottom: 28px !important;
  font-size: clamp(48px, 5.2vw, 72px) !important;
  line-height: 1 !important;
  letter-spacing: -.045em !important;
}

body.single-vro_event .vro-single-event-meta {
  margin-top: 0 !important;
  padding-top: 22px !important;
  gap: 26px !important;
}

body.single-vro_event .vro-single-event-content {
  padding-top: 0 !important;
}

body.single-vro_event .vro-single-event-image {
  margin-top: 0 !important;
}

body.single-vro_event .vro-single-event-actions {
  margin-top: 24px !important;
}

/* Fluent Forms: normale Textfelder mit dieser Klasse unsichtbar machen */
.vro-hidden,
.ff-el-group.vro-hidden {
  display: none !important;
}

/* Falls die Klasse direkt am Eingabefeld landet */
input.vro-hidden,
textarea.vro-hidden,
select.vro-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  body.post-type-archive-vro_event .vro-event-archive-hero,
  body.single-vro_event .vro-single-event-header {
    padding-top: 82px !important;
  }

  body.post-type-archive-vro_event .vro-event-archive-hero h1,
  body.single-vro_event .vro-single-event-header h1 {
    font-size: clamp(42px, 7vw, 58px) !important;
  }

  body.post-type-archive-vro_event .vro-event-archive-heading h2 {
    font-size: clamp(36px, 6vw, 50px) !important;
  }
}

@media (max-width: 700px) {
  body.post-type-archive-vro_event .vro-event-archive-hero {
    padding-top: 70px !important;
    padding-bottom: 34px !important;
  }

  body.single-vro_event .vro-single-event-header {
    padding-top: 70px !important;
    padding-bottom: 30px !important;
  }

  body.post-type-archive-vro_event .vro-event-archive-hero h1,
  body.single-vro_event .vro-single-event-header h1 {
    margin-bottom: 12px !important;
    font-size: clamp(29px, 8.5vw, 36px) !important;
  }

  body.single-vro_event .vro-single-event-header h1 {
    margin-top: 12px !important;
    margin-bottom: 20px !important;
  }

  body.post-type-archive-vro_event .vro-event-archive-content {
    padding-top: 42px !important;
  }

  body.post-type-archive-vro_event .vro-event-archive-heading {
    margin-bottom: 28px !important;
  }

  body.post-type-archive-vro_event .vro-event-archive-heading h2 {
    font-size: clamp(27px, 7.8vw, 33px) !important;
  }

  body.single-vro_event .vro-single-event-meta {
    padding-top: 16px !important;
    gap: 14px !important;
  }
}


/* =========================================================
   VRO LC1.12 – Headerüberlagerung auf Veranstaltungsseiten
   ========================================================= */

/*
 * Der Blocksy-Header liegt über dem Seiteninhalt.
 * Deshalb erhält der Hero oben wieder genügend realen Abstand,
 * ohne die kompaktere Typografie aus LC1.11 zurückzunehmen.
 */
body.post-type-archive-vro_event .vro-event-archive-hero,
body.single-vro_event .vro-single-event-header {
  padding-top: 138px !important;
  overflow: visible !important;
}

body.post-type-archive-vro_event .vro-event-archive-hero .vro-event-page-container,
body.single-vro_event .vro-single-event-header .vro-event-page-container {
  overflow: visible !important;
}

/* Sicherheit gegen abgeschnittene Großbuchstaben */
body.post-type-archive-vro_event .vro-event-archive-hero h1,
body.single-vro_event .vro-single-event-header h1 {
  overflow: visible !important;
  padding-top: .08em !important;
}

@media (max-width: 1024px) {
  body.post-type-archive-vro_event .vro-event-archive-hero,
  body.single-vro_event .vro-single-event-header {
    padding-top: 122px !important;
  }
}

@media (max-width: 700px) {
  body.post-type-archive-vro_event .vro-event-archive-hero,
  body.single-vro_event .vro-single-event-header {
    padding-top: 96px !important;
  }
}


/* =========================================================
   VRO LC1.13 – eigenes Layout für /anmeldung/
   ========================================================= */

/* Blocksy-Standardtitel und ausgeschriebenen Sitetitel entfernen */
body.vro-registration-shell #header .site-title,
body.vro-registration-shell #header [data-id="logo"] .site-title,
body.vro-registration-shell #header .site-description,
body.vro-registration-shell .hero-section,
body.vro-registration-shell .entry-header,
body.vro-registration-shell .page-title,
body.vro-registration-shell .ct-page-title {
  display: none !important;
}

/* Dunkler VRO-Header wie auf den Veranstaltungsseiten */
body.vro-registration-shell #header,
body.vro-registration-shell #header [data-row],
body.vro-registration-shell #header [data-device] {
  background: #090a0d !important;
}

body.vro-registration-shell #header a,
body.vro-registration-shell #header button,
body.vro-registration-shell #header svg {
  color: #fff !important;
  fill: currentColor !important;
}

body.vro-registration-shell #header a:hover,
body.vro-registration-shell #header button:hover {
  color: var(--vro-red) !important;
}

body.vro-registration-shell #header [data-id="logo"] .site-branding,
body.vro-registration-shell #header [data-id="logo"] .site-logo-container {
  gap: 0 !important;
}

/* Blocksy-Seitencontainer vollständig umgehen */
body.vro-registration-shell .site-main,
body.vro-registration-shell #main,
body.vro-registration-shell .content-area,
body.vro-registration-shell .ct-container-full,
body.vro-registration-shell .ct-container {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.vro-registration-main {
  width: 100%;
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(215,25,45,.11), transparent 28%),
    #0d0e12;
}

/* Das vorhandene Formularlayout in die VRO-Seite integrieren */
body.vro-registration-shell .vro-registration-page {
  min-height: calc(100vh - 80px);
  padding: 138px 0 76px;
  background:
    linear-gradient(180deg, #0d0e12 0, #111217 330px, #ececef 330px);
}

body.vro-registration-shell .vro-registration-panel {
  width: min(100% - 40px, 920px);
  margin-inline: auto;
  padding: clamp(28px, 4.5vw, 50px);
  border-top: 5px solid var(--vro-red);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.2);
}

body.vro-registration-shell .vro-registration-panel h1 {
  max-width: 760px;
  margin: 0 0 18px !important;
  font-size: clamp(38px, 4.8vw, 64px) !important;
  line-height: 1 !important;
  letter-spacing: -.04em !important;
}

body.vro-registration-shell .vro-registration-event-meta {
  margin-bottom: 26px;
  padding-bottom: 20px;
}

body.vro-registration-shell .vro-registration-form {
  margin-top: 4px;
}

/* Formular optisch an VRO angleichen */
body.vro-registration-shell .fluentform .ff-el-form-control {
  min-height: 48px;
  border: 1px solid #d5d6da;
  border-radius: 6px;
  background: #fff;
  color: #17181c;
}

body.vro-registration-shell .fluentform textarea.ff-el-form-control {
  min-height: 130px;
}

body.vro-registration-shell .fluentform .ff-btn-submit {
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 6px;
  background: var(--vro-red) !important;
  color: #fff !important;
  font-weight: 900;
  text-transform: uppercase;
}

body.vro-registration-shell .fluentform .ff-btn-submit:hover {
  filter: brightness(.9);
}

@media (max-width: 1024px) {
  body.vro-registration-shell .vro-registration-page {
    padding-top: 122px;
  }
}

@media (max-width: 700px) {
  body.vro-registration-shell .vro-registration-page {
    padding: 96px 0 44px;
    background:
      linear-gradient(180deg, #0d0e12 0, #111217 230px, #ececef 230px);
  }

  body.vro-registration-shell .vro-registration-panel {
    width: min(100% - 24px, 920px);
    padding: 24px 18px;
    border-radius: 9px;
  }

  body.vro-registration-shell .vro-registration-panel h1 {
    font-size: clamp(28px, 8.5vw, 38px) !important;
  }
}


/* =========================================================
   VRO LC1.14 – vollständiges Galerie-System
   ========================================================= */

body.vro-gallery-shell #header .site-title,
body.vro-gallery-shell #header [data-id="logo"] .site-title,
body.vro-gallery-shell #header .site-description,
body.vro-gallery-shell .hero-section,
body.vro-gallery-shell .entry-header,
body.vro-gallery-shell .page-title,
body.vro-gallery-shell .ct-page-title {
  display: none !important;
}

body.vro-gallery-shell #header,
body.vro-gallery-shell #header [data-row],
body.vro-gallery-shell #header [data-device] {
  background: #090a0d !important;
}

body.vro-gallery-shell #header a,
body.vro-gallery-shell #header button,
body.vro-gallery-shell #header svg {
  color: #fff !important;
  fill: currentColor !important;
}

body.vro-gallery-shell #header a:hover,
body.vro-gallery-shell #header button:hover {
  color: var(--vro-red) !important;
}

body.vro-gallery-shell .site-main,
body.vro-gallery-shell #main,
body.vro-gallery-shell .content-area,
body.vro-gallery-shell .ct-container,
body.vro-gallery-shell .ct-container-full {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.vro-gallery-main {
  margin: 0;
  padding: 0;
  background: #ececef;
}

.vro-gallery-container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.vro-gallery-hero,
.vro-gallery-album-hero {
  padding: 138px 0 64px;
  background:
    radial-gradient(circle at 88% 15%, rgba(215,25,45,.18), transparent 29%),
    #0d0e12;
  color: #fff;
}

.vro-gallery-kicker {
  margin: 0 0 14px;
  color: var(--vro-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.vro-gallery-hero h1,
.vro-gallery-album-hero h1 {
  max-width: 1050px;
  margin: 0 0 18px;
  color: #fff !important;
  font-size: clamp(50px, 5.4vw, 74px);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.vro-gallery-lead {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.5;
}

.vro-gallery-back {
  display: inline-block;
  margin-bottom: 24px;
  color: rgba(255,255,255,.72) !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  text-transform: uppercase;
}

.vro-gallery-back:hover {
  color: var(--vro-red) !important;
}

.vro-gallery-overview,
.vro-gallery-album-content {
  padding: 70px 0 90px;
}

.vro-gallery-section-heading {
  margin-bottom: 42px;
}

.vro-gallery-section-heading h2,
.vro-gallery-upload-intro h2 {
  margin: 0 0 14px;
  color: #17181c !important;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.vro-gallery-section-heading > p:last-child,
.vro-gallery-upload-copy p {
  max-width: 700px;
  color: #62646b;
  font-size: 17px;
  line-height: 1.55;
}

.vro-gallery-upload-intro {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
  gap: 52px;
  align-items: start;
  margin-bottom: 34px;
  padding: 34px;
  border-top: 5px solid var(--vro-red);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.vro-gallery-consent {
  padding-left: 16px;
  border-left: 3px solid var(--vro-red);
  font-size: 14px !important;
}

/* Vorhandene Albumübersicht in ein belastbares Kartenraster zwingen */
.vro-gallery-album-list > * {
  width: 100%;
}

.vro-gallery-album-list :is(.vro-alben, .vro-alben-grid, .album-grid, .albums-grid, ul) {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.vro-gallery-album-list :is(.vro-album, .album-card, article, li) {
  overflow: hidden;
  min-width: 0;
  border-top: 5px solid var(--vro-red);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(0,0,0,.09);
}

.vro-gallery-album-list a {
  color: #17181c;
  text-decoration: none !important;
}

.vro-gallery-album-list img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vro-gallery-album-list :is(h2, h3, h4, p) {
  padding-inline: 20px;
}

.vro-gallery-album-list :is(h2, h3, h4) {
  margin-top: 18px;
  color: #17181c !important;
  font-size: 23px;
  line-height: 1.08;
  text-transform: uppercase;
}

.vro-gallery-album-list p {
  color: #65676e;
}

/* Upload-/Galerieausgabe des vorhandenen [vro_event]-Systems */
.vro-gallery-event-system {
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.vro-gallery-event-system form {
  margin-bottom: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid #dedfe3;
}

.vro-gallery-event-system input[type="file"] {
  width: 100%;
  padding: 18px;
  border: 2px dashed #c7c8cd;
  border-radius: 8px;
  background: #f5f5f6;
}

.vro-gallery-event-system :is(button, input[type="submit"]) {
  min-height: 46px;
  padding: 11px 20px;
  border: 0;
  border-radius: 6px;
  background: var(--vro-red) !important;
  color: #fff !important;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.vro-gallery-event-system :is(button, input[type="submit"]):hover {
  filter: brightness(.9);
}

.vro-gallery-event-system :is(.vro-gallery, .gallery, .album-gallery, .images, ul) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vro-gallery-event-system a:has(img) {
  display: block;
  overflow: hidden;
  border-radius: 7px;
  background: #111217;
}

.vro-gallery-event-system a:has(img) img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .25s ease, opacity .25s ease;
}

.vro-gallery-event-system a:has(img):hover img {
  transform: scale(1.035);
  opacity: .86;
}

/* Eigene, einfache Lightbox */
html.vro-lightbox-open {
  overflow: hidden;
}

.vro-lightbox[hidden] {
  display: none !important;
}

.vro-lightbox {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 54px 76px;
  background: rgba(4,5,7,.94);
}

.vro-lightbox figure {
  max-width: min(1200px, 88vw);
  max-height: 86vh;
  margin: 0;
  text-align: center;
}

.vro-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  margin-inline: auto;
  object-fit: contain;
}

.vro-lightbox figcaption {
  min-height: 24px;
  padding-top: 10px;
  color: rgba(255,255,255,.72);
}

.vro-lightbox button {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}

.vro-lightbox-close {
  top: 18px;
  right: 24px;
}

.vro-lightbox-prev {
  left: 20px;
  top: 50%;
}

.vro-lightbox-next {
  right: 20px;
  top: 50%;
}

.vro-lightbox button:hover {
  color: var(--vro-red);
}

@media (max-width: 900px) {
  .vro-gallery-album-list :is(.vro-alben, .vro-alben-grid, .album-grid, .albums-grid, ul) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .vro-gallery-event-system :is(.vro-gallery, .gallery, .album-gallery, .images, ul) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vro-gallery-upload-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 700px) {
  .vro-gallery-container {
    width: min(100% - 24px, 1240px);
  }

  .vro-gallery-hero,
  .vro-gallery-album-hero {
    padding: 96px 0 38px;
  }

  .vro-gallery-hero h1,
  .vro-gallery-album-hero h1 {
    font-size: clamp(31px, 9vw, 39px);
  }

  .vro-gallery-lead {
    font-size: 15px;
  }

  .vro-gallery-overview,
  .vro-gallery-album-content {
    padding: 42px 0 56px;
  }

  .vro-gallery-section-heading {
    margin-bottom: 28px;
  }

  .vro-gallery-section-heading h2,
  .vro-gallery-upload-intro h2 {
    font-size: clamp(28px, 8vw, 35px);
  }

  .vro-gallery-upload-intro {
    padding: 22px 18px;
  }

  .vro-gallery-album-list :is(.vro-alben, .vro-alben-grid, .album-grid, .albums-grid, ul) {
    grid-template-columns: 1fr !important;
    gap: 17px !important;
  }

  .vro-gallery-event-system {
    padding: 16px 12px;
  }

  .vro-gallery-event-system :is(.vro-gallery, .gallery, .album-gallery, .images, ul) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .vro-lightbox {
    padding: 48px 12px;
  }

  .vro-lightbox-prev {
    left: 4px;
  }

  .vro-lightbox-next {
    right: 4px;
  }
}


/* =========================================================
   VRO LC1.17 – zentrale Uploadseite und Freigaben
   ========================================================= */

.vro-central-upload-form {
  display: grid;
  gap: 26px;
}

.vro-upload-field label,
.vro-central-upload-form > label {
  display: block;
  margin-bottom: 8px;
  color: #17181c;
  font-weight: 800;
}

.vro-central-upload-form select {
  width: 100%;
  min-height: 50px;
  padding: 9px 13px;
  border: 1px solid #d3d4d8;
  border-radius: 6px;
  background: #fff;
  color: #17181c;
}

.vro-central-upload-form input[type="file"] {
  width: 100%;
  padding: 24px 18px;
  border: 2px dashed #c7c8cd;
  border-radius: 8px;
  background: #f5f5f6;
}

.vro-upload-help {
  margin: 8px 0 0;
  color: #73757c;
  font-size: 14px;
}

.vro-upload-consent {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 16px;
  border-left: 4px solid var(--vro-red);
  background: #f3f3f5;
  font-weight: 500 !important;
}

.vro-upload-consent input {
  margin-top: 4px;
}

.vro-upload-submit {
  justify-self: start;
}

.vro-upload-message {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 6px;
}

.vro-upload-success {
  border-left: 4px solid #1b8f4b;
  background: #eaf7ef;
}

.vro-upload-error {
  border-left: 4px solid var(--vro-red);
  background: #fff0f1;
}

.vro-approved-upload-section {
  margin-top: 54px;
}

.vro-approved-upload-section h2 {
  margin-bottom: 24px;
  color: #17181c !important;
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
}

.vro-approved-upload-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.vro-approved-upload-grid a {
  display: block;
  overflow: hidden;
  border-radius: 7px;
  background: #111217;
}

.vro-approved-upload-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 900px) {
  .vro-approved-upload-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .vro-approved-upload-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .vro-upload-submit {
    width: 100%;
  }
}


/* =========================================================
   VRO LC1.18 – automatische Veranstaltungsgalerien
   ========================================================= */

.vro-event-gallery-button {
  margin-top: 10px;
}

.vro-event-gallery-pending {
  margin-top: 12px;
  padding: 14px 15px;
  border-left: 4px solid var(--vro-red);
  border-radius: 4px;
  background: #f3f3f5;
  color: #17181c;
}

.vro-event-gallery-pending strong,
.vro-event-gallery-pending span {
  display: block;
}

.vro-event-gallery-pending span {
  margin-top: 3px;
  color: #676970;
  font-size: 13px;
  line-height: 1.4;
}

.vro-gallery-hero-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 780px;
}

@media (max-width: 700px) {
  .vro-gallery-hero-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}


/* =========================================================
   VRO LC1.19 – Rechtliches und Galerieverwaltung
   ========================================================= */

.vro-legal-footer-strip {
  padding: 18px 24px;
  background: #111217;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.vro-legal-footer-strip-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.vro-legal-footer-links {
  display: flex;
  gap: 18px;
}

.vro-legal-footer-strip a {
  color: #fff;
  text-decoration: none;
}

.vro-legal-footer-strip a:hover {
  color: var(--vro-red);
}

.vro-legal-main {
  background: #f3f3f5;
}

.vro-legal-hero {
  padding: clamp(115px, 14vw, 175px) 24px 58px;
  background: #111217;
}

.vro-legal-container {
  width: min(920px, 100%);
  margin: 0 auto;
}

.vro-legal-hero h1 {
  margin: 5px 0 0;
  color: #fff !important;
  font-size: clamp(45px, 8vw, 84px);
  line-height: .96;
  text-transform: uppercase;
}

.vro-legal-body {
  padding: 60px 24px 90px;
}

.vro-legal-content {
  padding: clamp(26px, 5vw, 58px);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(17,18,23,.08);
}

.vro-legal-content section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid #e2e3e6;
}

.vro-legal-content h2 {
  margin: 0 0 14px;
  color: #17181c !important;
  font-size: clamp(23px, 3vw, 31px);
}

.vro-legal-content p {
  margin: 0 0 14px;
  color: #4e5057;
  line-height: 1.75;
}

.vro-legal-content a {
  color: var(--vro-red);
  font-weight: 700;
}

.vro-legal-note {
  margin-top: 38px;
  padding: 20px 22px;
  border-left: 4px solid var(--vro-red);
  background: #f3f3f5;
  color: #34363d;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .vro-legal-footer-strip-inner {
    flex-direction: column;
    gap: 8px;
  }

  .vro-legal-body {
    padding: 30px 14px 60px;
  }

  .vro-legal-content {
    padding: 23px 19px;
  }
}


/* =========================================================
   VRO LC2.0 – News, Touren, Mitfahren und Kontakt
   ========================================================= */

.vro-content-main { background: #f2f2f4; }
.vro-content-container { width: min(1180px, 100%); margin: 0 auto; }

.vro-content-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 15vw, 185px) 24px 68px;
  background:
    radial-gradient(circle at 82% 28%, rgba(205, 23, 36, .28), transparent 31%),
    linear-gradient(135deg, #101116 0%, #202127 100%);
}

.vro-content-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.vro-content-hero h1 {
  position: relative;
  z-index: 1;
  margin: 7px 0 0;
  color: #fff !important;
  font-size: clamp(51px, 9vw, 94px);
  line-height: .94;
  text-transform: uppercase;
}

.vro-content-hero-text {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
}

.vro-content-section { padding: clamp(45px, 7vw, 86px) 24px 100px; }

.vro-card-kicker {
  margin: 0 0 8px !important;
  color: var(--vro-red) !important;
  font-size: 13px !important;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.vro-news-search {
  display: flex;
  max-width: 680px;
  margin: 0 auto 42px;
  padding: 7px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(17,18,23,.08);
}

.vro-news-search input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  font-size: 17px;
}

.vro-news-search button,
.vro-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 6px;
  background: var(--vro-red);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
}

.vro-news-grid,
.vro-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.vro-news-card {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(17,18,23,.08);
}

.vro-news-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #202127;
}

.vro-news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.vro-news-card:hover .vro-news-card-image img { transform: scale(1.035); }

.vro-news-card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 45%, rgba(205,23,36,.65) 45%, rgba(205,23,36,.65) 55%, transparent 55%),
    #202127;
}

.vro-news-card-body { padding: 27px; }

.vro-news-card h2 {
  margin: 0 0 13px;
  font-size: clamp(23px, 2.7vw, 31px);
  line-height: 1.1;
}

.vro-news-card h2 a { color: #17181c; text-decoration: none; }
.vro-news-card-body > p:not(.vro-card-kicker) { color: #5a5c63; line-height: 1.65; }

.vro-inline-link {
  display: inline-flex;
  gap: 8px;
  color: var(--vro-red) !important;
  font-weight: 850;
  text-decoration: none !important;
}

.vro-pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 48px;
}

.vro-pagination .page-numbers {
  display: inline-flex;
  min-width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 5px;
  background: #fff;
  color: #202127;
  font-weight: 800;
  text-decoration: none;
}

.vro-pagination .current { background: var(--vro-red); color: #fff; }
.vro-section-heading { margin-bottom: 28px; }

.vro-section-heading h2 {
  margin: 0;
  color: #17181c !important;
  font-size: clamp(34px, 5vw, 57px);
}

.vro-section-heading-past { margin-top: 75px; }
.vro-tour-grid > .wp-block-column { min-width: 0; }
.vro-tour-grid-past { opacity: .9; }

.vro-empty-state {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 38px rgba(17,18,23,.07);
}

.vro-community-layout { display: grid; gap: 42px; }

.vro-community-intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vro-community-intro-cards article {
  padding: 29px;
  border-radius: 9px;
  background: #17181d;
  color: rgba(255,255,255,.76);
}

.vro-community-intro-cards span { color: var(--vro-red); font-weight: 900; }

.vro-community-intro-cards h3 {
  margin: 22px 0 10px;
  color: #fff !important;
  font-size: 27px;
}

.vro-community-intro-cards p { margin: 0; line-height: 1.6; }

.vro-rich-copy {
  padding: clamp(28px, 6vw, 64px);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(17,18,23,.07);
}

.vro-rich-copy section + section {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid #e3e3e6;
}

.vro-rich-copy h2 {
  margin: 0 0 18px;
  color: #17181c !important;
  font-size: clamp(29px, 4vw, 43px);
}

.vro-rich-copy p { color: #52545b; font-size: 17px; line-height: 1.78; }

.vro-highlight-copy {
  margin-top: 25px !important;
  padding: 22px 24px;
  border-left: 4px solid var(--vro-red);
  background: #f3f3f5;
  color: #202127 !important;
}

.vro-community-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(29px, 5vw, 53px);
  border-radius: 10px;
  background: #17181d;
  color: rgba(255,255,255,.76);
}

.vro-community-cta h2 {
  margin: 7px 0 12px;
  color: #fff !important;
  font-size: clamp(31px, 4.5vw, 50px);
}

.vro-community-cta p { max-width: 690px; }

.vro-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.vro-contact-panel,
.vro-contact-form {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 10px;
}

.vro-contact-panel {
  position: sticky;
  top: 110px;
  background: #17181d;
  color: rgba(255,255,255,.78);
}

.vro-contact-panel h2,
.vro-contact-form h2 {
  margin: 7px 0 17px;
  font-size: clamp(31px, 4vw, 45px);
}

.vro-contact-panel h2 { color: #fff !important; }
.vro-contact-panel p { line-height: 1.7; }

.vro-contact-details {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.vro-contact-details a { color: #fff; }

.vro-contact-form {
  background: #fff;
  box-shadow: 0 12px 38px rgba(17,18,23,.08);
}

.vro-contact-form h2 { color: #17181c !important; }

.vro-secondary-button {
  display: inline-flex;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
}

.vro-contact-form .ff-el-form-control {
  border-color: #d6d7da !important;
  border-radius: 6px !important;
}

.vro-contact-form .ff-btn-submit {
  border-radius: 6px !important;
  background: var(--vro-red) !important;
  font-weight: 800 !important;
}

@media (max-width: 980px) {
  .vro-news-grid,
  .vro-tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .vro-contact-grid { grid-template-columns: 1fr; }
  .vro-contact-panel { position: static; }
}

@media (max-width: 700px) {
  .vro-content-hero { padding: 112px 16px 47px; }
  .vro-content-section { padding: 32px 14px 66px; }
  .vro-news-search { align-items: stretch; }
  .vro-news-search button { padding-inline: 15px; }

  .vro-news-grid,
  .vro-tour-grid,
  .vro-community-intro-cards { grid-template-columns: 1fr; }

  .vro-community-cta { align-items: flex-start; flex-direction: column; }

  .vro-rich-copy,
  .vro-contact-panel,
  .vro-contact-form { padding: 24px 20px; }
}


/* =========================================================
   VRO LC2.1 – einheitlicher Header auf Inhalts- und Rechtsseiten
   ========================================================= */

body.vro-content-page #header,
body.vro-legal-page #header {
  position: absolute !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(10,10,12,.92) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    transform .24s ease,
    background .24s ease,
    box-shadow .24s ease !important;
}

body.vro-content-page #header [data-row],
body.vro-content-page #header [data-row*="middle"],
body.vro-legal-page #header [data-row],
body.vro-legal-page #header [data-row*="middle"] {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.vro-content-page #header.vro-header-scrolled,
body.vro-legal-page #header.vro-header-scrolled {
  position: fixed !important;
  background: rgba(10,10,12,.95) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

body.vro-content-page #header.vro-hide-header,
body.vro-legal-page #header.vro-hide-header {
  transform: translateY(-125%) !important;
}

body.vro-content-page #header nav a,
body.vro-content-page #header .menu-item > a,
body.vro-legal-page #header nav a,
body.vro-legal-page #header .menu-item > a {
  color: #fff !important;
  font-weight: 800;
}

body.vro-content-page #header nav a:hover,
body.vro-content-page #header .menu-item > a:hover,
body.vro-content-page #header .current-menu-item > a,
body.vro-content-page #header .current-menu-ancestor > a,
body.vro-legal-page #header nav a:hover,
body.vro-legal-page #header .menu-item > a:hover,
body.vro-legal-page #header .current-menu-item > a,
body.vro-legal-page #header .current-menu-ancestor > a {
  color: var(--vro-red) !important;
}

body.vro-content-page #header .ct-header-trigger,
body.vro-content-page #header .ct-header-trigger svg,
body.vro-content-page .ct-toggle-close,
body.vro-content-page .ct-toggle-close svg,
body.vro-legal-page #header .ct-header-trigger,
body.vro-legal-page #header .ct-header-trigger svg,
body.vro-legal-page .ct-toggle-close,
body.vro-legal-page .ct-toggle-close svg {
  color: #fff !important;
  fill: currentColor !important;
}

body.vro-content-page #header .site-title,
body.vro-content-page #header .site-description,
body.vro-legal-page #header .site-title,
body.vro-legal-page #header .site-description,
body.vro-content-page .hero-section,
body.vro-content-page .entry-header,
body.vro-content-page .page-title,
body.vro-content-page .ct-page-title,
body.vro-legal-page .hero-section,
body.vro-legal-page .entry-header,
body.vro-legal-page .page-title,
body.vro-legal-page .ct-page-title {
  display: none !important;
}

body.vro-content-page .site-main,
body.vro-content-page #main,
body.vro-content-page .content-area,
body.vro-content-page .ct-container,
body.vro-content-page .ct-container-full,
body.vro-legal-page .site-main,
body.vro-legal-page #main,
body.vro-legal-page .content-area,
body.vro-legal-page .ct-container,
body.vro-legal-page .ct-container-full {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.vro-content-page #header .sub-menu,
body.vro-legal-page #header .sub-menu {
  background: rgba(17,18,23,.98) !important;
  border: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 1024px) {
  body.vro-content-page #offcanvas,
  body.vro-legal-page #offcanvas {
    background: #111217 !important;
  }

  body.vro-content-page #offcanvas a,
  body.vro-legal-page #offcanvas a {
    color: #fff !important;
  }
}

/* =========================================================
   VRO 2.0.2 – Stammtisch-Sammelseite
   ========================================================= */
.vro-content-hero-stammtisch {
  background:
    radial-gradient(circle at 82% 18%, rgba(215,25,45,.19), transparent 26rem),
    linear-gradient(135deg, #0d0e11, #191a20);
}

.vro-stammtisch-intro-section {
  background: #f1f1f2;
}

.vro-stammtisch-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.vro-stammtisch-intro .vro-rich-copy section {
  margin: 0;
}

.vro-stammtisch-location {
  position: sticky;
  top: 110px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--vro-radius);
  background:
    radial-gradient(circle at 100% 0, rgba(215,25,45,.18), transparent 18rem),
    #17181d;
  color: #fff;
  box-shadow: 0 22px 48px rgba(0,0,0,.18);
}

.vro-stammtisch-location h3 {
  margin: 0 0 18px;
  color: #fff !important;
  font-size: clamp(29px, 4vw, 43px);
  line-height: 1.02;
  text-transform: uppercase;
}

.vro-stammtisch-location > p:not(.vro-card-kicker) {
  color: rgba(255,255,255,.74);
  line-height: 1.68;
}

.vro-stammtisch-events-section {
  background: #fff;
}

/* =========================================================
   VRO 2.0.2 – einzelne News-Beiträge
   ========================================================= */
.vro-single-news {
  background: #f1f1f2;
}

.vro-single-news-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(440px, 65vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(215,25,45,.2), transparent 28rem),
    #0d0e11;
}

.vro-single-news-hero-image,
.vro-single-news-overlay {
  position: absolute;
  inset: 0;
}

.vro-single-news-hero-image {
  z-index: -2;
}

.vro-single-news-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vro-single-news-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,11,14,.42) 0%, rgba(10,11,14,.70) 45%, rgba(10,11,14,.98) 100%),
    linear-gradient(90deg, rgba(10,11,14,.60), transparent 75%);
}

.vro-single-news-hero:not(.has-image) .vro-single-news-overlay {
  background: radial-gradient(circle at 82% 15%, rgba(215,25,45,.2), transparent 28rem);
}

.vro-single-news-hero-inner {
  width: 100%;
  padding-top: 150px;
  padding-bottom: clamp(55px, 8vw, 95px);
}

.vro-news-breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 30px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.vro-news-breadcrumb a {
  color: rgba(255,255,255,.78) !important;
  text-decoration: none !important;
}

.vro-news-breadcrumb a:hover {
  color: var(--vro-red) !important;
}

.vro-single-news-hero h1 {
  max-width: 980px;
  margin: 10px 0 0;
  color: #fff !important;
  font-size: clamp(43px, 7vw, 88px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.vro-single-news-section {
  padding: clamp(58px, 8vw, 105px) 20px;
}

.vro-single-news-content {
  width: min(820px, 100%);
  margin-inline: auto;
  color: #303238;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.78;
}

.vro-single-news-content > :first-child { margin-top: 0; }
.vro-single-news-content > :last-child { margin-bottom: 0; }

.vro-single-news-content h2,
.vro-single-news-content h3,
.vro-single-news-content h4 {
  margin-top: 1.65em;
  color: #17181c !important;
  line-height: 1.08;
}

.vro-single-news-content h2 {
  font-size: clamp(31px, 4vw, 48px);
}

.vro-single-news-content img,
.vro-single-news-content .wp-block-image img {
  border-radius: 12px;
}

.vro-single-news-content .wp-block-image,
.vro-single-news-content figure {
  margin-top: 42px;
  margin-bottom: 42px;
}

.vro-single-news-content blockquote {
  margin: 42px 0;
  padding: 7px 0 7px 25px;
  border-left: 5px solid var(--vro-red);
  color: #17181c;
  font-size: 1.15em;
  font-weight: 750;
}

.vro-single-news-navigation {
  padding: 42px 0;
  background: #17181d;
}

.vro-single-news-nav-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.vro-news-nav-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #fff !important;
  text-decoration: none !important;
}

.vro-news-nav-card-next {
  text-align: right;
}

.vro-news-nav-card span {
  color: var(--vro-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vro-news-nav-card strong {
  color: rgba(255,255,255,.86);
  line-height: 1.25;
}

.vro-news-nav-card:hover strong {
  color: #fff;
}

.vro-single-news-related {
  padding: clamp(65px, 8vw, 105px) 0;
  background: #fff;
}

@media (max-width: 820px) {
  .vro-stammtisch-intro {
    grid-template-columns: 1fr;
  }

  .vro-stammtisch-location {
    position: static;
  }

  .vro-single-news-nav-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vro-news-nav-card,
  .vro-news-nav-card-next {
    text-align: center;
  }
}

/* =========================================================
   VRO 2.0.3 – Social Media, Footer und kanalübergreifende CTAs
   ========================================================= */
.vro-header-social {
  position: absolute;
  top: 8px;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  flex: 0 0 auto;
}

.vro-header-social .vro-social-link,
.vro-footer-social .vro-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff !important;
  text-decoration: none !important;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.vro-header-social .vro-social-link:hover,
.vro-footer-social .vro-social-link:hover {
  transform: translateY(-2px);
  border-color: var(--vro-red);
  background: var(--vro-red);
}

.vro-social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.vro-header-social .vro-social-label { display: none; }

#header [data-row="middle"] .ct-container {
  position: relative;
}

.vro-subpage-footer {
  position: relative;
  z-index: 2;
  padding: clamp(55px, 7vw, 88px) 20px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(215,25,45,.18), transparent 27rem),
    #111217;
  color: #fff;
}

.vro-subpage-footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto clamp(45px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: clamp(35px, 7vw, 90px);
  align-items: end;
}

.vro-subpage-footer h2 {
  max-width: 720px;
  margin: 10px 0 16px;
  color: #fff !important;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.vro-subpage-footer p:not(.vro-card-kicker) {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

.vro-footer-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vro-footer-social .vro-social-link-wide {
  width: auto;
  height: auto;
  min-height: 54px;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 800;
}

.vro-footer-social .vro-social-label { display: inline; }

.vro-channel-panel,
.vro-google-review-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .65fr);
  gap: clamp(25px, 5vw, 60px);
  align-items: center;
  margin: 0 0 clamp(42px, 6vw, 72px);
  padding: clamp(28px, 5vw, 50px);
  border-radius: var(--vro-radius);
  background:
    radial-gradient(circle at 100% 0, rgba(215,25,45,.22), transparent 22rem),
    #17181d;
  color: #fff;
  box-shadow: 0 22px 48px rgba(0,0,0,.14);
}

.vro-channel-panel h2,
.vro-google-review-card h2 {
  margin: 8px 0 14px;
  color: #fff !important;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
  text-transform: uppercase;
}

.vro-channel-panel-copy > p:last-child,
.vro-google-review-card > div > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.vro-channel-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vro-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid var(--vro-red);
  border-radius: 7px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none !important;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.vro-button:hover { transform: translateY(-2px); }
.vro-button-primary { background: var(--vro-red); color: #fff !important; }
.vro-button-secondary { background: transparent; color: #fff !important; }
.vro-button-secondary:hover { background: var(--vro-red); }

.vro-event-social-section {
  padding: clamp(50px, 7vw, 85px) 20px 0;
  background: #f1f1f2;
}

.vro-channel-panel-events { margin-bottom: 0; }

.vro-google-review-section {
  padding: clamp(60px, 8vw, 100px) 20px;
  background: #f1f1f2;
}

.vro-google-review-card {
  margin: 0;
  background:
    radial-gradient(circle at 0 100%, rgba(215,25,45,.22), transparent 22rem),
    #17181d;
}

@media (max-width: 1050px) {
  .vro-header-social { right: 8px; gap: 6px; }
  .vro-header-social .vro-social-link { width: 34px; height: 34px; }
}

@media (max-width: 820px) {
  .vro-header-social {
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }

  .vro-header-social .vro-social-link { width: 32px; height: 32px; }
  .vro-header-social .vro-social-link svg { width: 16px; height: 16px; }

  .vro-subpage-footer-inner,
  .vro-channel-panel,
  .vro-google-review-card {
    grid-template-columns: 1fr;
  }

  .vro-footer-social { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .vro-header-social { right: 54px; gap: 4px; }
  .vro-header-social .vro-social-link { width: 29px; height: 29px; }
  .vro-channel-panel-actions .vro-button { width: 100%; }
}

/* =========================================================
   VRO 2.0.5 – Mobile Header-Icons und Partnerseite
   ========================================================= */
.vro-header-social {
  z-index: 9999 !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#header [data-device="mobile"] .ct-container,
#header [data-device="mobile"] [data-row="middle"] .ct-container {
  position: relative;
  overflow: visible !important;
}

@media (max-width: 820px) {
  #header .vro-header-social {
    display: flex !important;
    position: absolute !important;
    top: 50% !important;
    right: 58px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    pointer-events: auto;
  }
}

@media (max-width: 390px) {
  #header .vro-header-social { right: 49px !important; gap: 3px; }
  #header .vro-header-social .vro-social-link { width: 27px; height: 27px; }
}

.vro-partner-section,
.vro-dealer-section {
  padding: clamp(60px, 8vw, 105px) 20px;
  background: #f1f1f2;
}

.vro-hamacher-section {
  padding: 0 20px clamp(60px, 8vw, 105px);
  background: #f1f1f2;
}

.vro-partner-intro {
  max-width: 850px;
  margin-bottom: clamp(30px, 5vw, 55px);
}

.vro-partner-intro h2,
.vro-hamacher-card h2 {
  margin: 8px 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  text-transform: uppercase;
}

.vro-partner-intro > p:last-child {
  margin: 0;
  max-width: 800px;
  line-height: 1.75;
}

.vro-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.vro-partner-card,
.vro-dealer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(25px, 4vw, 38px);
  border-top: 5px solid var(--vro-red);
  border-radius: var(--vro-radius);
  background: #17181d;
  color: #fff;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.vro-partner-number {
  color: var(--vro-red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
}

.vro-partner-card h3,
.vro-dealer-card h3 {
  margin: 12px 0 14px;
  color: #fff !important;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
}

.vro-partner-card p,
.vro-dealer-card p:not(.vro-card-kicker) {
  margin: 0 0 24px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.vro-partner-card .vro-inline-link,
.vro-dealer-card .vro-button {
  margin-top: auto;
  align-self: flex-start;
}

.vro-hamacher-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr);
  gap: clamp(30px, 6vw, 75px);
  padding: clamp(34px, 6vw, 62px);
  border-radius: var(--vro-radius);
  background:
    radial-gradient(circle at 100% 0, rgba(215,25,45,.22), transparent 24rem),
    #111217;
  color: #fff;
  box-shadow: 0 24px 55px rgba(0,0,0,.16);
}

.vro-hamacher-card h2 { color: #fff !important; }
.vro-hamacher-lead { font-size: clamp(18px, 2vw, 22px); font-weight: 700; }
.vro-hamacher-copy > p:not(.vro-card-kicker) { color: rgba(255,255,255,.76); line-height: 1.75; }
.vro-hamacher-copy .vro-button { margin-top: 12px; }

.vro-hamacher-services {
  align-self: stretch;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
}

.vro-hamacher-services ul { margin: 18px 0 0; padding: 0; list-style: none; }
.vro-hamacher-services li {
  position: relative;
  padding: 13px 0 13px 25px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-weight: 800;
}
.vro-hamacher-services li:last-child { border-bottom: 0; }
.vro-hamacher-services li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vro-red);
  font-weight: 900;
}

.vro-dealer-section { padding-top: clamp(60px, 8vw, 100px); background: #fff; }
.vro-dealer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.vro-dealer-card .vro-card-kicker { color: var(--vro-red); }
.vro-recommendation-note {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 5px solid var(--vro-red);
  background: #f1f1f2;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .vro-dealer-grid { grid-template-columns: 1fr; }
  .vro-hamacher-card { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .vro-partner-grid { grid-template-columns: 1fr; }
  .vro-partner-card,
  .vro-dealer-card { padding: 25px; }
}


/* =========================================================
   VRO 2.0.6 – Community-Unterseite
   ========================================================= */
.vro-community-values {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vro-community-story .vro-community-quote {
  margin-top: 30px !important;
  font-size: clamp(20px, 2.6vw, 29px);
  line-height: 1.45;
}

.vro-community-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.vro-community-action-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(17,18,23,.07);
}

.vro-community-action-card h2 {
  margin: 6px 0 16px;
  color: #17181c !important;
  font-size: clamp(31px, 4vw, 44px);
}

.vro-community-action-card p:not(.vro-card-kicker) {
  margin: 0 0 28px;
  color: #52545b;
  font-size: 17px;
  line-height: 1.7;
}

.vro-community-action-card .vro-primary-button,
.vro-community-action-card .vro-secondary-button {
  margin-top: auto;
}

.vro-community-action-card-dark {
  background: #17181d;
  color: rgba(255,255,255,.78);
}

.vro-community-action-card-dark h2 { color: #fff !important; }
.vro-community-action-card-dark p:not(.vro-card-kicker) { color: rgba(255,255,255,.76); }

@media (max-width: 1050px) {
  .vro-community-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .vro-community-values,
  .vro-community-action-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   VRO 2.0.7 – FAQ-Unterseite
   ========================================================= */
.vro-faq-section { background: #f1f1f2; }
.vro-faq-intro { max-width: 880px; margin-bottom: 34px; }
.vro-faq-intro h2 { margin: 8px 0 16px; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; text-transform: uppercase; }
.vro-faq-intro > p:last-child { max-width: 780px; margin: 0; color: #565860; font-size: 18px; line-height: 1.75; }
.vro-faq-index { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin: 0 0 clamp(48px,7vw,82px); }
.vro-faq-index a { display: flex; align-items: center; gap: 10px; min-height: 54px; padding: 12px 16px; border: 1px solid rgba(17,18,23,.09); border-radius: 8px; background: #fff; color: #17181d; font-weight: 800; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.vro-faq-index a:hover, .vro-faq-index a:focus-visible { transform: translateY(-2px); border-color: var(--vro-red); box-shadow: 0 10px 25px rgba(17,18,23,.08); color: var(--vro-red); }
.vro-faq-index a span { font-size: 20px; }
.vro-faq-groups { display: grid; gap: clamp(42px,7vw,76px); }
.vro-faq-group { scroll-margin-top: 110px; }
.vro-faq-group-heading { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.vro-faq-group-icon { display: grid; place-items: center; flex: 0 0 56px; width: 56px; height: 56px; border-radius: 50%; background: #17181d; font-size: 27px; box-shadow: inset 0 -3px 0 var(--vro-red); }
.vro-faq-group-heading h2 { margin: 2px 0 0; font-size: clamp(28px,4vw,42px); line-height: 1.08; text-transform: uppercase; }
.vro-faq-group-heading .vro-card-kicker { margin: 0; }
.vro-faq-accordion { display: grid; gap: 10px; }
.vro-faq-item { overflow: hidden; border: 1px solid rgba(17,18,23,.09); border-radius: 8px; background: #fff; box-shadow: 0 8px 26px rgba(17,18,23,.045); }
.vro-faq-item summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 20px 22px; cursor: pointer; color: #17181d; font-size: 18px; font-weight: 850; line-height: 1.35; list-style: none; }
.vro-faq-item summary::-webkit-details-marker { display: none; }
.vro-faq-item summary span { position: relative; flex: 0 0 22px; width: 22px; height: 22px; }
.vro-faq-item summary span::before, .vro-faq-item summary span::after { content: ''; position: absolute; top: 50%; left: 50%; width: 16px; height: 2px; background: var(--vro-red); transform: translate(-50%,-50%); transition: transform .2s ease; }
.vro-faq-item summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.vro-faq-item[open] summary { color: var(--vro-red); }
.vro-faq-item[open] summary span::after { transform: translate(-50%,-50%) rotate(0deg); }
.vro-faq-answer { padding: 0 22px 21px; }
.vro-faq-answer p { margin: 0; max-width: 920px; color: #555861; line-height: 1.75; }
.vro-faq-cta { margin-top: clamp(54px,8vw,92px); }
.vro-faq-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
@media (max-width: 850px) { .vro-faq-index { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 560px) {
  .vro-faq-index { grid-template-columns: 1fr; }
  .vro-faq-index a { min-height: 48px; padding: 10px 13px; }
  .vro-faq-group-heading { align-items: flex-start; }
  .vro-faq-group-icon { flex-basis: 48px; width: 48px; height: 48px; font-size: 23px; }
  .vro-faq-item summary { padding: 17px 16px; font-size: 16px; }
  .vro-faq-answer { padding: 0 16px 18px; }
  .vro-faq-cta-actions { width: 100%; }
  .vro-faq-cta-actions a { width: 100%; text-align: center; }
}

/* =========================================================
   VRO 2.0.8 – Mobile Navigation, ausschließlich Offcanvas
   Desktop-Navigation und Inhalts-Akkordeons bleiben unberührt.
   ========================================================= */
@media (max-width: 999px) {
  #offcanvas .mobile-menu,
  .ct-panel[data-behaviour*="right"] .mobile-menu,
  .ct-panel[data-behaviour*="left"] .mobile-menu {
    width: 100%;
  }

  #offcanvas .mobile-menu > ul,
  .ct-panel[data-behaviour*="right"] .mobile-menu > ul,
  .ct-panel[data-behaviour*="left"] .mobile-menu > ul {
    display: block;
    margin: 0;
    padding: 8px 0 24px;
  }

  #offcanvas .mobile-menu > ul > li,
  .ct-panel[data-behaviour*="right"] .mobile-menu > ul > li,
  .ct-panel[data-behaviour*="left"] .mobile-menu > ul > li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  #offcanvas .mobile-menu > ul > li > a,
  .ct-panel[data-behaviour*="right"] .mobile-menu > ul > li > a,
  .ct-panel[data-behaviour*="left"] .mobile-menu > ul > li > a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 13px 48px 13px 4px;
    color: #fff !important;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .01em;
    text-decoration: none;
  }

  #offcanvas .mobile-menu > ul > li > a:hover,
  #offcanvas .mobile-menu > ul > li.current-menu-item > a,
  #offcanvas .mobile-menu > ul > li.current-menu-ancestor > a,
  .ct-panel[data-behaviour*="right"] .mobile-menu > ul > li > a:hover,
  .ct-panel[data-behaviour*="right"] .mobile-menu > ul > li.current-menu-item > a,
  .ct-panel[data-behaviour*="right"] .mobile-menu > ul > li.current-menu-ancestor > a,
  .ct-panel[data-behaviour*="left"] .mobile-menu > ul > li > a:hover,
  .ct-panel[data-behaviour*="left"] .mobile-menu > ul > li.current-menu-item > a,
  .ct-panel[data-behaviour*="left"] .mobile-menu > ul > li.current-menu-ancestor > a {
    color: var(--vro-red) !important;
  }

  #offcanvas .mobile-menu .sub-menu,
  .ct-panel[data-behaviour*="right"] .mobile-menu .sub-menu,
  .ct-panel[data-behaviour*="left"] .mobile-menu .sub-menu {
    margin: 0 0 10px 4px;
    padding: 3px 0 5px 15px;
    border-left: 3px solid var(--vro-red);
    background: rgba(255,255,255,.035);
  }

  #offcanvas .mobile-menu .sub-menu li,
  .ct-panel[data-behaviour*="right"] .mobile-menu .sub-menu li,
  .ct-panel[data-behaviour*="left"] .mobile-menu .sub-menu li {
    margin: 0;
    border: 0;
  }

  #offcanvas .mobile-menu .sub-menu a,
  .ct-panel[data-behaviour*="right"] .mobile-menu .sub-menu a,
  .ct-panel[data-behaviour*="left"] .mobile-menu .sub-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 12px;
    color: rgba(255,255,255,.76) !important;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.3;
    text-decoration: none;
  }

  #offcanvas .mobile-menu .sub-menu a::before,
  .ct-panel[data-behaviour*="right"] .mobile-menu .sub-menu a::before,
  .ct-panel[data-behaviour*="left"] .mobile-menu .sub-menu a::before {
    content: '›';
    flex: 0 0 auto;
    margin-right: 8px;
    color: var(--vro-red);
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
  }

  #offcanvas .mobile-menu .sub-menu a:hover,
  #offcanvas .mobile-menu .sub-menu .current-menu-item > a,
  .ct-panel[data-behaviour*="right"] .mobile-menu .sub-menu a:hover,
  .ct-panel[data-behaviour*="right"] .mobile-menu .sub-menu .current-menu-item > a,
  .ct-panel[data-behaviour*="left"] .mobile-menu .sub-menu a:hover,
  .ct-panel[data-behaviour*="left"] .mobile-menu .sub-menu .current-menu-item > a {
    color: #fff !important;
    background: rgba(215,25,45,.13);
  }

  #offcanvas .mobile-menu .ct-toggle-dropdown-mobile,
  #offcanvas .mobile-menu .child-indicator,
  .ct-panel[data-behaviour*="right"] .mobile-menu .ct-toggle-dropdown-mobile,
  .ct-panel[data-behaviour*="right"] .mobile-menu .child-indicator,
  .ct-panel[data-behaviour*="left"] .mobile-menu .ct-toggle-dropdown-mobile,
  .ct-panel[data-behaviour*="left"] .mobile-menu .child-indicator {
    position: absolute;
    top: 6px;
    right: 0;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
  }
}

/* =========================================================
   VRO 2.0.9 – mobile Menüstruktur
   Nur das mobile Blocksy-Offcanvas-Menü; Desktop und FAQ unberührt.
   ========================================================= */
@media (max-width: 999px) {
  #offcanvas .mobile-menu > ul[data-vro-structured="1"],
  .ct-panel .mobile-menu > ul[data-vro-structured="1"] {
    padding: 4px 0 22px;
  }

  #offcanvas .mobile-menu > ul[data-vro-structured="1"] > li,
  .ct-panel .mobile-menu > ul[data-vro-structured="1"] > li {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  #offcanvas .mobile-menu > ul[data-vro-structured="1"] > li > a,
  .ct-panel .mobile-menu > ul[data-vro-structured="1"] > li > a {
    min-height: 54px;
    padding: 14px 4px !important;
    font-size: 18px !important;
    font-weight: 850 !important;
    color: #fff !important;
  }

  #offcanvas .mobile-menu > ul[data-vro-structured="1"] > li.current-menu-item > a,
  #offcanvas .mobile-menu > ul[data-vro-structured="1"] > li.current-menu-ancestor > a,
  .ct-panel .mobile-menu > ul[data-vro-structured="1"] > li.current-menu-item > a,
  .ct-panel .mobile-menu > ul[data-vro-structured="1"] > li.current-menu-ancestor > a {
    color: var(--vro-red) !important;
  }

  #offcanvas .mobile-menu .vro-mobile-nav-submenu,
  .ct-panel .mobile-menu .vro-mobile-nav-submenu {
    display: block !important;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    margin: -3px 0 12px 3px !important;
    padding: 3px 0 4px 15px !important;
    border-left: 3px solid var(--vro-red) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  #offcanvas .mobile-menu .vro-mobile-nav-submenu li,
  .ct-panel .mobile-menu .vro-mobile-nav-submenu li {
    border: 0 !important;
  }

  #offcanvas .mobile-menu .vro-mobile-nav-submenu a,
  .ct-panel .mobile-menu .vro-mobile-nav-submenu a {
    min-height: 39px !important;
    padding: 8px 10px !important;
    font-size: 15px !important;
    font-weight: 650 !important;
    line-height: 1.25 !important;
    color: rgba(255,255,255,.76) !important;
  }

  #offcanvas .mobile-menu .vro-mobile-nav-submenu a::before,
  .ct-panel .mobile-menu .vro-mobile-nav-submenu a::before {
    content: '›';
    margin-right: 8px;
    color: var(--vro-red);
    font-size: 18px;
    font-weight: 900;
  }

  #offcanvas .mobile-menu .vro-mobile-nav-submenu .current-menu-item > a,
  .ct-panel .mobile-menu .vro-mobile-nav-submenu .current-menu-item > a {
    color: #fff !important;
    background: rgba(215,25,45,.14) !important;
  }

  #offcanvas .mobile-menu .vro-mobile-nav-section > .ct-toggle-dropdown-mobile,
  #offcanvas .mobile-menu .vro-mobile-nav-section > .child-indicator,
  .ct-panel .mobile-menu .vro-mobile-nav-section > .ct-toggle-dropdown-mobile,
  .ct-panel .mobile-menu .vro-mobile-nav-section > .child-indicator {
    display: none !important;
  }
}

/* =========================================================
   VRO 2.0.11 – Kommentarfunktion für News
   ========================================================= */
.vro-comments {
  padding: clamp(54px, 7vw, 90px) 0;
  background: #f4f4f4;
  border-top: 1px solid rgba(0,0,0,.08);
}
.vro-comments-inner { max-width: 980px; }
.vro-comments-heading { margin-bottom: 30px; }
.vro-comments-heading > p:last-child { max-width: 680px; margin-bottom: 0; color: #555; }
.vro-comment-list,
.vro-comment-list .children {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vro-comment-list > li { margin-bottom: 18px; }
.vro-comment-list .children { margin: 16px 0 0 clamp(18px, 5vw, 56px); }
.vro-comment-list .comment-body {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.045);
}
.vro-comment-list .comment-meta { margin-bottom: 13px; }
.vro-comment-list .comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  color: #151515;
}
.vro-comment-list .avatar { border-radius: 50%; }
.vro-comment-list .says { display: none; }
.vro-comment-list .comment-metadata { margin: 6px 0 0 68px; font-size: 13px; }
.vro-comment-list .comment-metadata a { color: #666; text-decoration: none; }
.vro-comment-list .comment-content { color: #333; line-height: 1.7; }
.vro-comment-list .comment-content p:last-child { margin-bottom: 0; }
.vro-comment-list .reply { margin-top: 14px; }
.vro-comment-list .reply a,
.vro-comment-list .comment-edit-link {
  color: var(--vro-red);
  font-weight: 800;
  text-decoration: none;
}
.vro-comment-list .bypostauthor > .comment-body { border-left: 4px solid var(--vro-red); }
.vro-comment-list .comment-awaiting-moderation {
  display: inline-block;
  margin: 10px 0 0;
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(215,25,45,.09);
  color: #8d1020;
  font-size: 14px;
  font-style: normal;
  font-weight: 750;
}
.vro-comment-form-wrap {
  margin-top: 38px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 16px;
  background: #161616;
  color: #fff;
}
.vro-comment-form-wrap h3 { margin-top: 0; color: #fff; }
.vro-comment-form-wrap a { color: #fff; }
.vro-comment-note,
.vro-comment-form-wrap .logged-in-as { color: rgba(255,255,255,.72); font-size: 14px; }
.vro-comment-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 18px; }
.vro-comment-form > p { margin: 0 0 18px; }
.vro-comment-form .comment-notes,
.vro-comment-form .logged-in-as,
.vro-comment-form .comment-form-comment,
.vro-comment-form .form-submit,
.vro-comment-form .comment-form-cookies-consent { grid-column: 1 / -1; }
.vro-comment-form label { display: block; margin-bottom: 7px; color: #fff; font-size: 14px; font-weight: 800; }
.vro-comment-form input[type="text"],
.vro-comment-form input[type="email"],
.vro-comment-form input[type="url"],
.vro-comment-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: #fff;
  color: #171717;
}
.vro-comment-form textarea { min-height: 160px; resize: vertical; }
.vro-comment-form input:focus,
.vro-comment-form textarea:focus { border-color: var(--vro-red); outline: 3px solid rgba(215,25,45,.22); }
.vro-comment-form .comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 10px; }
.vro-comment-form .comment-form-cookies-consent input { margin-top: 5px; }
.vro-comment-form .comment-form-cookies-consent label { margin: 0; color: rgba(255,255,255,.76); font-weight: 500; }
.vro-comment-form .form-submit { margin-bottom: 0; }
.vro-comment-form .submit { border: 0; cursor: pointer; }
.vro-comment-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.vro-comments-closed { padding: 16px; border-left: 4px solid var(--vro-red); background: #fff; }
.vro-comments .comment-navigation { margin: 24px 0; }
.vro-comments .comment-navigation .nav-links { display: flex; justify-content: space-between; gap: 16px; }
.vro-comments .comment-navigation a { color: var(--vro-red); font-weight: 800; text-decoration: none; }
@media (max-width: 680px) {
  .vro-comments { padding: 44px 0; }
  .vro-comment-list .comment-body { padding: 17px; }
  .vro-comment-list .children { margin-left: 12px; }
  .vro-comment-list .comment-metadata { margin-left: 0; }
  .vro-comment-form { grid-template-columns: 1fr; }
  .vro-comment-form > p { grid-column: 1; }
  .vro-comment-form-wrap { padding: 20px 16px; }
}


/* =========================================================
   VRO 2.0.13 – freigegebene Uploads im vorhandenen Albumraster
   ========================================================= */
.vro-approved-upload-merge {
  margin-top: 12px;
}

.vro-gallery-event-system :is(.vro-gallery, .gallery, .album-gallery, .images, ul) > .vro-uploaded-gallery-item {
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vro-gallery-event-system :is(.vro-gallery, .gallery, .album-gallery, .images, ul) > .vro-uploaded-gallery-item > a {
  height: 100%;
}


/* =========================================================
   VRO 2.0.18 – stabile Galerieintegration ohne Shortcode-Hack
   ========================================================= */
.vro-gallery-event-system .vro-approved-upload-grid {
  margin-top: 12px;
}

.vro-gallery-event-system .vro-approved-upload-grid > a {
  min-width: 0;
  height: 100%;
}
