/* =========================================================
   CAMPINGURLAUB GARDASEE
   Campingportal – gemeinsames Custom CSS

   Schriftart, Schriftgrößen und globale Zeilenhöhen
   werden vom Template übernommen.

   Kompatibilität:
   Die vorhandenen .wu-* und .hp-* Klassennamen bleiben bewusst
   erhalten, solange die gespiegelt/forkten Templates diese Klassen
   ausgeben. Eine reine CSS-Umbenennung würde das Layout brechen.
========================================================= */


/* =========================================================
   1. FARBEN UND GRUNDWERTE
========================================================= */


:root {
    /* Markenfarben Campingurlaub Gardasee */
    --cu-primary: #0E5A8A !important;
    --cu-primary-dark: #083A5A !important;
    --cu-accent: #E36F45 !important;
    --cu-accent-dark: #C65B35 !important;
    --cu-nature: #6F8B4E !important;

    /* Flächen */
    --cu-background: #FFFFFF !important;
    --cu-background-soft: #F7F9F5 !important;
    --cu-background-blue: #F2F7FA !important;

    /* Text / Linien */
    --cu-text: #263746 !important;
    --cu-text-muted: #63717B !important;
    --cu-border: #DCE5E8 !important;
    --cu-white: #FFFFFF;

    /* Radien bewusst kompakt – keine Pillenoptik */
    --cu-radius-large: 12px;
    --cu-radius-medium: 10px;
    --cu-radius-small: 6px;

    --cu-shadow-small:
        0 5px 18px rgba(8, 58, 90, 0.05);

    --cu-shadow-large:
        0 12px 32px rgba(8, 58, 90, 0.07);

    /* Temporär noch das gespiegelte Logo.
       Nach Fertigstellung des Camping-Logos nur diese URL austauschen. */
    --cu-mobile-logo: url("/images/logo-camping.png");

    /* Brücke zur weiterhin verwendeten .hp-* Komponenten-CSS.
       Damit übernimmt com_campingportal sofort das Camping-Farbschema. */
    --hp-primary: #0E5A8A !important;
    --hp-primary-dark: #083A5A !important;
    --hp-accent: #E36F45 !important;
    --hp-background: #FFFFFF !important;
    --hp-background-soft: #F7F9F5 !important;
    --hp-background-blue: #F2F7FA !important;
    --hp-text: #263746 !important;
    --hp-text-muted: #63717B !important;
    --hp-border: #DCE5E8 !important;
    --hp-white: #FFFFFF !important;
    --hp-shadow-small: 0 5px 18px rgba(8, 58, 90, 0.05) !important;
    --hp-shadow-large: 0 12px 32px rgba(8, 58, 90, 0.07) !important;
}


/* =========================================================
   2. ALLGEMEINE SEITENELEMENTE
========================================================= */

.wu-hero *,
.wu-hero-quicklinks *,
.wu-intro *,
.wu-booking-section *,
.wu-compare-section *,
.wu-hotel-guide *,
.wu-experiences-section *,
.wu-final * {
    box-sizing: border-box;
}

.wu-hero img,
.wu-booking-section img,
.wu-compare-section img,
.wu-experiences-section img {
    display: block;
    max-width: 100%;
}

.wu-card {
    overflow: hidden;
    background: var(--cu-background);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius-large);
    box-shadow: var(--cu-shadow-small);
}

.wu-section-heading {
    width: 100%;
    max-width: 820px;
    margin-right: auto;
    margin-bottom: 42px;
    margin-left: auto;
    text-align: center;
}

.wu-section-heading > :first-child {
    margin-top: 0;
}

.wu-section-heading > :last-child {
    margin-bottom: 0;
}

.wu-section-kicker,
.wu-eyebrow,
.wu-experience-card-kicker {
    margin-bottom: 10px;
    color: var(--cu-accent);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wu-section-heading h2,
.wu-hero h1,
.wu-card h3,
.wu-final h2 {
    text-wrap: balance;
}

.wu-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cu-primary);
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.wu-text-link::after {
    content: "→";
}

.wu-text-link:hover,
.wu-text-link:focus {
    gap: 12px;
    color: var(--cu-primary-dark);
    text-decoration: none;
}

#top-hotel,
#hotels,
#activities {
    scroll-margin-top: 120px;
}


/* =========================================================
   3. HERO
========================================================= */

.wu-hero {
    padding: 82px 24px 66px;
    color: var(--cu-text);
    background:
        linear-gradient(
            135deg,
            #FFFFFF 0%,
            #F5F8F3 100%
        ) !important;
}

.wu-hero-content {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.wu-hero h1 {
    margin-top: 0;
    margin-bottom: 22px;
}

.wu-hero-lead {
    max-width: 760px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    color: var(--cu-text-muted);
}


/* =========================================================
   4. DIREKTLINKS
========================================================= */

.wu-hero-quicklinks {
    display: flex;
    width: min(calc(100% - 48px), 1200px);
    margin: 24px auto 0;
    padding: 18px 24px;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
    flex-wrap: wrap;
    background: var(--cu-background);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius-medium);
    box-shadow: var(--cu-shadow-small);
}

.wu-hero-quicklinks-label {
    color: var(--cu-text);
    font-weight: 700;
}

