/* =====================
   01 BASE
===================== */

html {
    font-size: 16px;
}

html,
body {
    margin: 0;
}

body {
    font-family: "Dosis", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    font-size: 16px;
}

main {
    flex: 1;
}

/* =====================
   02 TYPOGRAPHY
===================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Dosis", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
}

ul,
ol,
li,
p {
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    line-height: 1.65;
}

ol li::marker {
    font-weight: 400;
}

ol li>p {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* =====================
   03 LAYOUT
===================== */
.sv-narrow{
    max-width: 700px;
}

.light {
    background-color: #f8f9fa;
}

.sv-section {
    padding: 4rem 0;
}

.sv-section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 4rem;
    font-weight: 400;
}

main > .sv-section:nth-of-type(2) .sv-section-title {
    margin-bottom: 0;
}

.sv-section-description {
    font-weight: 400;
    margin: 1rem auto 3rem auto;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    text-align: center;
}

.sv-site-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #000000;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    font-optical-sizing: auto;
    margin-top: 3rem;
    margin-bottom: 0;
}

.sv-site-description {
    font-weight: 400;
    margin: 2rem auto 3rem auto;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    text-align: center;
}

.sv-site-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    text-align: center;
    padding-bottom: 4rem;
    margin: 0;
    line-height: 1.3;
    color: #000;
    font-optical-sizing: auto;
}

.container>ol>li {
    margin-bottom: 1.5rem;
}

.row.sv-link-row img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.satzung ul li::marker {
    color: black;
}

.vorstand .sv-card img {
    object-position: right !important;
    aspect-ratio: 1 / 1;
}

.impressum p+ul {
    margin-top: -1rem;
}

.satzung ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.offiziere .sv-gallery-title {
    margin-top: 0;
}

.ueber-uns .sv-site-description
{
    margin-top: 0;
}

.majestäten .sv-card img{
    aspect-ratio: 3 / 4 ;
}

.portrait{
    aspect-ratio: 3 / 4;
}

.landscape{
    aspect-ratio: 4 / 3;
}
/* =====================
   04 IMAGES
===================== */

.sv-zoom-img {
    transition: transform 0.25s ease-out;
}

.sv-zoom-img:hover {
    transform: scale(1.03);
}

/* =====================
   05 HEADER / NAVIGATION
===================== */

.sv-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 0;
    z-index: 3000;
    height: 90px;
    background: #006600;
}

.sv-header .container,
.sv-header .row {
    height: 100%;
}

.sv-header .row {
    flex-wrap: nowrap;
}

.sv-logo img {
    height: 80px;
    width: auto;
}

.sv-page-title {
    color: white;
    font-family: Georgia, serif;
    letter-spacing: 2px;
    line-height: 1.4;
    padding-left: 0px;
}

.sv-page-title-line1 {
    font-size: 2.1875rem;
}

.sv-page-title-line2 {
    font-size: 2.1875rem;
    margin-top: -3px;
}

.sv-burger {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    padding: 5px 10px;
}

/* ---------------------
   DESKTOP NAV
--------------------- */

.sv-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 0;
    margin: 0;
    padding: 0;
}

