/* Formate — nummerierte Angebotszeilen (01, 02, 03 …).
   Nummer läuft über CSS-counter, nicht über ein Redaktionsfeld. */

.formate.block {
    margin-bottom: 80px;
    counter-reset: format;
}

/* Blockkopf nur, wenn eine Überschrift gesetzt ist (meist nicht). */
.formate .blockkopf {
    margin-bottom: 40px;
}
.formate .cb-titel {
    font-size: 26px;
    font-weight: 600;
    color: var(--tinte);
    margin: 0;
}

.formate .format {
    counter-increment: format;
    border-top: 1px solid var(--linie);
    padding: 34px 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: baseline;
}
.formate .format:first-of-type {
    border-top: none;
    padding-top: 0;
}

.formate .format::before {
    content: counter(format, decimal-leading-zero);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--gedaempft);
    letter-spacing: .08em;
}

.formate .format-inhalt h2 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--tinte);
    margin-bottom: 12px;
}

.formate .format-text {
    max-width: 620px;
}
.formate .format-text p {
    font-size: 17px;
    margin-bottom: 10px;
}
.formate .format-text p:last-child {
    margin-bottom: 0;
}
.formate .format-text a {
    color: var(--rot);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
.formate .format-text a:hover {
    color: var(--rot-tief);
}

.formate .format-inhalt p.methode {
    color: var(--gedaempft);
    font-size: 15px;
    max-width: 620px;
    margin-top: 10px;
}

.formate .format-inhalt p.meta {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--gedaempft);
    margin-top: 14px;
}

/* Leiser „Mehr dazu →"-Link — Einladung, kein Button (Muster wie a.mehr in Serienauswahl). */
.formate .format-inhalt a.mehr {
    display: inline-block;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--rot);
    text-decoration: none;
    border-bottom: none;
    margin-top: 16px;
}
.formate .format-inhalt a.mehr:hover {
    color: var(--rot-tief);
}

@media (max-width: 880px) {
    .formate .format {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 28px 0;
    }
    .formate .format::before {
        margin-bottom: 4px;
    }
}
