.hero {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.5rem;
    color: #555;
    margin: 0;
}

/* 🌟 Karten-Stil mit Titelbalken */
.card {
    overflow: hidden;
    border-radius: 8px;
}

.badge-overlay {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 10px;
    border-radius: 4px;

    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    backdrop-filter: blur(3px);
    letter-spacing: 0.3px;
}
.card:hover .badge-overlay {
    background: rgba(0, 0, 0, 0.75);
    transition: 0.2s ease;
}
.placeholder-image {
    height: 220px;
    background: #f2f2f2;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-style: italic;
}

.titelbalken {
    background: #f4f4f4;

    padding: 4px 0; /* nur oben/unten, kein Einfluss auf links/rechts */
}

.titelbalken h3 {

    line-height: 1.3;
    color: #000;
    margin: 0;
    font-weight: 600;
    padding-left: 11px;   /* ✅ klarer linker Abstand zum Rand */
    padding-right: 5px;  /* optional: für symmetrischen Abstand */

}



/* Extra-kompakte Darstellung für Artikel-Listen (z. B. "Beliebt bei den Lesenden") */
.list-group-item {
    padding: 4px 8px !important;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.list-group-item img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-right: 6px;
}

.list-group-item h5 {

    line-height: 1.1;
    margin: 0;
    font-weight: 500;
    color: #222;
}

.list-group-item small {
    font-size: 0.75rem;
    color: #777;
}

.list-group-item + .list-group-item {
    margin-top: 1px;
}

.list-group-item:hover {
    background-color: #f5f5f5;
}
