/* Basislayout für den Artist-Teaser-Parade-Block */

.atpb-artist-parade {
    width: 100%;
}

/* Grid-Container, Abstände kommen inline über Style aus den Attributen */
.atpb-artist-parade-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Smartphone: immer eine Spalte */
@media (max-width: 600px) {
    .atpb-artist-parade-grid {
        grid-template-columns: 1fr;
    }
}

/* Sehr breite Desktops: maximal 6 Spalten */
@media (min-width: 1600px) {
    .atpb-artist-parade-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* Kartenlayout wie beim Single-Block, nur mit atpb-Klassen */
.atpb-artist-card {
    max-width: 100%;
}

.atpb-artist-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Avatar-Bild immer auf Container-Größe skalieren */
.atpb-artist-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Titel, Rolle, Link */
.atpb-artist-name {
    margin: 0;
    font-weight: 700;
}

.atpb-artist-role {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.atpb-artist-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}
