/* Startseite (Breite: --ff-layout-max) */

/* Layout */
.ff-home.ff-main {
    max-width: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

.ff-content-wrap:has(> main.ff-main.ff-home),
body.ff-hub-feed .ff-content-wrap {
    background: #fff;
}
/* Subnav → Hero / Promo: ohne Start-Promo 6px / 10px (Desktop).
 * Mit Start-Promo oben: .ff-subnav-inner + main-Anpassungen in ff-subnav.css (main.padding-top dort 0); Promo-Margins in ff-promo-banner.css. */
main.ff-main.ff-home {
    padding-top: 6px;
    box-sizing: border-box;
}

@media (min-width: 1025px) {
    main.ff-main.ff-home {
        padding-top: 10px;
    }
}
.ff-home a { color: inherit; text-decoration: none; }
.ff-home a:hover { color: inherit; }

.ff-home-wrap {
    max-width: min(var(--ff-layout-max), calc(100% - 2 * var(--ff-layout-gutter)));
    width: 100%;
    margin: 0 auto;
    padding: 0 0 48px;
    box-sizing: border-box;
}

/* ===== Mobil: alles in den Viewport zwingen ===== */
@media (max-width: 1024px) {
    /* Subnav → Karussell: padding-top zentral in ff-subnav.css (alle ff-main nach Subnav) */
    main.ff-main.ff-home {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .ff-home-wrap {
        width: 100% !important;
        max-width: 100vw !important;
        padding: 0 12px 48px !important;
        box-sizing: border-box !important;
    }

    .ff-home-inner {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .ff-home-hero-stack {
        width: calc(100% + 24px);
        max-width: none;
        margin-left: -12px;
        margin-right: -12px;
    }

    /*
     * Nur „Weitere Beiträge“: grauer Streifen + Slider bis zum Rand (nicht Feed/Karussell-Hub).
     * Gleiche 12px wie .ff-home-wrap horizontal padding.
     */
    .ff-home-wrap .ff-home-more {
        margin-left: -12px;
        margin-right: -12px;
        width: calc(100% + 24px);
        max-width: none;
        box-sizing: border-box;
    }
    .ff-home-more-viewport {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .ff-home-hero-stack .ff-home-hero,
    .ff-home-hero {
        width: 100% !important;
        max-width: 100% !important;
    }
    .ff-home-hero-slider {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .ff-home-hero-track {
        height: 100%;
    }
    .ff-home-hero-slide {
        height: 100%;
    }
    .ff-home-hero-media,
    .ff-home-hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ff-home-feed,
    .ff-home-feed-grid {
        width: 100%;
        max-width: 100%;
    }
    .ff-home-card-row,
    .ff-home-card-row--tall,
    .ff-home-card-row--remainder {
        width: 100%;
        max-width: 100%;
    }
    .ff-home-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .ff-home-card-link {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .ff-home-card-img {
        width: 100%;
    }
    .ff-home-card-img img {
        width: 100%;
        max-width: 100%;
    }
    .ff-home-card-body {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .ff-home-split-row,
    .ff-home-split-row--wide-right,
    .ff-home-split-row--wide-left {
        width: 100%;
        max-width: 100%;
    }

    /* Themen + FF+ Grid: 2 Spalten */
    .ff-home-topic-strip,
    .ff-home-ffplus {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}
.ff-home-inner { min-width: 0; }

/* Abstand Subnav/Brotkrumen → Hero / Feed (alle ff-home-Hubs, nicht nur body.home) */
.ff-main.ff-home .ff-home-hero-stack {
    margin-top: 0;
}

/* ===== Subnav ===== */
.ff-home .ff-home-subnav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0 20px !important;
    margin: 0 !important;
    border: none !important;
    width: 100%;
    box-sizing: border-box;
}
.ff-home .ff-home-subnav-left {
    display: flex;
    align-items: center;
    gap: 25px;
    min-height: 24px;
}
.ff-home .ff-home-subnav-right {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 24px;
}
.ff-home .ff-home-subnav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    min-height: 24px;
    line-height: 24px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}
.ff-home .ff-home-subnav-item:hover { color: #B43526; }
.ff-home .ff-home-subnav-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
    transform: rotate(-90deg);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.ff-home .ff-home-subnav-chevron svg { display: block; width: 10.5px; height: 5px; }
.ff-home .ff-home-subnav-dropdown { position: relative; display: inline-flex; }
.ff-home .ff-home-subnav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    margin: 4px 0 0;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    list-style: none;
    z-index: 50;
    display: none;
}
.ff-home .ff-home-subnav-dropdown.is-open .ff-home-subnav-menu { display: block; }
.ff-home .ff-home-subnav-dropdown.is-open .ff-home-subnav-chevron { transform: rotate(0deg); }
.ff-home .ff-home-subnav-menu a {
    display: block;
    padding: 8px 16px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
}
.ff-home .ff-home-subnav-menu a:hover { background: #f5f5f5; color: #B43526; }
.ff-home .ff-home-subnav-meinff-label {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
    color: #000;
}
.ff-home .ff-home-subnav-toggle-wrap { display: inline-flex; align-items: center; cursor: pointer; }
.ff-home .ff-home-subnav-toggle { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.ff-home .ff-home-subnav-toggle-slider {
    display: block; width: 38px; height: 18px; background: #E0E0E3; border-radius: 9px; position: relative; transition: background 0.2s ease;
}
.ff-home .ff-home-subnav-toggle-slider::after {
    content: ''; position: absolute; top: 0; right: 0; width: 18px; height: 18px; background: #2B2B2B; border-radius: 50%; transition: transform 0.2s ease, background 0.2s ease;
}
.ff-home .ff-home-subnav-toggle:checked + .ff-home-subnav-toggle-slider { background: #EBD4D4; }
.ff-home .ff-home-subnav-toggle:checked + .ff-home-subnav-toggle-slider::after { background: #B43526; transform: translateX(-20px); }
.ff-home .ff-home-subnav-toggle:focus-visible + .ff-home-subnav-toggle-slider { outline: 2px solid #B43526; outline-offset: 2px; }
body.ff-meinff-on .ff-home .ff-home-subnav-toggle + .ff-home-subnav-toggle-slider { background: #EBD4D4; }
body.ff-meinff-on .ff-home .ff-home-subnav-toggle + .ff-home-subnav-toggle-slider::after { background: #B43526; transform: translateX(-20px); }
/* Seitenwechsel / Ladephase: kein Toggle-Transition */
body.ff-meinff-no-transition .ff-home-subnav-toggle-slider,
body.ff-meinff-no-transition .ff-home-subnav-toggle-slider::after {
    transition: none !important;
}

/* Hero + Dots als Block (Abstand nach außen über .ff-home-hero-stack) */
.ff-home-hero-stack .ff-home-hero {
    margin: 0 !important;
}

/* ===== Slider – fluid height via aspect-ratio ===== */
.ff-home-hero {
    margin: 0 !important;
    border-radius: 0 !important;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}
.ff-home-hero-slider {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 878 / 418;
    position: relative;
}
/*
 * Großes Karussell: Pfeile rechts oben, Autoplay Pause/Play links oben (Kreis wie Pfeile; Icons wie Partner-Marquee).
 */
.ff-home-hero-slider .ff-front-hero-arrows,
.ff-home-hero-slider .ff-front-hero-autoplay {
    position: absolute;
    top: clamp(12px, 2vw, 20px);
    z-index: 30;
    display: flex;
    align-items: center;
    pointer-events: auto;
}
.ff-home-hero-slider .ff-front-hero-arrows {
    right: clamp(12px, 2vw, 24px);
    gap: 8px;
}
.ff-home-hero-slider .ff-front-hero-autoplay {
    left: clamp(12px, 2vw, 24px);
}
.ff-home-hero-slider .ff-front-hero-arrows.is-hidden,
.ff-home-hero-slider .ff-front-hero-autoplay.is-hidden {
    display: none !important;
}
/* Hero-Karussell: gleicher Hover-Scale für Ring (::before) + Icon; Autoplay-Button = voller 32×32-Kreis */
.ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow,
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none;
    color: #fff;
    overflow: visible;
    transform: none !important;
    transition: none;
}
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    padding: 0;
    box-sizing: border-box;
}
.ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow::before,
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.92);
    transform: scale(1);
    transform-origin: center;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.22s ease, border-color 0.2s ease;
}
.ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow:hover::before,
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow:hover::before {
    transform: scale(1.08);
    border-color: #fff;
}
.ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow:active::before,
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow:active::before {
    transform: scale(1.03);
}
.ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow svg,
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow svg {
    position: relative;
    z-index: 1;
    display: block;
    flex-shrink: 0;
    transform: scale(1);
    transform-origin: 50% 50%;
    transform-box: fill-box;
    transition: transform 0.22s ease;
}
.ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow:hover svg,
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow:hover svg {
    transform: scale(1.08);
}
.ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow:active svg,
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow:active svg {
    transform: scale(1.03);
}
.ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow:focus,
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow:focus {
    outline: none;
}
.ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow:focus-visible,
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
    .ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow::before,
    .ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow svg,
    .ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow::before,
    .ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow svg {
        transition: none;
    }
    .ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow:hover::before,
    .ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow:active::before,
    .ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow:hover svg,
    .ff-home-hero-slider .ff-front-hero-arrows .ff-home-more-arrow:active svg,
    .ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow:hover::before,
    .ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow:active::before,
    .ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow:hover svg,
    .ff-home-hero-slider .ff-front-hero-autoplay .ff-home-more-arrow:active svg {
        transform: scale(1);
    }
}
/* Autoplay: zwei Symbole überlagert, exakt in der Kreismitte */
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-hero-autoplay-toggle-inner {
    display: grid;
    place-items: center;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-hero-autoplay-toggle-inner .ff-home-hero-pp-svg {
    grid-area: 1 / 1;
    justify-self: center;
    align-self: center;
    display: block;
    overflow: visible;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    fill: none;
    margin: auto;
}
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-hero-autoplay-toggle-inner .ff-home-hero-pp-svg--play {
    width: 13px;
    height: 13px;
    /* Dreieck wirkt optisch nach links — leicht nach rechts */
    margin-left: 2px;
}
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-hero-autoplay-toggle .ff-home-hero-pp-svg--play {
    display: none;
}
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-hero-autoplay-toggle .ff-home-hero-pp-svg--pause {
    display: block;
}
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-hero-autoplay-toggle.is-paused .ff-home-hero-pp-svg--play {
    display: block;
}
.ff-home-hero-slider .ff-front-hero-autoplay .ff-home-hero-autoplay-toggle.is-paused .ff-home-hero-pp-svg--pause {
    display: none;
}
/* --ff-hero-n wird per JS gesetzt (Anzahl Slides); Fallback 6 wie früher */
.ff-home-hero-track {
    display: flex;
    width: calc(var(--ff-hero-n, 6) * 100%);
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ff-home-hero-slide {
    flex: 0 0 calc(100% / var(--ff-hero-n, 6));
    width: calc(100% / var(--ff-hero-n, 6));
    height: 100%;
    position: relative;
}
.ff-home-hero-media-link {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
    color: #fff !important;
}
.ff-home-hero-media-link:hover,
.ff-home-hero-media-link:focus:not(:focus-visible) {
    color: #fff !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
.ff-home-hero-media-link:focus-visible {
    color: #fff !important;
    text-decoration: none !important;
    outline: 2px solid #fff !important;
    outline-offset: 3px;
    box-shadow: none !important;
}
.ff-home-hero-media { position: absolute; inset: 0; }
.ff-home-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 0; }
.ff-home-hero-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2d2d2d, #1a1a1a); }
/* Karussell: Verlauf unten → oben für bessere Lesbarkeit des weißen Texts (nur Hero-Slider) */
.ff-home-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.45) 32%,
        rgba(0, 0, 0, 0.18) 55%,
        rgba(0, 0, 0, 0) 78%
    );
}
/* Titel/Vorschau links max. 80%; Overlay-Sheet wieder bildbreit → Lesezeichen rechts am Rand */
.ff-home-hero-content {
    position: absolute;
    left: clamp(14px, 3.5%, 32px);
    right: clamp(14px, 3.5%, 32px);
    bottom: clamp(12px, 3%, 24px);
    z-index: 2;
    color: #fff !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(6px, 1.5vw, 15px);
    --ff-home-hero-actions-gutter: 44px;
    --ff-home-hero-copy-max: 80%;
    box-sizing: border-box;
    pointer-events: none;
}
.ff-home-hero .ff-home-hero-content,
.ff-home-hero .ff-home-hero-content *:not(.ff-home-hero-excerpt-more),
.ff-home-hero a.ff-home-hero-media-link,
.ff-home-hero a.ff-home-hero-media-link:hover { color: #fff !important; text-decoration: none !important; }

.ff-home-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    max-width: var(--ff-home-hero-copy-max);
    box-sizing: border-box;
}
.ff-home-hero-rubrik {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(11px, 1.5vw, 14px);
    font-weight: 400;
    line-height: 17px;
    color: #fff !important;
    margin: 0;
}
.ff-home-hero-heading {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: clamp(20px, 5.5vw, 50px) !important;
    font-weight: 600 !important;
    line-height: 1.14 !important;
    margin: 0 !important;
    padding-bottom: 0.06em;
    color: #fff !important;
    max-width: 100%;
    display: block;
    overflow: visible;
    overflow-wrap: break-word;
    word-break: normal;
}
.ff-home-hero-excerpt {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(13px, 2vw, 19px);
    font-weight: 500;
    line-height: 1.25;
    color: #fff !important;
    margin: 0;
    max-width: var(--ff-home-hero-copy-max);
    box-sizing: border-box;
    display: block;
    overflow: visible;
    overflow-wrap: break-word;
    word-break: normal;
}
.ff-home-hero-excerpt-body {
    display: inline;
}
.ff-home-hero-excerpt-body,
.ff-home-hero-excerpt-inner,
.ff-home-hero-excerpt-more {
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
}
.ff-home-hero-excerpt-inner {
    display: inline;
}
a.ff-home-hero-excerpt-more,
span.ff-home-hero-excerpt-more {
    display: inline-block;
    vertical-align: baseline;
    text-decoration: underline !important;
    text-underline-offset: 0.12em;
    white-space: nowrap;
    cursor: pointer;
    pointer-events: auto;
}
.ff-home-hero a.ff-home-hero-excerpt-more {
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.2s ease;
    will-change: transform;
}
.ff-home-hero a.ff-home-hero-excerpt-more:hover {
    transform: scale(1.12);
}
.ff-home-hero a.ff-home-hero-excerpt-more:focus-visible {
    outline: 2px solid #fff !important;
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    .ff-home-hero a.ff-home-hero-excerpt-more {
        transition: none;
        will-change: auto;
    }
    .ff-home-hero a.ff-home-hero-excerpt-more:hover {
        transform: none;
    }
}
.ff-home-hero-details { display: none; }
.ff-home-hero-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    gap: 0;
}
.ff-home-hero-comment {
    display: inline-flex;
    align-items: flex-start;
    gap: 3px;
}
.ff-home-hero-comment svg { flex-shrink: 0; width: 16px; height: 15px; display: block; overflow: visible; }
.ff-home-hero-cc {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: #fff !important;
}
.ff-home-hero-actions {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}
.ff-home-hero-icon-bookmark {
    width: 12px;
    height: 15px;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.2s ease;
}
.ff-home-hero-slide:hover .ff-home-hero-icon-bookmark {
    transform: scale(1.12);
}
.ff-home-hero-actions svg { overflow: visible; }

/* ===== Dots ===== */
.ff-home-hero-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 16px 0 0;
    margin: 0;
}
.ff-home-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #D9D9D9;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s;
    -webkit-appearance: none;
    appearance: none;
}
.ff-home-hero-dot:hover { background: #999; }
.ff-home-hero-dot.is-active { background: #B43526; }

/* Mein FF ohne Login: Hub-Inhalt ausblenden, Gast-Hinweise zentriert (Figma) */
.ff-meinff-guest-prompt,
.ff-meinff-guest-merk-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
.ff-meinff-guest-prompt-inner,
.ff-meinff-guest-merk-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 520px;
    width: 100%;
    text-align: center;
}
.ff-meinff-guest-title,
.ff-meinff-guest-merk-title {
    margin: 0 0 16px;
    font-family: 'Barlow Semi Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #1d1b20;
}
.ff-meinff-guest-merk-icon-wrap {
    margin: 0 0 18px;
}
.ff-meinff-guest-merk-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid #1d1b20;
    border-radius: 50%;
    box-sizing: border-box;
    color: #1d1b20;
}
.ff-meinff-guest-merk-icon-circle .ff-meinff-guest-merk-svg {
    display: block;
    width: 12px !important;
    height: 17px !important;
    max-width: none !important;
    max-height: none !important;
    flex-shrink: 0;
}
.ff-meinff-guest-merk-title {
    margin-bottom: 8px;
}
.ff-meinff-guest-merk-desc {
    margin: 0;
    font-family: 'Barlow Semi Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #1d1b20;
}
.ff-meinff-guest-text {
    margin: 0 0 24px;
}
.ff-meinff-guest-text p,
.ff-meinff-guest-text-p {
    margin: 0;
    font-family: 'Barlow Semi Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #1d1b20;
}
.ff-meinff-guest-text p + p {
    margin-top: 14px;
}
.ff-meinff-guest-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
/* .ff-home a { color: inherit } würde sonst Button-Text schwarz machen */
.ff-home .ff-meinff-guest-btn,
.ff-home .ff-meinff-guest-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 123px;
    height: 30px;
    padding: 5px 23px 6px;
    border-radius: 2px;
    background: #b43526;
    color: #fff !important;
    font-family: 'Barlow Semi Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none !important;
    border: none;
    transition: background 0.15s ease;
}
.ff-home .ff-meinff-guest-btn:hover,
.ff-home .ff-meinff-guest-btn:focus-visible {
    background: #942c20;
    color: #fff !important;
}
.ff-home .ff-meinff-guest-login,
.ff-home .ff-meinff-guest-login:visited {
    font-family: 'Barlow Semi Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-decoration: underline !important;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    color: #1d1b20;
}
.ff-home .ff-meinff-guest-login:hover {
    color: #b43526;
}
body.ff-meinff-on:not(.logged-in) #ff-home-root .ff-home-hero-stack,
body.ff-meinff-on:not(.logged-in) #ff-home-root .ff-kr-featured,
body.ff-meinff-on:not(.logged-in) #ff-home-root .ff-home-feed,
body.ff-meinff-on:not(.logged-in) #ff-home-root .ff-home-feed-load-more-wrap,
body.ff-meinff-on:not(.logged-in) #ff-home-root .ff-home-more {
    display: none !important;
}
body.ff-meinff-on:not(.logged-in):not(.ff-meinff-tab-merk) #ff-home-root .ff-meinff-guest-prompt,
body.ff-meinff-on:not(.logged-in).ff-meinff-tab-merk #ff-home-root .ff-meinff-guest-merk-empty {
    display: flex;
    min-height: clamp(280px, 48vh, 480px);
    margin-top: clamp(72px, 11vw, 132px);
    margin-bottom: clamp(96px, 14vw, 168px);
    padding-top: clamp(32px, 6vw, 64px);
    padding-bottom: clamp(48px, 8vw, 96px);
}

/* ===== Beitrags-Kacheln – CSS Grid statt Flex mit festen Breiten ===== */
/* Hero → Feed: eine `margin-top`-Regel; News, Fotos & Video und Archive nutzen dieselbe Klasse → gleicher Abstand. */
.ff-home-feed {
    margin-top: clamp(20px, 4vw, 40px);
    overflow: visible;
    padding-bottom: 24px;
}
.ff-home-feed-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 5vw, 60px);
    overflow: visible;
}

