/* ROW FIX (évite les trous visuels) */
.row-members {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* COLONNES FLEX */
.row-members > [class*="col-"] {
    display: flex;
}

/* LINK FULL HEIGHT */
.member-link {
    display: flex;
    width: 90%;
    text-decoration: none;

    margin-bottom: 20px;
}

/* CARD */
.member-card {
    width: 100%;
    height: 100%;

    background: #fff;
    border-radius: 2px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.25s ease;

    border: 1px solid #333466;
}

.member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    border: 1px solid #CD1719;
}

/* photo */
.member-photo {
    width: 95%;
    aspect-ratio: 1 / 1;
    margin: 0 auto 12px auto;

    border-radius: 50%;
    overflow: hidden;

    border: 2px solid #333466;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;

    transition: transform 0.35s ease;
}

.member-card:hover .member-photo img {
    transform: scale(1.15);
}

.member-card:hover .member-photo {
    border: 2px solid #CD1719;
}

/* nom */
.member-name {
    margin-top: auto;
    align-self: flex-end;

    margin-right: -20px;
    margin-bottom: -10px;

    font-size: 12px!important;
    color: #fff;
    background-color: #333466;

    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;

    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;

    text-transform: uppercase;

    word-wrap: break-word;
    overflow-wrap: break-word;
}

.member-card:hover .member-name {
    text-decoration: underline;
    background-color: #CD1719;
}