.sv-nav a {
    color: white;
    text-decoration: none;
    padding: 8px 10px;
    display: block;
    font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.sv-nav a:hover {
    background: #004d00;
}

.sv-nav .sv-nav-has-sub {
    position: relative;
}

.sv-nav .sv-nav-has-sub:hover .sv-nav-sub {
    display: block;
}

.sv-nav .sv-nav-sub {
    display: none;
    position: absolute;
    background: #006600;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
    min-width: 180px;
    border-radius: 0 0 4px 4px;
}

.sv-nav .sv-nav-sub li a {
    text-align: left;
    display: block;
    width: 100%;
    height: 40px;
    padding: 10px 15px;
    line-height: 20px;
    white-space: nowrap;
    border-bottom: 1px solid #003800;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    ;
}

.sv-nav .sv-nav-sub li:last-child a {
    border-bottom: none;
}

/* ---------------------
   MOBILE NAV
--------------------- */

.sv-nav-mobile {
    position: fixed;
    top: 90px;
    right: 0;
    width: 100%;
    overflow-y: auto;
    background: #006600;
    z-index: 9500;
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0s linear 0.5s;
}

.sv-nav-mobile.open {
    visibility: visible;
    opacity: 1;
    height: calc(100vh - 90px);
    padding: 0px;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.sv-nav-mobile ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 60%;
}

.sv-nav-mobile a {
    display: flex;
    align-items: center;
    color: white;
    height: 50px;
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0 15px;
}

.sv-nav-mobile ul li>a {
    border-top: 1px solid transparent;
    font-size: 1.25rem;
    transition: border-color 0.25s ease;
}

.sv-nav-mobile.open ul li>a {
    border-color: #004d00;
    transition-delay: 0.15s;
}

.sv-nav-mobile>ul>li>a {
    display: flex;
    align-items: center;
    color: white;
    height: 50px;
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0 15px;
}

/* ---------------------
   MOBILE SUBMENU
--------------------- */

.sv-nav-mobile .sv-nav-mobile-has-sub {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

.sv-nav-mobile .sv-nav-mobile-has-sub.open {
    background: #004d00;
}

.sv-nav-mobile .sv-nav-mobile-sub {
    background: #006600;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.sv-nav-mobile .sv-nav-mobile-sub-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    border-top: 1px solid #004d00;
}

.sv-nav-mobile .sv-nav-mobile-sub-header>a {
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
}

.sv-nav-mobile .sv-nav-mobile-submenu-toggle {
    height: 50px;
    background: none;
    border: none;
    font-size: 16px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    -webkit-text-fill-color: #fff !important;
    flex-shrink: 0;
    padding: 0 15px;
    width: auto;
    box-sizing: content-box;
}

.sv-nav-mobile .sv-nav-mobile-sub>li {
    border-top: none;
    padding-left: 25px;
}

.sv-nav-mobile .sv-nav-mobile-sub>li:first-child>a {
    border-top: none;
}

.sv-nav-mobile .sv-nav-mobile-sub>li>a {
    padding-left: 5px;
}

/* =====================
   06 FOOTER
===================== */

footer {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    background-color: #006600;
    padding: 1rem 0;
}

.sv-footer-top {
    text-align: center;
    font-family: "Georgia", serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #ffffff;
}

.sv-footer-line {
    border: 0;
    border-top: 1.5px solid #004d00;
    margin: 1rem 0;
}

.sv-footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: inline-flex;
}

.sv-footer-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 4px 8px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.sv-footer-nav a:hover {
    background-color: #004d00;
    color: #ffffff;
}

.sv-footer-bottom a,
.sv-footer-bottom {
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
}

/* =====================
   07 MEDIA QUERIES
===================== */
@media (max-width: 1199.98px) {

    .sv-page-title-line1,
    .sv-page-title-line2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 991.98px) {

    .sv-section {
        padding: 2rem 0;
    }

    .sv-section-title {
        margin-bottom: 2rem;
    }
    
    .sv-section-description {
        margin: 0.5rem auto 1.5rem auto;
    }

    .sv-site-title {
        margin-top: 2rem;
    }

    .sv-site-description {
        margin: 1.5rem auto 1.5rem auto;
    }

    .sv-site-subtitle {
        padding-bottom: 2rem;
    }

    .sv-footer-top p {
        font-size: 1rem;
    }

    .sv-footer-copy {
    margin-top: 1rem;
}
}

@media (max-width: 575.98px) {

    .sv-nav-mobile .sv-nav-mobile-submenu-toggle {
        font-size: 12px;
    }

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* =====================
   01 COMPONENTS
===================== */

/* ---------------------
   HERO
--------------------- */

.sv-hero {
    position: relative;
    height: 45vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
}

.sv-hero--small {
    height: 32vh;
    min-height: 260px;
    padding-bottom: 0;
}

.sv-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sv-hero-img-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sv-hero-static,
.sv-hero-swiper {
    position: absolute;
    inset: 0;
}

.sv-hero-static {
    z-index: 1;
    opacity: 1;
}

.sv-hero-static.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.sv-hero-swiper {
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

.sv-hero-swiper.is-ready {
    opacity: 1;
    pointer-events: auto;
}

.sv-hero-swiper,
.sv-hero-swiper .swiper-wrapper,
.sv-hero-swiper .swiper-slide {
    height: 100%;
}

.sv-hero .swiper-slide img:hover {
    transform: none;
}

.sv-hero-overlay {
    max-width: 70%;
    position: absolute;
    text-align: center;
    color: #fff;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 0 2px rgba(0, 0, 0, 0.4);
    z-index: 30;
}

.sv-hero-overlay h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.sv-hero-overlay p {
    font-weight: 400;
    font-size: clamp(1.125rem, 1.6vw, 1.35rem);
    margin-bottom: 0.5rem;
}

.sv-hero .sv-button {
    margin: 0.5rem 0.5rem 0 0.5rem;
    min-width: 170px;
    text-shadow: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.sv-hero .sv-button:last-child {
    background: #fff;
    color: #006600 !important;
}

.sv-hero .sv-button:last-child:hover {
    background: #f8f9fa;
    color: #004d00;
}

.sv-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
    pointer-events: none;
}

/* ---------------------
   Media
--------------------- */

.sv-event {
    max-width: 560px;
    margin: 0 auto;
    padding: 36px;
    text-align: center;
    position: relative;
}

.sv-event::before,
.sv-event::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 420px;
    height: 1.5px;
    background: #006600;
    margin: 0 auto;
    border-radius: 999px;
}

.sv-event::before {
    margin-bottom: 20px;
}

.sv-event::after {
    margin-top: 20px;
}

.sv-event-label {
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #006600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sv-event-title {
    margin: 0 0 14px;
    font-size: clamp(1.45rem, 1.9vw, 1.7rem);
    font-weight: 400;
    line-height: 1.25;
    color: #111;
}

.sv-event-date,
.sv-event-time,
.sv-event-location {
    margin: 0;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    line-height: 1.6;
}

.sv-event-time,
.sv-event-location {
    margin-top: 0.15rem;
}

.sv-event-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.sv-event-status-dot {
    color: #00C853;
    font-size: 12px;
    line-height: 1;
    display: inline-block;
}

/* ---------------------
   Media
--------------------- */

/*.sv-media {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.sv-media-body {
    max-width: 240px;
    width: 100%;
}

.sv-media-title {
    margin-bottom: 20px;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.sv-media-subtitle {
    margin-bottom: 2px;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    font-weight: bold;
}

.sv-media-text {
    margin-bottom: 2px;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
}

.sv-media-img {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}*/

.sv-media {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
}

.sv-media img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.sv-media-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 80px;
    background: rgba(0, 102, 0, 0.85);
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertikal mittig */
    align-items: flex-start;
    /* linksbündig */
    padding: 0 14px;
    /* nur seitliches Padding */
}

.sv-media-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.sv-media-sub {
    opacity: .95;
    font-size: .95rem;
    margin: 0;
}

/* ---------------------
   Content
--------------------- */

.sv-content {
    font-size: 1.25rem;
    margin: 0 auto;
}

.sv-content-title {
    margin-bottom: 20px;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.sv-content-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    text-align: center;
    padding: 0.5rem 0 2rem 0;
    margin: 0;
    line-height: 1.3;
    color: #000;
    font-optical-sizing: auto;
}

.sv-content-text {
    margin-bottom: 2px;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
}

.sv-content p {
    margin-bottom: 1.2em;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

.sv-content-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 2rem auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: contain;
}

/* ---------------------
   Event-Program
--------------------- */

.sv-program-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 2rem;
    margin: 0 auto;
    align-items: start;
}

