/* --- SECCIÓN DE EQUIPO --- */
.team {
    background-color: #ececec; /* Un fondo muy ligeramente gris */
}

.team-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
}

.team-member:last-child {
    margin-bottom: 0;
}

.member-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

/* Colores de relleno temporales como en tu diseño */
.placeholder-1 { background-color: #d4e9e2; }
.placeholder-2 { background-color: #e3d8e3; }


.member-text h3 {
    font-size: 2rem;
}

.member-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-text strong {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #000;
}

.member-text ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.member-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #888;
}