/* ==========================================================================
   Seite „Fachblatt Bahn&Modell“
   ========================================================================== */

.heft-eckdaten {
    padding: 1.5rem 1.6rem;
    background: var(--papier);
    border: 1px solid var(--grau-hell);
    border-left: 4px solid var(--rot);
    border-radius: var(--radius-m);
}

.heft-eckdaten dl {
    margin: 0 0 1.25rem;
    display: grid;
    gap: .85rem;
}

.heft-eckdaten dt {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--text-leise);
}

.heft-eckdaten dd {
    margin: .1rem 0 0;
    font-weight: 600;
    color: var(--anthrazit);
}

.heft-filter__anzahl {
    margin-left: auto;
    padding-inline: 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-leise);
}

.heft__anker--ohne-pdf { cursor: default; }

.heft__anker--ohne-pdf .heft__cover { filter: saturate(.35); }

.heft__pdf-marke--offen {
    background: var(--grau);
    opacity: 1;
    transform: none;
}

.heft-hinweis {
    margin-top: var(--abstand-l);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-m);
    background: var(--weiss);
    border: 1px dashed var(--grau-hell);
    font-size: .92rem;
    color: var(--text-leise);
}

@media (max-width: 575.98px) {
    .heft-filter {
        border-radius: var(--radius-m);
        justify-content: center;
    }
    .heft-filter__anzahl { margin: .25rem auto 0; }
}

/* --- Redaktionsseite ------------------------------------------------------ */

.themenplan {
    padding: clamp(1.4rem, 1.1rem + 1vw, 2rem);
    background: var(--anthrazit);
    color: var(--text-invers);
    border-radius: var(--radius-l);
    box-shadow: var(--schatten-mittel);
}

.themenplan__titel {
    margin-bottom: .6rem;
    font-size: 1.2rem;
    color: #fff;
}

.themenplan__text {
    margin-bottom: 1.2rem;
    font-size: .95rem;
    color: rgba(242, 244, 246, .72);
}

.themenplan .hakenliste li::before {
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(239, 126, 4, .18);
}

.redaktion__zeit {
    margin-bottom: .4rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--rot);
}

/* --- Kontaktseite --------------------------------------------------------- */

.anliegen {
    display: grid;
    gap: var(--abstand-s);
}

.anliegen__punkt {
    padding: 1.15rem 1.35rem;
    background: var(--papier);
    border-left: 4px solid var(--grau-hell);
    border-radius: 0 var(--radius-m) var(--radius-m) 0;
    transition: border-color var(--uebergang), background var(--uebergang);
}

.anliegen__punkt:hover {
    border-left-color: var(--rot);
    background: var(--rot-hell);
}

.anliegen__punkt h3 {
    margin-bottom: .35rem;
    font-size: 1.08rem;
}

.anliegen__punkt p {
    margin: 0;
    font-size: .96rem;
    line-height: 1.7;
    color: var(--text-leise);
}

/* --- Sprungmarken innerhalb der Seite ------------------------------------- */

.sprungmarken {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: var(--abstand-m);
}

.sprungmarken a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    border: 1px solid var(--grau-hell);
    border-radius: 999px;
    background: var(--weiss);
    font-size: .9rem;
    font-weight: 600;
    color: var(--anthrazit-hell);
    text-decoration: none;
    transition: border-color var(--uebergang), color var(--uebergang), background var(--uebergang);
}

.sprungmarken a::before { content: "↓"; color: var(--rot); }

.sprungmarken a:hover,
.sprungmarken a:focus-visible {
    border-color: var(--rot);
    background: var(--rot-hell);
    color: var(--rot-dunkel);
}

/* --- Bilder in den Redaktions-Karten -------------------------------------- */

.karte > .bildfigur { margin-bottom: 1rem; }
.karte > .bildfigur .bildfigur__rahmen { border-radius: var(--radius-m); }
