/* ============================================================================
   SECCIÓN · MENTORES (tono claro) — sec-mentores
   Mobile-first. Grid limpio de fichas, fotos con borde fino, restraint.
   Solo vars de tokens.css. Rojo = acento (una marca por ficha).
   ============================================================================ */

.sec-mentores .s-head { margin-bottom: clamp(36px, 6vw, 64px); }

/* ---- Grid de mentores: 1 col móvil ---- */
.sec-mentores .mentors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 7vw, 48px);
}

/* ---- Ficha ---- */
.sec-mentores .mentor {
  display: flex;
  flex-direction: column;
}

/* ---- Foto: borde fino, radio coherente, ratio retrato ---- */
.sec-mentores .mentor-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: var(--s-5);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.sec-mentores .mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder (si no hubiera imagen) — mismo encuadre, sin estridencias */
.sec-mentores .mentor-photo--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 120px);
  line-height: 1;
}

/* ---- Microinteracción sutil (solo donde hay hover real) ---- */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .sec-mentores .mentor:hover .mentor-photo {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--line-strong);
  }
}

/* ---- Identidad ---- */
.sec-mentores .mentor-name {
  font-size: clamp(21px, 2.4vw, 24px);
  margin-bottom: var(--s-2);
}
.sec-mentores .mentor-role {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: var(--s-5);
}

/* ---- Credenciales: regla fina superior + acento rojo en el guion ---- */
.sec-mentores .mentor-creds {
  display: grid;
  gap: var(--s-3);
  margin-top: auto;
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}
.sec-mentores .mentor-creds li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--text);
}
.sec-mentores .mentor-creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
.sec-mentores .mentor-creds li em {
  font-style: italic;
  color: var(--text-strong);
}

/* ============================================================================
   TABLET · 2 columnas
   ============================================================================ */
@media (min-width: 768px) {
  .sec-mentores .mentors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(40px, 5vw, 56px);
  }
}

/* ============================================================================
   DESKTOP · 3 columnas (3 mentores → fila limpia y alineada)
   ============================================================================ */
@media (min-width: 1024px) {
  .sec-mentores .mentors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(32px, 3vw, 44px);
  }
}
