/*
 * Dinosaurier Erlebniswelt
 *
 * © 2026 softwelop - Thorben Auer. Alle Rechte vorbehalten.
 *
 * Autor:   Thorben Auer
 * Web:     https://softwelop.com
 * Lizenz:  Proprietär - Vervielfältigung nur mit Genehmigung.
 */
@font-face {
  font-family: Inter Variablefont Opsz Wght;
  src: url('../fonts/Inter-VariableFont_opszwght.ttf') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Oswald Variablefont Wght;
  src: url('../fonts/Oswald-VariableFont_wght.ttf') format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  max-width: 100dvw;
  width: 100dvw;
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

#main {
  flex: 1;
}

:root {
  --main-orange: #f97316;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h2 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 100%;
}

h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.navbar-logo-left {
  z-index: 999;
  background-color: #000;
  position: sticky;
  top: 0;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
}

.container.center {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.navbar-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-wrapper {
  width: 100%;
}

.nav-menu-two {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  color: #e5e5e5;
  letter-spacing: .25px;
  text-transform: uppercase;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: #f97316;
}

.nav-link:focus-visible,
.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.mobile-margin-top-10 {
  margin-left: auto;
}

.button-primary {
  color: #fff;
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #1a1b1f;
  background-image: linear-gradient(45deg, #ff4d00, #cc3d00);
  border-radius: .25rem;
  padding: .5rem 1.5rem;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
  transform: translateY(-4px)scale(1.02);
  box-shadow: 0 10px 30px #ff4d0099;
}

.button-primary:active {
  background-color: #43464d;
}

.button-primary.secondary {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #ffffff0d;
  background-image: none;
}

.button-primary.secondary:hover {
  box-shadow: none;
  background-color: #ffffff1a;
}

.button-primary.bigger {
  border-radius: .5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 1.75rem;
}

.button-primary.bigger.secondary {
  font-size: 1rem;
}

.body {
  color: #fff;
  max-width: 100vw;
  font-family: Inter Variablefont Opsz Wght, Arial, sans-serif;
  overflow: visible;
}

.section_parallax {
  width: 100vw;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* min-height statt fester Höhe - Inhalt (inkl. Video) bestimmt die Höhe */
.parallax_component {
  width: 100vw;
  position: relative;
  min-height: 100svh;
}

.parallax_layer {
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

/* is-bg - mit 50rem Überstand nach oben, damit translateY(44rem)
   vom Parallax-JS die Oberkante nie freilegt */
.parallax_layer.is-bg {
  object-fit: cover;
  position: absolute;
  top: -50rem;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% + 50rem);
}

.parallax_layer.is-2,
.parallax_layer.is-3 {
  object-fit: cover;
  height: 100svh;
}

.section {
  color: #fff;
  background-color: #0f0f0f;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.section.dark {
  background-color: #0c0a09;
}

.section.orange {
  background-color: #290e00;
}

.div-block {
  background-color: #0009;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100svh;
  padding-top: 40px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
  z-index: 1;
}

.container-3 {
  flex-flow: column;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: static;
  top: 0;
}

.txt-light-orange {
  color: #fed7aa;
  letter-spacing: .4em;
  font-size: 11px;
}

.italic-text {
  color: #fed7aa99;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.italic-text-2 {
  color: #9ca3af;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

/* Ort/Datum: Glas-Karte unter dem Video - deutlicher lesbar als die Unterzeile */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 24px;
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 16px;
  padding: .85rem 1.5rem;
  border-radius: 1.25rem;
  background: #ffffff0d;
  border: 1px solid #ffffff1f;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-meta-item .icon {
  width: 22px;
  height: 22px;
  flex: none;
}

.hero-meta-item .txt-light-orange {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: .02em;
}

.hero-meta-divider {
  width: 1px;
  height: 22px;
  background: #ffffff30;
  flex: none;
}

@media screen and (max-width: 359px) {
  .hero-meta-divider {
    display: none;
  }
}

.icon {
  color: #fed7aa99;
  width: 25px;
  height: 25px;
  flex: none;
}

.icon.highlights {
  color: #f97316;
  width: 15px;
  font-size: 10px;
}

.bold-text {
  color: #fed7aa99;
  text-transform: uppercase;
}

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

.text-block.outline-orange {
  color: #f97316bf;
  letter-spacing: .5em;
  -webkit-text-stroke-color: #f97316bf;
  text-transform: uppercase;
  border: 1px solid #f97316;
  border-radius: 9999px;
  margin-top: 40px;
  padding: .25rem 1rem;
  font-size: 11px;
}

.image {
  width: 400px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.paragraph {
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.path {
  color: #fed7aa99;
}

.banner-stats {
  background-color: #0c0a09;
}

.features-metrics {
  -webkit-text-stroke-color: black;
  background-color: #0000;
  border-bottom: 1px #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

.container-4 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.features-block {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.features-title {
  margin-bottom: 8px;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 2.5rem;
}

.sub {
  color: #f97316;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 10px;
}

.text-span {
  color: #ff4d00;
  text-shadow: 0 0 20px #ff4d0080;
}

.sub-head {
  color: #6b7280;
  text-align: center;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .75rem;
}

.sub-head.bigger {
  max-width: 800px;
  margin-top: 20px;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.sub-head.left {
  text-align: left;
}

.highlights {
  grid-column-gap: 41px;
  grid-row-gap: 41px;
  justify-content: space-between;
  display: flex;
}

/* Zusätzlicher CTA am Ende der Highlights - nur am Handy, wo die Karten
   untereinander stehen und man nicht zwangsläufig zurück zur Hero-Section scrollt. */
.highlights-mobile-cta {
  display: none;
}

@media screen and (max-width: 767px) {
  .highlights-mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
}

.highlights.card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #1e140fcc;
  border: 2px solid #ff4d0026;
  border-radius: 1.5rem;
  flex: 1 1 0%;
  min-width: 0;
  flex-flow: column;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.highlights.card:hover {
  color: var(--main-orange);
  background-color: #2d1e14e6;
  border-color: #ff4d00b0;
}

.highlights.card.inner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
}

.card-content.highlights {
  flex-flow: column;
  padding: 2rem;
}

.card-content.highlights.inner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
}

.card-description.highlights {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.link.highlights {
  color: #f97316;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.link-flex {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
}

.card-image.highlights {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card-img-wrapper {
  max-width: 100%;
  max-height: 250px;
  height: 250px;
  overflow: hidden;
}

.highlights-tipp {
  background-color: var(--main-orange);
  border-radius: 9999px;
  padding-left: 5px;
  padding-right: 5px;
  position: absolute;
  top: 10px;
  left: 10px;
  overflow: hidden;
}

.highlights-tipp.text {
  color: #fff;
  font-size: 10px;
  position: static;
}

.header-actions {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-2 {
  margin-bottom: 40px;
}

.card-left {
  width: 50%;
  margin-left: 0;
  margin-right: 0;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-left img {

  border-radius: 1.5rem;
}

.card-right {
  width: 50%;
}

.image-2 {
  border-radius: 1.5rem;
  width: 100%;
}

.div-block-4 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  display: flex;
}

.text-span-2 {
  color: #57534e;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.text-lg.text-gray {
  color: #9ca3af;
  margin-bottom: 40px;
}

.heading-3 {
  margin-bottom: 40px;
}

.grey-card-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

.grey-card {
  background-color: #ffffff0d;
  border-radius: 1rem;
  width: 50%;
  padding: 1.5rem;
}

.grey-card-wrapper-inner {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #1e140fcc;
  border: 2px solid #ff4d0026;
  border-radius: 1.5rem;
  width: 50%;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1),
              border-color .45s cubic-bezier(.22, 1, .36, 1),
              box-shadow .45s cubic-bezier(.22, 1, .36, 1),
              background-color .45s cubic-bezier(.22, 1, .36, 1);
}

.grey-card-wrapper-inner:hover {
  background-color: #2d1e14e6;
  border-color: #ff4d00b0;
  box-shadow: 0 12px 48px -12px #f9731633, 0 4px 16px 0 #0006;
  transform: translateY(-6px);
}

.grey-card-wrapper-inner .grey-card {
  background-color: #0000;
  width: 100%;
  padding: 0;
  width: 100%;
  height: 100%;
}
.grey-card-wrapper-inner .grey-card .content-wrapper{
  padding: 1.5rem;
}
.grey-card-text {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
}

.p-grey-card {
  color: #6b7280;
  font-size: .75rem;
  line-height: 1rem;
}

.centered {
  text-align: center;
  font-style: normal;
}

.centered.bigger {
  flex-flow: column;
  font-size: 5rem;
  display: flex;
}

.tickets {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  display: flex;
}

.ticket {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border: 2px solid #f97317;
  border-radius: 1.5rem;
  flex-flow: column;
  padding: 2.5rem;
  display: flex;
}

.ticket-list-entry {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ticket-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
}

.ticket-list-icon {
  width: 20px;
  color: var(--main-orange);
}

.paragraph-4 {
  margin-bottom: 0;
  line-height: 100%;
}

.ticket-head {
  text-align: center;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: .5rem;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-block-6 {
  text-align: center;
  text-transform: uppercase;
  background-color: #ff4d00;
  border-radius: 900px;
  padding: 5px 20px;
  font-size: 11px;
  font-weight: 700;
}

.text-block-7 {
  color: #fb923c;
  text-align: center;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.paragraph-5 {
  text-align: center;
  letter-spacing: -.05em;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 3.75rem;
}

.price-block {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.price-old {
  color: #6b7280;
  text-align: center;
  letter-spacing: -.05em;
  text-decoration: line-through;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2rem;
  margin-bottom: .25rem;
}

.price-code {
  color: #6b7280;
  text-align: center;
  margin-top: .5rem;
  font-size: .875rem;
}

.price-code-tag {
  color: #fb923c;
  letter-spacing: .05em;
  font-weight: 700;
}

.div-block-5 {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.paragraph-6 {
  color: #6b7280;
  text-align: center;
  text-transform: uppercase;
  font-size: 9px;
}

.italic-text-3 {
  font-style: normal;
}

.faq {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  margin-top: 60px;
  display: flex;
}

.faq-entry {
  background-color: #0003;
  border: 1px solid #ffffff1a;
  border-radius: 1rem;
  flex-flow: column;
  padding: 1.5rem;
  display: flex;
  overflow: visible;
}

.faq-head {
  border-bottom: 1px solid #b1b1b1;
  flex-flow: column;
  display: flex;
}

.faq-body {
  width: auto;
  height: auto;
  overflow: hidden;
}

.paragraph-7 {
  color: #979daa;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 0;
  line-height: 1.625;
}

.faq-title {
  margin-top: 0;
  font-family: Inter Variablefont Opsz Wght, Arial, sans-serif;
  font-size: 2rem;
}

.bold-text-3 {
  font-size: 1.2rem;
}

.footer-dark {
  background-color: #000;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

.container-5 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  gap: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1.75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #9ca3af;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #f97316;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-copyright-center {
  color: #6b7280;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  line-height: 16px;
}

.footer-copyright-center.smaller {
  font-size: 10px;
}

.top-nav {
  background-color: #ea580c;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12px;
}

.nav-inner {
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.div-block-6 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.image-3 {
  width: auto;
  height: 80px;
}

.image-4 {
  width: 120px;
}

@media screen and (max-width: 991px) {
  .navbar-logo-left {
    z-index: 999;
    aspect-ratio: auto;
    object-fit: fill;
    position: sticky;
    top: 0;
  }

  .container {
    max-width: 728px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: #0f0f0f;
    border: 1px solid #ffffff1a;
    border-radius: 1rem;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 16px;
    display: flex;
    box-shadow: 0 12px 40px #000000a6, 0 0 0 1px #ff4d0026;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-link:hover,
  .nav-link[aria-current="page"] {
    color: #f97316;
  }

  .menu-button {
    padding: 12px;
    color: #fff;
    border-radius: .5rem;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #f97316;
  }

  .body {
    overflow-x: hidden;
  }

  .section_parallax,
  .parallax_component {
    min-height: 100svh;
    height: auto;
  }

  .parallax_layer.is-bg {
    position: absolute;
  }

  .container-4 {
    max-width: 728px;
  }

  .features-wrapper {
    justify-content: space-between;
  }

  .highlights {
    flex-flow: column;
  }

  .highlights.card.inner {
    max-width: 100%;
  }

  .card-image.highlights {
    object-position: center center;
  }

  .card-left {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .card-right {
    width: 100%;
  }

  .div-block-4 {
    flex-flow: column;
  }

  .container-5 {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }
}

@media screen and (max-width: 767px) {
  /* Orange Info-Leiste am Handy ausblenden - schafft Platz, damit beide
     Hero-Buttons ohne Scrollen sichtbar sind. */
  .top-nav {
    display: none;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .div-block {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .container-3 {
    height: 100%;
  }

  .image {
    width: 300px;
  }

  .features-metrics {
    padding: 60px 15px;
  }

  .features-wrapper {
    flex-wrap: wrap;
    margin-bottom: -40px;
  }

  .features-block {
    width: 50%;
    margin-bottom: 40px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #f97316;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-brand {
    width: 100%;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .section_parallax {
    width: 100%;
    min-height: 100svh;
    height: auto;
  }

  .parallax_layer.is-bg,
  .parallax_layer.is-2 {
    object-fit: cover;
  }

  .parallax_layer.is-3 {
    vertical-align: baseline;
    object-fit: cover;
  }

  .section.light,
  .section.dark {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block {
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .container-3 {
    justify-content: center;
    margin-top: 0;
  }

  .txt-light-orange {
    text-align: center;
  }

  .italic-text {
    display: block;
  }

  .paragraph {
    margin-bottom: 12px;
  }

  .italic-text-2 {
    text-align: center;
    width: 100%;
    font-size: 1rem;
    line-height: 1.4rem;
    display: block;
  }

  .text-block.outline-orange {
    display: none;
  }

  /* Kompaktere Meta-Karte auf sehr kleinen Screens, damit für die Video-Karte
     noch genug Höhe bleibt - Schrift bleibt dabei größer als die Unterzeile. */
  .hero-meta {
    padding: .6rem 1rem;
    gap: 6px 14px;
  }

  .hero-meta-item .icon {
    width: 18px;
    height: 18px;
  }

  .hero-meta-item .txt-light-orange {
    font-size: 1.0625rem;
  }

  .image {
    width: 250px;
  }

  .container-4 {
    max-width: none;
  }

  .features-wrapper {
    flex-flow: column;
  }

  .text-span {
    font-size: 2.5rem;
    line-height: 100%;
  }

  .sub-head.bigger {
    font-size: 1rem;
  }

  /* Nebeneinander statt gestapelt - damit beide CTAs in der Hero ohne
     Scrollen sichtbar bleiben (weniger Höhe als zwei Reihen). */
  .header-actions {
    flex-flow: row wrap;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .header-actions .button-primary.bigger {
    padding: .7rem .85rem;
    font-size: .7rem;
    letter-spacing: normal;
    white-space: nowrap;
  }

  .card-left {
    width: 100%;
  }

  .text-lg.text-gray {
    font-size: 1rem;
  }

  .heading-3 {
    font-size: 2rem;
  }

  .centered {
    font-size: 2.5rem;
  }

  .italic-text-3 {
    font-size: 2.5rem;
    line-height: 100%;
  }

  .container-5 {
    max-width: none;
  }

  .footer-link:hover {
    color: #f97316;
  }

  .image-3 {
    width: 100%;
    max-width: 80%;
    height: auto;
  }

  .heading-4 {
    font-size: 2.5rem;
  }
}

.footer-content>.footer-block {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

/* ===== Smooth-Scroll (Lenis) & Parallax - global ===== */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.section_parallax,
.parallax_component,
.parallax_layer,
.is-bg,
.is-2,
.is-3 {
  touch-action: pan-y !important;
  pointer-events: none;
}

.div-block {
  pointer-events: auto;
}

/* ===== Barrierefreiheit ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: #f97316;
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 8px;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

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

a:focus-visible,
button:focus-visible,
.w-button:focus-visible,
.menu-button:focus-visible,
.footer-social-link:focus-visible {
  outline: 3px solid #fdba74;
  outline-offset: 2px;
  border-radius: 4px;
}

.impressum h2 {
  font-size: 1.5rem;
}

/* ===== A11y: Lesbarkeit der Hero-Texte über dem Bildhintergrund (WCAG 1.4.3) ===== */
.section_parallax .text-block.outline-orange {
  color: #ffedd5;
  -webkit-text-stroke-color: #ffedd5;
  background-color: #1c0a00b3;
  text-shadow: 0 1px 3px #000c;
}

.section_parallax .bold-text.light-orange,
.section_parallax .txt-light-orange {
  color: #ffedd5;
  text-shadow: 0 1px 3px #000c;
}

.section_parallax .icon {
  color: #fed7aa;
  filter: drop-shadow(0 1px 2px #000c);
}

.section_parallax .italic-text-2 {
  color: #e5e7eb;
  text-shadow: 0 1px 3px #000c;
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Subseiten-Kopf ===== */
.page-head {
  text-align: center;
  margin-bottom: 60px;
}

.page-head .sub-head {
  margin-bottom: 0;
}

/* ===== FAQ-Gruppen & Accordion (native <details>) ===== */
.faq-group {
  margin-bottom: 56px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 24px;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.1;
}

.faq-group-title::before {
  content: "";
  width: 6px;
  height: 1.6rem;
  background: var(--main-orange);
  border-radius: 9999px;
  flex: none;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #0003;
  border: 1px solid #ffffff1a;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color .3s, background-color .3s;
}

.faq-item[open] {
  border-color: #ff4d00b0;
  background: #1e140fcc;
}

.faq-item>summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  color: #fff;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
}

.faq-item>summary::-webkit-details-marker {
  display: none;
}

.faq-item>summary:hover {
  color: var(--main-orange);
}

.faq-item>summary::after {
  content: "+";
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background: var(--main-orange);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .3s;
}

.faq-item[open]>summary::after {
  content: "\2013";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #9ca3af;
  line-height: 1.625;
}

.faq-answer p {
  margin-top: 0;
  margin-bottom: .75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ol,
.faq-answer ul {
  margin: 0 0 .75rem;
  padding-left: 1.25rem;
}

.faq-answer li {
  margin-bottom: .35rem;
}

.faq-answer a {
  color: var(--main-orange);
  font-weight: 700;
}

.faq-answer .accent {
  color: var(--main-orange);
  font-weight: 700;
}

/* Sprungziele nicht unter der sticky Navbar verstecken (gilt auch fürs
   Anspringen per ?goto=... - siehe footer.php) */
#faq-exceptions,
#tickets,
#highlights {
  scroll-margin-top: 140px;
}

/* ===== Safety First ===== */
.safety-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 1.5rem;
  margin-top: 20px;
  object-position: left;
}

.safety-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 24px;
  padding: .35rem 1.1rem;
  border: 1px solid #f97316;
  border-radius: 9999px;
  color: #f97316bf;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
}

.safety-note {
  display: flex;
  gap: 1rem;
  background: #ffffff0d;
  border-left: 4px solid var(--main-orange);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 40px 0;
}

.safety-note .grey-card-text {
  margin-bottom: .25rem;
}

.safety-rules {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}

.safety-rules li {
  position: relative;
  padding-left: 2rem;
  color: #9ca3af;
  line-height: 1.55;
}

.safety-rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15rem;
  width: 1.2rem;
  height: 1.2rem;
  background: var(--main-orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.78 2.2 24 6.42 8.44 22 0 13.55l4.22-4.22 4.22 4.22z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.78 2.2 24 6.42 8.44 22 0 13.55l4.22-4.22 4.22 4.22z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.safety-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 40px;
}

.safety-area-card {
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 1rem;
  padding: 1.5rem;
}

.safety-area-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.safety-area-card .safety-rules li {
  font-size: .9rem;
}

@media screen and (max-width: 767px) {
  .safety-areas {
    grid-template-columns: 1fr;
  }
}

/* ===== Safety First - Intro (zweispaltig) ===== */
.safety-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.safety-intro .safety-intro-text {
  display: flex;
  flex-direction: column;
}

.safety-intro h2 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.safety-intro .safety-hero-img {
  margin-top: 0;
  max-height: none;
  aspect-ratio: 3 / 2;
}

@media screen and (max-width: 767px) {
  .safety-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .safety-intro h2 {
    font-size: 2rem;
  }
}

/* ===== Safety First - Sockenpflicht-Hinweis ===== */
.safety-note {
  align-items: flex-start;
}

.safety-note-icon {
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background: var(--main-orange);
  color: #fff;
}

.safety-note-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ===== Safety First - Regeln zweispaltig ===== */
.safety-rules.cols-2 {
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5rem;
}

@media screen and (max-width: 767px) {
  .safety-rules.cols-2 {
    grid-template-columns: 1fr;
  }
}

/* ===== Safety First - Bereich-Karten ===== */
.safety-area-card {
  transition: border-color .3s, transform .3s;
}

.safety-area-card:hover {
  border-color: #ff4d00b0;
  transform: translateY(-4px);
}

.safety-area-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  color: var(--main-orange);
}

.safety-area-icon svg {
  width: 100%;
  height: 100%;
}

/* ============================================================
   Responsive-Korrekturen (Hoch- & Querformat, Phone/Tablet)
   ============================================================ */

/* ---- Hero: Inhalt nie abschneiden ----
   Auf Tablet/Phone und bei kurzen Viewports (Querformat) wird der
   Hero vom absoluten Overlay auf relativen Fluss umgestellt, damit
   er mit dem Inhalt wächst statt ihn zu klippen. */

.parallax_layer.is-bg,
.parallax_layer.is-2,
.parallax_layer.is-3 {
  position: absolute;
  top: 0;
  height: 100%;
}

@media screen and (max-width: 991px),
screen and (max-height: 760px) {

  .section_parallax,
  .parallax_component {
    height: auto;
    min-height: 100svh;
  }

  .parallax_layer.is-bg,
  .parallax_layer.is-2,
  .parallax_layer.is-3 {
    position: absolute;
    top: 0;
    height: 100%;
  }

  .div-block {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 100svh;
    overflow: visible;
    padding-top: 20px;
    padding-bottom: 48px;
  }

  .container-3 {
    height: auto;
  }
}

/* Handy: Hero passt garantiert in den ersten Bildschirm - die Video-Karte ist
   das einzige Element, das bei wenig Platz schrumpft (flex-shrink), Text und
   Buttons bleiben in fester Größe. So sind die CTAs immer sofort sichtbar,
   ohne dass Werte pro Gerät von Hand austariert werden müssen. */
@media screen and (max-width: 767px) {
  .div-block {
    height: calc(100svh - var(--navbar-h, 84px));
    min-height: 0;
    overflow: hidden;
  }

  .container-3 {
    height: 100%;
    justify-content: center;
    gap: 14px;
  }

  .text-block.outline-orange,
  .paragraph,
  .header-actions {
    margin-top: 0;
    margin-bottom: 0;
    flex: none;
  }

  .hero-meta {
    flex: none;
  }
}

/* Querformat-Phones: kompaktere Hero-Elemente, CTAs nebeneinander */
@media (max-height: 480px) {
  .div-block {
    padding-top: 80px;
  }

  .image {
    width: 180px;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .text-block.outline-orange {
    margin-top: 16px;
  }

  .header-actions {
    flex-flow: row;
  }
}

/* ---- Inhaltssektionen: Seitenabstand auf Mobil sicherstellen ----
   Auf <=479px setzt .container sein Padding auf 0; Sektionen brauchen
   dann eigenes horizontales Padding, damit Text nicht am Rand klebt. */
@media screen and (max-width: 479px) {

  .section,
  .section.orange,
  .banner-stats {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ---- Kein horizontaler Overflow durch lange Wörter/URLs ----
   (v. a. Rechtstexte in Datenschutz/Impressum). */
.w-embed,
.faq-answer,
.faq-body,
.paragraph-7,
.p-grey-card,
.text-lg {
  overflow-wrap: break-word;
  word-break: break-word;
}

.w-embed a,
.faq-answer a {
  overflow-wrap: anywhere;
}

/* ============================================================
   Hero-Video-Card (mittig im Parallax-Hero)
   ============================================================ */
/* Desktop & Tablet: 16:9 */
.hero-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin-top: 32px;
  margin-bottom: 32px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px #000000b3, 0 0 0 1px #ff4d0040;
  background: #000;
  flex-shrink: 0;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Steuerleiste unten rechts auf der Video-Card */
.hero-video-controls {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  z-index: 2;
  display: flex;
  gap: .5rem;
}

.hero-video-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #000000a0;
  border: 1px solid #ffffff33;
  color: #fff;
  cursor: pointer;
  transition: background .2s, transform .15s;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-video-btn:hover {
  background: #f97316cc;
  transform: scale(1.08);
}

.hero-video-btn:focus-visible {
  outline: 3px solid #fdba74;
  outline-offset: 2px;
}

.hero-video-btn svg {
  width: 1.05rem;
  height: 1.05rem;
  pointer-events: none;
}

/* Handy: unbeschnitten zeigen (Quellformat = 1:1). Die Karte ist ein
   schrumpfbares Flex-Kind (siehe weiter unten) - dadurch passt sich ihre
   Größe automatisch der verfügbaren Höhe an, ohne die Buttons zu verdrängen. */
@media screen and (max-width: 767px) {
  .hero-video-card {
    aspect-ratio: 1 / 1;
    width: auto;
    max-width: min(100%, 340px);
    margin-top: 0;
    margin-bottom: 0;
    flex: 1 1 auto;
    min-height: 110px;
    max-height: 42vh;
  }
}

@media screen and (max-width: 479px) {
  .hero-video-btn {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* ---- Keypoints-Row (Ausgrabung + Hindernisbahn) ------------------------ */
.kp-row {
  margin-top: 2.5rem;
  align-items: stretch;
}

.kp-card {
  width: 50%;
}

.kp-card img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.grey-card-wrapper-inner .grey-card-image{
  
  max-height: 250px;
  height: 250px;
  object-fit: cover;
}

.kp-card .features-title {
  color: var(--main-orange);
  margin-bottom: .5rem;
  font-size: 2.25rem;
  line-height: 1;
}

.kp-body {
  margin-top: .75rem;
  font-size: .875rem;
  line-height: 1.65;
}

@media screen and (max-width: 991px) {
  .kp-card {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .kp-row {
    flex-direction: column;
    gap: 1.25rem;
  }

  .kp-card {
    width: 100%;
  }

  .kp-card .features-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 479px) {
  .kp-row {
    margin-top: 1.75rem;
  }

  .kp-card .features-title {
    font-size: 1.75rem;
  }

  .kp-body {
    font-size: .8125rem;
  }
}

/* Scroll-Reveal (Slide-up beim Einscrollen) */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: none;
}

/* Per-card stagger inside a reveal-up container */
.kp-card-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal-up.is-visible .kp-card-anim {
  opacity: 1;
  transform: none;
}

.reveal-up.is-visible .kp-card-anim:nth-child(2) {
  transition-delay: .18s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .kp-card-anim {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Datenschutz-Hinweis-Overlay (Vollbild-Modal) ------------------------- */
/* IDs/Klassen bewusst nicht "cookie"/"consent" benannt - siehe includes/cookie-consent.php */
#dew-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000000d9;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .45s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}

#dew-modal-overlay.dew-modal-visible {
  opacity: 1;
  pointer-events: auto;
}

#dew-modal {
  background: #0c0a09;
  border: 1px solid #f9731640;
  border-radius: .75rem;
  padding: 2rem 2rem 1.75rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 8px 64px #000c, 0 0 0 1px #f9731614;
}

#dew-modal .dew-modal-text {
  font-family: 'Inter Variablefont Opsz Wght', Arial, sans-serif;
  font-size: .9rem;
  color: #e5e5e5;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

#dew-modal .dew-modal-text p {
  margin: 0;
}

#dew-modal .dew-modal-title {
  font-family: 'Oswald Variablefont Wght', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--main-orange);
  margin-bottom: .6rem;
  letter-spacing: .05em;
}

#dew-modal a {
  color: var(--main-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#dew-modal a:hover {
  color: #fb923c;
}

.dew-modal-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 479px) {
  #dew-modal {
    padding: 1.25rem 1.25rem 1rem;
  }

  .dew-modal-actions {
    flex-direction: column;
  }

  .dew-modal-actions .button-primary {
    width: 100%;
    text-align: center;
    padding: .75rem 1rem;
  }
}

/* ---- GreenScreen Foto-Aktion ------------------------------------------ */
.div-block-4.gs-flip {
  flex-direction: row-reverse;
}

.gs-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gs-eyebrow {
  margin-top: 0;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.gs-cards {
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

.gs-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.gs-feature-list li {
  color: #9ca3af;
  font-size: .875rem;
  padding-left: 1.5rem;
  position: relative;
}

.gs-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--main-orange);
  font-weight: 700;
}

.gs-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GreenScreen Preview Visual */
.gs-preview {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #020b02 0%, #061206 55%, #020b02 100%);
  border: 1px solid #00cc4428;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, #00cc4412 0%, transparent 65%);
}

.gs-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #00cc4488;
  border-style: solid;
  border-width: 0;
}

.gs-corner.tl { top: 1.25rem; left: 1.25rem; border-top-width: 2px; border-left-width: 2px; border-radius: 3px 0 0 0; }
.gs-corner.tr { top: 1.25rem; right: 1.25rem; border-top-width: 2px; border-right-width: 2px; border-radius: 0 3px 0 0; }
.gs-corner.bl { bottom: 1.25rem; left: 1.25rem; border-bottom-width: 2px; border-left-width: 2px; border-radius: 0 0 0 3px; }
.gs-corner.br { bottom: 1.25rem; right: 1.25rem; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 3px 0; }

.gs-badge {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: #00cc441a;
  border: 1px solid #00cc4455;
  color: #00cc44bb;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  font-size: .5625rem;
  letter-spacing: .35em;
  padding: .2rem .875rem;
  border-radius: 9999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.gs-inner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.gs-camera-icon {
  color: #00cc4455;
}

.gs-label {
  color: #ffffff28;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  font-size: .625rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin: 0;
}

.gs-sublabel {
  color: #00cc4466;
  font-size: .5625rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0;
}

.gs-glow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #00cc441a 0%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .div-block-4.gs-flip {
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  .gs-eyebrow {
    font-size: 9px;
  }
}