/* Zaunfahnen / Schwenkfahnen: Platzhalter unterhalb Subnav (Hub ohne Feed) */
.ff-main.ff-home.ff-fotos-video .ff-home-feed-grid--placeholder {
    gap: 0;
}
.ff-main.ff-home.ff-fotos-video .ff-home-feed--placeholder-hub .ff-hub-empty-msg {
    margin: 0;
    max-width: 42rem;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    color: #313131;
}
.ff-home-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 32px);
    width: 100%;
    align-items: stretch;
}
/* Nach „Mehr laden“: Rest 1–2 Karten ohne Lücken im Offset */
.ff-home-card-row--remainder {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.ff-home-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    height: 100%;
    min-height: 0;
    --ff-excerpt-lines: 3;
}
.ff-home-card-link {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    min-height: 0;
    flex: 1 1 0%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.ff-home-card-link:hover { color: inherit; }
/* Mausklick: kein stehenbleibender schwarzer UA-/Theme-Ring; Tastatur: sichtbarer roter Ring */
.ff-home-card-link:focus:not(:focus-visible) {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border-color: transparent !important;
}
.ff-home-card-link:focus-visible {
    outline: 2px solid #B43526 !important;
    outline-offset: 2px;
    box-shadow: none !important;
}

/* Startseite + Hub-Feeds (z. B. Fotos & Video, ff-hub-feed): Parent-Theme kann stärkere :focus-Regeln haben → Ring nur per höherer Spezifität weg */
body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-link:focus:not(:focus-visible) {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border-color: transparent !important;
}
body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn:focus:not(:focus-visible),
body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn:active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
/* GP/Theme: button:hover oft mit Hintergrund → schwarzer Kasten; für body.home und ff-hub-feed neutralisieren */
html body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta button.ff-home-card-bookmark-btn,
html body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta button.ff-home-card-bookmark-btn:hover,
html body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta button.ff-home-card-bookmark-btn:focus:not(:focus-visible),
html body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta button.ff-home-card-bookmark-btn:active {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border: none !important;
    border-width: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    -webkit-tap-highlight-color: transparent;
}
html body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta button.ff-home-card-bookmark-btn .ff-merk-toggle-face {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}
html body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta button.ff-home-card-bookmark-btn:focus-visible {
    outline: 2px solid #B43526 !important;
    outline-offset: 2px;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta svg {
    outline: none !important;
    box-shadow: none !important;
}

.ff-home-card-img {
    width: 100%;
    aspect-ratio: 262 / 181;
    overflow: hidden;
    background: #e0e0e0;
    flex-shrink: 0;
}
.ff-home-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ff-home-card-placeholder { width: 100%; height: 100%; background: #ccc; }

.ff-home-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    width: 100%;
    padding: 0;
    flex: 1 1 0%;
    min-width: 0;
    min-height: 0;
}
.ff-home-card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    flex: 1 1 0%;
    min-width: 0;
    min-height: 0;
}
.ff-home-card-rubrik {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #B43526;
    margin: 0;
    text-transform: none;
}
.ff-home-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    min-width: 0;
    min-height: 0;
    flex: 1 1 0%;
}
.ff-home-card-lead {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    min-width: 0;
    flex-shrink: 0;
}
/* Rubrik direkt am Titel (kein zusätzlicher Spalten-Gap) */
.ff-home-card-lead .ff-home-card-rubrik {
    margin: 0 0 1px;
    padding: 0;
}
/*
 * Titel: natürliche Höhe; Teaser füllt per Flex den Platz bis zur Meta-Zeile (SVG), Zeilenzahl per JS aus Höhe.
 */
