/* On regle le titre de l'album */
.titreAlb {
    color: var(--color-primary);
    margin-left: 20px;
}

.accordion-body {
    padding: 20px 25px !important;
}

/* On affiche pour les smartphone et les tablettes les smarthone */
@media screen and (max-width: 991.98px) {
    .tacktils {
        display: block;
    }

    .tacktils a {
        font-size: 16px !important;
        color: black !important;
        font-weight: bold !important;
    }

    .aligUrl {
        display: flex;
        flex-flow: row wrap;
        gap: 10px;
        align-items: center;
    }

    /* On regle la hauteur du main */
    .fixes {
        display: none;
    }

    .menu-photo {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
        list-style: none;
    }

    .menu-photo a:hover {
        color: var(--color-secondary) !important;
    }

    .smart-li {
        font-weight: normal;
    }

    /* Design carte identique aux programmes */
    .menu-photo .menuMobile-item {
        background-color: #ffffff;
        border: 1px solid #e8e8e8;
        border-radius: 12px;
        padding: 18px;
        margin-bottom: 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .menu-photo .menuMobile-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .menu-photo .menuMobile-item .infosTitre {
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }

    .menu-photo .menuMobile-item .smart-li {
        color: #6b7280;
        font-size: 0.9rem;
        margin: 0 !important;
    }

    .menu-photo .menuMobile-item .alb-libelle {
        font-size: 1.05rem;
        color: #1a1a1a;
        font-weight: 700;
        margin-top: 4px;
    }
}

/* On raffiche pour les pc */
@media screen and (min-width: 992px) {
    .tacktils {
        display: none;
    }

    /* On regle la hauteur du main */
    .fixes {
        display: block;
    }
}