.wu-hero-quicklinks a {
    display: inline-flex;
    padding: 5px 0 6px;
    align-items: center;
    color: var(--cu-primary);
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.wu-hero-quicklinks a:hover,
.wu-hero-quicklinks a:focus {
    color: var(--cu-primary-dark);
    text-decoration: none;
    background: transparent;
    border-bottom-color: var(--cu-accent);
    transform: translateY(-1px);
}


/* =========================================================
   5. EINLEITUNG
========================================================= */

.wu-intro {
    padding: 78px 24px;
    background: var(--cu-background);
}

.wu-intro-inner {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
}

.wu-intro-inner > :first-child {
    margin-top: 0;
}

.wu-intro-inner > :last-child {
    margin-bottom: 0;
}


/* =========================================================
   6. TOP-EMPFEHLUNG
========================================================= */

.wu-booking-section {
    padding: 86px 24px;
    background: var(--cu-background-soft);
}

.wu-booking-section > .wu-booking-card {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.wu-booking-card {
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: var(--cu-shadow-large);
}

.wu-booking-card-image {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 8 / 5;
    background: var(--cu-background-blue);
}

.wu-booking-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wu-booking-card-content {
    display: flex;
    min-width: 0;
    padding: 42px;
    flex-direction: column;
}

.wu-booking-card-meta,
.wu-compare-card-meta {
    display: flex;
    margin-bottom: 14px;
    gap: 8px;
    flex-wrap: wrap;
}

.wu-booking-card-meta span,
.wu-compare-card-meta span {
    display: inline-flex;
    padding: 4px 8px;
    align-items: center;
    color: var(--cu-primary);
    font-weight: 600;
    background: #ffffff;
    border: 1px solid var(--cu-border);
    border-radius: 5px;
}

.wu-booking-card-content h3,
.wu-compare-card-content h3 {
    margin-top: 0;
    margin-bottom: 18px;
}

.wu-booking-card-lead {
    margin-bottom: 22px;
}

.wu-booking-card-features,
.wu-compare-card-features {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.wu-booking-card-features li,
.wu-compare-card-features li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 27px;
}

.wu-booking-card-features li:last-child,
.wu-compare-card-features li:last-child {
    margin-bottom: 0;
}

.wu-booking-card-features li::before,
.wu-compare-card-features li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--cu-primary);
    font-weight: 700;
    content: "✓";
}

.wu-booking-card-suitable {
    margin-bottom: 26px;
    padding: 18px 20px;
    color: var(--cu-text);
    background: #ffffff;
    border-left: 3px solid var(--cu-accent);
    border-radius: var(--cu-radius-small);
}

.wu-booking-card-actions {
    display: flex;
    margin-top: auto;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}


/* =========================================================
   7. BUTTONS
========================================================= */

