/* ========================= */
/*   FICHE GROUPE / ALBUMS   */
/* ========================= */

.fiche-groupe {
    width: 600px;
    max-width: 100%;
    margin: 0 auto 10px auto;
    background: #000000;
    border: 1px solid #111111;
    box-sizing: border-box;
}

.fiche-groupe-entete {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 30px;
    padding: 3px 8px;
    box-sizing: border-box;
    background: #800000 url('/graph/barre.jpg') repeat-x;
}

.fiche-groupe-entete .titre-4 {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.fiche-groupe-icones {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

.fiche-groupe-icones a,
.fiche-groupe-icones img {
    display: block;
}

.fiche-groupe-albums {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #000000;
}

/* comportement global chroniques normales */
.album-item {
    padding: 9px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* compilations : 2 colonnes */
.compiles .fiche-groupe-albums {
    grid-template-columns: 35% 65%;
}

/* compilations : colonne pochette */
.compiles .compiles-cover {
    justify-content: flex-start;   /* pochette en haut */
    align-items: center;           /* centrée horizontalement */
    text-align: center;            /* texte centré */
}

/* compilations : colonne titres */
.compiles .compiles-titres {
    justify-content: flex-start;   /* bloc en haut */
    align-items: flex-start;       /* aligné à gauche */
    text-align: left;              /* liste à gauche */
}

.album-item + .album-item {
    border-left: 1px solid #000000;
}

.album-image {
    display: block;
    width: 131px;
    height: 131px;
    margin: 0 auto;
}

.album-infos {
    color: #FF9933;
    font-family: Verdana, sans-serif;
    font-size: 10px;
    font-weight: bold;
    line-height: 15px;
}

.album-icones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 22px;
}

.album-icones a,
.album-icones img {
    display: block;
}

.titre-album {
    font-family: Verdana, sans-serif;
    font-size: 10px;
    font-weight: bold;
    line-height: 15px;
    text-align: center;
    color: #FF9933;
    margin: 0;
    padding: 0;
}

@media (max-width: 600px) {

    .fiche-groupe {
        width: 100%;
    }

    .fiche-groupe-entete {
        padding: 3px 5px;
    }

    .fiche-groupe-albums {
        grid-template-columns: 1fr;
    }

    .album-item + .album-item {
        border-left: 0;
        border-top: 1px solid #111111;
    }

}