/* Tageskarten */
.sv-program-day-card {
    background: #fff;
    border: 1px solid #e8ece8;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.sv-program-day-card:last-child {
    margin-bottom: 0;
}

.sv-program-day-header {
    margin-bottom: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.sv-program-day-title {
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.2;
    color: #006600;
    font-weight: 400;
}

.sv-program-day-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-top: 0.35rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

/* Liste innerhalb der Tageskarte */
.sv-program-items {
    display: grid;
}



/* einzelne Programmpunkt-Karte */
.sv-program-item-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ecefec;
    border-radius: 0;
    align-items: center;
}



.sv-program-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 44px;
    padding: 0rem 1rem;
    border-radius: 8px;
    background: #006600;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
}

.sv-program-text {
    min-width: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #222;
}

.sv-program-item-title {
    margin: 0 0 0.35rem 0;
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
}

.sv-program-text p {
    margin: 0;
}

.sv-program-text p+p {
    margin-top: 0.65rem;
}

/* Hinweisbox */
.sv-program-note {
    padding: 0.55rem 0.75rem;
    background: #f1f6f1;
    border-left: 3px solid #006600;
    border-radius: 8px;
    font-size: 1rem;
}

/* Flyer */
.sv-program-flyer {
    min-width: 0;
    align-self: start;
    position: sticky;
    top: 120px;
}