.wu-booking-card-actions .sppb-btn,
.wu-compare-card-booking .sppb-btn,
.wu-final-actions .sppb-btn {
    display: inline-flex !important;
    height: 56px;
min-height: 56px;
   padding: 0 24px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    box-sizing: border-box;
    font-weight: 700;
    line-height: 1.15 !important;
    text-align: center;
    text-decoration: none !important;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.wu-booking-card-actions .sppb-btn::before,
.wu-booking-card-actions .sppb-btn::after,
.wu-compare-card-booking .sppb-btn::before,
.wu-compare-card-booking .sppb-btn::after,
.wu-final-actions .sppb-btn::before,
.wu-final-actions .sppb-btn::after {
    display: none !important;
    content: none !important;
}

.wu-booking-card-actions .sppb-btn-default {
    color: var(--cu-primary) !important;
    background: #ffffff !important;
    border: 1px solid var(--cu-primary) !important;
    box-shadow: none !important;
}

.wu-booking-card-actions .sppb-btn-default:hover,
.wu-booking-card-actions .sppb-btn-default:focus {
    color: #ffffff !important;
    background: var(--cu-primary) !important;
    border-color: var(--cu-primary) !important;
    transform: translateY(-1px);
}

.sppb-btn.wu-booking-button {
    color: #ffffff !important;
    background: #003b95 !important;
    border: 1px solid #003b95 !important;
    box-shadow: none !important;
}

.sppb-btn.wu-booking-button:hover,
.sppb-btn.wu-booking-button:focus {
    color: #ffffff !important;
    background: #002f76 !important;
    border-color: #002f76 !important;
    box-shadow: none !important;
    transform: translateY(-1px);
}


/* =========================================================
   8. BUCHUNGSVERTRAUEN
========================================================= */

.wu-booking-trust {
    margin-top: 16px;
    color: var(--cu-text-muted);
}

.wu-booking-trust p {
    margin-top: 0;
    margin-bottom: 5px;
}

.wu-booking-trust p:last-child {
    margin-bottom: 0;
}

.wu-booking-trust-points {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.wu-booking-intro {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--cu-text);
    font-weight: 600;
}


/* =========================================================
   9. WEITERE CAMPINGPLÄTZE
========================================================= */

.wu-compare-section {
    padding: 86px 24px;
    background: var(--cu-background);
}

.wu-compare-grid {
    display: grid;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
   align-items: start;
}

.wu-compare-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.wu-compare-card-image {
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: var(--cu-background-blue);
}

.wu-compare-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.wu-compare-card:hover .wu-compare-card-image img {
    transform: scale(1.025);
}

.wu-compare-card-content {
    display: flex;
    height: auto;
    padding: 28px;
    flex-direction: column;
}

.wu-compare-card-suitable {
    margin: 0;
    padding: 16px 18px;
    background: var(--cu-background-soft);
    border-radius: var(--cu-radius-small);
}

.wu-compare-card-booking {
    margin-top: 22px;
    padding-top: 0;
}

.wu-compare-card-booking .wu-booking-intro {
    margin: 0 0 12px;
}

.wu-compare-card-booking .wu-booking-button {
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
    line-height: 1.2;
}

.wu-compare-card-booking .wu-booking-trust {
    margin: 12px 0 0;
    padding: 0;
    border: 0 !important;
    line-height: 1.5;
    text-align: center;
}

/* =========================================================
   10. CAMPINGPLATZ-AUSWAHLHILFE
========================================================= */

.wu-hotel-guide {
    padding: 86px 24px;
    background: var(--cu-background-soft);
}

.wu-hotel-guide-grid {
    display: grid;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.wu-hotel-guide-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 30px;
    flex-direction: column;
    overflow: hidden;
}

.wu-hotel-guide-number {
    position: absolute;
    top: 20px;
    right: 24px;
    margin: 0;
    color: rgba(111, 139, 78, 0.16);
    font-weight: 700;
}

.wu-hotel-guide-card h3 {
    max-width: calc(100% - 55px);
    margin-top: 0;
    margin-bottom: 16px;
}

.wu-hotel-guide-recommendation {
    margin-top: auto;
    margin-bottom: 18px;
    padding-top: 16px;
    color: var(--cu-text);
    border-top: 1px solid var(--cu-border);
}


/* =========================================================
   11. ERLEBNISSE
========================================================= */

.wu-experiences-section {
    padding: 86px 24px;
    background: var(--cu-background);
}

.wu-experiences-grid {
    display: grid;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.wu-experience-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.wu-experience-card-image {
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: var(--cu-background-blue);
}

.wu-experience-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.wu-experience-card:hover .wu-experience-card-image img {
    transform: scale(1.025);
}

.wu-experience-card-content {
    display: flex;
    height: 100%;
    padding: 28px;
    flex-direction: column;
}

.wu-experience-card-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.wu-experience-card-content .wu-text-link {
    margin-top: auto;
    padding-top: 8px;
}


/* =========================================================
   12. ABSCHLUSSBEREICH
========================================================= */

.wu-final {
    padding: 86px 24px;
    color: var(--cu-white);
    background: var(--cu-primary-dark);
}

.wu-final-inner {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.wu-final .wu-section-kicker {
    color: var(--cu-accent);
}

.wu-final h2 {
    margin-top: 0;
    color: var(--cu-white);
}

.wu-final-inner > p:not(.wu-section-kicker) {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.88);
}

.wu-final-actions {
    display: flex;
    margin-top: 28px;
    align-items: center;
    justify-content: center;
    gap: 18px 24px;
    flex-wrap: wrap;
}

.wu-final .sppb-btn-default {
    color: var(--cu-primary);
    background: var(--cu-white);
    border: 1px solid var(--cu-white);
}

.wu-final .sppb-btn-default:hover,
.wu-final .sppb-btn-default:focus {
    color: var(--cu-white);
    background: transparent;
    border-color: var(--cu-white);
    transform: translateY(-1px);
}

.wu-final .wu-text-link {
    color: var(--cu-white);
}

.wu-final .wu-text-link:hover,
.wu-final .wu-text-link:focus {
    color: var(--cu-white);
}


/* =========================================================
   13. FOKUS UND BEDIENBARKEIT
========================================================= */

.wu-hero a:focus-visible,
.wu-hero-quicklinks a:focus-visible,
.wu-booking-section a:focus-visible,
.wu-compare-section a:focus-visible,
.wu-hotel-guide a:focus-visible,
.wu-experiences-section a:focus-visible,
.wu-final a:focus-visible {
    outline: 3px solid var(--cu-accent);
    outline-offset: 3px;
}


/* =========================================================
   14. TABLET
========================================================= */

@media (max-width: 991.98px) {

    .wu-hero {
        padding: 68px 24px 56px;
    }

    .wu-intro,
    .wu-booking-section,
    .wu-compare-section,
    .wu-hotel-guide,
    .wu-experiences-section,
    .wu-final {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .wu-compare-grid,
    .wu-experiences-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wu-hotel-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   15. MOBIL
========================================================= */

@media (max-width: 767.98px) {

    .wu-hero {
        padding: 56px 18px 46px;
    }

    .wu-hero-quicklinks {
        width: calc(100% - 36px);
        margin-top: 18px;
        padding: 16px;
        justify-content: flex-start;
    }

    .wu-hero-quicklinks-label {
        width: 100%;
    }

    .wu-intro,
    .wu-booking-section,
    .wu-compare-section,
    .wu-hotel-guide,
    .wu-experiences-section,
    .wu-final {
        padding: 56px 18px;
    }

    .wu-section-heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .wu-booking-card-content {
        padding: 28px 24px;
    }

    .wu-booking-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wu-booking-card-actions .sppb-btn {
        width: 100%;
    }

    .wu-booking-trust-points {
        display: block;
    }

    .wu-booking-trust-points span {
        display: inline;
    }

    .wu-compare-grid,
    .wu-hotel-guide-grid,
    .wu-experiences-grid {
        grid-template-columns: 1fr;
    }

    .wu-compare-card-content,
    .wu-experience-card-content {
        padding: 24px;
    }

    .wu-hotel-guide-card {
        padding: 26px 24px;
    }

    .wu-final-inner {
        text-align: left;
    }

    .wu-final-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .wu-final-actions .sppb-btn,
    .wu-final-actions .wu-text-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}


/* =========================================================
   16. KLEINE MOBILGERÄTE
========================================================= */

@media (max-width: 479.98px) {

    .wu-hero {
        padding-right: 16px;
        padding-left: 16px;
    }

    .wu-hero-quicklinks {
        width: calc(100% - 32px);
    }

    .wu-intro,
    .wu-booking-section,
    .wu-compare-section,
    .wu-hotel-guide,
    .wu-experiences-section,
    .wu-final {
        padding-right: 16px;
        padding-left: 16px;
    }

    .wu-card {
        border-radius: var(--cu-radius-medium);
    }

    .wu-booking-card-content,
    .wu-compare-card-content,
    .wu-experience-card-content,
    .wu-hotel-guide-card {
        padding: 22px 20px;
    }

    .wu-booking-card-image {
       aspect-ratio: 8 / 5;
    }

    .wu-hero-quicklinks a {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================================
   17. REDUZIERTE ANIMATIONEN
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .wu-hero-quicklinks a,
    .wu-text-link,
    .wu-booking-card-actions .sppb-btn,
    .wu-compare-card-booking .sppb-btn,
    .wu-final-actions .sppb-btn,
    .wu-compare-card-image img,
    .wu-experience-card-image img {
        transition: none;
    }

    .wu-compare-card:hover .wu-compare-card-image img,
    .wu-experience-card:hover .wu-experience-card-image img {
        transform: none;
    }
}

/* =========================================================
   18. FARBSCHEMA-SICHERUNG
   Weiß + Gardasee-Blau + Terrakotta + feiner Naturakzent
   Priorisiert gegen spätere Template-Regeln.
========================================================= */

.wu-hero {
    color: #263746 !important;
}

.wu-hero-quicklinks,
.wu-intro,
.wu-compare-section,
.wu-experiences-section {
    background-color: #FFFFFF !important;
}

.wu-booking-section {
    background-color: #F7F9F5 !important;
}

.wu-hotel-guide {
    background-color: #F7F9F5 !important;
}

.wu-final {
    color: #FFFFFF !important;
    background: #083A5A !important;
}

.wu-section-kicker,
.wu-eyebrow,
.wu-experience-card-kicker {
    color: var(--cu-accent) !important;
}

.wu-text-link,
.wu-hero-quicklinks a,
.wu-booking-card-meta span,
.wu-compare-card-meta span {
    color: #0E5A8A !important;
}

.wu-booking-card-meta span,
.wu-compare-card-meta span,
.wu-booking-card-suitable {
    background-color: #FFFFFF !important;
}

.wu-hero-quicklinks a {
    background-color: transparent !important;
}

.wu-hero-quicklinks a:hover,
.wu-hero-quicklinks a:focus {
    color: #083A5A !important;
    background-color: transparent !important;
    border-bottom-color: var(--cu-accent) !important;
}

.wu-booking-card-suitable {
    border-left-color: var(--cu-accent) !important;
}

.wu-final .wu-section-kicker {
    color: #F2A07B !important;
}

/* =========================================================
   18B. CAMPINGPORTAL – FARB-BRÜCKE FÜR FESTE ALTWERTE
   Einzelne Regeln in media/com_campingportal/css/site.css
   sind noch hart codiert und werden hier campinggerecht
   überschrieben.
========================================================= */

.hp-lightbox__close:hover,
.hp-lightbox__close:focus-visible,
.hp-lightbox__nav:hover,
.hp-lightbox__nav:focus-visible {
    background: var(--cu-primary) !important;
    border-color: var(--cu-primary) !important;
}

.hp-detail-map-marker {
    background: var(--cu-primary) !important;
    box-shadow: 0 3px 8px rgba(8, 58, 90, 0.28) !important;
}

.hp-top-editorial h3 {
    color: var(--cu-primary-dark) !important;
}


/* =========================================================
   19. HELIX HEADER / STICKY NAVIGATION
   Weißer Header auch beim Scrollen.
========================================================= */

#sp-header,
#sp-header.header-sticky {
    background: #FFFFFF !important;
    box-shadow: 0 2px 12px rgba(8, 58, 90, 0.08) !important;
}

/* Hauptnavigation */
#sp-header .sp-megamenu-parent > li > a,
#sp-header.header-sticky .sp-megamenu-parent > li > a {
    color: #263746 !important;
}

/* Hover */
#sp-header .sp-megamenu-parent > li > a:hover,
#sp-header.header-sticky .sp-megamenu-parent > li > a:hover {
    color: var(--cu-accent) !important;
}

/* Aktiver Menüpunkt */
#sp-header .sp-megamenu-parent > li.active > a,
#sp-header .sp-megamenu-parent > li.current-item > a,
#sp-header.header-sticky .sp-megamenu-parent > li.active > a,
#sp-header.header-sticky .sp-megamenu-parent > li.current-item > a {
    color: #0E5A8A !important;
}

/* Dropdown */
#sp-header .sp-dropdown .sp-dropdown-inner,
#sp-header.header-sticky .sp-dropdown .sp-dropdown-inner {
    background: #FFFFFF !important;
}

