.rrzg {
    width: 100%;
    font-family: "Poppins", sans-serif;
    color: #111;
}

.rrzg-list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none !important;
    counter-reset: none !important;
}

/* Die Einträge sind bewusst keine nummerierte HTML-Liste. Diese Regeln
   verhindern zusätzlich, dass das Theme eigene Aufzählungszeichen ergänzt. */
.rrzg-list::before,
.rrzg-list::after,
.rrzg-item::before,
.rrzg-item::after,
.rrzg-item::marker {
    content: none !important;
    display: none !important;
}

.rrzg-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-areas:
        "title time"
        "artist time";
    align-items: center;
    column-gap: 1.25rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0.85rem 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f1f1 100%);
    color: #111;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
}

.rrzg-title,
.rrzg-artist {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: normal;
    text-transform: none;
    color: #111 !important;
    overflow-wrap: anywhere;
}

.rrzg-title {
    grid-area: title;
    font-weight: 700;
}

.rrzg-artist {
    grid-area: artist;
    font-weight: 400;
}

.rrzg-time {
    grid-area: time;
    display: block;
    justify-self: end;
    align-self: center;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 0.86rem;
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: normal;
    text-align: right;
    text-transform: none;
    white-space: nowrap;
    color: #111 !important;
}

.rrzg-empty {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #111 !important;
}

.rrzg.rrzg-updating {
    opacity: 0.82;
    transition: opacity 160ms ease;
}

/* Auf Smartphone-Bildschirmen steht die Uhrzeit unter Titel und Interpret
   und ist ausdrücklich linksbündig ausgerichtet. */
@media (max-width: 599px) {
    .rrzg-item {
        display: block;
    }

    .rrzg-time {
        width: 100%;
        margin-top: 0.15rem;
        justify-self: start;
        align-self: auto;
        text-align: left !important;
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rrzg.rrzg-updating {
        transition: none;
    }
}
