.sa-main--archive-miembros .sa-main__header {
    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.sa-main--archive-miembros .sa-main__title,
.sa-main--archive-miembros .sa-main__subtitle {
    width: 100%;
    text-align: center;
}


/* ===============================
   GRID DE MIEMBROS
   =============================== */

.sa-miembros {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 32px;
}

/* ===============================
   TARJETA DE MIEMBRO
   =============================== */

.sa-miembro-card {
    background: #fff;
    border-radius: 30px;
    padding: 24px 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.sa-miembro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
}

/* ===============================
   IMAGEN
   =============================== */

.sa-miembro-card__image {
    width: 250px;
    height: 300px;
    margin: 0 auto 16px;
    border-radius: 50px;
    background-size: cover;
    background-position: top;
}

/* ===============================
   TEXTO
   =============================== */

.sa-miembro-card__name,
.sa-miembro-card__name h3 {
    margin: 0;
    font-size: 20px !important;
    font-weight: 600;
    color: #000000 !important;
}

.sa-miembro-card__cargo,
.sa-miembro-card__cargo p {
    margin-top: 6px !important;
    font-size: 18px !important;
    color: #1070B7 !important;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1024px) {
    .sa-miembros {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sa-miembros {
        grid-template-columns: 1fr;
    }
}
