/**
 * Single-Post (News + Fanfoto) – Galerie, Lightbox, Buttons, Kommentare.
 * EINE Quelle für alle Single-Post-Styles.
 * Hohe Spezifität (body .ff-single-fanfoto) überschreibt GeneratePress.
 * Deploy: nach Theme-Root (generatepress-child).
 */

/* ===== UNIVERSAL-FIXES für Single-Seiten (greift immer) ===== */

/* Hintergrund der gesamten Seite auf Grau zwingen (falls Body weiß ist) */
body.single {
    background: #f5f5f5 !important;
}

/* 1. Layout: EINE große weiße Karte, breiter */
body.single .ff-main.ff-single-news .ff-container,
body.single .ff-main.ff-single-fanfoto .ff-container,
body.single .ff-container {
    max-width: min(var(--ff-layout-max), calc(100% - 2 * var(--ff-layout-gutter))) !important;
    width: 97%;
    margin: clamp(0px, 3vw, 40px) auto !important;
    padding: clamp(20px, 5vw, 60px) clamp(12px, 6vw, 80px) !important;
    background: #fff !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 24px rgba(0,0,0,0.04) !important;
    border: 1px solid #eee !important;
    box-sizing: border-box;
}

/* Innere Karten (Artikel, Kommentare) neutralisieren -> alles auf einem Hintergrund */
body.single .ff-single-news-article,
body.single .ff-comments-wrap .comment-body {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

/* 2. Überschriften-Fix */
body.single .entry-title,
body.single h1.ff-page-title,
body.single .ff-page-title {
    font-size: clamp(1.5rem, 4vw, 2.8rem) !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    color: #111 !important;
    hyphens: auto !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    margin-bottom: 12px !important;
    padding-bottom: 16px !important;
    border-bottom: 4px solid #c62828 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* 3. Bilder IMMER volle Breite */
body.single .entry-content img,
body.single .entry-content figure img,
body.single article img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    margin: 24px 0 !important;
    object-fit: cover !important;
}
/* Ausnahme: Smileys oder Icons im Text nicht riesig machen */
body.single .entry-content img.emoji,
body.single .entry-content img.avatar {
    width: auto !important;
    box-shadow: none !important;
    margin: 0 !important;
    display: inline !important;
}

/* 4. Kommentare: Links rot – außer FF-Kommentarbereich (Mockup: grau) */
body.single .logged-in-as a,
body.single .comment-reply-link:not(.ff-comments-wrap .comment-reply-link),
body.single #comments:not(.ff-comments-list-wrap) a {
    color: #c62828 !important;
}
body.single .logged-in-as {
    color: #888 !important;
}

/* 5. Zurück-Button (Galerie): Exakt wie Alle Teams (Pill, weiß, Hover slide rot) */
body.single .ff-back-link {
    margin: 0 0 24px;
}
body.single .ff-back-link a,
body.single a.ff-back-btn {
    outline: none;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    background: #fff; /* Wie Fotos Deutschland */
    border-radius: 500px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    transition: color 0.25s, border-color 0.25s;
    z-index: 1;
}
body.single .ff-back-link a::before,
body.single a.ff-back-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: #c62828;
    transform: skew(30deg) translate3d(-100%, 0, 0);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    z-index: -1;
}
body.single .ff-back-link a:hover,
body.single a.ff-back-btn:hover {
    color: #fff;
    border-color: #c62828;
    box-shadow: none;
    text-decoration: none;
}
body.single .ff-back-link a:hover::before,
body.single a.ff-back-btn:hover::before {
    transform: skew(30deg) translate3d(0, 0, 0);
}

/* 6. Kommentar-Button: exakt wie Fotos-Deutschland / Zurück-Button */
button.ff-btn-slide,
body.single .form-submit .ff-btn-slide {
    outline: none;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    background: #fff;
    border-radius: 500px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: none !important;
    transition: color 0.25s, border-color 0.25s;
    z-index: 1;
    font-family: inherit;
}
button.ff-btn-slide::before,
body.single .form-submit .ff-btn-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: #c62828;
    transform: skew(30deg) translate3d(-100%, 0, 0);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    z-index: -1;
}
button.ff-btn-slide:hover,
body.single .form-submit .ff-btn-slide:hover {
    color: #fff;
    border-color: #c62828;
    box-shadow: none;
    text-decoration: none;
}
button.ff-btn-slide:hover::before,
body.single .form-submit .ff-btn-slide:hover::before {
    transform: skew(30deg) translate3d(0, 0, 0);
}

/* Fallback: input submit (Pill) – nicht beim WordPress-Kommentarformular (.comment-form) */
body.single form:not(.comment-form) .form-submit input[type="submit"] {
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #555 !important;
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 500px !important;
    box-shadow: none !important;
}
body.single form:not(.comment-form) .form-submit input[type="submit"]:hover {
    color: #fff !important;
    background: #c62828 !important;
    border-color: #c62828 !important;
}

/* Toggle: Mehr-laden-Optik; Submit: .ff-btn-slide – nur Ecken kantig (4px), Animation/Farben unverändert */
body.single .ff-comments-wrap .ff-comments-toggle-btn {
    border-radius: 4px !important;
}
body.single .ff-comments-wrap .form-submit input[type="submit"] {
    border-radius: 4px !important;
}
body.single .ff-comments-wrap .form-submit .ff-btn-slide {
    border-radius: 4px !important;
}

/* 7. Navigation: Bilder groß */
body.single .ff-nav-thumb {
    width: 90px !important;
    height: 90px !important;
}


/* ===== GALERIE (Fotos Deutschland) - Grid & Lightbox ===== */

/* Grid: Bilder füllen die Zellen, keine Kacheln/Rahmen um die Bilder */
.ff-fanfoto-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
    margin-top: 24px;
}
/* Galerie Grid: Sauber, kein Standard-Button-Grau */
.ff-gallery-item {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent !important;
    cursor: pointer;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px; /* Leicht abgerundet sieht professioneller aus */
    box-shadow: none !important;
    appearance: none; /* Wichtig: Entfernt Button-Styles */
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: opacity 0.2s;
}
.ff-gallery-item:hover {
    opacity: 0.9;
    background: transparent !important;
}
.ff-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 !important;
    border-radius: 8px !important; /* Passend zum Container */
}

/* Lightbox Overlay */
.ff-gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.ff-gallery-lightbox.ff-lightbox-open {
    opacity: 1;
    pointer-events: auto;
}
.ff-gallery-lightbox[hidden] {
    display: flex !important; /* Überschreibt hidden attribute für transition, opacity regelt Sichtbarkeit */
    opacity: 0;
    pointer-events: none;
}

/* Lightbox Content */
.ff-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ff-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    border-radius: 4px;
    margin: 0 !important;
}

/* Lightbox Controls: position fixed, bleiben immer an gleicher Stelle (bewegen sich nicht) */
.ff-lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 100001;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ff-lightbox-prev,
.ff-lightbox-next {
    position: fixed;
    top: 50%;
    margin-top: -26px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    z-index: 100001;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.ff-lightbox-prev { left: 20px; }
.ff-lightbox-next { right: 20px; }
.ff-lightbox-prev:hover,
.ff-lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.ff-lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    margin-left: -40px;
    width: 80px;
    text-align: center;
    color: #bbb;
    font-size: 14px;
    font-family: sans-serif;
    z-index: 100001;
}