.sv-program-flyer-box {
    position: static;
    background: #fff;
    border-radius: 22px;
    padding: 1.25rem;
    border: 1px solid #e8ece8;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.sv-program-flyer-title {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    color: #006600;
    margin: 0 0 1rem 0;
    font-weight: 400;
}

.sv-program-flyer-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.sv-program-flyer-note {
    margin: 0.9rem 0 0 0;
    font-size: 0.98rem;
    color: #666;
}

/* =====================
   Tablet
===================== */

@media (max-width: 991.98px) {
    .sv-program-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sv-program-flyer-box {
        position: static;
    }

    .sv-program-flyer {
        max-width: 520px;
        margin: 0 auto;
    }
}

/* =====================
   Mobile
===================== */

@media (max-width: 767.98px) {
    .sv-program-day-card {
        padding: 1.2rem;
        border-radius: 18px;
    }

    .sv-program-day-header {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .sv-program-item-card {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 1rem;
        border-radius: 14px;
    }

    .sv-program-time {
        width: fit-content;
        min-height: auto;
    }

    .sv-program-item-title {
        font-size: 1.05rem;
    }

    .sv-program-text {
        font-size: 1rem;
    }
}

/* ---------------------
   Paragraph
--------------------- */

.sv-paragraph-title {
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    color: #006600;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    display: block;
    align-self: flex-start;
    margin-top: 1rem;
}

.sv-paragraph-title:first-of-type {
    margin-top: 0;
}

/* ---------------------
   Gallery
--------------------- */

#sv-gallery section:first-of-type .sv-gallery-title {
    margin-top: 0;
}

.sv-gallery-title {
    text-align: left;
    font-size: clamp(1.25rem, 1.6vw, 1.75rem);
    font-weight: 400;
    margin-bottom: 0.75rem;
    margin-top: 3rem;
}

