/* ================================================================
   COATI – ZENTRALE CSS-DATEI (sicher bereinigte Fassung)
   Stand: 18.08.2026
   Herkunft: WordPress Customizer -> "Zusätzliches CSS"
   Ausgelagert nach: wp-content/themes/spectra-one-child/custom.css

   Ziel dieser Fassung:
   - bestehende Optik und Cascade-Reihenfolge beibehalten
   - nur 100 % identische, redundante Regeln entfernen
   - zentrale Inhaltsübersicht für schnelleres Auffinden
   - keine riskante Zusammenlegung unterschiedlicher Overrides

   INHALTSÜBERSICHT
   01  Aktionen & allgemeine Buttons
   02  Ausstattung
   03  Highlights
   04  Beschreibung
   05  Bildergalerie & Lightbox
   06  Kontakt
   07  Preise
   08  Bewertungen
   09  Schnellinfos
   10  Campingplatz-Archivkarten
   11  Campingplatz-Archiv
   12  Campingplatz-Filter
   13  Header, Navigation & Hero
   14  Wetter
   15  Rating / Sterne
   16  Footer
   17  Einheitliche Bereichsüberschriften
   18  Globale Farb-/Button-Anpassungen
   19  Spätere Layout-Korrekturen / Overrides

   WICHTIG:
   Unterschiedliche Regeln mit gleichem Selektor wurden bewusst NICHT
   zusammengeführt. Viele davon sind spätere responsive oder gezielte
   Overrides; eine Zusammenlegung könnte die Darstellung verändern.
   ================================================================ */

.coati-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.coati-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border-radius: 8px;
    background: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.2;
    transition: background-color 0.2s ease,
                transform 0.2s ease;
}

.coati-button:hover,
.coati-button:focus {
    background: #1b4332;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .coati-actions {
        align-items: stretch;
    }

    .coati-button {
        width: 100%;
    }
}

.coati-ausstattung {
    margin: 40px 0;
}

.coati-ausstattung h2 {
    margin-bottom: 20px;
}

.coati-ausstattung-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
}

.coati-ausstattung-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e3efe8;
    color: #2d6a4f;
}

.coati-ausstattung-icon .coati-svg-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


@media (max-width: 600px) {
    .coati-ausstattung-liste {
        grid-template-columns: 1fr;
    }
}

.coati-ausstattung-label {
    color: #1f2937;
    font-weight: 600;
    line-height: 1.3;
}