/* Mobile Adjustments for Lightbox */
@media (max-width: 768px) {
    .ff-fanfoto-gallery {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
    .ff-lightbox-prev, 
    .ff-lightbox-next {
        padding: 10px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}


/* ===== Single-Content (News) – modern, an Startseite angepasst ===== */
/* Restliche spezifische Styles für News-Container */
body.single main.ff-main.ff-single-news,
body.single main.ff-main.ff-single-fanfoto {
    background: #f5f5f5;
}
/* Galerie-Seite: nichts abschneiden, Inhalt darf nach unten wachsen */
body.single .ff-single-sticky-wrap,
body.single main.ff-main.ff-single-fanfoto,
body.single main.ff-main.ff-single-fanfoto .ff-container {
    overflow: visible !important;
    min-height: 0;
}

body.single .ff-main.ff-single-news .ff-single-news-article {
    /* Neutralisiert durch Universal-Fix oben */
}

/* Meta-Zeile (Datum) unter der Überschrift */
body.single .ff-main.ff-single-news .ff-single-meta {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    margin: 0 0 32px;
    letter-spacing: 0.01em;
}

/* Featured Image: normal in der Kachel (nicht breiter) */
body.single .ff-main.ff-single-news .ff-single-featured-img {
    margin: 0 0 36px; /* Keine negativen Margins mehr */
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
}
@media (max-width: 768px) {
    body.single .ff-main.ff-single-news .ff-single-featured-img {
        margin: 0 0 24px;
        border-radius: 0;
    }
}
body.single .ff-main.ff-single-news .ff-single-featured-img img {
    width: 100%;
    height: auto;
    max-height: 600px; /* Etwas höher erlaubt */
    object-fit: cover;
    display: block;
    margin: 0 !important;
}

/* Lightbox Controls: fixed, KEINE BEWEGUNG bei Hover, nur Farbe */
/* Icons per CSS (SVG), damit sie sicher mittig sind, egal was im HTML steht */
.ff-lightbox-close {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    background-color: #c62828 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 24px !important;
    border: 2px solid #111 !important;
    color: transparent !important; /* Text ausblenden */
    font-size: 0 !important;
    cursor: pointer !important;
    z-index: 200000 !important;
    padding: 0 !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
    transform: none !important;
    transition: background-color 0.2s !important;
}
/* Falls span/svg im HTML sind: ausblenden */
.ff-lightbox-close span,
.ff-lightbox-close svg {
    display: none !important;
}
.ff-lightbox-close:hover {
    background-color: #b71c1c !important;
    transform: none !important;
}

.ff-lightbox-prev,
.ff-lightbox-next {
    position: fixed !important;
    top: 50% !important;
    margin-top: -26px !important;
    background-color: #c62828 !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 24px !important;
    border: 2px solid #111 !important;
    color: transparent !important;
    font-size: 0 !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 200000 !important;
    border-radius: 50% !important;
    width: 52px !important;
    height: 52px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
    transform: none !important;
    transition: background-color 0.2s !important;
}
.ff-lightbox-prev {
    left: 20px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E") !important;
}
.ff-lightbox-next {
    right: 20px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important;
}
.ff-lightbox-prev span,
.ff-lightbox-next span,
.ff-lightbox-prev svg,
.ff-lightbox-next svg {
    display: none !important;
}
.ff-lightbox-prev:hover,
.ff-lightbox-next:hover {
    background-color: #b71c1c !important;
    transform: none !important;
}

/* Titel (Fotos Deutschland Galerie): Größer & Fetter */
body.single .ff-main.ff-single-fanfoto .ff-page-title {
    font-size: 2.6rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

/* ===== Kommentar-Sektion: ohne Rahmen, nur Überschrift / Eingabefeld / Liste ===== */
body.single .ff-comments-wrap {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 638px;
    width: 100%;
    box-sizing: border-box;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
body.single .ff-comments-wrap #comments.ff-comments-list-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
}
body.single .ff-comments-wrap #comments:not(.ff-comments-list-wrap) {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}
body.single .ff-comments-wrap .comments-title,
body.single .ff-comments-wrap #comments .comments-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #000000;
    margin: 0 0 20px;
    padding: 0;
    border: none !important;
    width: 100%;
    font-style: normal;
    font-synthesis: none;
}
/* „X Kommentare“-Überschrift: kein order (sonst Flex sortiert sie unter das Formular). */
body.single .ff-comments-wrap .ff-comments-heading {
    margin-bottom: 20px;
    font-style: normal;
    font-synthesis: none;
}
/* Zusätzliche Überschriften im Formular ausblenden (z. B. „Antwort hinterlassen“) */
body.single .ff-comments-wrap #respond .comment-reply-title,
body.single .ff-comments-wrap #respond h3 {
    display: none !important;
}
/* Kein roter Unterstrich/Links in Kommentarbereich */
body.single .ff-comments-wrap #comments a,
body.single .ff-comments-wrap .comment-reply-link {
    color: #7B7B7B !important;
}
body.single .ff-comments-wrap .comment-author a { color: #000000 !important; }
body.single .ff-comments-wrap #respond {
    width: 100%;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0;
}
body.single .ff-comments-wrap .comment-form-author,
body.single .ff-comments-wrap .comment-form-email,
body.single .ff-comments-wrap .comment-form-url,
body.single .ff-comments-wrap .comment-notes {
    display: none !important;
}
body.single .ff-comments-wrap #respond .comment-form-comment,
body.single .ff-comments-wrap #respond .comment-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    border: none !important;
    background: transparent !important;
}
body.single .ff-comments-wrap .comment-form-comment textarea,
body.single .ff-comments-wrap .comment-form textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 640px;
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    padding: 0 36px 0 10px;
    background: #fff;
    border: 0.5px solid #cecece;
    border-radius: 3px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 30px;
    color: #000;
    resize: none;
    overflow: hidden;
    box-shadow: none !important;
}
body.single .ff-comments-wrap .must-log-in {
    margin: 0;
    padding: 0;
    background: none !important;
    border: none !important;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 14px;
    color: #7B7B7B;
}
body.single .ff-comments-wrap .must-log-in a {
    color: #B43526;
}
body.single .ff-comments-wrap .form-submit {
    margin-top: 4px;
    padding: 0;
    border: none !important;
    background: none !important;
}
body.single .ff-comments-wrap .comment-form-comment textarea::placeholder,
body.single .ff-comments-wrap .comment-form textarea::placeholder {
    color: #7B7B7B;
}
body.single .ff-comments-wrap .comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}
/* Antworten-Threads: Sichtbarkeit nur per Klick – siehe ff-comments.css */
body.single .ff-comments-wrap ul.children,
body.single .ff-comments-wrap div.children {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
body.single .ff-comments-wrap .comment-list:empty {
    display: none;
}
body.single .ff-comments-wrap .comment-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0 !important;
    width: 100%;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
body.single .ff-comments-wrap .comment-author {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #000000;
}
body.single .ff-comments-wrap .comment-author a { color: #000000; }
body.single .ff-comments-wrap .comment-meta,
body.single .ff-comments-wrap .comment-metadata {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.2;
    color: #7B7B7B;
}
body.single .ff-comments-wrap .comment-content {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0;
    color: #000000;
}
body.single .ff-comments-wrap .reply,
body.single .ff-comments-wrap .comment-actions {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 10px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    color: #7B7B7B;
}
body.single .ff-comments-wrap .reply a { color: #7B7B7B; display: inline-flex; align-items: center; }
body.single .ff-comments-wrap .comment-list .comment svg,
body.single .ff-comments-wrap .reply svg {
    width: 15px !important;
    height: 14px !important;
    flex-shrink: 0;
    overflow: visible;
}
body.single .ff-comments-wrap .ff-comments-toggle-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 5px;
}
/* Toggle-Button: Basis in ff-home.css; border-radius oben gegen GP/Theme-Pill */

/* ===== Post Navigation (Vorheriger/Nächster Beitrag) ===== */
.ff-post-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    gap: 20px;
}
.ff-nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    max-width: 48%;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
    transition: background 0.2s, transform 0.2s;
    flex: 1;
    min-width: 0;
    border: 1px solid #eee;
}
.ff-nav-link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: #ddd;
}
.ff-nav-prev {
    flex-direction: row;
    text-align: left;
}
.ff-nav-next {
    flex-direction: row;
    text-align: right;
    justify-content: flex-end;
}
.ff-nav-thumb {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    flex-shrink: 0;
    background-color: #ddd;
}
.ff-nav-prev .ff-nav-thumb { margin-right: 15px; }
.ff-nav-next .ff-nav-thumb { margin-left: 15px; order: 2; }
.ff-nav-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ff-nav-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 600;
}
.ff-nav-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Kommentar-Formular: Modern & Schön (nicht im FF-Kommentarbereich – siehe ff-comments.css) ===== */
body.single .comment-form:not(.ff-comments-wrap .comment-form):not(.ff-comments-compose .comment-form) {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-top: 40px;
}
body.single .comment-reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
    border-bottom: 2px solid #c62828;
    display: inline-block;
    padding-bottom: 8px;
}
body.single .comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}
body.single .comment-form input[type="text"],
body.single .comment-form input[type="email"],
body.single .comment-form input[type="url"],
body.single .comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 16px;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.03);
}
body.single .comment-form input:focus,
body.single .comment-form textarea:focus {
    border-color: #c62828;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}
body.single .comment-form textarea {
    min-height: 120px;
    resize: vertical;
}
/* Kommentar-Eingabe im Beitrag: flach (überschreibt min-height: 120px oben) */
body.single .ff-comments-wrap .comment-form textarea,
body.single .ff-comments-form-wrap .comment-form textarea {
    min-height: 30px !important;
    max-height: 30px !important;
    height: 30px !important;
    resize: none !important;
    line-height: 30px !important;
    padding: 0 36px 0 10px !important;
    box-shadow: none !important;
    border: 0.5px solid #cecece !important;
    border-radius: 3px !important;
}
body.single .ff-comments-wrap .form-submit,
body.single .ff-comments-form-wrap .form-submit {
    margin-top: 6px !important;
    text-align: center;
}
body.single .form-submit {
    margin-top: 24px;
    text-align: right;
}

/* ========== Single Fotos & Video + Single News – gleiches Layout: weiß, Header, Hero, Galerie/Text, Weitere Beiträge ========== */
body.single.ff-single-fv-page,
body.single.ff-single-fanfoto-page,
body.single.ff-single-news-page {
    background: #FFFFFF !important;
}
body.single.ff-single-fv-page .ff-single-sticky-wrap,
body.single.ff-single-fv-page .ff-main.ff-single-fv,
body.single.ff-single-fanfoto-page .ff-single-sticky-wrap,
body.single.ff-single-fanfoto-page .ff-main.ff-single-fv,
body.single.ff-single-news-page .ff-single-sticky-wrap,
body.single.ff-single-news-page .ff-main.ff-single-fv {
    background: #FFFFFF !important;
}
body.single .ff-single-sticky-wrap,
body.single .ff-main.ff-single-fv {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}
/* Single News: Fließtext – Text/Bild/Text/Bilder im Wechsel wie Figma */
body.single .ff-main.ff-single-fv .ff-single-news-content {
    margin-top: 0;
    margin-bottom: 32px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.015em;
    color: #111;
}
body.single .ff-main.ff-single-fv .ff-single-news-content .ff-single-news-lead,
body.single .ff-main.ff-single-fv .ff-single-news-content .ff-single-news-lead p {
    letter-spacing: 0;
}
body.single .ff-main.ff-single-fv .ff-single-news-content.ff-single-news-lead,
body.single .ff-main.ff-single-fv .ff-single-news-content.ff-single-news-lead p {
    letter-spacing: 0;
}
body.single .ff-main.ff-single-fv .ff-single-news-content p {
    margin: 0 0 1.2em;
}
body.single .ff-main.ff-single-fv .ff-single-news-content img,
body.single .ff-main.ff-single-fv .ff-single-news-content figure img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 28px 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    object-fit: cover !important;
}
body.single .ff-main.ff-single-fv .ff-single-news-content figure {
    margin: 28px 0;
    border-radius: 0;
    overflow: visible;
}
/* News-Fließtext: alle Bilder einheitlich 700px (wie Textspalte), unabhängig vom CMS-Format */
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content p:has(> img),
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content p:has(> a > img),
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content > div:has(img) {
    width: 100% !important;
    max-width: min(700px, 100%) !important;
    box-sizing: border-box;
}
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content figure,
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content .wp-caption,
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content .wp-block-image,
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content .wp-block-image figure,
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content .alignleft,
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content .alignright,
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content .aligncenter,
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content a:has(> img) {
    width: min(700px, 100%) !important;
    max-width: min(700px, 100%) !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
    display: block;
}
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content img:not(.emoji):not(.avatar),
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content figure img,
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content .wp-block-image img,
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content p img,
body.single.ff-single-news-page .ff-single-news-body .ff-single-news-content a img:not(.emoji):not(.avatar) {
    width: min(700px, 100%) !important;
    max-width: min(700px, 100%) !important;
    height: auto !important;
    min-width: 0 !important;
    display: block !important;
    margin: 28px auto !important;
    object-fit: unset !important;
    border-radius: 0 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}
body.single .ff-main.ff-single-fv .ff-single-video-wrap {
    margin: 28px 0;
}
body.single .ff-main.ff-single-fv .ff-single-fv-inner {
    max-width: min(var(--ff-layout-max), calc(100% - 2 * var(--ff-layout-gutter)));
    width: 100%;
    margin: 0 auto;
    /* wie .ff-home-wrap: Luft unter „Weitere Beiträge“ bis Footer-Trennlinie */
    padding: 0 0 48px;
    overflow: visible;
    box-sizing: border-box;
}