.ff-home-card-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}
.ff-home-card-title:has(.ff-home-card-title-inner) {
    display: block;
    overflow: visible;
}
.ff-home-card-title-inner {
    display: block;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    font: inherit;
    line-height: inherit;
    color: inherit;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}
.ff-home-card-title-inner--balance {
    max-width: min(100%, 84%);
}
.ff-home-card-title-inner--balance-strong {
    max-width: min(100%, 70%, 30ch);
    overflow-wrap: anywhere;
}
.ff-home-card-title-inner--balance-max {
    max-width: min(100%, 52%, 18ch);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphenate-limit-chars: 5 3 2;
}
.ff-home-card--split-wide .ff-home-card-title-inner--balance {
    max-width: min(100%, 86%);
}
.ff-home-card--split-wide .ff-home-card-title-inner--balance-strong {
    max-width: min(100%, 72%, 32ch);
    overflow-wrap: anywhere;
}
.ff-home-card--split-wide .ff-home-card-title-inner--balance-max {
    max-width: min(100%, 58%, 24ch);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphenate-limit-chars: 5 3 2;
}
.ff-home-card-title:not(:has(.ff-home-card-title-inner)) {
    display: block;
    overflow: visible;
}
.ff-home-card-excerpt {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
    margin: 0;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}