.sv-gallery-img {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: var(--sv-shadow-1);
    margin-bottom: 1.5rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.sv-gallery-grid-img {
    width: 100%;
    border-width: 6px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    border-radius: 8px;
}

.sv-gallery-square-img {
    border-width: 6px;
    border-radius: 8px;
    object-position: top;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid #fff;
}

.sv-autogallery {
    column-count: 3;
    column-gap: 1rem;
}

.sv-autogallery a {
    break-inside: avoid;
    display: block;
    margin-bottom: 1rem;
}

.sv-autogallery img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

/* ---------------------
   card
--------------------- */

.sv-card {
    text-align: left;
    padding: 0px;
}

.sv-card {
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    text-align: left;
    display: block;
    line-height: 1.2;
    font-weight: 400;
}

.sv-card img {
    width: 100%;
    /*max-height: 320px;*/
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    border: 2px solid #eee;
}

.sv-card img.is-placeholder {
    object-position: center !important;
}

.sv-card .sv-button {
    max-width: 180px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
    line-height: 1.65;
}

.sv-card-name a {
    pointer-events: auto;
    position: relative;
    z-index: 10;
    color: blue;
    text-decoration: underline;
}

.sv-card-role,
.sv-card-email {
    color: #006600;
}

/* ---------------------
   list
--------------------- */

.sv-list {
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    text-align: left;
    display: block;
    line-height: 1.2;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.sv-list-title {
    font-size: clamp(1.125rem, 1.6vw, 1.35rem);
    font-weight: 700;
    text-align: left;
    margin-top: 20px;
    margin: 1.5rem 0 1rem 0;
}

.sv-list-title:first-of-type {
    margin-top: 0;
}

.sv-list-entry {
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
    padding: 0.5em;
    border-bottom: 1px solid #ccc;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
}

.sv-list-entry>div {
    display: flex;
    align-items: center;
}

.sv-list-entry>div:not(:first-child) {
    flex: 1;
}

.sv-list-entry>div:last-child {
    margin-left: auto;
}

.sv-list-entry div.sv-list-entry-date {
    min-width: 140px;
    margin-right: 10px;
}

.sv-list-entry div.sv-list-entry-name {
    min-width: 120px;
    margin-right: 20px;
}

.sv-list-entry div.sv-list-entry-role {
    min-width: 150px;
    margin-right: 20px;
}

.sv-list-entry div.sv-list-entry-year {
    min-width: 50px;
    margin-right: 10px;
}

.sv-list-entry p {
    margin-left: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #000000;
}

.sv-list-entry a {
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    text-align: left;
    margin-left: auto;
    color: #006600;
    text-decoration: underline;
}

.sv-list-entry:not(:has(+ .sv-list-entry)) {
    border-bottom: none;
}

.sv-list-entry[data-index]:hover .sv-list-entry-name {
    color: #004d00;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease-out;
}

.sv-legend {
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

.sv-legend-frame {
    margin-top: 20px;
    padding: 5px;
    border: 2px solid #006600;
    border-radius: 0;
    max-width: 600px;
    background-color: #f9f9f9;
}

/* ---------------------
   membership
--------------------- */

.sv-download-info {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.sv-membership-info {
    margin-bottom: 2.5rem;
}

.sv-membership-info h3 {
    margin-bottom: 0.5rem;
}

.sv-membership-info a {
    color: #000;
    text-decoration: none;
}

.sv-membership-info a:hover {
    text-decoration: underline;
}

/* ---------------------
   contact
--------------------- */

.sv-icon {
    width: 20px;
    height: 20px;
    fill: #1b5e20;
    /* gleiche Farbe wie vorher */
    flex-shrink: 0;
    margin-top: 4px;
}

/* Kontakt Header */
.sv-contact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
}

.sv-contact-header i {
    color: #1b5e20;
    font-size: 22px;
}

.sv-contact-header span:first-of-type {
    font-weight: 400;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.sv-contact-line {
    flex: 1;
    height: 1px;
    background: #dcdcdc;
    margin-left: 10px;
}

/* Kontakt Info */
.sv-contact-info {
    margin-top: 15px;
}

.sv-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

/* Label + Value */
.sv-contact-text {
    display: flex;
    gap: 12px;
}

.sv-label {
    font-weight: 700;
    min-width: 90px;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
}

.sv-value {
    line-height: 1.5;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
}

.sv-value a {
    color: #333;
    text-decoration: none;
}

.sv-value a:hover {
    text-decoration: underline;
}

/* Karte / OpenStreetMap */

.sv-external-map {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 10px;
}

/*Form*/

.sv-form {
    max-width: 500px;
    margin-top: 2rem;
}

.sv-form-group {
    margin-bottom: 20px;
}

.sv-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
}

.sv-form input,
.sv-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
}

.sv-form textarea {
    resize: vertical;
}

.sv-form-note a {
    color: #333;
    text-decoration: none;
}

.sv-form-note a:hover {
    text-decoration: underline;
}

.sv-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------------------
   buttons / navigation
--------------------- */

.sv-button {
    text-align: center;
    display: inline-block;
    background: #006600;
    color: #ffffff !important;
    border: none;
    padding: 8px 20px;
    margin: 1rem 0 0 0;
    font-family: "Dosis", sans-serif;
    font-weight: 400;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sv-button:hover {
    background: #004d00;
    transform: translateY(-2px);
    text-decoration: none !important;
}

.sv-button-group .sv-button {
    width: 220px;
}

#sv-event-nav .sv-button {
    margin-top: 0;
}

.sv-year-nav .sv-button {
    width: 85px;
}

.sv-year-nav .sv-button {
    margin-top: 0;
}

/* ---------------------
   button layout
--------------------- */

.sv-event-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
    margin: 0 auto 12px auto;
}

.sv-year-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 14px;
    max-width: 1000px;
    margin: 0 auto 12px auto;
}

.sv-button-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sv-button-column a.sv-button {
    width: 220px;
    text-align: center;
}

.sv-button-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sv-button-row a.sv-button {
    width: 220px;
    text-align: center;
}

/* ---------------------
   links
--------------------- */

.sv-link-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    max-width: 180px;
}

.sv-link-box img {
    max-width: 150px !important;
    height: 120px;
    object-fit: contain;
    object-position: center;
    background: #fff;
    padding: 10px;
}

.sv-link-box p {
    margin-top: 10px;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    color: #000;
}

/* ---------------------
   countdown
--------------------- */

.sv-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.sv-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-weight: 400;
    color: #000;
    font-size: clamp(1rem, 5vw, 2rem);
}

.sv-countdown-timeblock {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    flex-shrink: 0;
}

.sv-countdown-label {
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    margin-top: 5px;
}

.sv-countdown-subtext {
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    margin-top: 1em;
    margin-bottom: 0;
    font-weight: 400;
}

/* ---------------------
   cookie banner
--------------------- */

