.seccion__mesaDirec {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.contenedor__miembros {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Espacio entre filas */
  padding: 2rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.fila {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* 1 tarjeta (Presidencia) */
.fila--1 {
  justify-content: center;
}

/* 2 tarjetas */
.fila--2 {
  justify-content: center;
}

/* 3 tarjetas */
.fila--3 {
  justify-content: center;
}

/* 4 tarjetas */
.fila--4 {
  justify-content: center;
}

/* 5 o más tarjetas agrupadas */
.fila--5 {
  justify-content: center;
  flex-wrap: wrap;
}

.tarjeta__miembro {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  border: 2px solid #1b2a4f;
  border-radius: 0.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #d0d0d0;
  /**/
  width: 100%; /* Ocupa el ancho de la celda */
  max-width: 15.5rem; /* 248px = cabe 5 por fila en 1400px con gap */
  height: auto;
  /**/
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.676) 0%,
    rgba(3, 33, 88, 0.249) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 1rem;
}

.contenedor__imagen {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.contenedor__imagen--act-academicas img {
  object-fit: contain;
  transform: scale(1.1) translateY(-10%);
}

.contenedor__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;

  /* Para navegadores basados en WebKit (Chrome, Safari) */
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;

  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.348));
}

.contenedor__info {
  color: #ffffff;
  text-align: center;
  padding: clamp(0.5rem, 2dvh, 1rem);
  background-color: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 1.5dvh, 1rem);
  max-width: 100%;
  box-sizing: border-box;
}

.contenedor__info h2 {
  font-size: clamp(1rem, 2.5dvw, 1.75rem);
  line-height: 1.2;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.25rem, 1dvh, 0.5rem); /* Espacio entre título y span */
}

.contenedor__info h2 span {
  font-size: clamp(0.875rem, 2dvw, 1.25rem);
  font-weight: 400;
  display: block;
  margin-top: clamp(0.25rem, 1dvh, 0.5rem);
  white-space: normal;
  word-wrap: break-word;
}

.contenedor__imagen--jefe-deportes img {
  object-fit: contain;
}