#sp-header .sp-dropdown li.sp-menu-item > a,
#sp-header.header-sticky .sp-dropdown li.sp-menu-item > a {
    color: #263746 !important;
}

#sp-header .sp-dropdown li.sp-menu-item > a:hover,
#sp-header.header-sticky .sp-dropdown li.sp-menu-item > a:hover {
    color: #0E5A8A !important;
}

#sp-header .sp-dropdown li.active > a,
#sp-header .sp-dropdown li.current-item > a,
#sp-header.header-sticky .sp-dropdown li.active > a,
#sp-header.header-sticky .sp-dropdown li.current-item > a {
    color: var(--cu-accent) !important;
}

/* Mobile Burger im weißen Header */
#sp-header .burger-icon > span,
#sp-header.header-sticky .burger-icon > span {
    background-color: #083A5A !important;
}

/* =========================================================
   20. CAMPINGPORTAL – BREITER DESKTOP-CONTAINER
   Hebt nur auf Campingportal-Seiten die Helix-Begrenzung auf.
========================================================= */

@media (min-width: 1200px) {

    /* Joomla/Helix setzt den gesamten Komponentenbereich sonst zu schmal. */
    body.com-campingportal #sp-main-body > .container,
    body:has(.hp-campsite-detail) #sp-main-body > .container,
    body:has(.hp-theme) #sp-main-body > .container {
        width: calc(100% - 64px) !important;
        max-width: 1400px !important;
    }

    /* Bootstrap-/Helix-Innenstruktur darf die Komponente ebenfalls nicht einengen. */
    body.com-campingportal #sp-main-body .container-inner,
    body:has(.hp-campsite-detail) #sp-main-body .container-inner,
    body:has(.hp-theme) #sp-main-body .container-inner {
        width: 100% !important;
        max-width: none !important;
    }

    body.com-campingportal #sp-main-body #sp-component,
    body:has(.hp-campsite-detail) #sp-main-body #sp-component,
    body:has(.hp-theme) #sp-main-body #sp-component {
        width: 100% !important;
        max-width: none !important;
        flex: 0 0 100% !important;
    }

    /* Inhalt der Campingplatz-Detailseite: gut nutzbare Breite bei großen Monitoren. */
    .hp-campsite-detail .hp-section > .hp-container {
        width: min(calc(100% - 48px), 1320px) !important;
        max-width: 1320px !important;
        margin-right: auto !important;
        margin-left: auto !important;
        transform: none !important;
    }
}