#sv-cookie-banner {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.sv-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 9999;
}

.sv-cookie-banner button {
    margin-left: 15px;
    padding: 6px 14px;
    background: #fff;
    border: none;
    cursor: pointer;
}

.sv-cookie-box {
    background: white;
    max-width: 600px;
    width: 90%;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.sv-cookie-box h2 {
    margin-top: 0;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.sv-cookie-box p {
    color: #444;
    line-height: 1.5;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
}

.sv-cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.sv-cookie-buttons button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 1.25rem;
    min-width: 150px;
}

.sv-cookie-buttons button.primary {
    background: #006600;
    color: white;
    border: none;
}

.sv-cookie-buttons button.primary:hover {
    background: #004d00;
    transform: translateY(-2px);
}

.sv-cookie-buttons button:hover {
    transform: translateY(-2px);
}

.sv-cookie-links {
    margin-top: 15px;
    text-align: center;
}

.sv-cookie-links a {
    color: #555;
    margin: 0 8px;
    text-decoration: none;
}

.sv-cookie-options {
    margin-top: 20px;
}

.sv-cookie-option {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    align-items: center;
}

.sv-cookie-option input {
    margin-top: 5px;
}

.sv-cookie-option strong {
    display: block;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
}

.sv-cookie-option p {
    margin: 3px 0 0 0;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: #666;
}

/* ---------------------
   consent placeholder
--------------------- */

.sv-external-iframe {
    display: none;
}

.sv-external-placeholder {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    display: none;
}

.sv-external-placeholder p {
    margin-bottom: 20px;
    color: #555;
}

.sv-load-external-btn {
    background: #006600;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Dosis", sans-serif;
    font-weight: 400;
    font-size: clamp(1.125rem, 1.2vw, 1.25rem);
    transition: all 0.3s ease;
}

.sv-load-external-btn:hover {
    background: #004d00;
    transform: translateY(-2px);
}

/* ---------------------
   scroll top button
--------------------- */

.sv-scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none;
    z-index: 999;
}

.sv-scroll-top-btn svg {
    transition: transform 0.2s ease;
}

.sv-scroll-top-btn:hover svg {
    transform: scale(1.1);
}

/* ---------------------
   calendar
--------------------- */

