/* =====================
   01 COMPONENTS
===================== */

/* ---------------------
   HERO
--------------------- */

.sv-hero {
    position: relative;
    height: 45vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.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;
}

.sv-hero .sv-button:last-child:hover {
    background: #f8f9fa;
    color: #004d00;
}

.sv-hero .swiper-slide img:hover {
    transform: none;
}

.sv-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.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-swiper {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.sv-hero-swiper,
.sv-hero-swiper .swiper-wrapper,
.sv-hero-swiper .swiper-slide {
    height: 100%;
}

.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: 500;
    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: 800;
    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: 300;
    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: 500;
}

.sv-program-day-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    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: 600;
    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: 600;
    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: 500;
}

.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: bold;
    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: 500;
    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 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.sv-autogallery a {
    display: block;
}

.sv-autogallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    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: 500;
}

.sv-card img {
    width: 100%;
    /*max-height: 320px;*/
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    border: 2px solid #eee;
}

.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: 500;
    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;
}

/* ---------------------
   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: 50;
    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: 600;
    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: 600;
    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;
    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);
}

.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-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: 5px;
    }

    .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;
    }
}