/* Singles: Abstand Subnav↔Aufmacher wie Hub mobil (oben/unten symmetrisch zum Karussell-Bereich) */
body.single.ff-single-news-page .ff-subnav-inner {
    padding-bottom: 6px !important;
}
body.single.ff-single-fanfoto-page .ff-subnav-inner {
    padding-bottom: 4px !important;
}
/* Titel oben; darunter eine Zeile: Autor/Kommentare links, SVG-Aktionen rechts (vertikal zentriert) */
body.single .ff-main.ff-single-fv .ff-single-fv-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
}
body.single .ff-main.ff-single-fv .ff-single-fv-header-lead {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    width: 100%;
}
body.single .ff-main.ff-single-fv .ff-single-fv-header-meta-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}
body.single .ff-main.ff-single-fv .ff-single-fv-header-meta-row .ff-single-fv-bar-left {
    flex: 1 1 auto;
    min-width: 0;
}
body.single .ff-main.ff-single-fv .ff-single-fv-header-meta-row .ff-single-fv-bar-right {
    flex-shrink: 0;
}
/* Aufmacher Kopf: 12px Titel ↔ Meta; 25px Meta↔Hero über .ff-single-fv-aufmacher gap */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-header-meta-row,
body.single.ff-single-news-page main.ff-main.ff-single-news.ff-single-fv .ff-single-fv-header-meta-row {
    margin-top: 0 !important;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-header-lead,
body.single.ff-single-news-page main.ff-main.ff-single-news.ff-single-fv .ff-single-fv-header-lead {
    gap: 0 !important;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-lead .ff-single-fv-title,
body.single.ff-single-news-page main.ff-main.ff-single-news.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-lead .ff-single-fv-title {
    margin: 0 !important;
    padding: 0 !important;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header,
body.single.ff-single-news-page main.ff-main.ff-single-news.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header {
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.single.ff-single-news-page .ff-single-fv-aufmacher h1.ff-single-fv-title,
body.single.ff-single-news-page main.ff-main.ff-single-news.ff-single-fv .ff-single-fv-aufmacher h1 {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}
/* Fotos & Video: Aufmacher gap 25px (Kopf ↔ Hero, kompakt); Galerie-Frames bleiben 46px */
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-aufmacher {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 !important;
    gap: 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-meta-row,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-meta-row {
    margin-top: 0 !important;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-lead,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-lead {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 12px;
    align-self: stretch;
    min-width: 0;
    flex: 1 1 auto;
    max-width: 100%;
    box-sizing: border-box;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-lead .ff-single-fv-title,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-lead .ff-single-fv-title {
    margin: 0 !important;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-lead .ff-single-fv-subtitle,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-lead .ff-single-fv-subtitle {
    margin: 0 !important;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-hero-img,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-hero-img {
    margin-top: 0 !important;
    width: 100%;
    max-width: 100%;
}
/* Beiträge/Titel Desk (Figma): Barlow Semi Condensed SemiBold 600 / 25px / Zeile 100% / Tracking 0 */
body.single .ff-main.ff-single-fv .ff-single-fv-title,
body.single .ff-main.ff-single-fv h1.ff-single-fv-title,
body.single main.ff-main.ff-single-news.ff-single-fv .ff-single-fv-title,
body.single main.ff-main.ff-single-news.ff-single-fv h1.ff-single-fv-title,
body.single main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-title,
body.single main.ff-main.ff-single-fanfoto.ff-single-fv h1.ff-single-fv-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    font-synthesis: none;
    text-wrap: balance;
}
/* Single News: Titel 34px (Desk) */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-title,
body.single.ff-single-news-page .ff-main.ff-single-fv h1.ff-single-fv-title,
body.single.ff-single-news-page main.ff-main.ff-single-news.ff-single-fv .ff-single-fv-title,
body.single.ff-single-news-page main.ff-main.ff-single-news.ff-single-fv h1.ff-single-fv-title {
    font-size: 34px;
}
/* Beiträge/Untertitel Desk (Figma): Barlow Semi Condensed 400 / 20px / Zeile 100% / Tracking 0 */
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-subtitle,
body.ff-single-fanfoto-page .ff-main.ff-single-fv h2.ff-single-fv-subtitle,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-subtitle,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv h2.ff-single-fv-subtitle {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    font-synthesis: none;
}
body.single .ff-main.ff-single-fv .ff-single-fv-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0;
    color: #000;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-bar-left {
    gap: 30px;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-bar-left {
    gap: 30px;
}
/* Autor: Medium 500, 15px — Zeilenhöhe 18px wie Icon-Kachel rechts */
body.single .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-author {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    line-height: 18px;
    letter-spacing: 0;
    color: #000;
}
/* News: Datum — Light 300, 15px */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-date {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    line-height: 18px;
    letter-spacing: 0;
    color: #000;
}
/* News: Autor explizit Medium 500 */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-author {
    font-weight: 500;
    font-style: normal;
}
/* News: Kommentare Light 300 (Text + Unterstreichung) */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-comments {
    font-weight: 300;
    font-style: normal;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-comments .ff-single-fv-comments-text {
    font-weight: 300;
}
/* Kommentare-Zeile: Light 300, 15px, vertikal mit Icon */
body.single .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-comments {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    line-height: 18px;
    min-height: 18px;
    letter-spacing: 0;
    color: #000;
}
body.single .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-comments .ff-single-fv-comments-text {
    font-weight: 300;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: currentColor;
}
/* Ein Icon für News + Fotos/Video: gleiche Pfade/Größe, dünne Linie (0.8) wie optisch zu Light-Text */
body.single .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-comments .ff-single-fv-comment-icon,
body.single .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-comments svg {
    flex-shrink: 0;
    width: 15px !important;
    height: 15px !important;
    display: block;
    color: currentColor;
    transform: translateY(1.5px);
}
body.single .ff-main.ff-single-fv .ff-single-fv-bar-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    color: #000;
}
/* Singles Meta-Zeile (Desktop): Anhören-Block minimal nach unten; Fortschrittsbalken etwas nach unten */
@media (min-width: 1025px) {
    body.single .ff-main.ff-single-fv .ff-single-fv-bar-right .ff-tts-wrap {
        margin-top: 1px;
    }
    body.single .ff-main.ff-single-fv .ff-single-fv-bar-right .ff-tts-wrap .ff-tts-progress {
        transform: translateY(3px);
        transform-origin: center center;
    }
}
body.single .ff-main.ff-single-fv .ff-single-fv-bar-right button.ff-single-fv-icon-btn,
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    color: #000;
    cursor: pointer;
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn:hover,
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn:focus {
    color: #B43526;
}
/* Merk-Lesezeichen: kein Rot beim Hover (Outline würde „springen“) */
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn.ff-home-card-bookmark-btn:hover,
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn.ff-home-card-bookmark-btn:focus:not(:focus-visible) {
    color: #313131;
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn.ff-home-card-bookmark-btn.is-saved:hover,
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn.ff-home-card-bookmark-btn.is-saved:focus:not(:focus-visible) {
    color: #000;
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn.ff-home-card-bookmark-btn:focus-visible {
    outline: 2px solid #b43526 !important;
    outline-offset: 2px;
    box-shadow: none !important;
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn.ff-home-card-bookmark-btn:active {
    outline: none !important;
    box-shadow: none !important;
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn.ff-home-card-bookmark-btn::-moz-focus-inner {
    border: 0;
    padding: 0;
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn.is-loading {
    opacity: 0.55;
    cursor: wait;
}
/* Leicht nach unten: 15px-Text + line-height 18px wirkt sonst unter den Icon-Mittelpunkten */
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn svg {
    display: block;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
    overflow: visible;
    transform: translateY(1.5px);
    transform-origin: center center;
}
/* AA/Textgröße: viewBox 19×23 – im Quadrat wirkt kleiner; leicht skalieren wie die übrigen Icons */
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--textsize svg {
    width: 18px !important;
    height: 18px !important;
    transform: scale(1.42) translateY(1.5px);
    transform-origin: center center;
}
/* Speichern (Lesezeichen): viewBox 12×17; Merk-Toggle: translateY + gleiche Scale-Hover wie Feed */
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark svg {
    width: 18px !important;
    height: 18px !important;
    transform: translateY(4.5px);
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn .ff-merk-svg--outline {
    transform: translateY(4.5px) scale(1);
    transform-origin: center center;
    transition: transform 0.2s ease;
    will-change: transform;
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn .ff-merk-svg--fill {
    transform: translateY(4.5px) scale(var(--ff-merk-fill-match, 1.08));
    transform-origin: center center;
    transition: transform 0.2s ease;
    will-change: transform;
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--outline {
    transform: translateY(4.5px) scale(1.14);
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--fill {
    transform: translateY(4.5px) scale(calc(var(--ff-merk-fill-match, 1.08) * 1.14));
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--outline {
    transform: translateY(4.5px) scale(1.06);
}
body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--fill {
    transform: translateY(4.5px) scale(calc(var(--ff-merk-fill-match, 1.08) * 1.06));
}
@media (prefers-reduced-motion: reduce) {
    body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn .ff-merk-svg--outline,
    body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn .ff-merk-svg--fill {
        transition: none;
    }
    body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--outline,
    body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--outline {
        transform: translateY(4.5px) scale(1);
    }
    body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--fill,
    body.single .ff-main.ff-single-fv .ff-single-fv-icon-btn--bookmark.ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--fill {
        transform: translateY(4.5px) scale(var(--ff-merk-fill-match, 1.08));
    }
}
/* Teilen (Export): wie übrige Meta-Icons (~1,5px), nur minimal tiefer */
body.single .ff-main.ff-single-fv .ff-single-fv-bar-right .ff-single-fv-icon-btn--share svg,
body.single .ff-main.ff-single-fv .ff-single-fv-bar-right button.ff-single-fv-icon-btn[aria-label="Teilen"] svg {
    transform: translateY(2px);
    transform-origin: center center;
}
body.single .ff-single-mobile-bar .ff-single-mobile-bar-icon--share svg,
body.single .ff-single-mobile-bar .ff-single-mobile-bar-icon[aria-label="Teilen"] svg {
    display: block;
    transform: translateY(2px);
    transform-origin: center center;
}
@media (max-width: 1024px) {
    body.single .ff-single-header-actions .ff-single-header-action-icon[aria-label="Teilen"] svg {
        transform: translateY(2px);
        transform-origin: center center;
    }
}
body.single .ff-main.ff-single-fv .ff-single-fv-bar-right button,
body.single .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-comments {
    overflow: visible;
}
/* Hero 16:9 – nur der Rahmen schneidet; Caption steht darunter (nicht in overflow:hidden) */
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img {
    margin-bottom: 14px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    box-sizing: border-box;
}
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-frame img,
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-inner > img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 !important;
    object-fit: cover;
}
/* Fanfoto Hero: gleiche Schale wie News — nur .ff-single-fv-hero-img-frame (ohne .ff-single-fv-hero-panel) */
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-hero-img-frame,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-hero-img-frame {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    flex: 1 1 auto;
    min-width: 0;
    height: auto;
    max-height: none;
    aspect-ratio: 878 / 418;
    overflow: hidden;
}
/* Fanfoto: 25px Kopf↔Medienblock. Medien-Stack: 46px Bildkante↔Bildkante wie horizontal — Zeilen haben unter dem Bild 5px+Caption(16px), daher Stack-Gap = 46−21. */
body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-article {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
}
body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-media-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: calc(46px - 5px - 16px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
/* Bildquelle (Hero, Galerie, Fanfoto-Feed): Barlow Condensed 13 / 400 / normal — nicht kursiv */
body.single .ff-main.ff-single-fv .ff-single-fv-caption,
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img .ff-single-fv-caption,
body.single .ff-main.ff-single-fv .ff-single-news-gallery-caption {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0;
    font-synthesis: none;
    color: #717171;
    margin: 5px 0 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}
body.single .ff-main.ff-single-fv .ff-single-fv-caption em,
body.single .ff-main.ff-single-fv .ff-single-fv-caption i,
body.single .ff-main.ff-single-fv .ff-single-fv-caption cite,
body.single .ff-main.ff-single-fv .ff-single-fv-caption strong,
body.single .ff-main.ff-single-fv .ff-single-fv-caption b {
    font-family: inherit;
    font-weight: 400;
    font-style: normal;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}
body.single .ff-main.ff-single-fv .ff-single-fv-caption a {
    font-family: inherit;
    font-weight: 400;
    font-style: normal;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}
body.single .ff-main.ff-single-fv .ff-single-fv-caption a:hover {
    color: #333;
}
body.single .ff-main.ff-single-fv .ff-single-news-gallery-caption {
    margin: 5px 0 0;
    text-align: left;
    align-self: flex-start;
    width: 100%;
    max-width: 100%;
}
/* Fanfoto: nur Galerie-Captions ohne Extra-Margin (Hero: wie News, .ff-single-fv-caption mit margin 5px 0 0) */
body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-gallery-feed .ff-single-fv-caption {
    margin: 0;
}
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 46px;
    margin-bottom: 46px;
    width: 100%;
    box-sizing: border-box;
}
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-half {
    flex: 1 1 0%;
    min-width: 0;
    max-width: 50%;
}
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-cell > img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 !important;
}
/* Fanfoto-Galerie: 46px zwischen Bildflächen; Feed-Gap wie Media-Stack (s. oben). ≥1025px: display:contents. */
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-gallery-feed {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: calc(46px - 5px - 16px);
}
@media (min-width: 1025px) {
    body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-gallery-feed {
        display: contents;
    }
}
/* Keine Row-Margins: vertikaler Abstand nur über Feed-/Stack-Gap */
body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-gallery-feed .ff-single-fv-gallery-row {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-row {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 46px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    box-sizing: border-box;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
    box-sizing: border-box;
    overflow: visible;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-row--pair .ff-gv-slot,
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-row--tallpair .ff-gv-slot {
    flex: 1 1 0;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-row--triple .ff-gv-slot {
    flex: 1 1 0;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-row--full878 .ff-gv-slot {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-row--split .ff-gv-slot--262x466 {
    flex: 262 1 0;
    min-width: 0;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-row--split .ff-gv-slot--571x466 {
    flex: 571 1 0;
    min-width: 0;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot .ff-single-fv-gallery-cell {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    background-color: #e8e8e8;
}
/* Bild füllt Kasten automatisch: proportional zoomen, überschüssiges wegschneiden (quer + hoch gleich) */
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot .ff-single-fv-gallery-cell > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: cover !important;
    object-position: center;
}
/* Video: vollständig sichtbar (contain), nicht wie Fotos beschnitten (cover) */
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot .ff-single-fv-gallery-cell--video > video.ff-single-fv-gallery-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: contain !important;
    object-position: center;
    background: #111;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot--416x261 .ff-single-fv-gallery-cell {
    aspect-ratio: 416 / 261;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot--878x418 .ff-single-fv-gallery-cell {
    aspect-ratio: 878 / 418;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot--262x466 .ff-single-fv-gallery-cell {
    aspect-ratio: 262 / 466;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot--571x466 .ff-single-fv-gallery-cell {
    aspect-ratio: 571 / 466;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot--416x740 .ff-single-fv-gallery-cell {
    aspect-ratio: 416 / 740;
}
/* Werbung in Fanfoto-Galerie: wie News — gleicher vertikaler Rhythmus wie im Feed (gap 46px vor und nach der Anzeige). */
body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-gallery-feed .ff-sn-ad-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
}
body.single.ff-single-fanfoto-page .ff-single-fv-gallery-feed .ff-sn-ad-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: #717171;
    text-align: right;
    margin-bottom: 4px;
    width: 100%;
}
body.single.ff-single-fanfoto-page .ff-single-fv-gallery-feed .ff-sn-ad-wrap .ff-home-ad-slot,
body.single.ff-single-fanfoto-page .ff-single-fv-gallery-feed .ff-sn-ad-wrap .ff-ad-slot {
    margin: 0;
    width: 100%;
}
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-hero-img-frame img,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-hero-img-frame img,
body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-hero-img-inner > img,
body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-hero-img-inner > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}
/* Fanfoto-Single: Lightbox — Pfeile nur als <img>, seitlich am Bild (Flex), kein roter Kreis */
body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-fv-lightbox-trigger {
    cursor: pointer;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root {
    position: fixed;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 52px clamp(10px, 3vw, 20px) 20px;
    box-sizing: border-box;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    margin: 0 !important;
    width: 44px !important;
    height: 44px !important;
    padding: 8px !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 0 !important;
    cursor: pointer !important;
    z-index: 200001 !important;
    transform: none !important;
    transition: opacity 0.2s ease !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-close:hover {
    background-color: transparent !important;
    opacity: 0.85;
    transform: none !important;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-close svg {
    display: block !important;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-stage {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2.5vw, 24px);
    width: 100%;
    max-width: min(1320px, 100%);
    min-height: 0;
    flex: 1 1 auto;
    margin: 0 auto;
    box-sizing: border-box;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    max-width: min(1100px, calc(100vw - 32px - 2 * clamp(44px, 11vw, 72px)));
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-content {
    max-width: 100%;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-content img {
    max-height: min(52vh, 480px);
    max-width: min(92vw, 560px);
    width: auto;
    height: auto;
    object-fit: contain;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-caption {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(15px, 2.8vw, 20px);
    line-height: 1.4;
    color: #f2f2f2 !important;
    margin: 0;
    max-width: min(878px, 100%);
    transition: none !important;
    overflow: visible;
    max-height: none;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root #ff-fv-lightbox-caption,
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root #ff-fv-lightbox-caption *,
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root #ff-fv-lightbox-caption a {
    color: #f0f0f0 !important;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-info {
    width: 100%;
    max-width: min(878px, 100%);
    text-align: center;
    color: #c8c8c8 !important;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: clamp(12.5px, 2.1vw, 15px);
    line-height: 1.45;
    overflow: visible;
    max-height: none;
    transition: none !important;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-info .ff-fv-img-info-lead,
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-info .ff-fv-img-info-body,
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-info p {
    color: #c8c8c8 !important;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-info .ff-fv-img-info-lead {
    margin: 0 0 0.55em;
    font-weight: 500;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-info .ff-fv-img-info-body {
    margin: 0;
    font-weight: 400;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-lightbox-counter {
    position: static;
    width: auto;
    margin: 0;
    left: auto;
    transform: none;
    font-size: 15px;
    color: #b0b0b0;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-lightbox-prev,
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-lightbox-next {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    margin-top: 0 !important;
    flex: 0 0 auto;
    align-self: center;
    width: clamp(40px, 9vw, 56px);
    min-width: 40px;
    height: auto;
    min-height: 72px;
    padding: 10px 6px !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    background-size: auto !important;
    background-position: initial !important;
    background-repeat: no-repeat !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 0 !important;
    cursor: pointer !important;
    z-index: 1 !important;
    transform: none !important;
    transition: opacity 0.2s ease !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-lightbox-prev:hover,
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-lightbox-next:hover {
    background-color: transparent !important;
    opacity: 0.85;
    transform: none !important;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-lightbox-prev span,
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-lightbox-next span,
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-lightbox-prev svg,
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-lightbox-next svg {
    display: none !important;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-arrow img {
    display: block !important;
    width: clamp(20px, 4.5vw, 28px);
    height: auto;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

/* News-Single: Lightbox (wie Fanfoto; Caption/Zähler nicht am Viewportrand abgeschnitten) */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-fv-lightbox-trigger {
    cursor: pointer;
}
body.single.ff-single-news-page .ff-fv-lightbox-root {
    position: fixed;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 52px clamp(10px, 3vw, 20px) max(28px, env(safe-area-inset-bottom, 20px));
    box-sizing: border-box;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-close {
    position: absolute !important;
    top: max(14px, env(safe-area-inset-top, 14px));
    right: max(14px, env(safe-area-inset-right, 14px));
    left: auto !important;
    margin: 0 !important;
    width: 44px !important;
    height: 44px !important;
    padding: 8px !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
    cursor: pointer !important;
    z-index: 200001 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-close svg {
    display: block !important;
    width: 28px;
    height: 28px;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-stage {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2.5vw, 24px);
    width: 100%;
    max-width: min(1320px, 100%);
    min-height: 0;
    flex: 1 1 auto;
    margin: 0 auto;
    box-sizing: border-box;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-main {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    max-width: min(1100px, calc(100vw - 32px - 2 * clamp(44px, 11vw, 72px)));
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-content {
    max-width: 100%;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-content img {
    /* Hochkant / große Hochformate: mittlere Anzeigegröße erzwingen */
    max-height: min(52vh, 480px);
    max-width: min(92vw, 560px);
    width: auto;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-caption {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(15px, 2.8vw, 20px);
    line-height: 1.45;
    margin: 0;
    padding: 8px 8px 4px;
    max-width: min(878px, 100%);
    box-sizing: border-box;
    word-wrap: normal;
    overflow-wrap: normal;
    overflow: visible;
    max-height: none;
    /* Nicht aus dem Fließtext erben (sonst schwarz); kein Scroll, kein Einblend-Transition */
    transition: none !important;
    color: #f2f2f2 !important;
    -webkit-font-smoothing: antialiased;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-caption:not(:empty) {
    display: block;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-caption:empty {
    display: none;
}
body.single.ff-single-news-page .ff-fv-lightbox-root #ff-fv-lightbox-caption,
body.single.ff-single-news-page .ff-fv-lightbox-root #ff-fv-lightbox-caption *,
body.single.ff-single-news-page .ff-fv-lightbox-root #ff-fv-lightbox-caption a,
body.single.ff-single-news-page .ff-fv-lightbox-root #ff-fv-lightbox-caption a:visited {
    color: #f0f0f0 !important;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-info {
    width: 100%;
    max-width: min(878px, 100%);
    text-align: center;
    color: #c8c8c8 !important;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: clamp(12.5px, 2.1vw, 15px);
    line-height: 1.45;
    padding: 0 8px 4px;
    overflow: visible;
    max-height: none;
    transition: none !important;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-info .ff-fv-img-info-lead,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-info .ff-fv-img-info-body,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-info p {
    color: #c8c8c8 !important;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-lightbox-counter {
    position: static;
    width: auto;
    margin: 0;
    padding-bottom: max(4px, env(safe-area-inset-bottom, 0px));
    left: auto;
    transform: none;
    font-size: 15px;
    color: #b0b0b0;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-lightbox-prev,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-lightbox-next {
    position: static !important;
    flex: 0 0 auto;
    align-self: center;
    width: clamp(40px, 9vw, 56px);
    min-width: 40px;
    height: auto;
    min-height: 72px;
    padding: 10px 6px !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-lightbox-prev span,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-lightbox-next span,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-lightbox-prev svg,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-lightbox-next svg {
    display: none !important;
}
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-arrow img {
    display: block !important;
    width: clamp(20px, 4.5vw, 28px);
    height: auto;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

/* Lightbox: Bild mittig; Caption/Info direkt darunter (volle Bildbreite) */
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-main,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-main {
    flex: 0 1 auto !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: none !important;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    gap: 12px;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-stack,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    max-width: min(820px, calc(100vw - 32px - 2 * clamp(44px, 11vw, 72px)));
    gap: 0;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-content,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-content {
    width: fit-content;
    max-width: 100%;
    max-height: none;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-content img,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-height: min(72vh, 720px);
    max-width: min(94vw, 820px);
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-caption,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-caption,
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root #ff-fv-lightbox-caption,
body.single.ff-single-news-page .ff-fv-lightbox-root #ff-fv-lightbox-caption {
    align-self: stretch;
    text-align: left;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 10px 0 0;
    padding: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 0;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    word-break: normal !important;
    box-sizing: border-box;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root #ff-fv-lightbox-caption *,
body.single.ff-single-news-page .ff-fv-lightbox-root #ff-fv-lightbox-caption * {
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    word-break: normal !important;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-info,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-info {
    align-self: stretch;
    text-align: left;
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 8px 0 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    word-break: normal !important;
    box-sizing: border-box;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-info .ff-fv-img-info-lead,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-info .ff-fv-img-info-lead {
    margin: 0 0 0.45em;
    font-weight: 500;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-info .ff-fv-img-info-body,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-info .ff-fv-img-info-body,
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-info p,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-info p {
    display: block;
    margin: 0 0 0.45em;
    overflow-wrap: normal !important;
    word-break: normal !important;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-fv-lightbox-info p:last-child,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-fv-lightbox-info p:last-child {
    margin-bottom: 0;
}
body.single.ff-single-fanfoto-page .ff-fv-lightbox-root .ff-lightbox-counter,
body.single.ff-single-news-page .ff-fv-lightbox-root .ff-lightbox-counter {
    align-self: center;
    width: auto;
    text-align: center;
    margin: 10px 0 0;
    padding: 0;
}

body.single.ff-single-news-page .ff-sn-flow-img-block,
body.single.ff-single-news-page .ff-single-news-body .ff-sn-media-block {
    display: block;
    width: min(700px, 100%) !important;
    max-width: min(700px, 100%) !important;
    margin: clamp(12px, 2vw, 20px) auto;
    box-sizing: border-box;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-sn-inline-img-host {
    height: auto;
    min-height: 0;
    overflow: visible;
    width: 100% !important;
    max-width: 100% !important;
}
body.single.ff-single-news-page .ff-sn-flow-img-block img,
body.single.ff-single-news-page .ff-sn-inline-img-host img,
body.single.ff-single-news-page .ff-sn-media-block img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: unset !important;
}

/* Galerie + Hero: Bildinfo unten rechts, Panel dunkel transparent, Text links (kein Karussell) */
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-cell,
body.single .ff-main.ff-single-fv .ff-fv-img-info-host {
    position: relative;
    overflow: hidden;
    width: 100%;
}
body.single .ff-main.ff-single-fv .ff-fv-img-info-host {
    height: 100%;
    box-sizing: border-box;
}
body.single .ff-main.ff-single-fv .ff-fv-img-info-btn {
    position: absolute;
    bottom: clamp(8px, 1.8vw, 12px);
    right: clamp(8px, 1.8vw, 12px);
    left: auto;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    transition: filter 0.2s ease, opacity 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}
body.single .ff-main.ff-single-fv .ff-fv-img-info-btn:hover {
    filter: brightness(1.1);
}
body.single .ff-main.ff-single-fv .ff-fv-img-info-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
body.single .ff-main.ff-single-fv .ff-fv-img-info-svg {
    width: 29px;
    height: 29px;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
    overflow: visible;
}
body.single .ff-main.ff-single-fv .ff-fv-img-info-bg,
body.single .ff-main.ff-single-fv .ff-fv-img-info-symbol-info,
body.single .ff-main.ff-single-fv .ff-fv-img-info-symbol-close {
    transition: opacity 0.22s ease;
}
body.single .ff-main.ff-single-fv .ff-fv-img-info-symbol-close {
    opacity: 0;
}
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-cell.is-info-open .ff-fv-img-info-bg,
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-inner.is-info-open .ff-fv-img-info-bg,
body.single .ff-main.ff-single-fv .ff-fv-img-info-host.is-info-open .ff-fv-img-info-bg {
    opacity: 0;
}
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-cell.is-info-open .ff-fv-img-info-symbol-info,
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-inner.is-info-open .ff-fv-img-info-symbol-info,
body.single .ff-main.ff-single-fv .ff-fv-img-info-host.is-info-open .ff-fv-img-info-symbol-info {
    opacity: 0;
}
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-cell.is-info-open .ff-fv-img-info-symbol-close,
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-inner.is-info-open .ff-fv-img-info-symbol-close,
body.single .ff-main.ff-single-fv .ff-fv-img-info-host.is-info-open .ff-fv-img-info-symbol-close {
    opacity: 1;
}
body.single .ff-main.ff-single-fv .ff-fv-img-info-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 55%;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    z-index: 4;
    background: rgba(0, 0, 0, 0.76);
    border: none;
    border-radius: 0;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0s linear 0.4s;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
}
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-cell.is-info-open .ff-fv-img-info-panel,
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-inner.is-info-open .ff-fv-img-info-panel,
body.single .ff-main.ff-single-fv .ff-fv-img-info-host.is-info-open .ff-fv-img-info-panel {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0s;
}
body.single .ff-main.ff-single-fv .ff-fv-img-info-panel-inner {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 2.8vw, 17px);
    line-height: 1.38;
    letter-spacing: 0.01em;
    color: #fff;
    text-align: left;
    padding: 16px clamp(14px, 3vw, 22px) 16px;
    padding-right: max(14px, calc(29px + clamp(8px, 1.8vw, 12px) + 10px));
    padding-bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 16px));
    margin: 0;
    max-width: none;
}
body.single .ff-main.ff-single-fv .ff-fv-img-info-panel-inner .ff-fv-img-info-lead {
    margin: 0 0 1em;
    max-width: 100%;
    word-wrap: break-word;
}
body.single .ff-main.ff-single-fv .ff-fv-img-info-panel-inner .ff-fv-img-info-body {
    margin: 0;
    max-width: 100%;
    word-wrap: break-word;
}
/* Platzhalter „Lorem …“ unter Bildinfos: keine Kursivsynthese / kein kursiver Stil */
body.single .ff-main.ff-single-fv .ff-fv-img-info-panel-inner.ff-fv-img-info-placeholder,
body.single .ff-main.ff-single-fv .ff-fv-img-info-panel-inner.ff-fv-img-info-placeholder .ff-fv-img-info-lead,
body.single .ff-main.ff-single-fv .ff-fv-img-info-panel-inner.ff-fv-img-info-placeholder .ff-fv-img-info-body {
    font-style: normal !important;
    font-synthesis: none;
}

/* Stellungnahmen: Fließtext erzwingt #000 auf <p> → Bildinfo-Zeilen im Panel wieder hell */
body.single.ff-single-news-page .ff-sn-statement-text .ff-fv-img-info-panel-inner,
body.single-post .ff-sn-statement-text .ff-fv-img-info-panel-inner,
body.single .ff-sn-statement .ff-sn-statement-text .ff-fv-img-info-panel-inner,
body.single.ff-single-news-page .ff-sn-statement-text .ff-fv-img-info-panel-inner .ff-fv-img-info-lead,
body.single-post .ff-sn-statement-text .ff-fv-img-info-panel-inner .ff-fv-img-info-lead,
body.single .ff-sn-statement .ff-sn-statement-text .ff-fv-img-info-panel-inner .ff-fv-img-info-lead,
body.single.ff-single-news-page .ff-sn-statement-text .ff-fv-img-info-panel-inner .ff-fv-img-info-body,
body.single-post .ff-sn-statement-text .ff-fv-img-info-panel-inner .ff-fv-img-info-body,
body.single .ff-sn-statement .ff-sn-statement-text .ff-fv-img-info-panel-inner .ff-fv-img-info-body {
    color: #f2f2f2 !important;
}

/*
 * Stellungsnahmen: Unter dem grauen Kasten wirkt translateY-Slide wie ein losgelöster Block.
 * Hier kein Slide – Panel bleibt am Bildunterrand „verankert“, nur Fade wie zuvor.
 */
body.single.ff-single-news-page .ff-sn-statement-text .ff-fv-img-info-host .ff-fv-img-info-panel,
body.single-post .ff-sn-statement-text .ff-fv-img-info-host .ff-fv-img-info-panel,
body.single .ff-sn-statement .ff-sn-statement-text .ff-fv-img-info-host .ff-fv-img-info-panel {
    transform: none !important;
    transition: opacity 0.18s ease, visibility 0s linear 0.18s !important;
}
body.single.ff-single-news-page .ff-sn-statement-text .ff-fv-img-info-host:not(.is-info-open) .ff-fv-img-info-panel,
body.single-post .ff-sn-statement-text .ff-fv-img-info-host:not(.is-info-open) .ff-fv-img-info-panel,
body.single .ff-sn-statement .ff-sn-statement-text .ff-fv-img-info-host:not(.is-info-open) .ff-fv-img-info-panel {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
body.single.ff-single-news-page .ff-sn-statement-text .ff-fv-img-info-host.is-info-open .ff-fv-img-info-panel,
body.single-post .ff-sn-statement-text .ff-fv-img-info-host.is-info-open .ff-fv-img-info-panel,
body.single .ff-sn-statement .ff-sn-statement-text .ff-fv-img-info-host.is-info-open .ff-fv-img-info-panel {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Galerie (nicht Hero): kompakter, ohne Scroll – Fanfoto-Zellen + News-Galerie */
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-cell .ff-fv-img-info-panel,
body.single .ff-main.ff-single-fv .ff-fv-img-info-host .ff-fv-img-info-panel {
    max-height: 42%;
    overflow-y: hidden;
    -webkit-overflow-scrolling: auto;
}
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-cell .ff-fv-img-info-panel-inner,
body.single .ff-main.ff-single-fv .ff-fv-img-info-host .ff-fv-img-info-panel-inner {
    font-size: clamp(10px, 2vw, 12px);
    line-height: 1.22;
    padding: 12px 9px 12px;
    padding-right: max(8px, calc(29px + clamp(6px, 1.5vw, 10px) + 4px));
    padding-bottom: max(12px, calc(env(safe-area-inset-bottom, 0px) + 12px));
}
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-cell .ff-fv-img-info-panel-inner .ff-fv-img-info-lead,
body.single .ff-main.ff-single-fv .ff-fv-img-info-host .ff-fv-img-info-panel-inner .ff-fv-img-info-lead {
    margin: 0 0 0.32em;
}
body.single .ff-main.ff-single-fv .ff-single-fv-row-full .ff-single-fv-gallery-full {
    width: 100%;
}
body.single .ff-main.ff-single-fv .ff-single-fv-ad-slot {
    min-height: 80px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    border-radius: 4px;
    color: #888;
    font-size: 14px;
}
body.single .ff-main.ff-single-fv article img,
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-frame img,
body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-inner > img,
body.single .ff-main.ff-single-fv .ff-single-fv-gallery-cell > img {
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
/* Thema-Kacheln in article: globales „body.single article img“ (width100%, height auto) sonst Kartenlayout + Titelzeilen */
body.single .ff-main.ff-single-fv .ff-related-topics.ff-sn-topic-row .ff-sn-topic-card-img img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: cover !important;
    object-position: center;
    display: block !important;
}
/* Weitere Beiträge: Kommentar kompakt; Lesezeichen-Höhe */
body.single.ff-single-fv-page .ff-home-more-card-comments .ff-more-svg {
    width: 15px !important;
    height: 14px !important;
}
body.single.ff-single-fv-page .ff-home-more-card-actions .ff-more-svg--bookmark {
    width: 12px !important;
    height: 17px !important;
}
body.single .ff-comments-wrap .comment-list li.ff-comment-hidden {
    display: none;
}
body.single .ff-comments-wrap .ff-comments-toggle-btn .ff-arrow {
    transition: transform 0.2s;
}
body.single .ff-comments-wrap .ff-comments-toggle-btn.is-open .ff-arrow {
    transform: rotate(180deg);
}
/* ===== Single News: Fließtext Desk – Regular 17px / Zeile 100%; Lead Medium 18px / 500 ===== */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-content {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.015em;
    color: #000;
    font-synthesis: none;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-content p {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.015em;
    margin: 0 0 1.2em;
}
/* Fließtext (nicht Lead): etwas Zeilenabstand */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-content:not(.ff-single-news-lead),
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-content:not(.ff-single-news-lead) p {
    line-height: 1.22;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-lead,
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-lead p {
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
}
/* Lead → Galerie/Überschrift: moderat (nicht zu groß) */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-lead.ff-single-news-content {
    margin-bottom: 28px;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-lead p:last-child {
    margin-bottom: 0;
}
/* ===== Stellungnahmen-Kasten: Typo + einheitlicher Blockabstand ===== */
/* Fließtext / Listen: 17px Regular, Zeilenführung wie Artikel-Fließtext */
body.single.ff-single-news-page .ff-sn-statement-text,
body.single-post .ff-sn-statement-text,
body.single .ff-sn-statement .ff-sn-statement-text,
body.single.ff-single-news-page .ff-sn-statement-text p,
body.single-post .ff-sn-statement-text p,
body.single .ff-sn-statement .ff-sn-statement-text p,
body.single.ff-single-news-page .ff-sn-statement-text li,
body.single-post .ff-sn-statement-text li,
body.single .ff-sn-statement .ff-sn-statement-text li {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: 0;
    color: #000;
    font-synthesis: none;
}
/* Überschriften im grauen Kasten (echte h2–h6): rot; Unterstreichung nur bei Links */
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content h2,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content h2,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content h2,
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content h3,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content h3,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content h3,
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content h4,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content h4,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content h4,
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content h5,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content h5,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content h5,
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content h6,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content h6,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content h6 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: 0;
    color: #B43526;
    text-decoration: none;
    font-synthesis: none;
    padding: 0;
    text-align: left;
}
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content :is(h2, h3, h4, h5, h6) a,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content :is(h2, h3, h4, h5, h6) a,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content :is(h2, h3, h4, h5, h6) a {
    color: #B43526 !important;
    text-decoration: underline !important;
    text-decoration-color: #B43526 !important;
    text-underline-offset: 0.12em;
}
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content :is(h2, h3, h4, h5, h6) a:focus,
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content :is(h2, h3, h4, h5, h6) a:hover,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content :is(h2, h3, h4, h5, h6) a:focus,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content :is(h2, h3, h4, h5, h6) a:hover,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content :is(h2, h3, h4, h5, h6) a:focus,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content :is(h2, h3, h4, h5, h6) a:hover {
    color: #B43526 !important;
}
/*
 * Vertikaler Rhythmus: column-gap (Flex) — funktioniert auch wenn Theme .entry-content p { margin: … } mit !important setzt.
 * Entfernt: ‚> * + * { margin-top }‘ (würde zusätzlich zum gap doppeln).
 */
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.2em;
    min-width: 0;
}
/* Ein einzelnes Wrapper-div (Import/Blocks): Abstand auch INNEN zwischen p/h2/… */
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content > div:only-child,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content > div:only-child,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content > div:only-child {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.2em;
    min-width: 0;
}
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content > div:only-child > *,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content > div:only-child > *,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content > div:only-child > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content > *,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content > *,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content * :is(p, h2, h3, h4, h5, h6),
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content * :is(p, h2, h3, h4, h5, h6),
body.single .ff-sn-statement .ff-sn-statement-text.entry-content * :is(p, h2, h3, h4, h5, h6) {
    margin-top: 0;
    margin-bottom: 0;
}
/* Wie Live: Abstand nach der fetten Aufruf-Zeile im selben <p> ([grau]<strong>…</strong><br>…) */
body.single.ff-single-news-page .ff-sn-statement .ff-sn-statement-text.entry-content > p > strong:first-child,
body.single-post .ff-sn-statement .ff-sn-statement-text.entry-content > p > strong:first-child,
body.single .ff-sn-statement .ff-sn-statement-text.entry-content > p > strong:first-child {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
}
/* Aus CMS als Überschrift gespeicherte „- …“-Zeilen (Klasse setzt PHP) */
body.single.ff-single-news-page .ff-sn-statement-text p.ff-sn-statement-dashline,
body.single-post .ff-sn-statement-text p.ff-sn-statement-dashline,
body.single .ff-sn-statement .ff-sn-statement-text p.ff-sn-statement-dashline {
    padding-left: 1.15em;
    text-indent: -1.15em;
    box-sizing: border-box;
}
body.single.ff-single-news-page .ff-single-news-content i,
body.single.ff-single-news-page .ff-single-news-content em {
    font-style: normal;
}
body.single.ff-single-news-page .ff-sn-statement-box i,
body.single.ff-single-news-page .ff-sn-statement-box em,
body.single-post .ff-sn-statement-box i,
body.single-post .ff-sn-statement-box em,
body.single .ff-sn-statement .ff-sn-statement-box i,
body.single .ff-sn-statement .ff-sn-statement-box em,
body.single.ff-single-news-page .ff-sn-statement-text i,
body.single.ff-single-news-page .ff-sn-statement-text em,
body.single-post .ff-sn-statement-text i,
body.single-post .ff-sn-statement-text em,
body.single .ff-sn-statement .ff-sn-statement-text i,
body.single .ff-sn-statement .ff-sn-statement-text em {
    font-style: normal;
}
body.single.ff-single-news-page .ff-sn-statement-title i,
body.single.ff-single-news-page .ff-sn-statement-title em,
body.single-post .ff-sn-statement-title i,
body.single-post .ff-sn-statement-title em,
body.single .ff-sn-statement .ff-sn-statement-title i,
body.single .ff-sn-statement .ff-sn-statement-title em {
    font-style: normal;
    font-synthesis: none;
}
/* „Weitere Beiträge“: nicht vom Fließtext / kaputtem Markup aus der Stellungnahme erben (z. B. offenes <em>) */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-home-more,
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-home-more .ff-home-more-title,
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-home-more .ff-home-more-card-rubrik,
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-home-more .ff-home-more-card-title,
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-home-more .ff-home-more-cc {
    font-style: normal;
    font-synthesis: none;
}

/* ===== Beitrag Aufmacher (Figma): flex column, gap 25px (Kopfblock ↔ Hero) ===== */
body.single.ff-single-news-page .ff-single-fv-aufmacher,
body.single.ff-single-news-page main.ff-main.ff-single-news.ff-single-fv .ff-single-fv-aufmacher {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 !important;
    gap: 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header {
    margin-bottom: 0;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-hero-img,
body.single.ff-single-news-page main.ff-main.ff-single-news.ff-single-fv .ff-single-fv-hero-img {
    max-width: 100%;
    width: 100%;
    margin-top: 0 !important;
}
body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-hero-img,
body.single.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-hero-img {
    max-width: 100%;
    width: 100%;
    margin-top: 0 !important;
}
/* Abstand unter Hero: Content-Spalte 700px (Teaser, Galerie, Werbung, Fließtext). */
body.single.ff-single-news-page .ff-single-news-body {
    margin-top: 0;
    max-width: min(700px, calc(100% - 2 * var(--ff-layout-gutter)));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
/* Theme .single .entry-content: seitlich 0 (bündig zur Werbung), vertikal kein Doppel-Padding – Abstände über Section-Margins */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-body .entry-content {
    padding: 0 !important;
}
/* Erster Block unter Hero: oben wie früher ~ein Innenpadding */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-body > .ff-sn-section:first-child {
    margin-top: 24px;
}
/* Fließtext: h2/h3 wie Rhythmus Fotos & Video (Untertitel 20px / enger zu Absätzen) */
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-content h2 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    color: #000;
    margin: 28px 0 12px;
    font-synthesis: none;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-content h2:first-child {
    margin-top: 0;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-content h3 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 0;
    color: #000;
    margin: 22px 0 8px;
}
body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-content h3:first-child {
    margin-top: 0;
}
body.single.ff-single-news-page .ff-sn-section {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* ===== Galerie (News): Root .ff-single-news-gallery — unabhängig von body.ff-single-news-page ===== */
body.single .ff-single-news-gallery {
    overflow: visible;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0;
    color: #000;
    margin: 0 0 12px;
    font-synthesis: none;
    text-align: left;
    width: 100%;
    max-width: 100%;
}
body.single .ff-single-news-gallery-wrap {
    margin-bottom: 32px;
    overflow: visible;
}
/* Galerie = volle Content-Breite wie Werbung; Pfeile per absolute links/rechts AUSSERHALB (kein Flex, der die Mitte schmal zieht) */
body.single .ff-single-news-gallery .ff-single-news-gallery-frame {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: visible;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-viewport-row {
    position: relative;
    width: 100%;
    align-self: stretch;
    box-sizing: border-box;
    overflow: visible;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-prev,
body.single .ff-single-news-gallery .ff-single-news-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    margin: 0;
}
/* Abstand Galerie↔Pfeil: inset mit calc — reine Margins wirken bei right/left:100% oft nicht sichtbar */
body.single .ff-single-news-gallery .ff-single-news-gallery-prev {
    right: calc(100% + clamp(14px, 3vw, 40px));
    left: auto;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-next {
    left: calc(100% + clamp(14px, 3vw, 40px));
    right: auto;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    color: #ccc;
    -webkit-tap-highlight-color: transparent;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-arrow:hover {
    color: #b3b3b3;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-arrow svg {
    display: block;
    flex-shrink: 0;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-arrow:focus-visible {
    outline: 2px solid #B43526;
    outline-offset: 2px;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-viewport {
    width: 100%;
    min-width: 0;
    overflow: visible;
    background: transparent;
    display: block;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-track {
    width: 100%;
    position: relative;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-slide {
    width: 100%;
    min-height: 0;
    box-sizing: border-box;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-slide:not([hidden]) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-image-pane {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1a1a1a;
    flex: 0 0 auto;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-image-pane .ff-fv-img-info-host {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    isolation: isolate;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-slide .ff-fv-img-info-host {
    isolation: isolate;
    min-height: 100%;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-viewport .ff-fv-img-info-panel {
    z-index: 10;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-viewport .ff-fv-img-info-btn {
    z-index: 20;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-slide[hidden] {
    display: none !important;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-image-pane img,
body.single .ff-single-news-gallery .ff-single-news-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 !important;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-embed {
    width: 100%;
    height: 100%;
    position: relative;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 0;
    list-style: none;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    line-height: 0;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-dot-shape {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D9D9D9;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-dot.is-active .ff-single-news-gallery-dot-shape {
    background: #000;
}
body.single .ff-single-news-gallery .ff-single-news-gallery-dot:focus-visible {
    outline: 2px solid #B43526;
    outline-offset: 2px;
}

/* ===== Werbung (gleiche Breite wie Content) ===== */
body.single.ff-single-news-page .ff-sn-ad-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 28px;
}
body.single.ff-single-news-page .ff-sn-ad-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: #717171;
    text-align: right;
    margin-bottom: 4px;
    width: 100%;
}
body.single.ff-single-news-page .ff-sn-ad-wrap .ff-home-ad-slot,
body.single.ff-single-news-page .ff-sn-ad-wrap .ff-ad-slot {
    margin: 0;
    width: 100%;
}

/* ===== Stellungnahme (Überschrift rot + grauer Kasten wie klassische FF-Seite) ===== */
body.single.ff-single-news-page .ff-sn-statement,
body.single-post .ff-sn-statement,
body.single .ff-sn-statement {
    margin-top: 32px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
/* Rote Außenüberschrift: Barlow Condensed 600 / 25px; Unterstreichung nur bei eingebetteten Links */
body.single.ff-single-news-page .ff-sn-statement-title,
body.single-post .ff-sn-statement-title,
body.single .ff-sn-statement .ff-sn-statement-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    line-height: 1;
    letter-spacing: 0.005em;
    color: #B43526 !important;
    text-decoration: none;
    text-align: center !important;
    margin: 0 0 16px;
    padding: 0;
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
    font-synthesis: none;
}
body.single.ff-single-news-page .ff-sn-statement-title a,
body.single-post .ff-sn-statement-title a,
body.single .ff-sn-statement .ff-sn-statement-title a {
    color: #B43526 !important;
    text-decoration: underline !important;
    text-decoration-color: #B43526 !important;
    text-underline-offset: 0.1em;
}
body.single.ff-single-news-page .ff-sn-statement-title a:focus,
body.single.ff-single-news-page .ff-sn-statement-title a:hover,
body.single-post .ff-sn-statement-title a:focus,
body.single-post .ff-sn-statement-title a:hover,
body.single .ff-sn-statement .ff-sn-statement-title a:focus,
body.single .ff-sn-statement .ff-sn-statement-title a:hover {
    color: #B43526 !important;
}
body.single.ff-single-news-page .ff-sn-statement-box,
body.single-post .ff-sn-statement-box,
body.single .ff-sn-statement .ff-sn-statement-box {
    background: #F4F4F4;
    /* Kasten 700px; Fließtext-Spalte 650px → (700−650)/2 horizontal */
    max-width: 700px;
    width: 100%;
    padding: 24px 25px;
    border-radius: 0;
    color: #000;
    text-align: left;
    box-sizing: border-box;
}
body.single.ff-single-news-page .ff-sn-statement-text,
body.single-post .ff-sn-statement-text,
body.single .ff-sn-statement .ff-sn-statement-text {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Verwandte Themen: style.css (.ff-related-topics) */

/* ===== Rest-Content: Bilder 700px (falls .ff-single-news-rest genutzt) ===== */
body.single.ff-single-news-page .ff-single-news-rest figure,
body.single.ff-single-news-page .ff-single-news-rest .wp-caption,
body.single.ff-single-news-page .ff-single-news-rest .wp-block-image {
    width: min(700px, 100%) !important;
    max-width: min(700px, 100%) !important;
    float: none !important;
    margin: 20px auto;
    box-sizing: border-box;
}
body.single.ff-single-news-page .ff-single-news-rest img,
body.single.ff-single-news-page .ff-single-news-rest figure img {
    width: min(700px, 100%) !important;
    max-width: min(700px, 100%) !important;
    height: auto !important;
    min-width: 0 !important;
    display: block;
    margin: 0 auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: unset !important;
}

/* ===== Kommentare (Image 2 Design) ===== */
body.single.ff-single-news-page .ff-comments-wrap {
    max-width: min(700px, calc(100% - 2 * var(--ff-layout-gutter)));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    border-top: none;
    padding-top: 0;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
body.single.ff-single-news-page .ff-comments-wrap #comments .comments-title,
body.single.ff-single-news-page .ff-comments-wrap .comment-reply-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    text-align: center;
    margin: 0 0 20px;
    font-style: normal;
    font-synthesis: none;
}
/* Kommentar-Eingabe: unter der Liste */
body.single.ff-single-news-page .ff-comments-heading,
body.single.ff-single-news-page .ff-comments-wrap .comments-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000;
    text-align: center;
    margin: 0 0 20px;
    width: 100%;
    font-style: normal;
    font-synthesis: none;
}
body.single .ff-comments-compose {
    box-sizing: border-box;
    width: 100%;
    max-width: 640px;
    margin: 0 auto 20px;
    padding-top: 0;
    border-top: none;
}
body.single .ff-comments-compose-note {
    margin: 0 0 8px;
    padding: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.35;
    color: #7b7b7b;
    text-align: center;
}
body.single .ff-comments-compose-note a {
    color: #b43526;
    text-decoration: none;
}
body.single .ff-comments-compose-note a:hover {
    text-decoration: underline;
}
body.single.ff-single-news-page .ff-comments-form-wrap,
body.single .ff-comments-compose .ff-comments-form-wrap {
    box-sizing: border-box;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
body.single.ff-single-news-page .ff-comments-form-wrap #respond {
    width: 100%;
    margin: 0;
    padding: 0 !important;
}
body.single.ff-single-news-page .ff-comments-form-wrap .comment-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    align-items: center;
    gap: 8px;
}
body.single.ff-single-news-page .ff-comments-form-wrap .comment-form p {
    margin: 0;
}
body.single.ff-single-news-page .ff-comments-form-wrap .comment-form-comment {
    width: 100%;
    max-width: 640px;
    margin: 0;
    padding: 0;
}
body.single.ff-single-news-page .ff-comments-form-wrap .comment-form textarea {
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 640px;
    height: 28px;
    min-height: 28px;
    max-height: 28px;
    margin: 0 auto;
    padding: 5px 10px;
    background: #ffffff;
    border: 0.5px solid #cecece;
    border-radius: 3px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.25;
    color: #000;
    resize: none;
    overflow: hidden;
    box-shadow: none;
}
body.single.ff-single-news-page .ff-comments-form-wrap .comment-form textarea:focus {
    border-color: #b43526;
    outline: none;
    box-shadow: 0 0 0 1px rgba(180, 53, 38, 0.2);
}
body.single.ff-single-news-page .ff-comments-form-wrap .comment-form input[type="text"],
body.single.ff-single-news-page .ff-comments-form-wrap .comment-form input[type="email"],
body.single.ff-single-news-page .ff-comments-form-wrap .comment-form input[type="url"] {
    box-sizing: border-box;
    width: 100%;
    max-width: 640px;
    height: 30px;
    padding: 0 10px;
    background: #ffffff;
    border: 1px solid #cecece;
    border-radius: 3px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 13px;
    color: #000;
}
body.single.ff-single-news-page .ff-comments-form-wrap .form-submit {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
body.single.ff-single-news-page .ff-comments-wrap .comment-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}
body.single.ff-single-news-page .ff-comments-wrap .comment-list > li.comment {
    padding: 0;
    border: none;
    border-bottom: none;
}
body.single.ff-single-news-page .ff-comments-wrap .comment-author {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}
body.single.ff-single-news-page .ff-comments-wrap .comment-metadata {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}
body.single.ff-single-news-page .ff-comments-wrap .comment-content {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #000;
}
body.single.ff-single-news-page .ff-comments-toggle-wrap {
    text-align: center;
    margin: 20px 0;
    width: 100%;
    align-self: stretch;
}
body.single.ff-single-news-page .ff-comments-toggle-btn {
    /* erbt Basis .ff-comments-toggle-btn (Mehr-laden-Optik); nur Abstand der Zeile */
    margin: 0 auto;
}
body.single.ff-single-news-page .ff-comments-list-wrap {
    margin: 0 auto 0;
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    text-align: left;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment {
    margin: 0;
    padding: 0;
    border: none;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment + .comment {
    border-top: none;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 0 24px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    border: none;
    box-shadow: none;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #000;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-author .avatar,
body.single.ff-single-news-page .ff-comments-list-wrap img.avatar {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    margin: 0;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-author .says {
    display: none !important;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-author .fn {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-author .fn a {
    color: #000 !important;
    text-decoration: none;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-author .fn a:hover {
    color: #b43526 !important;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-metadata {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.2;
    color: #7b7b7b;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-metadata a {
    color: #7b7b7b !important;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-content {
    width: 100%;
    padding-left: 0;
    box-sizing: border-box;
    margin: 0;
}
body.single.ff-single-news-page .ff-comments-list-wrap .comment-content p {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0;
    color: #000;
    margin: 0;
}
body.single.ff-single-news-page .ff-comments-list-wrap .reply {
    padding: 0;
    margin: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 15px;
    line-height: 1;
    color: #7b7b7b;
}
body.single.ff-single-news-page .ff-comments-list-wrap .reply a {
    color: #7b7b7b !important;
    text-decoration: none;
}
body.single.ff-single-news-page .ff-comments-list-wrap .reply a:hover {
    color: #b43526 !important;
}
/* Antwort-Link: Text + Icon aus ff-comments.php (kein ::after-Hack mehr) */
body.single.ff-single-news-page .ff-comment-hidden {
    display: none !important;
}

/* Kommentarliste: Fanfoto + generisches Single (gleiches Karten-Layout) */
body.single .ff-comments-list-wrap,
body.single .ff-comments-wrap .comment-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    list-style: none;
    padding: 0;
}
body.single .ff-comments-list-wrap .comment,
body.single .ff-comments-wrap .comment-list > li.comment {
    padding: 0;
    margin: 0;
    border: none;
}
body.single .ff-comments-list-wrap .comment + .comment,
body.single .ff-comments-wrap .comment-list > li.comment + li.comment {
    border-top: none;
}
body.single .ff-comments-list-wrap .comment-body,
body.single .ff-comments-wrap .comment-list .comment-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 0 24px !important;
    margin: 0;
    width: 100%;
}
body.single .ff-comments-list-wrap .comment-meta,
body.single .ff-comments-wrap .comment-list .comment-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    width: 100%;
}
body.single .ff-comments-list-wrap .comment-author,
body.single .ff-comments-wrap .comment-list .comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}
body.single .ff-comments-list-wrap .avatar,
body.single .ff-comments-wrap .comment-list .avatar {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50%;
    object-fit: cover;
}
body.single .ff-comments-list-wrap .comment-author .says,
body.single .ff-comments-wrap .comment-list .comment-author .says {
    display: none !important;
}
body.single .ff-comments-list-wrap .comment-metadata,
body.single .ff-comments-wrap .comment-list .comment-metadata {
    font-size: 12px;
    color: #7b7b7b;
}
body.single .ff-comments-list-wrap .comment-content,
body.single .ff-comments-wrap .comment-list .comment-content {
    padding-left: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0;
}
body.single .ff-comments-list-wrap .reply,
body.single .ff-comments-wrap .comment-list .reply {
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1;
}

/* ===== Mobile App-Bar (nur ≤1024px) ===== */
.ff-single-mobile-bar {
    display: none;
}

@media (max-width: 1024px) {
    /* Desktop Action-Bar unter Titel auf Mobile ausblenden */
    .ff-single-fv-bar-right--desktop {
        display: none !important;
    }

    /* Titel auf Mobile zentriert + Abstand (Typo wie Desk, max. 25px) */
    body.single .ff-main.ff-single-fv .ff-single-fv-title,
    body.single .ff-main.ff-single-fv h1.ff-single-fv-title {
        text-align: center;
        margin-top: 36px;
        font-size: clamp(20px, 5.2vw, 25px);
        font-family: 'Barlow Semi Condensed', sans-serif;
        font-weight: 600;
        font-style: normal;
        line-height: 1;
        letter-spacing: 0;
        font-synthesis: none;
    }
    body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-title,
    body.single.ff-single-news-page .ff-main.ff-single-fv h1.ff-single-fv-title {
        font-size: clamp(22px, 6.5vw, 34px);
    }
    body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-subtitle,
    body.ff-single-fanfoto-page .ff-main.ff-single-fv h2.ff-single-fv-subtitle {
        text-align: center;
        font-size: clamp(17px, 4.2vw, 20px);
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0;
    }

    /* Container volle Breite */
    body.single .ff-main.ff-single-news .ff-container,
    body.single .ff-main.ff-single-fanfoto .ff-container,
    body.single .ff-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 16px 12px !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        box-shadow: none !important;
    }

    /* Single FV: volle Breite, kein Rand */
    body.single .ff-main.ff-single-fv {
        padding: 0 !important;
    }
    body.single .ff-main.ff-single-fv .ff-single-fv-inner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        /* nicht 0: sonst sitzt „Weitere Beiträge“ zu dicht an der Footer-Linie (Startseite: .ff-home-wrap 48px) */
        padding: 0 0 48px !important;
    }

    /* Aufmacher volle Breite */
    body.single .ff-main.ff-single-fv .ff-single-fv-aufmacher {
        width: 100%;
        max-width: 100%;
        padding: 0;
        overflow: visible;
    }

    /* Hero-Bild volle Breite; Caption unterhalb sichtbar */
    body.single .ff-main.ff-single-fv .ff-single-fv-hero-img {
        margin-left: 0;
        margin-right: 0;
        width: 100% !important;
        max-width: 100vw !important;
        border-radius: 0;
        overflow: visible;
        box-sizing: border-box;
    }
    body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-frame {
        aspect-ratio: auto;
        overflow: hidden;
        width: 100%;
    }
    body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher,
    body.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-aufmacher {
        gap: 25px;
    }
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-article {
        gap: 25px;
    }
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-media-stack {
        gap: clamp(24px, 6vw, calc(46px - 5px - 16px));
    }
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-hero-img {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }
    /* Hero (nur Aufmacher): wie News — kein Figma-878×418-Crop, Bildhöhe natürlich */
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-hero-img-frame,
    body.single.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-hero-img-frame {
        aspect-ratio: auto;
        height: auto;
        max-height: none;
    }
    body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-gallery-feed {
        padding: 0 12px;
        max-width: 100%;
        gap: clamp(24px, 6vw, calc(46px - 5px - 16px));
    }
    body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-row {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
        gap: clamp(24px, 6vw, calc(46px - 5px - 16px));
    }
    body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot .ff-single-fv-gallery-cell {
        width: 100% !important;
    }
    body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot--416x261 .ff-single-fv-gallery-cell {
        aspect-ratio: 416 / 261;
    }
    body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot--878x418 .ff-single-fv-gallery-cell {
        aspect-ratio: 878 / 418;
    }
    body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot--262x466 .ff-single-fv-gallery-cell {
        aspect-ratio: 262 / 466;
    }
    body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot--571x466 .ff-single-fv-gallery-cell {
        aspect-ratio: 571 / 466;
    }
    body.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-gv-slot--416x740 .ff-single-fv-gallery-cell {
        aspect-ratio: 416 / 740;
    }
    body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-frame img,
    body.single .ff-main.ff-single-fv .ff-single-fv-hero-img-inner > img {
        width: 100%;
        height: auto;
        max-height: none;
        display: block;
        object-fit: cover;
    }
    /* Global Fanfoto img { height:100% !important } — nur Hero Aufmacher: wie News (height:auto) */
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-hero-img-frame img,
    body.single.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-hero-img-frame img,
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-hero-img-inner > img,
    body.single.ff-single-fanfoto-page main.ff-main.ff-single-fanfoto.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-hero-img-inner > img {
        width: 100% !important;
        height: auto !important;
        max-height: none;
        display: block;
        object-fit: cover;
    }

    /* Header-Bereich für Single-Seite (Titel etc.) */
    body.single .ff-main.ff-single-fv .ff-single-fv-header {
        padding: 0 12px;
    }

    /*
     * Nur Mobile (dieser @media-Block): News — Titel mittig; Meta eine Zeile: Autor | Datum | Kommentare; 12px zum Rand (s. padding oben).
     */
    body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-lead {
        align-items: center;
    }
    body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-title,
    body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-aufmacher h1.ff-single-fv-title {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-header-meta-row {
        justify-content: stretch;
        flex-wrap: nowrap;
        gap: 8px;
    }
    body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-header-meta-row .ff-single-fv-bar-left {
        flex: 1 1 auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 6px 30px;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        /* Wie Fotos/Video: etwas mehr Luft zwischen Kopf-Innenrand und Autor/Datum/Kommentare */
        padding-left: 12px;
        padding-right: 12px;
    }
    body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-author {
        justify-self: start;
    }
    body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-date {
        justify-self: center;
    }
    body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-fv-bar-left .ff-single-fv-comments {
        justify-self: end;
    }

    /*
     * Nur Mobile: Fotos & Video — Titel mittig; Autor links, Kommentare rechts (Mitte frei, Datum steht im Untertitel).
     */
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-lead {
        align-items: center;
    }
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-title,
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher h1.ff-single-fv-title {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-subtitle,
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher h2.ff-single-fv-subtitle {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-header-meta-row {
        justify-content: stretch;
        flex-wrap: nowrap;
        gap: 8px;
    }
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-bar-left {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 30px;
        min-width: 0;
        box-sizing: border-box;
        /* Zusätzlich zum .ff-single-fv-header-Padding: Autor/Kommentare nicht bündig an den Innenrand */
        padding-left: 12px;
        padding-right: 12px;
    }
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-bar-left .ff-single-fv-author,
    body.single.ff-single-fanfoto-page .ff-main.ff-single-fv .ff-single-fv-aufmacher .ff-single-fv-bar-left .ff-single-fv-comments {
        flex: 0 0 auto;
    }

    /* Body-Content mit Seitenpadding */
    body.single .ff-main.ff-single-fv .ff-single-fv-body {
        padding: 0 12px;
    }

    /* Featured Image (altes Template) volle Breite */
    body.single .ff-main.ff-single-news .ff-single-featured-img {
        margin-left: 0;
        margin-right: 0;
        width: 100% !important;
        max-width: 100vw !important;
        border-radius: 0;
    }
    body.single .ff-main.ff-single-news .ff-single-featured-img img {
        max-height: none;
        width: 100%;
        display: block;
    }

    /* Subnav / Brotkrumen auf Single-Mobile ausblenden */
    body.single .ff-subnav-wrap {
        display: none !important;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    body.single .ff-main.ff-single-fv .ff-single-fv-header,
    body.single .ff-main.ff-single-fv .ff-single-fv-hero-img {
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-content p {
        font-size: 17px;
    }
    body.single.ff-single-news-page .ff-main.ff-single-fv .ff-single-news-lead p {
        font-size: 18px;
    }
    .ff-post-navigation {
        flex-direction: column;
    }
    .ff-nav-link {
        max-width: 100%;
    }
}

/* ===== Vorlesen (Browser-TTS / optional ElevenLabs): Leiste + SVG-Maße ===== */
@media (max-width: 1024px) {
    body.single .ff-header-inner,
    body.single .ff-header-right {
        overflow: visible !important;
    }

    body.single .ff-tts-wrap {
        gap: 8px;
    }

    body.single .ff-header .ff-tts-wrap {
        align-items: center;
        align-self: center;
        min-height: 26px;
        height: auto;
        gap: 6px;
        overflow: visible !important;
        margin-top: 1px;
    }

    body.single .ff-header .ff-tts-wrap .ff-tts-trigger.ff-single-header-action-icon {
        width: 23px !important;
        height: 23px !important;
        min-width: 23px !important;
        min-height: 23px !important;
        overflow: visible !important;
    }

    body.single .ff-header .ff-tts-trigger-faces {
        width: 23px;
        height: 23px;
        overflow: visible !important;
    }

    body.single .ff-header .ff-tts-trigger-face {
        width: 23px;
        height: 23px;
        overflow: visible !important;
    }

    body.single .ff-header .ff-tts-wrap .ff-tts-trigger.ff-single-header-action-icon .ff-tts-trigger-face--idle svg {
        width: 19px !important;
        height: 19px !important;
        transform: translateY(1px);
        overflow: visible !important;
    }

    body.single .ff-header .ff-tts-wrap .ff-tts-trigger.ff-single-header-action-icon .ff-tts-trigger-face--close .ff-tts-close-svg {
        width: 15px !important;
        height: 15px !important;
        transform: translateY(3px);
    }
}

/* row-reverse + [Trigger, Playbar] — 18px wie .ff-single-fv-bar-right zwischen Icons */
body.single .ff-tts-wrap {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 18px;
    vertical-align: bottom;
    max-width: 100%;
    color: #000;
}

body.single .ff-tts-wrap.is-expanded {
    position: relative;
    z-index: 5;
}

/* kein hoher z-index: sonst über sticky .ff-header-stack (9500) beim Scrollen */

/* Kachel 20×20: Kreuz etwas größer, Lautsprecher bleibt 18px zentriert */
body.single .ff-tts-wrap .ff-tts-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
    color: #000;
}

body.single .ff-tts-wrap .ff-tts-trigger.ff-single-header-action-icon,
body.single .ff-tts-wrap .ff-tts-trigger.ff-single-mobile-bar-icon,
body.single .ff-tts-wrap .ff-tts-trigger.ff-single-fv-icon-btn {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
}

/* Schließen: rot wie Tempo-Zahlen */
body.single .ff-tts-wrap .ff-tts-trigger.ff-tts-trigger--session {
    color: #B43526;
}

body.single .ff-tts-trigger-faces {
    display: grid;
    place-items: center center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

body.single .ff-tts-trigger-face {
    grid-area: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    transition: opacity 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

body.single .ff-tts-trigger-face--idle svg {
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

body.single .ff-tts-trigger-face--close .ff-tts-close-svg {
    display: block;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transform: translateY(3px);
    transform-origin: center center;
}

body.single .ff-tts-wrap .ff-tts-trigger.ff-single-fv-icon-btn .ff-tts-trigger-face--idle svg,
body.single .ff-tts-wrap .ff-tts-trigger.ff-single-header-action-icon .ff-tts-trigger-face--idle svg,
body.single .ff-tts-wrap .ff-tts-trigger.ff-single-mobile-bar-icon .ff-tts-trigger-face--idle svg {
    width: 18px !important;
    height: 18px !important;
}

body.single .ff-tts-wrap .ff-tts-trigger.ff-single-fv-icon-btn .ff-tts-trigger-face--close .ff-tts-close-svg,
body.single .ff-tts-wrap .ff-tts-trigger.ff-single-header-action-icon .ff-tts-trigger-face--close .ff-tts-close-svg,
body.single .ff-tts-wrap .ff-tts-trigger.ff-single-mobile-bar-icon .ff-tts-trigger-face--close .ff-tts-close-svg {
    width: 15px !important;
    height: 15px !important;
    transform: translateY(3px);
    transform-origin: center center;
}

body.single .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg,
body.single .ff-main.ff-single-fv .ff-single-fv-bar-right .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg,
body.single .ff-single-mobile-bar .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg,
body.single .ff-single-header-actions .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg {
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    flex-shrink: 0;
    overflow: visible !important;
    transform: none;
    transform-origin: center center;
}

body.single .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg--play,
body.single .ff-main.ff-single-fv .ff-single-fv-bar-right .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg--play,
body.single .ff-single-mobile-bar .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg--play,
body.single .ff-single-header-actions .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg--play {
    width: 19px !important;
    height: 19px !important;
}

body.single .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg--pause,
body.single .ff-main.ff-single-fv .ff-single-fv-bar-right .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg--pause,
body.single .ff-single-mobile-bar .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg--pause,
body.single .ff-single-header-actions .ff-tts-wrap .ff-tts-play-pause .ff-tts-pp-svg--pause {
    width: 22px !important;
    height: 22px !important;
    transform: translateY(2px);
    transform-origin: center center;
}

body.single .ff-tts-trigger-face--close {
    opacity: 0;
    pointer-events: none;
}

body.single .ff-tts-trigger--session .ff-tts-trigger-face--idle {
    opacity: 0;
    pointer-events: none;
}

body.single .ff-tts-trigger--session .ff-tts-trigger-face--close {
    opacity: 1;
    pointer-events: auto;
}

/*
 * Aufklappen: max-width (überall animierbar) + inneres translateX.
 * Hinweis: grid-template-columns 0fr→1fr wird in vielen Browsern nicht interpoliert → Leiste blieb zu.
 */
body.single .ff-tts-playbar {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    vertical-align: bottom;
    /* x+y hidden: x+y „visible“ erzwingt in Browsern oft overflow-y:auto → Scrollbalken */
    overflow: hidden;
    max-width: 0;
    min-width: 0;
    pointer-events: none;
    transition: max-width 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

body.single .ff-tts-wrap.is-expanded .ff-tts-playbar {
    max-width: min(32rem, calc(100vw - 1.25rem));
    pointer-events: auto;
}

body.single .ff-tts-playbar-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 8px;
    width: min(205px, calc(100vw - 4rem));
    min-height: 24px;
    flex: none;
    flex-shrink: 0;
    box-sizing: border-box;
    transform: translate3d(10px, 0, 0);
    transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1) 0.02s;
}

body.single .ff-tts-wrap.is-expanded .ff-tts-playbar-inner {
    transform: translate3d(0, 0, 0);
    pointer-events: auto !important;
    position: relative;
    z-index: 2;
}

body.single .ff-tts-wrap.is-expanded .ff-tts-play-pause {
    pointer-events: auto !important;
    position: relative;
    z-index: 3;
}

@media (max-width: 1024px) {
    body.single .ff-tts-wrap.is-expanded .ff-tts-playbar {
        max-width: min(230px, calc(100vw - 56px));
    }

    body.single .ff-tts-playbar-inner {
        width: min(170px, calc(100vw - 4.5rem));
        gap: 7px;
        min-height: 26px;
        align-items: center;
        transform: translate3d(10px, 0, 0);
    }

    body.single .ff-tts-wrap.is-expanded .ff-tts-playbar-inner {
        transform: translate3d(0, 0, 0);
    }

    body.single .ff-tts-speed-btn.ff-tts-speed-btn--cycle {
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 24px !important;
        height: 24px !important;
        min-height: 24px !important;
        letter-spacing: -0.02em;
        transform: translateY(2px);
        transform-origin: center center;
    }

    body.single .ff-tts-progress {
        height: 6px;
        min-width: 28px;
        transform: translateY(5px);
        transform-origin: center center;
    }

    body.single .ff-tts-time-current,
    body.single .ff-tts-time-total {
        font-size: 12px;
        line-height: 18px;
        height: 18px;
        transform: translateY(0);
    }

    body.single .ff-tts-time {
        transform: translateY(0);
    }
}

body.single .ff-tts-speed {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    flex-shrink: 0;
    box-sizing: border-box;
}

body.single .ff-tts-speed-btn {
    margin: 0;
    padding: 0;
    width: 2.625rem;
    min-width: 2.625rem;
    max-width: 2.625rem;
    height: 24px;
    line-height: 22px;
    border: 1px solid #000;
    border-radius: 0;
    background: #fff;
    font-size: 10px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: #000;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
}

/* 1×/1,5×: nur nötige Breite + min für Wechsel ohne Sprung; minimal nach unten (Play-Zeile) */
body.single .ff-tts-speed-btn.ff-tts-speed-btn--cycle {
    width: auto;
    min-width: 0;
    max-width: none;
    height: 24px;
    min-height: 24px;
    line-height: 24px;
    border: none;
    border-radius: 0;
    background: transparent;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0;
    font-variant-numeric: tabular-nums;
    color: #000;
    text-align: left;
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body.single .ff-tts-speed-btn.ff-tts-speed-btn--cycle:hover,
body.single .ff-tts-speed-btn.ff-tts-speed-btn--cycle:focus-visible {
    color: #B43526;
}

body.single .ff-tts-speed-btn.is-active:not(.ff-tts-speed-btn--cycle) {
    border-color: #B43526;
    background: #fff;
    color: #B43526;
    font-weight: 600;
}

body.single .ff-tts-progress {
    flex: 1 1 0;
    min-width: 40px;
    height: 7px;
    border-radius: 999px;
    background: #d6d6d6;
    overflow: hidden;
    align-self: center;
    margin: 0;
    cursor: pointer;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
}

body.single .ff-tts-progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: #b43526;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    body.single .ff-tts-progress-fill {
        transition: width 0.12s linear;
    }
}

body.single .ff-tts-play-pause {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px !important;
    min-width: 24px !important;
    height: 24px !important;
    min-height: 24px !important;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    border: none;
    background: transparent !important;
    box-shadow: none !important;
    color: #000;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

body.single .ff-tts-play-pause:disabled {
    opacity: 0.45;
    cursor: default;
}

body.single .ff-tts-play-pause:not(:disabled):hover,
body.single .ff-tts-play-pause:not(:disabled):focus-visible {
    color: #B43526;
}

body.single .ff-tts-time-current,
body.single .ff-tts-time-total {
    flex-shrink: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    font-variant-numeric: tabular-nums;
    line-height: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: 0;
    color: inherit;
    opacity: 0.95;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transform: translateY(2px);
    transform-origin: center center;
}

body.single .ff-tts-time {
    flex-shrink: 0;
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    line-height: 24px;
    height: 24px;
    white-space: nowrap;
    letter-spacing: 0.01em;
    color: inherit;
    opacity: 0.9;
}

body.single .ff-tts-close-svg {
    display: block;
}

/* Klick-Feedback nur Play (Tempo: kein scale → Layout bleibt stabil) */
@media (prefers-reduced-motion: no-preference) {
    body.single .ff-tts-play-pause:not(:disabled) {
        transition: transform 0.1s ease, color 0.15s ease, opacity 0.15s ease;
    }
    body.single .ff-tts-play-pause:not(:disabled):active {
        transform: scale(0.94);
    }
    body.single .ff-tts-speed-btn {
        transition: border-color 0.12s ease, color 0.12s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.single .ff-tts-playbar,
    body.single .ff-tts-playbar-inner {
        transition: none;
    }

    body.single .ff-tts-progress-fill {
        transition: none;
    }

    body.single .ff-tts-playbar-inner {
        transform: none;
    }

    body.single .ff-tts-wrap:not(.is-expanded) .ff-tts-playbar {
        max-width: 0;
    }

    body.single .ff-tts-wrap.is-expanded .ff-tts-playbar {
        max-width: min(32rem, calc(100vw - 1.25rem));
    }

    @media (max-width: 1024px) {
        body.single .ff-tts-wrap.is-expanded .ff-tts-playbar {
            max-width: min(230px, calc(100vw - 56px));
        }
    }

    body.single .ff-tts-trigger-face {
        transition: opacity 0.12s ease;
    }
}