.coati-ausstattung-item {
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.coati-ausstattung-item:hover {
    border-color: #b7d1c3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.coati-highlights {
    margin: 40px 0;
}

.coati-highlights h2 {
    margin: 0 0 20px;
}

.coati-highlights-liste {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.coati-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 9px 16px 9px 10px;
    border: 1px solid #cfe1d7;
    border-radius: 999px;
    background: #f4f8f6;
    color: #234d3c;
    font-weight: 600;
    line-height: 1.25;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.coati-highlight:hover {
    border-color: #9fc3ae;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.coati-highlight-icon {
    display: flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e3efe8;
    color: #2d6a4f;
}

.coati-highlight-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coati-highlight-text {
    white-space: nowrap;
}

@media (max-width: 600px) {

    .coati-highlights {
        margin: 20px 0;
    }

    .coati-highlights-liste {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .coati-highlight {
        width: 100%;
        border-radius: 10px;
    }

    .coati-highlight-text {
        white-space: normal;
    }
}

.coati-beschreibung {
    margin: 48px 0;
    padding: 28px;
    border: 1px solid #e3e8e5;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.coati-beschreibung-kopf {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.coati-beschreibung-kopf h2 {
    margin: 0;
}

.coati-beschreibung-symbol {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8f2ec;
    color: #2d6a4f;
}

.coati-beschreibung-symbol svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.coati-beschreibung-inhalt {
    max-width: 78ch;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.75;
}

.coati-beschreibung-inhalt > :first-child {
    margin-top: 0;
}

.coati-beschreibung-inhalt > :last-child {
    margin-bottom: 0;
}

.coati-beschreibung-inhalt p {
    margin: 0 0 1.2em;
}

.coati-beschreibung-inhalt h3,
.coati-beschreibung-inhalt h4 {
    margin-top: 1.6em;
    margin-bottom: 0.6em;
}

.coati-beschreibung-inhalt ul,
.coati-beschreibung-inhalt ol {
    padding-left: 1.3em;
}

@media (max-width: 600px) {
    .coati-beschreibung {
        margin: 20px 0;
        padding: 20px;
        border-radius: 10px;
    }

    .coati-beschreibung-inhalt {
        font-size: 1rem;
        line-height: 1.65;
    }
}

.coati-galerie {
    margin: 48px 0;
}

.coati-galerie-kopf {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.coati-galerie-kopf h2 {
    margin: 0;
}

.coati-galerie-kopf span {
    color: #6b7280;
    font-size: 0.95rem;
}

.coati-galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.coati-galerie-element {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 180px;
    border-radius: 12px;
    background: #edf2ef;
    aspect-ratio: 4 / 3;
}

.coati-galerie-element--gross {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 372px;
}

.coati-galerie-bild {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.coati-galerie-element::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    content: "";
    opacity: 0;
    transition: opacity 0.25s ease;
}

.coati-galerie-element:hover .coati-galerie-bild {
    transform: scale(1.035);
}

.coati-galerie-element:hover::after {
    opacity: 1;
}

@media (max-width: 800px) {
    .coati-galerie-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coati-galerie-element--gross {
        grid-column: span 2;
        grid-row: auto;
        min-height: 320px;
    }
}

@media (max-width: 520px) {
    .coati-galerie-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .coati-galerie-element,
    .coati-galerie-element--gross {
        grid-column: auto;
        min-height: 140px;
    }
}


body.coati-lightbox-offen {
    overflow: hidden;
}

.coati-lightbox {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 70px 80px 50px;
    background: rgba(8, 15, 12, 0.94);
}

.coati-lightbox.ist-offen {
    display: flex;
}

.coati-lightbox-inhalt {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.coati-lightbox-bild {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 130px);
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);
}

.coati-lightbox-schliessen,
.coati-lightbox-nav {
    position: absolute;
    z-index: 2;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.coati-lightbox-schliessen:hover,
.coati-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.coati-lightbox-schliessen {
    top: 18px;
    right: 22px;
    width: 46px;
    height: 46px;
    font-size: 34px;
    line-height: 40px;
}

.coati-lightbox-nav {
    top: 50%;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    font-size: 44px;
    line-height: 44px;
}

.coati-lightbox-zurueck {
    left: 18px;
}

.coati-lightbox-weiter {
    right: 18px;
}

.coati-lightbox-info {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.coati-lightbox-zaehler {
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 0.92rem;
}

@media (max-width: 700px) {
    .coati-lightbox {
        padding: 62px 14px 55px;
    }

    .coati-lightbox-bild {
        max-height: calc(100vh - 120px);
        border-radius: 5px;
    }

    .coati-lightbox-nav {
        top: auto;
        bottom: 12px;
        width: 46px;
        height: 46px;
        margin: 0;
        background: rgba(255, 255, 255, 0.18);
    }

    .coati-lightbox-zurueck {
        left: 14px;
    }

    .coati-lightbox-weiter {
        right: 14px;
    }

    .coati-lightbox-schliessen {
        top: 10px;
        right: 12px;
    }

    .coati-lightbox-info {
        bottom: 18px;
    }
}

.coati-kontakt {
    margin: 48px 0;
    padding: 28px;
    border: 1px solid #dfe8e2;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(28, 62, 45, 0.08);
}

.coati-kontakt-kopf {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.coati-kontakt-kopf h2 {
    margin: 0;
}

.coati-kontakt-titelicon,
.coati-kontakt-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf6f0;
    color: #315f43;
}

.coati-kontakt-titelicon {
    width: 44px;
    height: 44px;
}

.coati-kontakt-icon {
    width: 40px;
    height: 40px;
}

.coati-kontakt-titelicon svg,
.coati-kontakt-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coati-kontakt-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.coati-kontakt-element {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-width: 0;
    padding: 17px;
    border-radius: 13px;
    background: #f7faf8;
}

.coati-kontakt-element strong {
    display: block;
    margin-bottom: 4px;
    color: #203b2b;
    font-size: 0.9rem;
}

.coati-kontakt-element a {
    overflow-wrap: anywhere;
    color: #315f43;
    text-decoration: none;
}

.coati-kontakt-element a:hover {
    text-decoration: underline;
}

.coati-kontakt-zusatz {
    display: block;
    margin-top: 7px;
    font-size: 0.88rem;
    font-weight: 600;
}

.coati-kontakt-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.coati-kontakt-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 2px solid #315f43;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.coati-kontakt-button:hover {
    transform: translateY(-2px);
}

.coati-kontakt-button--primaer {
    background: #315f43;
    color: #ffffff;
}

.coati-kontakt-button--sekundaer {
    background: #ffffff;
    color: #315f43;
}

@media (max-width: 700px) {

    .coati-kontakt {
        margin: 20px 0;
        padding: 22px 18px;
    }

    .coati-kontakt-grid {
        grid-template-columns: 1fr;
    }

    .coati-kontakt-buttons {
        flex-direction: column;
    }

    .coati-kontakt-button {
        width: 100%;
        box-sizing: border-box;
    }

    .coati-situationsplan {
        margin: 20px 0;
    }
}
.coati-preise {
    margin: 48px 0;
    padding: 28px;
    border: 1px solid #dfe8e2;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(28, 62, 45, 0.08);
}

.coati-preise-kopf {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.coati-preise-kopf h2 {
    margin: 0;
}

.coati-preise-kopf p {
    margin: 4px 0 0;
    color: #68756d;
    font-size: 0.95rem;
}

.coati-preise-titelicon,
.coati-preise-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf6f0;
    color: #315f43;
}

.coati-preise-titelicon {
    width: 46px;
    height: 46px;
}

.coati-preise-icon {
    width: 44px;
    height: 44px;
}

.coati-preise-titelicon svg,
.coati-preise-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coati-preise-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.coati-preise-karte {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
    padding: 20px;
    border-radius: 14px;
    background: #f7faf8;
}

.coati-preise-text {
    min-width: 0;
}

.coati-preise-label {
    display: block;
    margin-bottom: 4px;
    color: #68756d;
    font-size: 0.88rem;
}

.coati-preise-text strong {
    display: block;
    color: #203b2b;
    font-size: 1.1rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.coati-preise-hinweis {
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px solid #e5ece7;
    color: #6b756f;
    font-size: 0.86rem;
    line-height: 1.5;
}

@media (max-width: 700px) {

    .coati-preise {
        margin: 20px 0;
        padding: 18px 14px;
        border-radius: 12px;
    }

    .coati-preise-kopf {
        gap: 10px;
        margin-bottom: 16px;
    }

    .coati-preise-titelicon {
        width: 38px;
        height: 38px;
    }

    .coati-preise-titelicon svg {
        width: 19px;
        height: 19px;
    }

    .coati-preise-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .coati-preise-karte {
        gap: 10px;
        padding: 13px 12px;
        border-radius: 10px;
    }

    .coati-preise-icon {
        width: 36px;
        height: 36px;
    }

    .coati-preise-icon svg {
        width: 19px;
        height: 19px;
    }

    .coati-preise-label {
        margin-bottom: 2px;
        font-size: 0.82rem;
    }

    .coati-preise-text strong {
        font-size: 1rem;
    }

    .coati-preise-hinweis {
        margin-top: 14px;
        padding-top: 12px;
        font-size: 0.82rem;
    }
}

.coati-bewertung {
    margin: 48px 0;
    padding: 30px;
    border: 1px solid #dfe8e2;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(28, 62, 45, 0.08);
}

.coati-bewertung-titel {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.coati-bewertung-titel h2 {
    margin: 0;
}

.coati-bewertung-titel p {
    margin: 4px 0 0;
    color: #68756d;
    font-size: 0.95rem;
}

.coati-bewertung-titelicon,
.coati-bewertung-infoicon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf6f0;
    color: #315f43;
}

.coati-bewertung-titelicon {
    width: 48px;
    height: 48px;
}

.coati-bewertung-infoicon {
    width: 42px;
    height: 42px;
}

.coati-bewertung-titelicon svg,
.coati-bewertung-infoicon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coati-bewertung-gesamt {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 15px;
    background: #f4f8f5;
}

.coati-bewertung-zahl {
    display: flex;
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #315f43;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
}

.coati-bewertung-sterne {
    display: flex;
    gap: 3px;
    line-height: 1;
}

.coati-stern {
    color: #d6ddd8;
    font-size: 1.65rem;
}

.coati-stern--aktiv {
    color: #e5a927;
}

.coati-bewertung-gesamt p {
    margin: 7px 0 0;
    color: #5f6d64;
    font-weight: 600;
}

.coati-bewertung-infos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 26px;
}

.coati-bewertung-info {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 17px;
    border-radius: 13px;
    background: #f7faf8;
}

.coati-bewertung-info--positiv {
    background: #edf7ef;
}

.coati-bewertung-info--neutral {
    background: #f5f5f3;
}

.coati-bewertung-info span:not(.coati-bewertung-infoicon) {
    display: block;
    margin-bottom: 3px;
    color: #68756d;
    font-size: 0.86rem;
}

.coati-bewertung-info strong {
    display: block;
    color: #203b2b;
    overflow-wrap: anywhere;
}

.coati-bewertung-kategorien {
    padding-top: 23px;
    border-top: 1px solid #e4ebe6;
}

.coati-bewertung-kategorien h3 {
    margin: 0 0 20px;
    font-size: 1.15rem;
}

.coati-bewertung-kategorie {
    margin-bottom: 17px;
}

.coati-bewertung-kategorie:last-child {
    margin-bottom: 0;
}

.coati-bewertung-kategorie-kopf {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 7px;
    font-size: 0.94rem;
}

.coati-bewertung-kategorie-kopf span {
    color: #35483c;
}

.coati-bewertung-kategorie-kopf strong {
    color: #315f43;
}

@media (max-width: 700px) {
    .coati-bewertung {
        padding: 22px 18px;
    }

    .coati-bewertung-infos {
        grid-template-columns: 1fr;
    }

    .coati-bewertung-gesamt {
        align-items: flex-start;
        padding: 18px;
    }

    .coati-bewertung-zahl {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
        font-size: 1.5rem;
    }

    .coati-stern {
        font-size: 1.35rem;
    }
}

.coati-bewertung-detailsterne {
    display: flex;
    gap: 4px;
    margin-top: 4px;
    line-height: 1;
}

.coati-bewertung-detailsterne .coati-stern {
    font-size: 1.35rem;
}

.coati-bewertung-kategorie {
    padding: 13px 0;
    border-bottom: 1px solid #e7ede9;
}

.coati-bewertung-kategorie:first-of-type {
    padding-top: 0;
}

.coati-bewertung-kategorie:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.coati-bewertung-notizen {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid #e4ebe6;
}

.coati-bewertung-notizen h3 {
    margin: 0 0 14px;
    font-size: 1.15rem;
}

.coati-bewertung-notizen div {
    color: #35483c;
    line-height: 1.7;
}

.coati-bewertung-notizen p {
    margin: 0 0 1em;
}

.coati-bewertung-notizen p:last-child {
    margin-bottom: 0;
}

/* =========================================
   COATI – Schnellinfos
   ========================================= */

.coati-schnellinfos {
    display: block !important;
    width: 100%;
    margin: 48px 0;
}

.coati-schnellinfos-kopf {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.coati-schnellinfos-kopf h2 {
    margin: 0;
}

.coati-schnellinfos-kopf p {
    margin: 4px 0 0;
    color: #68756d;
    font-size: 0.95rem;
}

.coati-schnellinfos-titelicon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf6f0;
    color: #315f43;
}

.coati-schnellinfos-titelicon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coati-schnellinfos-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* =========================================
   COATI – Schnellinfos Feinschliff
   ========================================= */

.coati-info-card {
    min-height: 150px;
    padding: 22px 24px;
}

/* Beschriftung oben */
.coati-info-label {
    margin-bottom: 18px;
    color: #68756d;
    font-size: 0.88rem;
}

/* Icon und Wert auf einer Linie */
.coati-info-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Icon */
.coati-info-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf6f0;
    color: #315f43;
}

/* eigentlicher Wert */
.coati-info-value {
    color: #203b2b;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

/* Zusatztext, z.B. Besuchsdatum */
.coati-info-note {
    margin-top: 16px;
    color: #7b8880;
    font-size: 0.78rem;
    line-height: 1.35;
}


.coati-info-card {
    display: flex;
    min-width: 0;
    min-height: 100px;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.coati-info-icon {
    display: flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef5f1;
    color: #2d6a4f;
}

.coati-info-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coati-info-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.coati-info-label {
    margin-bottom: 3px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.2;
}

.coati-info-value {
    color: #1f2937;
    font-size: 16px;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

@media (max-width: 900px) {
    .coati-schnellinfos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .coati-schnellinfos-kopf {
        align-items: flex-start;
    }

    .coati-schnellinfos-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .coati-info-card {
        min-height: auto;
        padding: 14px;
    }
}

/* Ausstattung – Layoutkorrektur */

.coati-ausstattung-liste {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.coati-ausstattung-item {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 72px;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin: 0;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    box-sizing: border-box;
}

.coati-ausstattung-icon {
    position: static;
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    order: 1;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e3efe8;
    color: #2d6a4f;
}

.coati-ausstattung-icon .coati-svg-icon {
    display: block;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coati-ausstattung-label {
    position: static;
    display: block;
    min-width: 0;
    order: 2;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
@media (max-width: 600px) {

    .coati-ausstattung-liste {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .coati-ausstattung-item {
        min-height: 56px;
        gap: 10px;
        padding: 10px 14px;
    }

    .coati-ausstattung-icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .coati-ausstattung-icon .coati-svg-icon {
        width: 18px;
        height: 18px;
    }
}

/* =========================================
   COATI – Campingplatz Archivkarte
   ========================================= */

.coati-archivkarte {
    overflow: hidden;
    border: 1px solid #dfe8e2;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(28, 62, 45, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.coati-archivkarte:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(28, 62, 45, 0.13);
}

.coati-archivkarte-bildlink {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #edf2ef;
}

.coati-archivkarte-bild {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.coati-archivkarte:hover .coati-archivkarte-bild {
    transform: scale(1.035);
}

.coati-archivkarte-platzhalter {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #315f43;
}

.coati-archivkarte-platzhalter .coati-svg-icon {
    width: 56px;
    height: 56px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.coati-archivkarte-inhalt {
    padding: 22px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.coati-archivkarte-kopf {
    display:grid;
    grid-template-columns:1fr auto;
    gap:14px;
    align-items:start;
}

.coati-archivkarte-kopf h2 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.25;
    min-height: 3.4rem;
}

.coati-archivkarte-kopf h2 a {
    color: #1f2937;
    text-decoration: none;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
}

.coati-archivkarte-kopf h2 a:hover {
    color: #2d6a4f;
}

.coati-archivkarte-bewertung {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
}

.coati-archivkarte-sterne {
    display: flex;
    gap: 1px;
}

.coati-archiv-stern {
    color: #d6ddd8;
    font-size: 1rem;
    line-height: 1;
}

.coati-archiv-stern--aktiv {
    color: #e5a927;
}

.coati-archivkarte-bewertung strong {
    color: #315f43;
    font-size: 0.95rem;
}

.coati-archivkarte-standort {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: #68756d;
    font-size: 0.93rem;
}

.coati-archivkarte-standort .coati-svg-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.coati-archivkarte-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.coati-archivkarte-preis {
    color: #203b2b;
    font-size: 1.05rem;
    font-weight: 700;
}

.coati-archivkarte-merkmale {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
}

.coati-archiv-merkmal {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #edf6f0;
    color: #315f43;
    font-size: 0.85rem;
    font-weight: 600;
}

.coati-archiv-merkmal .coati-svg-icon {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.coati-archivkarte-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: #315f43;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
}

.coati-archivkarte-button:hover {
    background: #244d36;
    color: #ffffff;
}

@media (max-width: 520px) {
    .coati-archivkarte-kopf {
        display: block;
    }

    .coati-archivkarte-bewertung {
        margin-top: 10px;
    }

    .coati-archivkarte-inhalt {
        padding: 18px;
    }
}

/* =========================================
   COATI – Campingplatz-Archiv
   ========================================= */

.coati-archiv {
    width: 100%;
    margin: 28px auto 48px;
}

.coati-archiv-kopf {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.coati-archiv-kopf h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.1;
}

.coati-archiv-kopf p {
    margin: 4px 0 0;
    color: #68756d;
    font-size: 0.95rem;
}

.coati-archiv-kopficon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf6f0;
    color: #315f43;
}

.coati-archiv-kopficon .coati-svg-icon {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coati-archiv-ergebnis {
    margin: 0 28px 20px 94px;
    color: #68756d;
    font-size: 0.92rem;
}

.coati-archiv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.coati-archiv-pagination {
    margin-top: 40px;
}

.coati-archiv-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.coati-archiv-pagination .page-numbers li {
    margin: 0;
}

.coati-archiv-pagination a,
.coati-archiv-pagination span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border: 1px solid #d8e4dc;
    border-radius: 999px;
    background: #ffffff;
    color: #315f43;
    font-weight: 700;
    text-decoration: none;
}

.coati-archiv-pagination a:hover,
.coati-archiv-pagination .current {
    border-color: #315f43;
    background: #315f43;
    color: #ffffff;
}

.coati-archiv-leer {
    padding: 36px;
    border: 1px solid #dfe8e2;
    border-radius: 18px;
    background: #f7faf8;
    text-align: center;
}

.coati-archiv-leer h2 {
    margin-top: 0;
}

@media (max-width: 1100px) {
    .coati-archiv-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .coati-archiv {
        margin: 24px auto 36px;
    }

    .coati-archiv-kopf {
        align-items: flex-start;
        gap: 10px;
    }

    .coati-archiv-kopficon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .coati-archiv-kopficon .coati-svg-icon {
        width: 19px;
        height: 19px;
    }

    .coati-archiv-ergebnis {
        margin-left: 48px;
    }

    .coati-archiv-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* =========================================
   COATI – Campingplatz Filterleiste
   ========================================= */

.coati-filterbereich {
    margin: 30px 0;
    padding: 26px;
    border: 1px solid #dfe8e2;
    border-radius: 20px;
    background: #f7faf8;
}

.coati-filterformular label,
.coati-filterformular legend {
    color: #203b2b;
    font-weight: 700;
}

.coati-filter-suche label {
    display: block;
    margin-bottom: 8px;
}

.coati-filter-suchfeld {
    position: relative;
}

.coati-filter-suchicon {
    position: absolute;
    top: 50%;
    left: 15px;
    display: flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    color: #68756d;
    transform: translateY(-50%);
    pointer-events: none;
}

.coati-filter-suchicon .coati-svg-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.coati-filter-suchfeld input {
    width: 100%;
    min-height: 52px;
    padding: 11px 15px 11px 48px;
    border: 1px solid #cfdcd3;
    border-radius: 12px;
    background: #ffffff;
    color: #1f2937;
    font-size: 1rem;
}

.coati-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.coati-filter-feld label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.9rem;
}

.coati-filter-feld select {
    width: 100%;
    min-height: 48px;
    padding: 9px 38px 9px 12px;
    border: 1px solid #cfdcd3;
    border-radius: 12px;
    background-color: #ffffff;
    color: #26352c;
    font-size: 0.95rem;
}

.coati-filter-suchfeld input:focus,
.coati-filter-feld select:focus {
    border-color: #315f43;
    outline: 3px solid rgba(49, 95, 67, 0.12);
}

.coati-filter-merkmale {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    border: 0;
}

.coati-filter-merkmale legend {
    width: 100%;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.coati-filter-checkbox {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid #d5e2d9;
    border-radius: 999px;
    background: #ffffff;
    cursor: pointer;
}

.coati-filter-checkbox:hover {
    border-color: #86a792;
}

.coati-filter-checkbox input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #315f43;
}

.coati-filter-checkbox span {
    color: #315f43;
    font-size: 0.9rem;
    font-weight: 600;
}

.coati-filter-aktionen {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.coati-filter-button,
.coati-filter-zuruecksetzen {
    min-height: 46px;
    padding: 10px 19px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.coati-filter-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: #315f43;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.coati-filter-button:hover,
.coati-filter-button:focus {
    background: #244d36;
    color: #ffffff;
    transform: translateY(-1px);
}

.coati-filter-zuruecksetzen {
    border: 1px solid #cbd9cf;
    background: transparent;
    color: #315f43;
}

.coati-filter-zuruecksetzen:hover {
    background: #eaf2ed;
}

@media (max-width: 1000px) {
    .coati-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .coati-filterbereich {
        padding: 18px;
    }

    .coati-filter-grid {
        grid-template-columns: 1fr;
    }

    .coati-filter-merkmale {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .coati-filter-aktionen {
        display: grid;
    }

    .coati-filter-button,
    .coati-filter-zuruecksetzen {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .coati-filter-merkmale {
        grid-template-columns: 1fr;
    }
}
.coati-filter-zuruecksetzen,
.coati-archiv-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.coati-archiv-reset {
    min-height: 44px;
    margin-top: 12px;
    padding: 9px 17px;
    border: 1px solid #315f43;
    border-radius: 999px;
    color: #315f43;
    font-weight: 700;
}

.coati-archiv-reset:hover {
    background: #315f43;
    color: #ffffff;
}


/* Gesamter Header bleibt beim Scrollen oben sichtbar */
.coati-header-wrap {
    position: sticky;
    top: 12px;
    z-index: 999;
    margin-left: auto;
    margin-right: auto;
}

/* Schwebende Header-Karte */
.coati-header {
    width: min(1400px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.90);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Menülinks */
.coati-header .wp-block-navigation-item__content {
    color: #c17f4a;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.coati-header .wp-block-navigation-item__content:hover {
    color: #6536e8;
}

/* Aktueller Menüpunkt */
.coati-header .current-menu-item > .wp-block-navigation-item__content,
.coati-header .current-menu-ancestor > .wp-block-navigation-item__content {
    color: #c17f4a;
    font-weight: 700;
}

/* Logo nicht zu klein darstellen */
.coati-header .wp-block-image img {
    width: 180px;
    height: auto;
}

/* Smartphone */
@media (max-width: 782px) {
    .coati-header-wrap {
        top: 8px;
    }

    .coati-header {
        width: calc(100% - 20px);
        border-radius: 14px;
    }

    .coati-header .wp-block-image img {
        width: 145px;
    }
}
.admin-bar .coati-header-wrap {
    top: 44px;
}

@media screen and (max-width: 782px) {
    .admin-bar .coati-header-wrap {
        top: 54px;
    }
}

.coati-archiv-filter-position {
    position: relative;
    z-index: 20;
    max-width: 1200px;
    margin: -200px auto 70px;
    padding: 0 30px;
}

.coati-archiv-filter-position > * {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}


/* ==================================================
   COATI – transparenter Header über dem Hero
   ================================================== */

/* Header aus dem normalen Seitenfluss nehmen */
.wp-site-blocks > header.wp-block-template-part {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: transparent !important;
}

/* Cremefarbenen Hintergrund der Header-Gruppen entfernen */
.wp-site-blocks > header.wp-block-template-part > .wp-block-group,
.wp-site-blocks > header.wp-block-template-part > .wp-block-group > .wp-block-group {
    background-color: transparent !important;
    background-image: none !important;
}

/* Menü auf dem Titelbild weiß darstellen */
.wp-site-blocks > header.wp-block-template-part
.wp-block-navigation-item__content {
    color: #ffffff !important;
}

/* test Menü- und Hamburger-Symbol weiß */
.wp-site-blocks > header.wp-block-template-part
.wp-block-navigation__responsive-container-open,
.wp-site-blocks > header.wp-block-template-part
.wp-block-navigation__responsive-container-close {
    color: #ffffff !important;
}

/* Archivkarten: Merkmale sauber nebeneinander anzeigen */
.coati-archivkarte-merkmale {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

/* Automatisch eingefügte WordPress-Absätze und Zeilenumbrüche neutralisieren */
.coati-archivkarte-merkmale p {
    display: contents;
    margin: 0;
    padding: 0;
}

.coati-archivkarte-merkmale br {
    display: none;
}

.coati-archiv-merkmal {
    display: inline-flex;
    width: auto;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 999px;
    white-space: nowrap;
}

/* =========================================
   COATI – Archivkarten Feinschliff
   ========================================= */

.coati-archivkarte-inhalt {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 320px;
}

.coati-archivkarte-kopf {
    min-height: 72px;
}

.coati-archivkarte-standort {
    min-height: 42px;
}

.coati-archivkarte-meta {
    min-height: 28px;
}

.coati-archivkarte-merkmale {
    min-height: 42px;
    align-content: flex-start;
}

.coati-archivkarte-button {
    align-self: flex-start;
}

/* =========================================
   COATI – Archivkarte Preis & Bewertung
   ========================================= */

/* Bereich für Preis und Bewertung */
.coati-archivkarte-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

/* Preis */
.coati-archivkarte-preis {
    color: #203b2b;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Bewertung */
.coati-archivkarte-bewertung {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    white-space: nowrap;
}

/* Sterne */
.coati-archivkarte-bewertung .coati-sterne {
    color: #e3a008;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 1px;
}

/* Bewertungszahl */
.coati-archivkarte-bewertung .coati-bewertung-zahl {
    color: #315f43;
    font-size: 0.82rem;
    font-weight: 700;
}

.coati-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 10px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.30);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.coati-rating-stars {
    color: #f2c14e;
    letter-spacing: 2px;
    font-size: 1.05rem;
}

.coati-rating-value {
    color: #ffffff;
    white-space: nowrap;
}

.coati-google-map {
    width: 100%;
    margin: 0;
}

.coati-google-map iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.coati-google-map-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.coati-google-map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 20px;
    border-radius: 8px;
    background: #2f5d50;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.coati-google-map-button:hover {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .coati-google-map iframe {
        height: 420px;
        border-radius: 10px;
    }

    .coati-google-map-actions {
        justify-content: stretch;
    }

    .coati-google-map-button {
        width: 100%;
    }
}

.coati-wetter{
    background:#ffffff;
    border-radius:16px;
    padding:22px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    margin:24px 0;
}

.coati-wetter-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    margin-bottom:18px;
}

.coati-wetter-kicker{
    color:#6b7280;
    margin:0;
    font-size:.82rem;
}

.coati-wetter-title{
    margin:3px 0 0;
    font-size:1.55rem;
    line-height:1.2;
}

.coati-wetter-current{
    display:flex;
    align-items:center;
    gap:10px;
}

.coati-wetter-icon{
    font-size:2.4rem;
}

.coati-wetter-temperature{
    font-size:2.5rem;
    line-height:1;
    font-weight:700;
    color:#1f2937;
}

.coati-wetter-details{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin:18px 0;
}

.coati-wetter-detail{
    background:#f8fafc;
    padding:13px 10px;
    border-radius:10px;
    text-align:center;
}

.coati-wetter-detail span{
    display:block;
    color:#6b7280;
    font-size:.8rem;
    margin-bottom:4px;
}

.coati-wetter-detail strong{
    font-size:1rem;
}

.coati-wetter-forecast{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
    margin-top:16px;
}

.coati-wetter-day{
    background:#f8fafc;
    border-radius:10px;
    padding:12px 8px;
    text-align:center;
}

.coati-wetter-day-name{
    display:block;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:7px;
}

.coati-wetter-day-icon{
    display:block;
    font-size:1.7rem;
    margin-bottom:7px;
}

.coati-wetter-day-temperature{
    display:block;
    font-size:.9rem;
    margin-bottom:6px;
}

.coati-wetter-day-temperature strong{
    margin-right:4px;
}

.coati-wetter-day-rain{
    font-size:.78rem;
    color:#475569;
}

.coati-wetter-source{
    margin:14px 0 0;
    text-align:right;
    font-size:.75rem;
    color:#6b7280;
}

@media(max-width:768px){

    .coati-wetter{
        padding:16px;
    }

    .coati-wetter-header{
        align-items:flex-start;
    }

    .coati-wetter-title{
        font-size:1.3rem;
    }

    .coati-wetter-temperature{
        font-size:2rem;
    }

    .coati-wetter-icon{
        font-size:2rem;
    }

    .coati-wetter-details{
        grid-template-columns:repeat(3,1fr);
        gap:8px;
    }

    .coati-wetter-detail{
        padding:10px 6px;
    }

    .coati-wetter-forecast{
        display:flex;
        overflow-x:auto;
        gap:8px;
        padding-bottom:6px;
        scroll-snap-type:x mandatory;
    }

    .coati-wetter-day{
        flex:0 0 125px;
        scroll-snap-align:start;
    }
}

@media(max-width:480px){

    .coati-wetter-header{
        flex-direction:column;
    }

    .coati-wetter-details{
        grid-template-columns:1fr;
    }
}

/* COATI Wetter kompakt */

.coati-wetter {
    padding: 18px;
    border-radius: 14px;
    margin: 22px 0;
}

.coati-wetter-header {
    margin-bottom: 12px;
}

.coati-wetter-kicker {
    font-size: 0.78rem;
}

.coati-wetter-title {
    font-size: 1.35rem;
}

.coati-wetter-current {
    gap: 8px;
}

.coati-wetter-icon {
    font-size: 2rem;
}

.coati-wetter-temperature {
    font-size: 2.2rem;
}

/* Wetterampel und Empfehlung */

.coati-wetter-camping-info {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 10px;
    margin: 12px 0;
}

.coati-wetter-ampel,
.coati-wetter-empfehlung {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 54px;
    padding: 9px 12px;
    border-radius: 10px;
    background: #f8fafc;
}

.coati-wetter-ampel > span,
.coati-wetter-empfehlung > span {
    font-size: 1.35rem;
}

.coati-wetter-ampel small,
.coati-wetter-empfehlung small {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
}

.coati-wetter-ampel strong,
.coati-wetter-empfehlung strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.25;
}

/* Sechs kompakte Wetterwerte */

.coati-wetter-details {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin: 12px 0;
}

.coati-wetter-detail {
    padding: 9px 6px;
    border-radius: 9px;
}

.coati-wetter-detail span {
    font-size: 0.7rem;
    margin-bottom: 3px;
}

.coati-wetter-detail strong {
    display: block;
    font-size: 0.9rem;
}

.coati-wetter-detail small {
    display: block;
    margin-top: 2px;
    font-size: 0.66rem;
    color: #64748b;
}

.coati-wind-arrow {
    display: inline-block;
}

/* Einklappbare Bereiche */

.coati-wetter-details-box {
    margin-top: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.coati-wetter-details-box summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 13px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    list-style: none;
    background: #f8fafc;
}

.coati-wetter-details-box summary::-webkit-details-marker {
    display: none;
}

.coati-wetter-summary-hinweis {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 400;
}

.coati-wetter-details-box[open]
.coati-wetter-summary-hinweis {
    font-size: 0;
}

.coati-wetter-details-box[open]
.coati-wetter-summary-hinweis::after {
    content: "schließen";
    font-size: 0.72rem;
}

/* Horizontale Stundenleiste */

.coati-wetter-hourly {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 10px;
    scroll-snap-type: x mandatory;
}

.coati-wetter-hour {
    flex: 0 0 82px;
    padding: 8px 5px;
    border-radius: 8px;
    background: #f8fafc;
    text-align: center;
    scroll-snap-align: start;
}

.coati-wetter-hour strong,
.coati-wetter-hour span,
.coati-wetter-hour small {
    display: block;
}

.coati-wetter-hour strong {
    font-size: 0.76rem;
}

.coati-wetter-hour-icon {
    margin: 4px 0;
    font-size: 1.35rem;
}

.coati-wetter-hour small {
    font-size: 0.65rem;
}

/* Kompakte 5-Tage-Ansicht */

.coati-wetter-forecast {
    gap: 7px;
    margin: 0;
    padding: 10px;
}

.coati-wetter-day {
    padding: 9px 5px;
    border-radius: 8px;
}

.coati-wetter-day-name {
    font-size: 0.78rem;
    margin-bottom: 4px;
}

.coati-wetter-day-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.coati-wetter-day-temperature {
    font-size: 0.78rem;
    margin-bottom: 3px;
}

.coati-wetter-day-rain {
    font-size: 0.66rem;
}

.coati-wetter-source {
    margin-top: 10px;
    font-size: 0.68rem;
}

/* Tablet */

@media (max-width: 900px) {
    .coati-wetter-details {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Smartphone */

@media (max-width: 600px) {
    .coati-wetter {
        padding: 13px;
    }

    .coati-wetter-header {
        align-items: flex-start;
    }

    .coati-wetter-title {
        font-size: 1.15rem;
    }

    .coati-wetter-temperature {
        font-size: 1.8rem;
    }

    .coati-wetter-icon {
        font-size: 1.7rem;
    }

    .coati-wetter-camping-info {
        grid-template-columns: 1fr;
    }

    .coati-wetter-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .coati-wetter-forecast {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .coati-wetter-day {
        flex: 0 0 105px;
        scroll-snap-align: start;
    }
}

.coati-ausstattung {
    width: 100%;
    margin: 32px 0;
}

.coati-ausstattung-titel {
    margin: 0 0 20px;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.2;
}

.coati-ausstattung-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.coati-ausstattung-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 96px;
    padding: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.coati-ausstattung-card::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    content: "";
    background: #d99a3d;
}

.coati-ausstattung-card:hover {
    transform: translateY(-3px);
    border-color: #d99a3d;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.11);
}

.coati-ausstattung-icon {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1.65rem;
    line-height: 1;
    background: #fff7e8;
    border-radius: 12px;
}

.coati-ausstattung-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.coati-ausstattung-text strong {
    color: #1f2937;
    font-size: 0.98rem;
    line-height: 1.3;
}

.coati-ausstattung-text small {
    margin-top: 4px;
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.35;
}

@media (max-width: 1000px) {
    .coati-ausstattung-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .coati-ausstattung-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .coati-ausstattung-grid {
        grid-template-columns: 1fr;
    }

    .coati-ausstattung-card {
        min-height: 82px;
        padding: 13px 14px;
    }

    .coati-ausstattung-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 1.45rem;
    }
}

.coati-rating {
    width: 100%;
    margin: 32px 0;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.coati-rating__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.coati-rating__kicker {
    margin: 0 0 4px;
    color: #6b7280;
    font-size: 0.82rem;
}

.coati-rating__title {
    margin: 0;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.2;
}

.coati-rating__overall {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    column-gap: 10px;
}

.coati-rating__stars {
    position: relative;
    grid-row: 1 / 3;
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 2px;
    white-space: nowrap;
}

.coati-rating__stars-base {
    color: #e5e7eb;
}

.coati-rating__stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: #d99a3d;
    white-space: nowrap;
}

.coati-rating__number {
    color: #1f2937;
    font-size: 1.8rem;
    line-height: 1;
}

.coati-rating__maximum {
    color: #6b7280;
    font-size: 0.75rem;
}

.coati-rating__list {
    display: grid;
    gap: 16px;
}

.coati-rating__row {
    display: grid;
    grid-template-columns: minmax(140px, 180px) 1fr 40px;
    align-items: center;
    gap: 16px;
}

.coati-rating__label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.94rem;
    font-weight: 600;
}

.coati-rating__bar {
    height: 12px;
    overflow: hidden;
    background: #edf0f3;
    border-radius: 999px;
}

.coati-rating__bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(
        90deg,
        #e4af5e,
        #d68d28
    );
    border-radius: inherit;
}

.coati-rating__value {
    text-align: right;
    font-size: 0.92rem;
}

@media (max-width: 650px) {

    .coati-rating {
        padding: 18px;
    }

    .coati-rating__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .coati-rating__row {
        grid-template-columns: 1fr 38px;
        gap: 8px;
    }

    .coati-rating__label {
        grid-column: 1 / 3;
    }

    .coati-rating__bar {
        grid-column: 1;
    }

    .coati-rating__value {
        grid-column: 2;
    }
}


/* Smartphone */

@media (max-width: 480px) {
    .coati-rating {
        gap: 9px;
        padding: 9px 12px;
    }

    .coati-rating-stars {
        font-size: 23px;
        letter-spacing: 2px;
    }

    .coati-rating-value {
        font-size: 16px;
    }
}

/* COATI kompakte Bewertungssterne */

.coati-rating {
    display: inline-flex !important;
    width: fit-content !important;
    max-width: 100% !important;
    min-height: 0 !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 7px 11px !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.38) !important;
    border: 1px solid rgba(229, 169, 0, 0.35) !important;
    border-radius: 9px !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.coati-rating-stars {
    display: inline-block !important;
    flex: 0 0 auto !important;
    font-family: Arial, sans-serif !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 2px !important;
    white-space: nowrap !important;

    color: transparent !important;
    background: linear-gradient(
        90deg,
        #e5a900 0%,
        #e5a900 var(--coati-rating-fill),
        #d7dce0 var(--coati-rating-fill),
        #d7dce0 100%
    ) !important;

    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.coati-rating-value {
    display: inline-block !important;
    color: #26352f !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.coati-rating-value small {
    color: #68746f !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

@media (max-width: 480px) {
    .coati-rating {
        gap: 8px !important;
        padding: 6px 9px !important;
    }

    .coati-rating-stars {
        font-size: 18px !important;
        letter-spacing: 1px !important;
    }

    .coati-rating-value {
        font-size: 14px !important;
    }
}

/* Kleine Bewertung im Campingplatz-Header */

.coati-hero-rating {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    align-items: center !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 3px 8px !important;
    background: rgba(255, 255, 255, 0.38) !important;
    border: 1px solid rgba(229, 169, 0, 0.4) !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.coati-hero-rating-stars {
    display: inline-block !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: Arial, sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;

    color: transparent !important;
    background: linear-gradient(
        90deg,
        #e5a900 0%,
        #e5a900 var(--coati-rating-fill),
        #d7dce0 var(--coati-rating-fill),
        #d7dce0 100%
    ) !important;

    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.coati-hero-rating-value {
    display: inline-block !important;
    margin: 0 !important;
    color: #26352f !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.coati-hero-rating-value small {
    color: #68746f !important;
    font-size: 11px !important;
    font-weight: 500 !important;
}

/* Situationsplan */

.coati-situationsplan {
    margin: 48px 0;
}

.coati-situationsplan-kopf {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.coati-situationsplan-kopf h2 {
    margin: 0;
    color: #1f2937;
}

.coati-situationsplan-kopf p {
    margin: 3px 0 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.coati-situationsplan-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf6f0;
    color: #315f43;
}

.coati-situationsplan-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ACF-Vorschaubild während Google Maps lädt */

.coati-google-map-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #e8ebe9;
    border-radius: 12px;
}

.coati-google-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.coati-google-map-cover {
    position: absolute;
    z-index: 2;
    inset: 0;
    overflow: hidden;
    background: #e8ebe9;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.coati-google-map-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coati-google-map-loading {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(31, 41, 55, 0.75);
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
}

/* Vorschau nach dem Laden ausblenden */

.coati-google-map-frame.coati-map-loaded .coati-google-map-cover {
    opacity: 0;
    visibility: hidden;
}

.coati-preise-besuchsdatum {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.35;
    opacity: 0.75;
    color: #6b756f;

}

.coati-info-zusatz {
    display: block;
    margin-top: 5px;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.35;
    opacity: 0.75;
}

.coati-google-vorschau {
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.coati-google-vorschaubild {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Campingplatz-Einzelseite: Header bündig ausrichten */
body.single-campingplatz .wp-site-blocks {
    padding-top: 0 !important;
}

body.single-campingplatz header.wp-block-template-part {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.single-campingplatz header.wp-block-template-part > .wp-block-group {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
    align-items: center !important;
}

body.single-campingplatz header .wp-block-navigation {
    align-self: center !important;
    margin-top: 25px !important;
}

/* ==================================================
   Campingplatz-Archiv: einheitliche Kartenhöhen
   ================================================== */

.coati-archivkarte-inhalt {
    display: flex !important;
    height: 100% !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
}

/* Immer Platz für zwei Titelzeilen */
.coati-archivkarte-kopf h2 {
    height: 3.4rem !important;
    min-height: 3.4rem !important;
    margin: 0 !important;
    overflow: hidden;
}

/* Button immer am unteren Kartenrand */
.coati-archivkarte-inhalt > .coati-archivkarte-button {
    align-self: flex-start !important;
    margin-top: auto !important;
    margin-block-start: auto !important;
}
/* Archivkarte: Strom, Dusche und WC */
.coati-archivkarte-merkmale {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px !important;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 20px;
}

.coati-archiv-merkmal {
    display: flex !important;
    width: 100% !important;
    min-width: 0;
    min-height: 38px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 6px 4px;
    border-radius: 999px;
    background: #edf6f0;
    color: #315f43;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
}

@media (max-width: 600px) {

    .coati-google-vorschau {
        width: 100%;
        height: 280px;
        overflow: hidden;
        border-radius: 12px;
    }

    .coati-google-vorschaubild {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}
/* =========================================================
   COATI Footer – Copyright-Zeile mobil
   ========================================================= */

@media (max-width: 600px) {

    .coati-footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        text-align: center !important;
    }

    .coati-footer-bottom > * {
        margin: 0 !important;
        text-align: center !important;
    }
}


/* =========================================
   COATI – einheitliche Bereichsüberschriften
   ========================================= */

.coati-bereich-kopf {
    display: flex;
    align-items: center;
    gap: 14px;
}

.coati-bereich-kopf h2 {
    margin: 0;
}

.coati-bereich-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf6f0;
    color: #315f43;
}

.coati-bereich-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   COATI – Hero Infobox
   Titel, Ort, Land und Bewertung
   ========================================= */

.coati-hero-infobox {
    display: inline-block !important;
    width: auto !important;
    max-width: 720px;

    background: rgba(79, 117, 70, 0.88);
    padding: 22px 28px;
    border-radius: 12px;

    /* etwas Abstand zu den Aktionsbuttons */
    margin-bottom: 18px;
}

/* Alle Texte innerhalb der Infobox weiß */
.coati-hero-infobox,
.coati-hero-infobox h1,
.coati-hero-infobox h2,
.coati-hero-infobox h3,
.coati-hero-infobox p {
    color: #ffffff !important;
}

/* Tablet */
@media (max-width: 900px) {
    .coati-hero-infobox {
        max-width: 80%;
        padding: 18px 22px;
    }
}

/* Smartphone */
@media (max-width: 520px) {
    .coati-hero-infobox {
        max-width: 100%;
        padding: 15px 18px;
        border-radius: 10px;
    }
}

/* =========================================
   COATI – Einheitliche Button-/Menüfarbe
   ========================================= */

/* Hero-Aktionsbuttons */
.coati-button,
.coati-button-route,
.coati-button-website,
.coati-button-booking {
    background-color: #c17f4a !important;
    border-color: #c17f4a !important;
    color: #ffffff !important;
}

/* Navigation: kein Abstand zwischen den Menüpunkten */
.coati-header .wp-block-navigation__container {
    gap: 0 !important;
}

/* Hintergrund nur auf dem Menüelement */
.coati-header .wp-block-navigation-item {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #c17f4a !important;
}

/* Link selbst transparent */
.coati-header .wp-block-navigation-item__content {
    display: block !important;
    margin: 0 !important;
    padding: 8px 14px !important;

    background: transparent !important;
    color: #ffffff !important;

    text-decoration: none !important;
}

/* Hover */
.coati-button:hover,
.coati-button-route:hover,
.coati-button-website:hover,
.coati-button-booking:hover,
.coati-header .wp-block-navigation-item:hover {
    background-color: #42643b !important;
    border-color: #42643b !important;
    color: #ffffff !important;
}

.coati-header .wp-block-navigation-item__content:hover {
    background: transparent !important;
    color: #ffffff !important;
}

/* =========================================
   COATI – Archivkarten einheitliches Raster
   ========================================= */

/* Alle Karten einer Grid-Zeile gleich hoch */
.coati-archiv-grid {
    align-items: stretch !important;
}

/* Gesamte Karte */
.coati-archivkarte {
    display: flex !important;
    height: 100% !important;
    flex-direction: column !important;
}

/*
 * Inhalt jeder Karte bekommt feste Bereiche:
 * 1 Titel + Bewertung
 * 2 Ort / Land
 * 3 Preis
 * 4 Merkmale
 * 5 Button
 */
.coati-archivkarte-inhalt {
    display: grid !important;
    flex: 1 1 auto !important;

    grid-template-rows:
        74px
        54px
        44px
        46px
        auto;

    align-content: start;
    row-gap: 0;
}

/* -----------------------------------------
   Titel + Bewertung
   ----------------------------------------- */

.coati-archivkarte-kopf {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
    align-items: start !important;

    margin: 0 !important;
    min-height: 0 !important;
}

.coati-archivkarte-kopf h2 {
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
}

/* Bewertung bleibt oben rechts */
.coati-archivkarte-bewertung {
    align-self: start !important;
    margin: 0 !important;
}

/* -----------------------------------------
   Ort / Land
   ----------------------------------------- */

.coati-archivkarte-standort {
    min-height: 0 !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
}

/* -----------------------------------------
   Preis
   ----------------------------------------- */

.coati-archivkarte-meta {
    min-height: 0 !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
}

/* -----------------------------------------
   Strom / Dusche / WC
   ----------------------------------------- */

.coati-archivkarte-merkmale {
    min-height: 0 !important;
    margin: 0 !important;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;

    align-items: center !important;
}

/* -----------------------------------------
   Button
   ----------------------------------------- */

.coati-archivkarte-button {
    align-self: start !important;
    margin-top: 10px !important;
}

/* =========================================
   COATI – Archivkopf
   ========================================= */

.coati-archiv-kopf {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px 10px;
    margin: 0;
}

.coati-archiv-kopficon {
    position: relative;
    display: inline-flex;

    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf6f0;
    color: #315f43;
}

/* Standort-Pin */
.coati-archiv-kopficon::before {
    content: "";
    width: 15px;
    height: 15px;

    border: 2px solid #315f43;
    border-radius: 50% 50% 50% 0;

    transform: rotate(-45deg);
}

/* Punkt im Standort-Pin */
.coati-archiv-kopficon::after {
    content: "";
    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;
    background: #315f43;

    top: 22px;
    left: 22px;
}

.coati-archiv-kopftext {
    min-width: 0;
}

.coati-archiv-kopf h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.05;
}

.coati-archiv-kopf p {
    margin: 6px 0 0;
    color: #68756d;
    font-size: 1rem;
    line-height: 1.4;
}

/* =========================================
   COATI – Filter Layout Reparatur
   ========================================= */

/* Leere WordPress-Absätze zwischen den Grid-Feldern ausblenden */
.coati-filter-grid > p {
    display: none;
}

/* Absätze innerhalb der Filterfelder neutralisieren */
.coati-filter-feld > p {
    margin: 0;
    padding: 0;
}

/* Automatische Zeilenumbrüche entfernen */
.coati-filter-feld br {
    display: none;
}

/* Desktop: Land, Bewertung und Sortierung */
.coati-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.coati-filter-feld {
    min-width: 0;
}

.coati-filter-feld label {
    display: block;
    margin-bottom: 7px;
}

.coati-filter-feld select {
    display: block;
    width: 100%;
}

/* Ausstattung */


/* WordPress-Absätze innerhalb der Ausstattung erhalten */
.coati-filter-merkmale > p {
    display: inline-flex;
    margin: 0;
    padding: 0;
}

/* Wirklich leere Absätze ausblenden */
.coati-filter-merkmale > p:empty {
    display: none;
}

/* Automatische Zeilenumbrüche entfernen */
.coati-filter-merkmale br {
    display: none;
}







.coati-filter-merkmale {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.coati-filter-merkmale legend {
    width: 100%;
    margin-bottom: 2px;
}

.coati-filter-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 13px;
    border: 1px solid #d5e2d9;
    border-radius: 999px;
    background: #ffffff;
}

.coati-filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #315f43;
}

/* Tablet */
@media (max-width: 900px) {
    .coati-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobil */
@media (max-width: 600px) {
    .coati-filter-grid {
        grid-template-columns: 1fr;
    }

    .coati-filter-merkmale {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coati-filter-merkmale legend {
        grid-column: 1 / -1;
    }
}

@media (max-width: 400px) {
    .coati-filter-merkmale {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   COATI – Filter Checkboxen korrigieren
   ========================================= */

.coati-filter-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    min-height: 42px;
    padding: 8px 14px;

    border: 1px solid #d5e2d9;
    border-radius: 999px;
    background: #ffffff;
}

/* eventuelle Theme-Pseudo-Icons entfernen */
.coati-filter-checkbox::before,
.coati-filter-checkbox::after {
    display: none !important;
    content: none !important;
}

/* echte Checkbox sauber darstellen */
.coati-filter-checkbox input[type="checkbox"] {
    position: static !important;

    width: 17px !important;
    height: 17px !important;

    min-width: 17px !important;
    min-height: 17px !important;

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

    transform: none !important;

    accent-color: #315f43;
}

/* Text direkt daneben */
.coati-filter-checkbox span {
    margin: 0 !important;
    padding: 0 !important;

    color: #315f43;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

/* =========================================================
   COATI – SCHNELLINFOS: Karten einheitlich
   ========================================================= */

.coati-schnellinfos-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
}

.coati-info-card {
    height: 220px !important;
    min-height: 220px !important;
    padding: 24px !important;
    box-sizing: border-box !important;

    display: grid !important;
    grid-template-rows: 32px 1fr 42px !important;
    align-items: center !important;
}

/* Überschrift: Preis, Saison, Strom usw. */
.coati-info-card .coati-info-label {
    margin: 0 !important;
    align-self: start !important;
}

/* =========================================
   COATI – Schnellinfos einheitliche Karten
   ========================================= */

.coati-schnellinfos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

/* Alle Karten exakt gleich hoch */
.coati-info-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;

    height: 220px;
    min-height: 220px;

    padding: 24px;
    box-sizing: border-box;

    border: 1px solid #dfe8e2;
    border-radius: 14px;
    background: #ffffff;
}

/* Icon */
.coati-info-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf6f0;
    color: #315f43;

    grid-column: 1;
    grid-row: 1;
}

.coati-info-icon svg {
    width: 23px;
    height: 23px;
}

/* Textbereich */
.coati-info-content {
    display: grid;
    grid-template-rows: 32px 1fr 2px;

    height: 100%;

    align-items: center;

    grid-column: 2;
    grid-row: 1;
}

/* Überschrift der Karte */
.coati-info-label {
    display: block;

    margin: 0;

    color: #68756d;
    font-size: 0.9rem;
    font-weight: 500;

    align-self: start;
}

/* Hauptwert */
.coati-info-value {
    display: block;

    margin: 0;

    color: #203b2b;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;

    align-self: center;
}

/* Zusatztext – nur beim Preis vorhanden */
.coati-info-zusatz {
    display: block;
    min-height: 32px;
    margin: 8px 0 0 0;

    color: #7b8880;
    font-size: 0.78rem;
    line-height: 1.35;

    align-self: start;
}

/* =========================================
   Tablet
   ========================================= */

@media (max-width: 900px) {

    .coati-schnellinfos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coati-info-card {
        height: 210px;
        min-height: 210px;
    }
}


/* =========================================
   Mobil
   ========================================= */

@media (max-width: 520px) {

    .coati-schnellinfos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .coati-info-card {
        height: auto;
        min-height: 150px;

        grid-template-columns: 48px minmax(0, 1fr);

        padding: 18px;
    }

    .coati-info-content {
        grid-template-rows: auto auto auto;
        gap: 8px;
    }

    .coati-info-zusatz {
        min-height: 0;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .coati-schnellinfos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 520px) {

    .coati-schnellinfos-grid {
        grid-template-columns: 1fr !important;
    }

    .coati-info-card {
        height: auto !important;
        min-height: 170px !important;
    }
}

.coati-archivkarte-entfernung {
    display: inline-block;
    font-size: 0.85em;
    color: #2f6f4f;
    background: #eaf4ee;
    padding: 2px 10px;
    border-radius: 999px;
    margin-top: 4px;
}

/* =========================================
   COATI – Menü: braune Unterlinie + dezenter Hover
   (überschreibt frühere grüne Regeln)
   ========================================= */

.coati-header .wp-block-navigation-item {
    background-color: transparent !important;
    border-color: transparent !important;
}

.coati-header .wp-block-navigation-item__content {
    background: transparent !important;
    color: #30252a !important;
    padding: 8px 14px !important;
    border-bottom: 1px solid transparent !important;
    border-radius: 8px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.coati-header .wp-block-navigation-item__content:hover {
    background-color: rgba(193, 127, 74, 0.12) !important;
    color: #c17f4a !important;
}

.coati-header .current-menu-item > .wp-block-navigation-item__content,
.coati-header .current-menu-ancestor > .wp-block-navigation-item__content {
    border-bottom-color: #c17f4a !important;
}


