/* ============================================================
   Linien-Liste DCE – linien_liste.css
   ============================================================ */

.linien-liste {
    display: flex;
    flex-direction: column;
    font-family: 'Glober', Arial, sans-serif;
}

/* ---- Einzelner Eintrag ---- */
.linien-item {
    display: flex;
    align-items: center; /* vertikal zentriert – funktioniert für 1 und 2 Zeilen */
    gap: 14px;
    padding: 0 0 15px 0;
    /*border-bottom: 1px solid #e0e0e0;*/
}

.linien-item:first-child {
    /*border-top: 1px solid #e0e0e0;*/
}

.linien-item:last-child {
    /*border-top: 1px solid #e0e0e0;*/
    padding: 0;
}

/* ---- Badge ---- */
.linien-item__badge {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 19px;
    line-height: 1;
    letter-spacing: -0.5px;
    overflow: hidden; /* für Bild-Icon */
}

.linien-item__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---- Text ---- */
.linien-item__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    min-width: 0;
}

.linien-item__haupttext {
    font-weight: 700;
    line-height: 140%;
    margin: 0;
}

.linien-item__subtext {
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .ce-cols2-col:first-child {
        margin-bottom: 15px;
    }
}
@media (max-width: 480px) {
    .linien-item__haupttext { font-size: 0.88rem; }
    .linien-item__subtext   { font-size: 0.78rem; }
}