.ff-home-card-excerpt:has(.ff-home-card-excerpt-inner) {
    flex: 1 1 0%;
    min-height: 0;
    align-self: stretch;
    display: block;
    overflow: hidden;
}
.ff-home-card-excerpt-inner {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--ff-excerpt-lines, 3);
    overflow: hidden;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font: inherit;
    line-height: inherit;
    color: inherit;
    overflow-wrap: break-word;
    word-break: break-word;
}
.ff-home-card-excerpt:not(:has(.ff-home-card-excerpt-inner)) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.ff-home-card-meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 17px;
    margin-top: auto;
    flex-shrink: 0;
}

/* Kein stehenbleibender Fokus-Ring auf Meta-SVGs / Lesezeichen (gilt überall, z. B. auch Vereinsübersicht ohne .ff-home) */
.ff-home-card-meta svg,
.ff-home-hero-actions svg,
.ff-home-hero-comment svg,
.ff-home-more-card-actions svg,
.ff-home-more-card-comments svg {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}
.ff-home-card-meta .ff-home-card-bookmark-btn:focus:not(:focus-visible),
.ff-home-card-meta .ff-home-card-bookmark-btn:hover,
.ff-home-card-meta .ff-home-card-bookmark-btn:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent;
}
.ff-home-card-meta .ff-home-card-bookmark-btn:focus-visible {
    outline: 2px solid #B43526 !important;
    outline-offset: 2px;
    box-shadow: none !important;
}
.ff-home-card-meta .ff-home-card-bookmark-btn .ff-merk-toggle-face {
    outline: none !important;
    box-shadow: none !important;
}