/* =========================================================
   21. HELIX HEADER – HÖHE / NAVIGATION SAUBER EINPASSEN
   Verhindert, dass Menüelemente aus dem weißen Header ragen.
========================================================= */

@media (min-width: 992px) {

    #sp-header,
    #sp-header.header-sticky {
        height: 88px !important;
        min-height: 88px !important;
    }

    #sp-header > .container,
    #sp-header > .container-fluid,
    #sp-header .container-inner,
    #sp-header .row {
        height: 100% !important;
        min-height: 88px !important;
    }

    #sp-header #sp-logo,
    #sp-header #sp-menu,
    #sp-header #sp-logo > .sp-column,
    #sp-header #sp-menu > .sp-column {
        height: 100% !important;
        min-height: 88px !important;
        align-items: center !important;
    }

    #sp-header .sp-megamenu-wrapper {
        height: 100% !important;
        align-items: center !important;
    }

    #sp-header .sp-megamenu-parent {
        display: flex !important;
        height: 100% !important;
        margin: 0 !important;
        align-items: stretch !important;
    }

    #sp-header .sp-megamenu-parent > li {
        display: flex !important;
        height: 100% !important;
        align-items: stretch !important;
    }

    #sp-header .sp-megamenu-parent > li > a,
    #sp-header .sp-megamenu-parent > li > span {
        display: flex !important;
        height: 100% !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        align-items: center !important;
        line-height: 1.2 !important;
    }
}

/* Zwischen 992 und 1250 px etwas weniger horizontaler Platz im Menü,
   damit Logo und Navigation sauber nebeneinander bleiben. */
@media (min-width: 992px) and (max-width: 1249.98px) {

    #sp-header .sp-megamenu-parent > li > a,
    #sp-header .sp-megamenu-parent > li > span {
        padding-right: 13px !important;
        padding-left: 13px !important;
    }
}

/* =========================================================
   22. HELIX HEADER – BREITER DESKTOP / KEINE MENÜUMBRÜCHE
   Nur der Header wird breiter; Seiteninhalte bleiben unverändert.
========================================================= */

@media (min-width: 992px) {

    /* Der normale Helix-Container ist für Logo + Hauptmenü zu schmal. */
    #sp-header > .container,
    #sp-header.header-sticky > .container {
        width: calc(100% - 32px) !important;
        max-width: 1540px !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    #sp-header .row {
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    /* Logo nimmt nur den tatsächlich benötigten Platz ein. */
    #sp-header #sp-logo {
        width: auto !important;
        max-width: none !important;
        flex: 0 0 auto !important;
        padding-right: 24px !important;
        padding-left: 0 !important;
    }

    /* Menü bekommt den kompletten restlichen Headerplatz. */
    #sp-header #sp-menu {
        width: auto !important;
        max-width: none !important;
        flex: 1 1 auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    #sp-header #sp-menu > .sp-column,
    #sp-header .sp-megamenu-wrapper {
        width: 100% !important;
    }

    #sp-header .sp-megamenu-parent {
        width: 100% !important;
        justify-content: flex-end !important;
        flex-wrap: nowrap !important;
    }

    /* Kein einziger Hauptmenüpunkt darf umbrechen. */
    #sp-header .sp-megamenu-parent > li > a,
    #sp-header .sp-megamenu-parent > li > span {
        padding-right: 16px !important;
        padding-left: 16px !important;
        white-space: nowrap !important;
    }

  /* =========================================================
   DROPDOWN-MENÜ – LANGE MENÜTITEL UMBRECHEN
   Hauptnavigation bleibt weiterhin einzeilig
   ========================================================= */

/* Dropdown selbst darf normalen Textumbruch verwenden */
#sp-header .sp-megamenu-parent .sp-dropdown,
#sp-header .sp-megamenu-parent .sp-dropdown-inner,
#sp-header .sp-megamenu-parent .sp-dropdown-items,
#sp-header .sp-megamenu-parent .sp-dropdown-items > li {
    white-space: normal !important;
}


/* Links innerhalb des Dropdowns */
#sp-header .sp-megamenu-parent .sp-dropdown-items > li > a,
#sp-header .sp-megamenu-parent .sp-dropdown-items > li > span {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    box-sizing: border-box !important;

    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;

    line-height: 1.4 !important;

    padding-top: 8px !important;
    padding-bottom: 8px !important;
}
}

/* Bei kleineren Desktopbreiten etwas kompakter, aber weiterhin ohne Umbruch. */
@media (min-width: 992px) and (max-width: 1199.98px) {

    #sp-header > .container,
    #sp-header.header-sticky > .container {
        width: calc(100% - 20px) !important;
    }

    #sp-header #sp-logo {
        padding-right: 14px !important;
    }

    #sp-header .sp-megamenu-parent > li > a,
    #sp-header .sp-megamenu-parent > li > span {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }
}

#sp-bottom {
    padding: 25px 0 20px !important;
}

@media (min-width: 992px) {
.view-article #sp-main-body .container .article-details .article-header {
    padding-top: 135px !important;
    padding-bottom: 60px !important;
    margin-bottom:30px !important;
}
}

div[itemprop="articleBody"] {
  padding: 0 10% 0 10%;
}

