.reunion-materials {
    margin-top: 1.5rem;
}

/* Gruppen-Überschriften */
.reunion-material-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

/* Listen resetten */
.reunion-material-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

/* Einzelnes Material – Download-Row */
.material-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    padding: 8px 10px;
    margin-bottom: 6px;

    border-radius: 6px;
    background: rgba(0, 0, 0, 0.05);
    text-decoration: none;

    border: 1px solid rgba(0, 0, 0, 0.08);

    transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            transform 0.15s ease,
            box-shadow 0.2s ease;
}

/* Falls dein Bereich dunkel ist, die Farben einfach anpassen: */
.material-item a {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);

}

.material-item a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* Liste in der Mediathek komplett ent-listifizieren 😄 */
.reunion-materials .reunion-material-list {
    margin: 0;
    padding: 0;
}

/* li ist kein list-item mehr → kein marker */
.reunion-materials .reunion-material-list .material-item {
    display: block;             /* wichtig */
    list-style-type: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* falls der Browser trotzdem noch einen Marker versucht */
.reunion-materials .reunion-material-list .material-item::marker {
    content: "" !important;
    font-size: 0 !important;
    color: transparent !important;
}

/* Text */
.material-label {
    font-size: 0.95rem;
    font-weight: 500;
}