.ff-home-card-comments {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.ff-home-card-comments svg { flex-shrink: 0; width: 16px; height: 15px; display: block; overflow: visible; }
.ff-home-card-cc {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
}
.ff-home-card-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.ff-home-card-actions svg { display: block; flex-shrink: 0; overflow: visible; }
.ff-home-card-icon-bookmark { width: 12px; height: 15px; }

/* Merkliste: Lesezeichen außerhalb des Karten-Links, Toggle Outline / gefüllt */
.ff-home-card-bookmark-btn {
    --ff-merk-fill-match: 1.08;
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: #5d5d5d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
    overflow: visible;
    position: relative;
    z-index: 1;
}
.ff-home-card-bookmark-btn::-moz-focus-inner {
    border: 0;
    padding: 0;
}
.ff-home-card-bookmark-btn:hover:not(:disabled) {
    color: #313131;
}
.ff-home-card-bookmark-btn.is-saved:hover:not(:disabled) {
    color: #000;
}
.ff-home-card-bookmark-btn:focus:not(:focus-visible),
.ff-home-card-bookmark-btn:focus:hover,
.ff-home-card-bookmark-btn:active {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
.ff-home-card-bookmark-btn:focus-visible {
    outline: 2px solid #B43526 !important;
    outline-offset: 2px;
    box-shadow: none !important;
}
/* Kein opacity bei :disabled — Merk-Toggle nutzt data-ff-merk-busy statt disabled, damit kein Aufblitzen */
.ff-home-card-bookmark-btn:disabled {
    cursor: default;
}
.ff-home-card-bookmark-btn .ff-merk-toggle-face {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ff-home-card-bookmark-btn .ff-merk-toggle-face--fill {
    display: none;
}
.ff-home-card-bookmark-btn.is-saved {
    color: #000;
}
.ff-home-card-bookmark-btn.is-saved .ff-merk-toggle-face--outline {
    display: none;
}
.ff-home-card-bookmark-btn.is-saved .ff-merk-toggle-face--fill {
    display: inline-flex;
}
/* Outline (Strich): optische Größe durch Stroke; Füllung ohne Strich etwas hochskalieren */
.ff-home-card-bookmark-btn .ff-merk-svg--outline {
    display: block;
    width: 12px;
    height: 15px;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.2s ease;
    will-change: transform;
}
.ff-home-card-bookmark-btn .ff-merk-svg--fill {
    display: block;
    width: 12px;
    height: 15px;
    transform: scale(var(--ff-merk-fill-match));
    transform-origin: center center;
    transition: transform 0.2s ease;
    will-change: transform;
}
.ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--outline {
    transform: scale(1.14);
}
.ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--fill {
    transform: scale(calc(var(--ff-merk-fill-match) * 1.14));
}
.ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--outline {
    transform: scale(1.06);
}
.ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--fill {
    transform: scale(calc(var(--ff-merk-fill-match) * 1.06));
}

/* Startseite: Parent-Theme setzt oft svg { transform: … } → greifendere Selektoren */
body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn .ff-merk-svg--outline {
    transform: scale(1);
}
body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn .ff-merk-svg--fill {
    transform: scale(var(--ff-merk-fill-match));
}
body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--outline {
    transform: scale(1.14);
}
body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--fill {
    transform: scale(calc(var(--ff-merk-fill-match) * 1.14));
}
body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--outline {
    transform: scale(1.06);
}
body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--fill {
    transform: scale(calc(var(--ff-merk-fill-match) * 1.06));
}

@media (prefers-reduced-motion: reduce) {
    .ff-home-card-bookmark-btn .ff-merk-svg--outline,
    .ff-home-card-bookmark-btn .ff-merk-svg--fill {
        transition: none;
    }
    .ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--outline,
    .ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--outline {
        transform: scale(1);
    }
    .ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--fill,
    .ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--fill {
        transform: scale(var(--ff-merk-fill-match));
    }
    body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--outline,
    body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--outline {
        transform: scale(1);
    }
    body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn:hover:not(:disabled) .ff-merk-svg--fill,
    body:is(.home, .ff-hub-feed) #ff-home-root .ff-home-card-meta .ff-home-card-bookmark-btn:active:not(:disabled) .ff-merk-svg--fill {
        transform: scale(var(--ff-merk-fill-match));
    }
}

/* Single: Lesezeichen in der Icon-Leiste wie Startkachel */
.ff-single-fv-icon-btn.ff-home-card-bookmark-btn .ff-merk-svg--outline,
.ff-single-fv-icon-btn.ff-home-card-bookmark-btn .ff-merk-svg--fill {
    width: 12px;
    height: 15px;
}

/* ===== Werbeplatzhalter ===== */
.ff-home-ad-slot {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 2px solid #000;
    background: transparent;
}
.ff-home-ad-slot span {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.05em;
}

/* Themen-Streifen (4 schmale Karten, Figma „Kasten 4 Beiträge Desk“) */
.ff-home-topic-strip {
    box-sizing: border-box;
    width: 100%;
    --ff-topic-strip-pad: 20px;
    --ff-topic-title-gap: 25px;
    /* Oben/unten: Kacheln ↔ Trennlinie je 20px (Titel oben im Streifen) */
    padding: var(--ff-topic-strip-pad) 0 var(--ff-topic-strip-pad);
    border-width: 1px 0;
    border-style: solid;
    border-color: #cbcbcb;
}
.ff-home-topic-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0.005em;
    text-align: center;
    color: #000;
    margin: 0 0 var(--ff-topic-title-gap);
}
/* Verwandte Themen: Meta-Icons schwarz (nur dieser Streifen, nicht Feed/Karussell) */
.ff-home-topic-strip .ff-home-card--topic .ff-home-card-meta svg path {
    stroke: #000 !important;
}
.ff-home-topic-strip .ff-home-card--topic .ff-home-card-meta .ff-merk-svg--outline path {
    stroke: #000 !important;
}
.ff-home-topic-strip .ff-home-card--topic .ff-home-card-meta .ff-merk-svg--fill path {
    fill: #000 !important;
    stroke: #000 !important;
}
/* Asymmetrische 2er-Zeile (~570 / ~262) */
.ff-home-split-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.18fr);
    gap: clamp(24px, 5vw, 46px);
    width: 100%;
    align-items: stretch;
}
/* Schmal links, breit rechts (Alias) */
.ff-home-split-row--wide-right {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.18fr);
}
/* Breit links, schmal rechts */
.ff-home-split-row--wide-left {
    grid-template-columns: minmax(0, 2.18fr) minmax(0, 1fr);
}
.ff-home-split-row .ff-home-card {
    height: 100%;
    min-height: 0;
}
.ff-home-card--split-wide .ff-home-card-img {
    aspect-ratio: 570 / 362;
}
.ff-home-card--split-narrow .ff-home-card-img {
    aspect-ratio: 262 / 362;
}
.ff-home-card--tall .ff-home-card-img {
    aspect-ratio: 262 / 320;
}