/* =========================================================
   Campingurlaub Gardasee – Mobile Offcanvas Navigation
   In die Template-custom.css AN DAS ENDE einfügen
   ========================================================= */

@media (max-width: 991.98px) {

    /* 1. Offcanvas-Grundfläche: hell statt massive blaue Fläche */
    .offcanvas-menu {
        background: #FFFFFF !important;
        color: #263746 !important;
        box-shadow: -14px 0 34px rgba(8, 58, 90, 0.14);
    }

    /* 2. Mehr Luft, Menü bewusst kompakt halten */
    .offcanvas-menu .offcanvas-inner {
        padding: 86px 28px 36px !important;
    }

    /* 3. Hauptmenüpunkte mit feinen Trennlinien */
    .offcanvas-menu .offcanvas-inner ul.menu > li {
        position: relative;
        margin: 0 !important;
        border-bottom: 1px solid #DFE7E4;
    }

    /* 4. Hauptlinks */
    .offcanvas-menu .offcanvas-inner ul.menu > li > a,
    .offcanvas-menu .offcanvas-inner ul.menu > li > span,
    .offcanvas-menu .offcanvas-inner ul.menu > li > .menu-separator {
        display: block;
        padding: 15px 42px 15px 0 !important;
        color: #083A5A !important;
        font-weight: 500;
        line-height: 1.35;
        text-decoration: none;
    }

    /* 5. Aktiver Hauptpunkt */
    .offcanvas-menu .offcanvas-inner ul.menu > li.active > a,
    .offcanvas-menu .offcanvas-inner ul.menu > li.current > a {
        color: #0E5A8A !important;
        font-weight: 650;
    }

    /* 6. Hover/Fokus – hauptsächlich für Tablet/Tastatur */
    .offcanvas-menu .offcanvas-inner ul.menu > li > a:hover,
    .offcanvas-menu .offcanvas-inner ul.menu > li > a:focus-visible {
        color: #0E5A8A !important;
    }

    /* 7. Aufklapp-Symbol: Gold, ohne dunklen Kreis */
    .offcanvas-menu .offcanvas-inner ul.menu > li.menu-parent > a > .menu-toggler,
    .offcanvas-menu .offcanvas-inner ul.menu > li.menu-parent > .menu-separator > .menu-toggler {
        color: #E36F45 !important;
        background: transparent !important;
        border: 0 !important;
        width: 34px !important;
        text-align: right;
    }

    /* 8. Untermenü optisch als zweite Ebene kennzeichnen */
    .offcanvas-menu .offcanvas-inner ul.menu .menu-child {
        margin: 0 0 10px !important;
        padding: 4px 0 4px 16px !important;
        border-left: 2px solid rgba(227, 111, 69, 0.65);
    }

    /* 9. Untermenülinks */
    .offcanvas-menu .offcanvas-inner ul.menu > li li a {
        display: block;
        padding: 9px 8px !important;
        color: #435460 !important;
        font-size: 0.95em;
        line-height: 1.4;
        text-decoration: none;
    }

    .offcanvas-menu .offcanvas-inner ul.menu > li li.active > a,
    .offcanvas-menu .offcanvas-inner ul.menu > li li a:hover,
    .offcanvas-menu .offcanvas-inner ul.menu > li li a:focus-visible {
        color: #0E5A8A !important;
    }

    /* 10. Schließen-Button in Markenblau */
    .offcanvas-menu .close-offcanvas {
        top: 20px !important;
        right: 20px !important;
        width: 36px;
        height: 36px;
        border: 0 !important;
        border-radius: 50%;
        background: #083A5A !important;
        color: #FFFFFF !important;
        box-shadow: none !important;
    }

    /* 11. Kein unnötiger Abstand unter dem letzten Menüpunkt */
    .offcanvas-menu .offcanvas-inner ul.menu > li:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   Campingurlaub Gardasee – Offcanvas Schließen-Button Fix
   DIREKT NACH dem bisherigen Mobile-Offcanvas-CSS einfügen
   ========================================================= */

@media (max-width: 991.98px) {

    /* 1. Button als Bezugspunkt für das selbst gezeichnete X */
    .offcanvas-menu .close-offcanvas {
        position: absolute !important;
        display: block !important;
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        background: #083A5A !important;
        border: 0 !important;
        border-radius: 50% !important;
        font-size: 0 !important;
        line-height: 0 !important;
        overflow: hidden;
    }

    /* 2. Eventuell vorhandenes Helix-Icon ausblenden */
    .offcanvas-menu .close-offcanvas > * {
        opacity: 0 !important;
    }

    /* 3. Weißes X selbst zeichnen */
    .offcanvas-menu .close-offcanvas::before,
    .offcanvas-menu .close-offcanvas::after {
        content: "" !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 17px !important;
        height: 2px !important;
        background: #FFFFFF !important;
        border-radius: 2px;
        transform-origin: center;
        pointer-events: none;
    }

    .offcanvas-menu .close-offcanvas::before {
        transform: translate(-50%, -50%) rotate(45deg) !important;
    }

    .offcanvas-menu .close-offcanvas::after {
        transform: translate(-50%, -50%) rotate(-45deg) !important;
    }
}

/* =========================================================
   CAMPINGURLAUB GARDASEE
   HEADER / HAUPTMENÜ / LANGUAGE SWITCHER
   ========================================================= */


/* ---------------------------------------------------------
   1. HOME-MENÜPUNKT AUSBLENDEN
   Home ist im aktuellen Menü der erste <li>-Eintrag
   --------------------------------------------------------- */

/* =========================================================
   HOME / LOGO IM MENÜ
   Desktop: Home unsichtbar
   Mobile Offcanvas: Logo als Home-Link
   ========================================================= */


/* ---------------------------------------------------------
   DESKTOP-HAUPTMENÜ:
   Home-Menüpunkt nicht anzeigen
   --------------------------------------------------------- */

#sp-header .sp-megamenu-parent a.mobile-home-logo {
    display: none !important;
}


