/*
 * bs5_startseite_v2.css
 * Page-spezifische Styles für startseite_bs5_v2.twig
 * Komponenten: Magazin-Hero, Live-Ticker, Now-Cards, News-Cards,
 *              Stat-Blocks, Topic-Cards, SEO-Footer/FAQ
 * Stilrichtung: Premium-Magazin (clean, gold-akzentuiert)
 */

:root {
    --fm-hero-overlay-strong: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0) 100%);
    --fm-hero-overlay-tile: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0) 100%);
    --fm-ticker-height: 44px;
    --fm-ticker-speed: 50s;
    --fm-stat-value-size: clamp(1.1rem, 1.6vw, 1.6rem);
}

/* =========================================================================
 * 1. MAGAZIN-HERO
 * ====================================================================== */

.fm-magazin-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 1rem 0;
    background: var(--fm-light-gray, #f8f8f8);
}

@media (min-width: 992px) {
    .fm-magazin-hero {
        grid-template-columns: 6fr 4fr;
        gap: 1rem;
        padding: 1.25rem;
        max-width: 1500px;
        margin: 0 auto;
    }
}

.fm-magazin-hero__featured {
    position: relative;
    overflow: hidden;
    border-radius: var(--fm-card-border-radius, 8px);
    aspect-ratio: 16 / 10;
    background: #1a1a1a;
}

@media (min-width: 992px) {
    .fm-magazin-hero__featured {
        aspect-ratio: 16 / 10;
    }
}

.fm-magazin-hero__featured-link {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--fm-white, #fff);
    text-decoration: none;
    position: relative;
}

.fm-magazin-hero__featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (hover: hover) {
    .fm-magazin-hero__featured-link:hover .fm-magazin-hero__featured-img {
        transform: scale(1.04);
    }
}

.fm-magazin-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1rem, 4vw, 2.5rem);
    background: var(--fm-hero-overlay-strong);
}