/* FF+ Block */
.ff-home-ffplus {
    width: 100%;
    box-sizing: border-box;
    background: #b43526;
    padding: 13px 19px 19px;
    position: relative;
}
.ff-home-ffplus-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.15;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0;
    padding: 0 2px;
}
.ff-home-ffplus-inner {
    background: #fff;
    margin-top: 19px;
    padding: 19px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
}
.ff-home-ffplus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 39px);
    width: 100%;
}
.ff-home-card--ffplus-placeholder .ff-home-card-link--placeholder {
    cursor: default;
    pointer-events: none;
}
.ff-home-card--ffplus-placeholder .ff-home-card-img--ffplus-ph {
    aspect-ratio: 170 / 155;
    background: linear-gradient(135deg, #ececec, #d8d8d8);
}
.ff-home-card-ffplus-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5px 4px;
    border: 2px solid #b43526;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #000;
    flex-shrink: 0;
}
.ff-home-card--ffplus-placeholder .ff-home-card-rubrik-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}
.ff-home-card--ffplus-placeholder .ff-home-card-rubrik-row .ff-home-card-rubrik {
    flex: 1;
    min-width: 0;
}
.ff-home-ffplus-cta {
    text-align: center;
    margin: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 19px;
    line-height: 22px;
}
.ff-home-ffplus-cta a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}
.ff-home-ffplus-cta a:hover {
    color: #b43526;
    border-bottom-color: #b43526;
}

/* Mehr laden (Startseite wie zuvor) + Kommentar-Buttons (Singles): gleiche Optik */
.ff-home-feed-load-more-wrap {
    margin-top: 40px;
    text-align: center;
}
.ff-home-feed-load-more,
body.single .ff-comments-wrap .ff-comments-toggle-btn,
body.single .ff-comments-wrap .form-submit input[type="submit"] {
    -webkit-appearance: none;
    appearance: none;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #B43526;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 12px 32px;
    box-shadow: none;
    transition: background 0.2s;
}
.ff-home-feed-load-more {
    display: inline-block;
}
body.single .ff-comments-wrap .ff-comments-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.25;
    text-align: center;
}
body.single .ff-comments-wrap .form-submit input[type="submit"] {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: #B43526 !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 12px 32px !important;
    box-shadow: none !important;
}
.ff-home-feed-load-more:hover:not(:disabled),
body.single .ff-comments-wrap .ff-comments-toggle-btn:hover,
body.single .ff-comments-wrap .form-submit input[type="submit"]:hover {
    color: #fff !important;
    background: #9a2d20 !important;
    border-color: transparent !important;
}
.ff-home-feed-load-more:disabled {
    opacity: 0.7;
    cursor: wait;
}
body.single .ff-comments-wrap .ff-comments-toggle-btn:focus {
    outline: none;
}
body.single .ff-comments-wrap .ff-comments-toggle-btn:focus-visible {
    outline: 2px solid #B43526;
    outline-offset: 2px;
}

/* Kommentar „Senden“ = .ff-btn-slide (grau/Slide wie vorher); nur Kanten in ff-single-v2 auf 4px */

/* ===== "weitere Beiträge" – Pfeil-Navigation ===== */
.ff-home-more {
    margin-top: clamp(32px, 5vw, 60px);
    padding: 15px 0 20px;
    background: #F5F5F5;
    position: relative;
}
.ff-home-more-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0 0 clamp(16px, 3vw, 30px);
    padding: 0 clamp(12px, 2vw, 24px);
}
.ff-home-more-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(18px, 3vw, 25px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.005em;
    color: #000;
    text-align: center;
    margin: 0;
}
.ff-home-more-arrows {
    position: absolute;
    right: clamp(12px, 2vw, 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ff-home-more-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1.5px solid #5D5D5D;
    border-radius: 50%;
    background: #fff;
    color: #5d5d5d;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.ff-home-more-arrow:focus { outline: none; }
.ff-home-more-arrow:focus-visible {
    outline: 2px solid #B43526;
    outline-offset: 2px;
}
.ff-home-more-arrow svg { width: 10px; height: 10px; display: block; }
.ff-home-more-arrow.is-disabled {
    opacity: 0.3;
    cursor: default;
}
.ff-home-more-arrow.is-disabled:focus-visible {
    outline: none;
}
.ff-home-more-viewport {
    position: relative;
    overflow: hidden;
    padding: 0 clamp(12px, 2vw, 24px);
}
.ff-home-more-scroll {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: clamp(14px, 2.5vw, 35px);
    transition: transform 0.4s ease;
}
.ff-home-more-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: clamp(110px, 15vw, 150px);
    flex: 0 0 clamp(110px, 15vw, 150px);
}
.ff-home-more-card-link {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.ff-home-more-card-link:hover { color: inherit; }
section.ff-home-more .ff-home-more-card a.ff-home-more-card-link:focus,
.ff-home-more .ff-home-more-card-link:focus,
a.ff-home-more-card-link:focus {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border-color: transparent !important;
    color: inherit;
}
.ff-home-more .ff-home-more-card-link:focus-visible {
    outline: 2px solid #B43526 !important;
    outline-offset: 2px;
}
.ff-home-more-card-img {
    width: 100%;
    aspect-ratio: 150 / 110;
    overflow: hidden;
    background: #e0e0e0;
    flex-shrink: 0;
}
.ff-home-more-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ff-home-more-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    padding-top: 10px;
    min-width: 0;
    gap: 2px;
}
.ff-home-more-card-rubrik {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #B43526;
    flex-shrink: 0;
}
/* Karussell „Weitere Beiträge“: wie Feed – 3-Zeilen-Titel, inner line-clamp */
.ff-home-more-card-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 600;
    line-height: 1.25;
    color: #000;
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    overflow: hidden;
    min-height: calc(3 * 1.25em);
    max-height: calc(3 * 1.25em);
}
.ff-home-more-card-title-inner {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    font: inherit;
    line-height: inherit;
    color: inherit;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}