.sv-calendar {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.sv-calendar iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =====================
   02 MEDIA QUERIES
===================== */

@media (max-width: 991.98px) {

    .sv-hero {
        height: 40vh;
    }

    .sv-hero--small {
        height: 30vh;
        min-height: 180px;
        object-position: top center;
    }

    .sv-hero-img {
        object-position: top center;
    }

    .sv-media {
        flex-direction: column;
        max-width: 320px;
        width: 100%;
    }

    .sv-media img {
        height: 500px;
    }

    .sv-content-subtitle {
        padding: -0.5rem 0 1rem 0;
    }

    .sv-autogallery {
        gap: 0.5rem;
    }

    .sv-autogallery a {
        break-inside: avoid;
        display: block;
        margin-bottom: 0.5rem;
    }

    .sv-gallery-img-square {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        max-height: 100px;
    }

    .sv-cookie-box {
        padding: 10px 20px;
    }

    .sv-cookie-box p {
        margin-bottom: 0px;
    }

    .sv-cookie-box,
    .sv-cookie-box p,
    .sv-cookie-box h2 {
        line-height: 1.3;
    }

    .sv-cookie-buttons {
        flex-direction: column;
        margin-top: 10px;
    }

    .sv-cookie-buttons button {
        width: 100%;
    }

    .sv-cookie-links {
        margin-top: 10px;
    }

    .sv-cookie-options {
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {

    .sv-hero .sv-button {
        font-size: 0.95rem;
        padding: 6px 16px;
        min-width: 140px;
    }
}

/* ---------------------
   TYPOGRAPHY
--------------------- */

.bold {
    font-weight: 700;
}

.fw-medium {
    font-weight: 400;
}

.green {
    color: #006600;
    font-weight: 700;
}

/* ---------------------
   object-position
--------------------- */

.img-pos-center {
  object-position: center;
}

.img-pos-top {
  object-position: top center;
}

.img-pos-bottom {
  object-position: bottom center;
}

.img-pos-left {
  object-position: center left;
}

.img-pos-right {
  object-position: center right;
}

.img-pos-top-left {
  object-position: top left;
}

.img-pos-top-right {
  object-position: top right;
}

.img-pos-bottom-left {
  object-position: bottom left;
}

.img-pos-bottom-right {
  object-position: bottom right;
}

.img-pos-y-30 {
    object-position: center 30% ;
}

.img-pos-y-35 {
    object-position: center 35%;
}

.img-pos-y-40 {
    object-position: center 40%;
}

.img-pos-y-45 {
    object-position: center 45%;
}

.gx-6 {
    --bs-gutter-x: 4rem;
}

.gx-7 {
    --bs-gutter-x: 5rem;
}

.gx-8 {
    --bs-gutter-x: 6rem;
}

.gx-9 {
    --bs-gutter-x: 7rem;
}

/* =====================
   01 GLIGHTBOX
===================== */

.glightbox-clean .gbtn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    background: #006600 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
}

.glightbox-clean .gbtn svg {
    margin: 0 !important;
    transform: none !important;
    width: 20px !important;
    height: 20px !important;
    z-index: 9999 !important;
}

.glightbox-clean .gbtn.disabled {
    opacity: 0.4 !important;
    background: #006600 !important;
    cursor: default !important;
}

.glightbox-clean .gbtn.disabled:hover {
    background: #006600 !important;
}

.glightbox-clean .gbtn:hover {
    background: #004d00 !important;
}

.glightbox-clean .gclose {
    top: 20px !important;
    right: 20px !important;
    background: #006600 !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
    backdrop-filter: none !important;
}

.glightbox-clean .gclose svg {
    width: 16px !important;
    height: 16px !important;
}

.glightbox-clean .gclose:hover {
    background: #004d00 !important;
}

.glightbox-clean .gfadeIn,
.glightbox-clean .gfadeOut {
    opacity: 1 !important;
}

.glightbox-clean .gnext {
    right: 5% !important;
}

.glightbox-clean .gnext svg {
    transform: translateX(1px) !important;
}

.glightbox-clean .gprev {
    left: 5% !important;
}

.glightbox-clean .gprev svg {
    transform: translateX(-1px) !important;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.glightbox-clean .gslide {
    animation-duration: 1s !important;
}

.glightbox-clean .gslide-description {
    background: transparent !important;
    box-shadow: none !important;
    text-align: center !important;
}

.glightbox-clean .gslide-title,
.glightbox-clean .gslide-desc {
    font-family: "Dosis", "Roboto", sans-serif !important;
    font-weight: 400 !important;
    font-size: clamp(1rem, 1.6vw, 1.25rem) !important;
    color: #ffffff !important;
    text-align: center !important;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

.glightbox-container {
    z-index: 9999 !important;
}

.glightbox-container .goverlay {
    background: rgba(0, 0, 0, 0.75) !important;
}

.glightbox-container .gslide {
    background: transparent !important;
}

.glightbox-container .gslide-media {
    box-shadow: none !important;
}

.glightbox-container .gslide-media img {
    max-height: 80vh !important;
    max-width: 90vw !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 8px !important;
}

.glightbox-container img:hover {
    transform: none !important;
}

.sv-gcounter {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 13px;
    z-index: 99999;
    pointer-events: none;
}

.sv-lightbox-swipe-hint {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 99999;

    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    pointer-events: none;

    opacity: 0;
    transition: opacity .3s ease;
}

.sv-lightbox-swipe-hint.show {
    opacity: 1;
}

/* =====================
   02 SWIPER
===================== */

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    z-index: 40 !important;
    transform: translateY(-50%) !important;
    --swiper-navigation-size: 30px !important;
    margin: 0 20px;
}

.swiper-pagination {
    height: 20px !important;
    z-index: 40 !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    opacity: 1 !important;
    margin: 0 8px !important;
    background: #fff !important;
}

.swiper-pagination-bullet-active {
    background: #1f7a1f !important;
}

/* =====================
   05 MEDIA QUERIES
===================== */

@media (max-width: 991.98px) {

    /* ---------------------
       GLIGHTBOX
    --------------------- */

    .glightbox-clean .ginner-container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100% !important;
    }

    .glightbox-clean .gprev,
    .glightbox-clean .gnext {
        display: none !important;
    }

    .glightbox-clean .gslide-description {
        position: relative !important;
        margin-top: 0 !important;
        padding: 0 15px !important;
        text-align: center !important;
    }

    .glightbox-container .gslide-media img {
        max-height: 60vh !important;
        max-width: 95vw !important;
    }
}