/* ---------------------------------------------------------
   MOBILE OFFCANVAS:
   Home-Link als Logo darstellen
   --------------------------------------------------------- */

.offcanvas-menu a.mobile-home-logo {
    display: block !important;

    width: 180px !important;
    height: 58px !important;

    margin: 0 0 42px 0 !important;
    padding: 0 !important;

    background-image: var(--cu-mobile-logo) !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
    background-size: contain !important;

    /* Text "Home" unsichtbar machen */
    font-size: 0 !important;
    line-height: 0 !important;

    border: 0 !important;
}


/* Home-LI selbst ohne normales Menü-Styling */
.offcanvas-menu li:has(> a.mobile-home-logo) {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
}


/* Keine Hover-Hintergründe oder Pfeile am Logo */
.offcanvas-menu a.mobile-home-logo:hover,
.offcanvas-menu a.mobile-home-logo:focus,
.offcanvas-menu li.active > a.mobile-home-logo {
    background-color: transparent !important;

    color: transparent !important;
}


/* Falls Helix am Home-Link Pseudo-Elemente setzt */
.offcanvas-menu a.mobile-home-logo::before,
.offcanvas-menu a.mobile-home-logo::after {
    display: none !important;
}


/* ---------------------------------------------------------
   KLEINE SMARTPHONES
   --------------------------------------------------------- */

@media (max-width: 480px) {

    .offcanvas-menu a.mobile-home-logo {
        width: 155px !important;
        height: 50px !important;

        margin-bottom: 34px !important;
    }
}


/* ---------------------------------------------------------
   2. HEADER / MENÜ BASIS
   --------------------------------------------------------- */

#sp-header #sp-menu > .sp-column {
    align-items: center !important;
    min-width: 0;
}


/* Navigation darf auf Desktop nicht zusammengedrückt werden */
#sp-header #sp-menu nav.sp-megamenu-wrapper {
    flex: 0 0 auto !important;
    width: auto !important;
}


/* Menü immer einzeilig */
#sp-header .sp-megamenu-parent {
    white-space: nowrap;
}


/* =========================================================
   CAMPINGURLAUB GARDASEE
   HEADER / MENÜ / CAMPINGPLATZ-FINDEN / SPRACHSCHALTER
   ========================================================= */


/* ---------------------------------------------------------
   1. HOME-MENÜPUNKT AUSBLENDEN
   --------------------------------------------------------- */

#sp-header .sp-megamenu-parent > li:first-child {
    display: none !important;
}

/* ---------------------------------------------------------
   2. CAMPINGPLATZ FINDEN – DESKTOP CTA
   Unterstützt während der Umstellung sowohl die alte
   als auch die neue Joomla-Linkklasse.
   --------------------------------------------------------- */

@media (min-width: 1280px) {

    #sp-header .sp-megamenu-parent > li:has(> a.menu-hotel-finden),
    #sp-header .sp-megamenu-parent > li:has(> a.menu-campingplatz-finden) {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }

    #sp-header .sp-megamenu-parent > li > a.menu-hotel-finden,
    #sp-header .sp-megamenu-parent > li > a.menu-campingplatz-finden {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 38px !important;
        min-height: 38px !important;
        margin-left: 14px !important;
        padding: 0 17px !important;
        line-height: 1 !important;
        vertical-align: middle !important;
        color: #FFFFFF !important;
        background-color: var(--cu-accent) !important;
        border: 1px solid var(--cu-accent) !important;
        border-radius: 6px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease;
    }

    #sp-header .sp-megamenu-parent > li > a.menu-hotel-finden:hover,
    #sp-header .sp-megamenu-parent > li > a.menu-hotel-finden:focus,
    #sp-header .sp-megamenu-parent > li > a.menu-campingplatz-finden:hover,
    #sp-header .sp-megamenu-parent > li > a.menu-campingplatz-finden:focus,
    #sp-header .sp-megamenu-parent > li.active > a.menu-hotel-finden,
    #sp-header .sp-megamenu-parent > li.current-item > a.menu-hotel-finden,
    #sp-header .sp-megamenu-parent > li.active > a.menu-campingplatz-finden,
    #sp-header .sp-megamenu-parent > li.current-item > a.menu-campingplatz-finden {
        color: #FFFFFF !important;
        background-color: var(--cu-accent-dark) !important;
        border-color: var(--cu-accent-dark) !important;
    }

    #sp-header.header-sticky .sp-megamenu-parent > li > a.menu-hotel-finden,
    #sp-header.sticky .sp-megamenu-parent > li > a.menu-hotel-finden,
    #sp-header.header-sticky .sp-megamenu-parent > li > a.menu-campingplatz-finden,
    #sp-header.sticky .sp-megamenu-parent > li > a.menu-campingplatz-finden {
        height: 38px !important;
        min-height: 38px !important;
        padding: 0 17px !important;
        line-height: 1 !important;
        color: #FFFFFF !important;
        background-color: var(--cu-accent) !important;
        border-color: var(--cu-accent) !important;
    }

    #sp-header.header-sticky .sp-megamenu-parent > li > a.menu-hotel-finden:hover,
    #sp-header.sticky .sp-megamenu-parent > li > a.menu-hotel-finden:hover,
    #sp-header.header-sticky .sp-megamenu-parent > li > a.menu-campingplatz-finden:hover,
    #sp-header.sticky .sp-megamenu-parent > li > a.menu-campingplatz-finden:hover {
        background-color: var(--cu-accent-dark) !important;
        border-color: var(--cu-accent-dark) !important;
    }
}