.ff-home-more .ff-home-card-title-inner--balance {
    max-width: min(100%, 72%);
}
.ff-home-more .ff-home-card-title-inner--balance-strong {
    max-width: min(100%, 56%, 22ch);
    overflow-wrap: anywhere;
}
.ff-home-more .ff-home-card-title-inner--balance-max {
    max-width: min(100%, 40%, 12ch);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphenate-limit-chars: 5 3 2;
}
.ff-home-more-card-meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 8px;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 4px;
    color: #5d5d5d;
}
.ff-more-svg {
    overflow: visible;
    flex-shrink: 0;
    vertical-align: middle;
    color: inherit;
}
.ff-home-more-card-actions svg { display: block; flex-shrink: 0; overflow: visible; }
.ff-home-more-card-comments {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.ff-home-more-card-comments svg { flex-shrink: 0; width: 16px; height: 15px; display: block; overflow: visible; }
.ff-home-more-cc {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
}
.ff-home-more-card-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.ff-home-more-card-actions svg { display: block; }
/* Lesezeichen: Bounding-Box; Glyph im viewBox sitzt leicht oberhalb der Mitte */
.ff-home-more-card-actions .ff-more-svg--bookmark {
    width: 12px;
    height: 17px;
    transform: translateY(1px) scale(1);
    transform-origin: center center;
    transition: transform 0.2s ease;
}
.ff-home-more-card-link:hover .ff-more-svg--bookmark {
    transform: translateY(1px) scale(1.12);
}
@media (prefers-reduced-motion: reduce) {
    .ff-home-hero-icon-bookmark {
        transition: none;
    }
    .ff-home-hero-slide:hover .ff-home-hero-icon-bookmark {
        transform: scale(1);
    }
    .ff-home-more-card-actions .ff-more-svg--bookmark {
        transition: none;
    }
    .ff-home-more-card-link:hover .ff-more-svg--bookmark {
        transform: translateY(1px) scale(1);
    }
}

/* ===== Fotos & Video ===== */
.ff-home-card-rubrik-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}
.ff-home-card-fv-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #B43526;
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
}
.ff-home-hero-rubrik-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}
.ff-home-hero-fv-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(11px, 1.5vw, 14px);
    font-weight: 400;
    line-height: 17px;
    color: #fff !important;
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
}
/* Fotos & Video: nur Feed-Karten — „Verwandte Themen“ (.ff-home-card--topic) = Figma Kasten 2 (style.css) */
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-content {
    gap: 3px;
}
/* Hero: Datum/Spieltag-Zeile etwas dichter unter dem Titel — etwas mehr Luft bis Icon-Leiste */
.ff-fotos-video .ff-home-hero-content {
    gap: clamp(5px, 0.85vw, 11px);
}
/* Etwas mehr Luft Teaser-Ende ↔ Meta (Kommentar/Lesezeichen) als zwischen Titel und Teaser */
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) {
    gap: 8px;
}
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-meta {
    margin-top: 0;
}
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-link {
    flex: 0 1 auto;
    min-height: 0;
}
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-body,
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-text,
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-content {
    flex: 0 1 auto;
    min-height: 0;
}
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-excerpt:has(.ff-home-card-excerpt-inner) {
    flex: none;
}
/* Karten: kein gefälschter 3-Zeilen-Titelblock — nur normale F&amp;V-Karten, keine Topic-Kacheln */
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-title:has(.ff-home-card-title-inner) {
    min-height: 0;
    max-height: none;
    overflow: visible;
}
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-title-inner {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    max-width: none !important;
}
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-title-inner--balance,
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-title-inner--balance-strong,
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-title-inner--balance-max {
    max-width: none !important;
}
.ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-title:not(:has(.ff-home-card-title-inner)) {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    min-height: 0;
    max-height: none;
}
.ff-home-more-card-rubrik-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
}
.ff-home-more-card-fv-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #B43526;
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
}
.ff-home-card-placeholder {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
}

/* ===== Responsive: nur Layout-Wechsel, keine Pixel-Overrides nötig ===== */

