/*
 * Page « Mon Profil » : fiche adhérent en lecture seule.
 *
 * Mêmes couleurs que le reste du plugin : bandeau #0d5885, texte courant du
 * thème. Deux colonnes libellé/valeur, qui repassent en une seule sur mobile.
 */

.fnmr-profil {
    max-width: 800px;
    margin: 24px auto;
}

.fnmr-profil__entete {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: #0d5885;
    color: #fff;
}

.fnmr-profil__photo {
    width: 80px;
    height: 80px;
    flex: none;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

/* Le logo n'est pas un portrait : il respire au lieu d'être recadré. */
.fnmr-profil__photo--logo {
    object-fit: contain;
    padding: 8px;
    box-sizing: border-box;
}

.fnmr-profil__nom {
    margin: 0;
    font-family: "Exo 2", "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 28.08px;
}

.fnmr-profil__type {
    margin: 4px 0 0;
    font-size: 16px;
    line-height: 27.52px;
    opacity: 0.85;
}

.fnmr-profil__section {
    margin: 0;
    padding: 20px 25px;
    border: 1px solid #e5e5e5;
    border-top: 0;
}

.fnmr-profil__titre {
    margin: 0 0 12px;
    color: #0d5885;
    font-family: "Exo 2", "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 18.6667px;
    font-weight: 900;
    line-height: 21.6533px;
}

.fnmr-profil__liste {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 8px 20px;
    margin: 0;
}

.fnmr-profil__liste dt {
    margin: 0;
    color: #555;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}

.fnmr-profil__liste dd {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 22px;
}

.fnmr-profil__avis {
    margin: 24px 0;
    padding: 12px 15px;
    border-left: 3px solid #0d5885;
    background: #f7f7f7;
    color: #555;
}

@media (max-width: 600px) {
    .fnmr-profil__liste {
        grid-template-columns: 1fr;
        gap: 2px 0;
    }

    .fnmr-profil__liste dd {
        margin: 0 0 10px;
    }
}