/* ---------------------------------------------------------
   3. JT LANGUAGE SWITCHER
   WICHTIG:
   Wir verändern NICHT die Helix-Flexstruktur.
   Wir korrigieren nur Position und Abstand des Moduls.
   --------------------------------------------------------- */

/*
 * JT setzt selbst:
 * #select-container { top:10px; }
 *
 * Dadurch sitzt die Flagge zu tief.
 */
#sp-header #select-container {
    top: 0 !important;
}


/*
 * Abstand zwischen Hauptmenü und Sprachumschalter
 */
#sp-header #sp-menu > .sp-column > .sp-module {
    flex: 0 0 auto !important;
    margin: 0 0 0 12px !important;
    padding: 0 !important;
}


/*
 * Keine absolute Positionierung des Switchers
 */
#sp-header .mod-jt-languageswitcher,
#sp-header .mod-jt-languageswitcher #select-container,
#sp-header .mod-jt-languageswitcher .mod-jt-languageswitcher__select {
    transform: none !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
}


/*
 * Aktuelle Sprache kompakt halten
 */
#sp-header .mod-jt-languageswitcher button.active-lang {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;

    margin: 0 !important;
    padding: 2px !important;

    line-height: 34px !important;
}


/* =========================================================
   TABLET / MOBIL
   LANGUAGE SWITCHER + FRÜHER DESKTOP-BREAKPOINT

   WICHTIG:
   Das eigentliche Helix-Offcanvas-Menü wird NICHT verändert.
   ========================================================= */


/* ---------------------------------------------------------
   1. LANGUAGE SWITCHER
   Bis 1279px fest links neben dem normalen Helix-Burger
   --------------------------------------------------------- */

@media (max-width: 1279.98px) {

    /*
     * Nur das Sprachmodul positionieren.
     * Der Burger bleibt vollständig unter Kontrolle von Helix.
     *
     * Die übergeordnete .row besitzt bereits:
     * position: relative;
     */
    #sp-header #sp-menu > .sp-column > .sp-module {
        position: absolute !important;

        top: 50% !important;
        right: 62px !important;
        left: auto !important;

        width: 38px !important;
        height: 38px !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: translateY(-50%) !important;

        z-index: 1000 !important;

        overflow: visible !important;
    }


    #sp-header #sp-menu > .sp-column > .sp-module .sp-module-content {
        width: 38px !important;
        height: 38px !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: visible !important;
    }


    #sp-header .mod-jt-languageswitcher {
        width: 38px !important;
        height: 38px !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: visible !important;
    }


    /*
     * JT setzt selbst top:10px.
     * Das korrigieren wir.
     *
     * overflow:hidden ist wichtig:
     * Dadurch sind die weiteren Flaggen im
     * geschlossenen Zustand nicht sichtbar.
     *
     * KEINE Höhe setzen – das Öffnen/Schließen
     * steuert JT weiterhin selbst.
     */
    #sp-header .mod-jt-languageswitcher #select-container {
        top: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;
    }


    #sp-header .mod-jt-languageswitcher button.active-lang {
        width: 38px !important;
        min-width: 38px !important;

        height: 38px !important;
        min-height: 38px !important;

        margin: 0 !important;
        padding: 2px !important;

        cursor: pointer !important;
    }
}


/* ---------------------------------------------------------
   2. 992px BIS 1279px

   Helix würde hier wegen Bootstrap "lg" bereits wieder
   das Desktop-Menü anzeigen.

   Deshalb NUR in diesem Zwischenbereich:
   Desktop-UL aus → vorhandenen Helix-Burger ein.

   Unter 992px greifen wir überhaupt nicht ein.
   Dort arbeitet Helix wieder komplett original.
   --------------------------------------------------------- */

@media (min-width: 992px) and (max-width: 1279.98px) {

    /* NUR das Desktop-UL im Header ausblenden */
    #sp-header
    #sp-menu
    nav.sp-megamenu-wrapper
    > ul.sp-megamenu-parent {
        display: none !important;
    }


    /* vorhandenen Helix-Offcanvas-Toggler anzeigen */
    #sp-header
    #sp-menu
    nav.sp-megamenu-wrapper
    > #offcanvas-toggler {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* =========================================================
   CAMPINGURLAUB GARDASEE
   LOGO – KORREKTES SEITENVERHÄLTNIS
   Desktop und Mobile jeweils nur EIN Logo
   ========================================================= */


/* Logo-Container */
#sp-header #sp-logo .logo,
#sp-header #sp-logo .logo a {
    display: flex !important;
    align-items: center !important;

    width: auto !important;
    height: 100% !important;
}


/* =========================================================
   DESKTOP AB 992px
   ========================================================= */

@media (min-width: 992px) {

    /* Desktop-Logo anzeigen */
    #sp-header .logo img.logo-image {
        display: block !important;

        width: auto !important;
        height: auto !important;

        max-width: 220px !important;
        max-height: 66px !important;

        object-fit: contain !important;
        object-position: left center !important;
    }

    /* Mobile-Logo sicher ausblenden */
    #sp-header .logo img.logo-image-phone {
        display: none !important;
    }
}


/* =========================================================
   TABLET / MOBIL UNTER 992px
   ========================================================= */

@media (max-width: 991.98px) {

    /* Desktop-Logo sicher ausblenden */
    #sp-header .logo img.logo-image {
        display: none !important;
    }

    /* Mobile-Logo anzeigen */
    #sp-header .logo img.logo-image-phone {
        display: block !important;

        width: auto !important;
        height: auto !important;

        max-width: 190px !important;
        max-height: 62px !important;

        object-fit: contain !important;
        object-position: left center !important;
    }
}


/* =========================================================
   KLEINE SMARTPHONES
   ========================================================= */

@media (max-width: 575.98px) {

    #sp-header .logo img.logo-image-phone {
        max-width: 170px !important;
        max-height: 56px !important;
    }
}