/* Tablet + Mobil (≤1024): Feed 1 Spalte; Themen / FF+ / „Weitere Beiträge“ 2 Kacheln */
@media (max-width: 1024px) {
    .ff-home-feed {
        margin-top: clamp(14px, 3.5vw, 32px);
    }
    .ff-home-feed-grid {
        gap: clamp(16px, 4vw, 32px);
    }
    .ff-home-card-row,
    .ff-home-card-row--tall {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ff-home-card {
        gap: 8px;
    }
    .ff-fotos-video .ff-home-card:not(.ff-home-card--topic) {
        gap: 8px;
    }
    .ff-home-card-link {
        gap: 8px;
    }
    .ff-home-card:not(.ff-home-card--topic) .ff-home-card-img {
        aspect-ratio: 16 / 10;
        max-height: min(52vw, 220px);
    }
    /* Verwandte Themen Kasten 2: nicht 16∶10-Teaser */
    #ff-home-root .ff-home-topic-strip .ff-home-card--topic .ff-home-card-img {
        aspect-ratio: 200 / 228;
        height: auto;
        max-height: none;
    }
    .ff-home-card-body {
        gap: 10px;
    }
    .ff-home-card-title {
        font-size: clamp(15px, 4.2vw, 18px);
        line-height: 1.25;
    }
    .ff-home-card-title-inner {
        line-height: 1.25;
    }
    .ff-home-card-excerpt {
        font-size: clamp(12px, 3.2vw, 14px);
        line-height: 1.35;
    }
    .ff-home-card-excerpt-inner {
        line-height: 1.35;
    }
    .ff-fotos-video .ff-home-card:not(.ff-home-card--topic) .ff-home-card-title:has(.ff-home-card-title-inner) {
        min-height: 0;
    }
    .ff-home-card-rubrik {
        font-size: 12px;
        line-height: 15px;
    }
    .ff-home-ffplus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .ff-home-topic-title,
    .ff-home-ffplus-heading {
        font-size: clamp(17px, 4.5vw, 20px);
    }
    /* Horizontaler Streifen: ca. zwei Karten sichtbar (Viewport-basiert) */
    /* „Weitere Beiträge“-Streifen: volle Viewport-Breite für 2 sichtbare Karten */
    .ff-home-more-card {
        flex: 0 0 calc((100vw - 14px) / 2);
        width: calc((100vw - 14px) / 2);
        max-width: min(160px, calc((100vw - 14px) / 2));
    }
    .ff-home-more-card-title {
        font-size: clamp(11px, 3vw, 13px);
    }
    /* Topic-Kacheln nicht mit Feed-Mobilgap (14px lt. Kasten 2) */
    #ff-home-root .ff-home-topic-strip .ff-home-card--topic,
    #ff-home-root .ff-home-topic-strip .ff-home-card--topic .ff-home-card-link {
        gap: 14px !important;
    }
}

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

@media (max-width: 700px) {
    .ff-home-split-row,
    .ff-home-split-row--wide-right,
    .ff-home-split-row--wide-left {
        grid-template-columns: 1fr;
    }
    .ff-home-card--split-wide .ff-home-card-img,
    .ff-home-card--split-narrow .ff-home-card-img {
        aspect-ratio: 262 / 181;
    }
    .ff-home-hero-content {
        --ff-home-hero-actions-gutter: 52px;
    }
    .ff-home-hero-excerpt {
        font-size: 14px;
    }
    .ff-home-hero-bottom { display: flex; }
    .ff-home-hero-heading { font-size: clamp(22px, 6vw, 36px) !important; }
    .ff-home-hero-comment svg { width: 18px; height: 17px; }
    .ff-home-hero-icon-bookmark { width: 14px !important; height: 18px !important; }
    .ff-home-hero-actions svg { width: 14px; height: 18px; }
}

@media (max-width: 480px) {
    .ff-home .ff-home-subnav-item { font-size: 15px; }
    .ff-home .ff-home-subnav-left { gap: 16px; }
}

/* ===== Beitragsart-Hubs: Featured (neuester Beitrag, kein Karussell) ===== */
.ff-kr-featured {
    margin-top: 10px;
    margin-bottom: 0;
}
.ff-kr-featured-article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 656px;
    column-gap: clamp(20px, 3vw, 40px);
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}
.ff-kr-featured-copy {
    display: flex;
    flex-direction: column;
    height: 427px;
    min-height: 427px;
    max-height: 427px;
    min-width: 0;
    box-sizing: border-box;
}
.ff-kr-featured-rubrik {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    color: #b43526;
    text-transform: uppercase;
    margin: -2px 0 3px;
}
.ff-kr-featured-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 0.96;
    letter-spacing: 0;
    margin: 0 0 12px;
    padding: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}
.ff-main.ff-home.ff-hub-stellungnahmen .ff-kr-featured-title,
.ff-main.ff-home.ff-hub-stellungnahme .ff-kr-featured-title {
    font-size: 42px;
}
.ff-kr-featured-title a {
    color: #000;
    text-decoration: none;
}
.ff-kr-featured-title a:hover {
    color: #b43526;
}
/* Teaser: fast voller Text, letzte Wörter → „...mehr“ */
.ff-kr-featured-excerpt {
    flex: 1 1 auto;
    min-height: 0;
    margin: 0 0 10px;
    padding: 0;
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.11;
    letter-spacing: 0;
    color: #000;
    overflow: visible;
    overflow-wrap: break-word;
    word-break: normal;
}
.ff-kr-featured-excerpt-ellipsis,
.ff-kr-featured-excerpt-more,
a.ff-kr-featured-excerpt-more {
    display: inline;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
}
.ff-kr-featured-excerpt-ellipsis {
    color: #000;
}
.ff-kr-featured-excerpt-more,
a.ff-kr-featured-excerpt-more {
    color: #b43526 !important;
    background: transparent !important;
    text-decoration: none !important;
    transform: none;
}
a.ff-kr-featured-excerpt-more:hover,
a.ff-kr-featured-excerpt-more:focus,
a.ff-kr-featured-excerpt-more:focus-visible,
a.ff-kr-featured-excerpt-more:active {
    color: #b43526 !important;
    text-decoration: none !important;
    transform: none;
}
.ff-kr-featured-meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 auto;
    width: 100%;
    margin: auto 0 0;
    padding: 0;
    min-height: 14px;
}
.ff-kr-featured-comment {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #000;
}
.ff-kr-featured-comment svg {
    width: 15px;
    height: 14px;
    flex-shrink: 0;
    display: block;
}
.ff-kr-featured-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}
.ff-kr-featured-media {
    display: block;
    width: 656px;
    max-width: 100%;
    height: 427px;
    flex-shrink: 0;
    overflow: hidden;
    text-decoration: none;
}
.ff-kr-featured-media img {
    width: 656px;
    height: 427px;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.ff-kr-featured-placeholder {
    width: 100%;
    height: 100%;
    min-height: 427px;
    background: #e8e8e8;
}
body.ff-hub-feed .ff-kr-featured-meta .ff-home-card-bookmark-btn {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    line-height: 0;
}
@media (max-width: 1200px) {
    .ff-kr-featured-article {
        grid-template-columns: minmax(0, 1fr) minmax(0, 42vw);
    }
    .ff-kr-featured-media,
    .ff-kr-featured-media img {
        width: 100%;
        height: auto;
        aspect-ratio: 656 / 427;
    }
}
@media (max-width: 900px) {
    .ff-kr-featured-article {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
    .ff-kr-featured-copy {
        height: auto;
        min-height: 0;
        max-height: none;
        order: 1;
    }
    .ff-kr-featured-media {
        order: 2;
        width: 100%;
        height: auto;
    }
    .ff-kr-featured-title {
        font-size: clamp(28px, 7vw, 50px);
        line-height: 0.96;
    }
}