.fm-magazin-hero__badge {
    display: inline-block;
    background: var(--fm-gold, #b68b47);
    color: var(--fm-white, #fff);
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.65rem;
    border-radius: 2px;
    align-self: flex-start;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.fm-magazin-hero__title {
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-size: clamp(1.5rem, 4.2vw, 2.6rem);
    line-height: 1.15;
    font-weight: 700;
    margin: 0;
    color: var(--fm-white, #fff);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.fm-magazin-hero__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.fm-magazin-hero__source {
    position: absolute;
    bottom: 0.35rem;
    right: 0.5rem;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.45);
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
    font-style: italic;
    pointer-events: none;
    z-index: 2;
}

.fm-magazin-hero__tile-source,
.fm-news-card__source {
    display: block;
    font-size: 0.68rem;
    color: var(--fm-text-muted, #aaa);
    font-style: italic;
    margin-top: 0.25rem;
}

.fm-magazin-hero__dot {
    color: rgba(255, 255, 255, 0.5);
}

.fm-magazin-hero__tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width: 575px) {
    .fm-magazin-hero__tiles {
        grid-template-columns: 1fr;
    }
}

.fm-magazin-hero__tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--fm-card-border-radius, 8px);
    color: var(--fm-dark, #171717);
    text-decoration: none;
    background: var(--fm-white, #fff);
    border: 1px solid var(--fm-border-light, #dee2e6);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
    .fm-magazin-hero__tile:hover {
        box-shadow: var(--fm-card-shadow-medium, 0 8px 25px rgba(0, 0, 0, 0.2));
        transform: translateY(-2px);
    }
}

.fm-magazin-hero__tile-media {
    position: relative;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: #1a1a1a;
    flex-shrink: 0;
}

/* Magazin-Banner-Bilder sind oft 1920x418 (≈23:5) — bei kleinem Container
 * das ganze Bild zeigen statt Mitte croppen, damit Inhalt sichtbar bleibt. */
.fm-magazin-hero__tile-img {
    object-position: center 30%;
}

.fm-magazin-hero__tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (hover: hover) {
    .fm-magazin-hero__tile:hover .fm-magazin-hero__tile-img {
        transform: scale(1.05);
    }
}

.fm-magazin-hero__tile-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: inline-block;
    background: rgba(0, 0, 0, 0.78);
    color: var(--fm-white, #fff);
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 0.18rem 0.45rem;
    border-radius: 2px;
    text-transform: uppercase;
    z-index: 1;
}

.fm-magazin-hero__tile-body {
    padding: 0.7rem 0.85rem 0.85rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.fm-magazin-hero__tile-title {
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    line-height: 1.25;
    font-weight: 600;
    margin: 0;
    color: var(--fm-dark, #171717);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fm-magazin-hero__tile-meta {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: var(--fm-text-secondary, #6c757d);
    margin-top: auto;
}

/* =========================================================================
 * 2. LIVE-TICKER
 * ====================================================================== */

.fm-live-ticker {
    background: var(--fm-dark, #171717);
    color: var(--fm-text-white, #f1f1f1);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    position: relative;
}

.fm-live-ticker__inner {
    display: flex;
    align-items: stretch;
    height: var(--fm-ticker-height);
    max-width: 1500px;
    margin: 0 auto;
}

.fm-live-ticker__label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--fm-red, #c60f13);
    color: var(--fm-white, #fff);
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    padding: 0 0.85rem;
    flex-shrink: 0;
    text-transform: uppercase;
}

.fm-live-ticker__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fm-white, #fff);
    animation: fm-pulse 1.6s ease-in-out infinite;
}

@keyframes fm-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.fm-live-ticker__viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.fm-live-ticker__track {
    display: inline-flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: fm-ticker-scroll var(--fm-ticker-speed) linear infinite;
    will-change: transform;
}

.fm-live-ticker:hover .fm-live-ticker__track,
.fm-live-ticker:focus-within .fm-live-ticker__track {
    animation-play-state: paused;
}

@keyframes fm-ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.fm-live-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0 1.5rem;
    font-size: 0.875rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
}

.fm-live-ticker__item:hover,
.fm-live-ticker__item:focus-visible {
    color: var(--fm-gold, #b68b47);
}

.fm-live-ticker__icon {
    color: var(--fm-gold, #b68b47);
    font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .fm-live-ticker__track {
        animation: none;
    }

    .fm-live-ticker__viewport {
        overflow-x: auto;
    }
}

/* =========================================================================
 * 3. NOW-CARDS (Heute & Jetzt)
 * ====================================================================== */

.fm-now-section {
    /* spacing handled by container/my-5 */
}

.fm-now-card {
    background: var(--fm-white, #fff);
    border: 1px solid var(--fm-border-light, #dee2e6);
    border-radius: var(--fm-card-border-radius, 8px);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
    .fm-now-card:hover {
        box-shadow: var(--fm-card-shadow-medium, 0 8px 25px rgba(0, 0, 0, 0.2));
        transform: translateY(-3px);
    }
}

.fm-now-card__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--fm-border-light, #dee2e6);
}

.fm-now-card__icon {
    color: var(--fm-gold, #b68b47);
    font-size: 1.25rem;
}

.fm-now-card__title {
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: var(--fm-dark, #171717);
}

.fm-now-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.fm-now-list__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--fm-border-light, #dee2e6);
    font-size: 0.875rem;
}

.fm-now-list__item:last-child {
    border-bottom: 0;
}

.fm-now-list__time {
    flex-shrink: 0;
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 600;
    color: var(--fm-text-secondary, #6c757d);
    font-variant-numeric: tabular-nums;
    font-size: 0.8rem;
    min-width: 70px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.fm-now-list__rank {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--fm-gold, #b68b47);
    color: var(--fm-white, #fff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.fm-now-list__logo {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.fm-now-list__teams {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fm-now-list__team {
    color: var(--fm-text-primary, #333);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fm-now-list__sub {
    color: var(--fm-text-secondary, #6c757d);
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fm-now-list__sep {
    color: var(--fm-text-muted, #aaa);
    margin: 0 0.25rem;
}

.fm-now-list__result {
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 700;
    color: var(--fm-dark, #171717);
    font-variant-numeric: tabular-nums;
}

.fm-now-list__channel {
    flex-shrink: 0;
    color: var(--fm-text-secondary, #6c757d);
    font-size: 0.75rem;
    text-align: right;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fm-now-list__value {
    flex-shrink: 0;
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 700;
    color: var(--fm-dark, #171717);
    font-variant-numeric: tabular-nums;
    font-size: 0.95rem;
}

.fm-now-list__empty {
    padding: 1rem 0;
    color: var(--fm-text-secondary, #6c757d);
    font-style: italic;
    font-size: 0.875rem;
    text-align: center;
}

/* Match-Row: kompakte horizontale Darstellung mit Logos + Vereins-Links */
.fm-match-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--fm-border-light, #dee2e6);
    font-size: 0.85rem;
}

.fm-match-row:last-child {
    border-bottom: 0;
}

.fm-match-row__time {
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 600;
    color: var(--fm-text-secondary, #6c757d);
    font-variant-numeric: tabular-nums;
    font-size: 0.78rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.fm-match-row__pair {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
}

.fm-match-row__team {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--fm-text-primary, #333);
    text-decoration: none;
    font-weight: 500;
    overflow: hidden;
    min-width: 0;
}

.fm-match-row__team img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.fm-match-row__team > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

a.fm-match-row__team:hover,
a.fm-match-row__team:focus-visible {
    color: var(--fm-gold, #b68b47);
}

.fm-match-row__sep {
    color: var(--fm-text-muted, #aaa);
    flex-shrink: 0;
}

.fm-match-row__result {
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 700;
    color: var(--fm-dark, #171717);
    font-variant-numeric: tabular-nums;
    font-size: 0.95rem;
}

/* Top-Auswärtsfahrer-Item: ganzer Block clickable als Link */
.fm-now-list__teamlink {
    display: contents;
    color: inherit;
    text-decoration: none;
}

.fm-now-list__teamlink:hover .fm-now-list__team,
.fm-now-list__teamlink:focus-visible .fm-now-list__team {
    color: var(--fm-gold, #b68b47);
}

.fm-now-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    color: var(--fm-gold, #b68b47);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border-top: 1px solid var(--fm-border-light, #dee2e6);
    transition: color 0.2s ease, gap 0.2s ease;
}

.fm-now-card__cta:hover,
.fm-now-card__cta:focus-visible {
    color: var(--fm-accent-gold-dark, #a47731);
    gap: 0.55rem;
}

.fm-pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fm-red, #c60f13);
    box-shadow: 0 0 0 0 rgba(198, 15, 19, 0.6);
    animation: fm-live-pulse 1.4s ease-in-out infinite;
}

@keyframes fm-live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 15, 19, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(198, 15, 19, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(198, 15, 19, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fm-pulse-dot,
    .fm-live-ticker__dot {
        animation: none;
    }
}

/* =========================================================================
 * 4. NEWS CARDS (Magazin-Sektion)
 * ====================================================================== */

.fm-news-card {
    overflow: hidden;
}

.fm-news-card__link {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fm-news-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--fm-bg-light-alt, #e9ecef);
}

.fm-news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (hover: hover) {
    .fm-news-card:hover .fm-news-card__img {
        transform: scale(1.06);
    }
}

.fm-news-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.78);
    color: var(--fm-white, #fff);
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    text-transform: uppercase;
}

.fm-news-card__body {
    padding: 1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fm-news-card__title {
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--fm-dark, #171717);
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fm-news-card__meta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--fm-text-secondary, #6c757d);
    margin-bottom: 0.6rem;
}

.fm-news-card__excerpt {
    color: var(--fm-text-primary, #333);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================================================
 * 5. STAT BLOCKS (Saison in Zahlen)
 * ====================================================================== */

.fm-stats-section {
    background: linear-gradient(180deg, var(--fm-bg-light, #f8f9fa) 0%, var(--fm-white, #fff) 100%);
    border-top: 1px solid var(--fm-border-light, #dee2e6);
    border-bottom: 1px solid var(--fm-border-light, #dee2e6);
}

.fm-stat-block {
    background: var(--fm-white, #fff);
    border: 1px solid var(--fm-border-light, #dee2e6);
    border-radius: var(--fm-card-border-radius, 8px);
    padding: 1.25rem;
    transition: box-shadow 0.25s ease;
}

@media (hover: hover) {
    .fm-stat-block:hover {
        box-shadow: var(--fm-card-shadow-subtle, 0 8px 25px rgba(0, 0, 0, 0.15));
    }
}

.fm-stat-block__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--fm-gold, #b68b47);
}

.fm-stat-block__league {
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--fm-dark, #171717);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fm-stat-block__period {
    font-size: 0.75rem;
    color: var(--fm-text-secondary, #6c757d);
    font-variant-numeric: tabular-nums;
}

.fm-stat-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.fm-stat-block__cell {
    background: var(--fm-bg-light, #f8f9fa);
    border-radius: 4px;
    padding: 0.85rem 0.75rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: background 0.2s ease, transform 0.2s ease;
}

.fm-stat-block__cell:hover,
.fm-stat-block__cell:focus-visible {
    background: var(--fm-bg-light-alt, #e9ecef);
    transform: translateY(-1px);
    color: inherit;
}

.fm-stat-block__cell--highlight {
    background: var(--fm-dark, #171717);
    color: var(--fm-white, #fff);
}

.fm-stat-block__cell--highlight:hover,
.fm-stat-block__cell--highlight:focus-visible {
    background: var(--fm-dark-gray, #272727);
    color: var(--fm-white, #fff);
}

.fm-stat-block__cell--highlight .fm-stat-block__label,
.fm-stat-block__cell--highlight .fm-stat-block__hint {
    color: rgba(255, 255, 255, 0.65);
}

.fm-stat-block__value {
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-size: var(--fm-stat-value-size);
    font-weight: 700;
    line-height: 1.05;
    color: var(--fm-gold, #b68b47);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

.fm-stat-block__cell--highlight .fm-stat-block__value {
    color: var(--fm-gold, #b68b47);
}

.fm-stat-block__label {
    font-size: 0.75rem;
    color: var(--fm-text-primary, #333);
    margin-top: 0.3rem;
    font-weight: 500;
    line-height: 1.25;
}

.fm-stat-block__hint {
    font-size: 0.7rem;
    color: var(--fm-text-secondary, #6c757d);
    margin-top: 0.15rem;
}

/* Latest Penalty - Highlight-Bar */
.fm-latest-penalty {
    background: var(--fm-dark, #171717);
    border-radius: var(--fm-card-border-radius, 8px);
    padding: 1rem 1.25rem;
    color: var(--fm-white, #fff);
}

.fm-latest-penalty__inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.fm-latest-penalty__pre {
    background: var(--fm-red, #c60f13);
    color: var(--fm-white, #fff);
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    padding: 0.2rem 0.55rem;
    border-radius: 2px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.fm-latest-penalty__link {
    color: var(--fm-white, #fff);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    flex-wrap: wrap;
    transition: color 0.2s ease;
}

.fm-latest-penalty__link:hover,
.fm-latest-penalty__link:focus-visible {
    color: var(--fm-gold, #b68b47);
}

.fm-latest-penalty__value {
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 700;
    color: var(--fm-gold, #b68b47);
    font-size: 1.15rem;
    font-variant-numeric: tabular-nums;
}

.fm-latest-penalty__divider {
    opacity: 0.4;
}

.fm-latest-penalty__title {
    font-weight: 500;
}

.fm-latest-penalty__team {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
}

.fm-latest-penalty__arrow {
    margin-left: auto;
    transition: transform 0.2s ease;
}

.fm-latest-penalty__link:hover .fm-latest-penalty__arrow {
    transform: translateX(3px);
}

/* =========================================================================
 * 6. TOPIC-CARDS
 * ====================================================================== */

.fm-topic-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fm-topic-card__icon {
    color: var(--fm-text-secondary, #6c757d);
    transition: color 0.25s ease, transform 0.25s ease;
}

.fm-topic-card:hover .fm-topic-card__icon,
a:focus-visible .fm-topic-card .fm-topic-card__icon {
    color: var(--fm-gold, #b68b47);
    transform: scale(1.1);
}

/* =========================================================================
 * 7. SEO-FOOTER + FAQ
 * ====================================================================== */

.fm-seo-footer__intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--fm-text-primary, #333);
    text-align: center;
    margin: 0 auto;
    max-width: 70ch;
}

.fm-seo-footer__intro strong {
    color: var(--fm-dark, #171717);
}

.fm-seo-footer__faq {
    border-top: 1px solid var(--fm-border-light, #dee2e6);
    padding-top: 1.5rem;
}

.fm-faq-item {
    border: 1px solid var(--fm-border-light, #dee2e6);
    border-radius: var(--fm-card-border-radius, 8px);
    margin-bottom: 0.5rem;
    overflow: hidden;
    background: var(--fm-white, #fff);
}

.fm-faq-item[open] {
    box-shadow: var(--fm-card-shadow-subtle, 0 8px 25px rgba(0, 0, 0, 0.08));
}

.fm-faq-item__summary {
    list-style: none;
    cursor: pointer;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 600;
    color: var(--fm-dark, #171717);
    font-size: 1rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.fm-faq-item__summary::-webkit-details-marker {
    display: none;
}

.fm-faq-item__summary:hover {
    background: var(--fm-bg-light, #f8f9fa);
    color: var(--fm-gold, #b68b47);
}

.fm-faq-item__chevron {
    transition: transform 0.25s ease;
    color: var(--fm-text-secondary, #6c757d);
    flex-shrink: 0;
}

.fm-faq-item[open] .fm-faq-item__chevron {
    transform: rotate(180deg);
    color: var(--fm-gold, #b68b47);
}

.fm-faq-item__answer {
    padding: 0 1.1rem 1.1rem;
    color: var(--fm-text-primary, #333);
    line-height: 1.65;
    font-size: 0.925rem;
}

.fm-faq-item__answer a {
    color: var(--fm-gold, #b68b47);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.fm-faq-item__answer a:hover {
    color: var(--fm-accent-gold-dark, #a47731);
}

.fm-seo-footer__longtail {
    margin-top: 1rem;
    border: 1px dashed var(--fm-border-light, #dee2e6);
    border-radius: var(--fm-card-border-radius, 8px);
    background: var(--fm-bg-light, #f8f9fa);
    overflow: hidden;
}

.fm-seo-footer__longtail-content {
    padding: 0 1.1rem 1.1rem;
}

.fm-longtail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .fm-longtail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.fm-longtail-block h4 {
    font-family: var(--fm-font-display, 'Open Sans Condensed', sans-serif);
    font-weight: 700;
    font-size: 1rem;
    color: var(--fm-dark, #171717);
    margin: 0 0 0.4rem;
}

.fm-longtail-block p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--fm-text-primary, #333);
    margin: 0;
}

.fm-longtail-block a {
    color: var(--fm-gold, #b68b47);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.fm-longtail-block a:hover {
    color: var(--fm-accent-gold-dark, #a47731);
}

/* =========================================================================
 * 8. RESPONSIVE FINETUNING
 * ====================================================================== */

@media (max-width: 575px) {
    .fm-magazin-hero {
        padding: 0.75rem 0.75rem 0;
    }

    .fm-magazin-hero__overlay {
        padding: 1rem;
    }

    .fm-stat-block__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .fm-now-card {
        padding: 1rem;
    }

    .fm-now-list__item {
        font-size: 0.825rem;
    }

    .fm-now-list__time {
        min-width: 60px;
    }
}
