/* docentes.css */
/* NUEVO ESTILO GALERÍA DOCENTES */
.docentes-galeria {
  padding: 1.5rem 1.5rem;
  background: linear-gradient(180deg, #f5f7fa, #eef2f6);
  position: relative;
}

.docentes-galeria h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #0c1c3d;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.intro-galeria {
  text-align: center;
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

.docente-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 980px;
  margin: 0 auto 4rem;
  background: #ffffff;
  padding: 2.75rem 2.25rem 3rem;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.09);
  position: relative;
  overflow: hidden;
}

.docente-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg,#f1c40f,#e67e22);
}

.docente-foto {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9; /* Mantiene 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  background: #fff;
  margin-bottom: 1.75rem;
}

.docente-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.docente-item:hover .docente-foto img {
  transform: scale(1.05);
}

.docente-info h3 {
  font-size: 2.05rem;
  margin: 0 0 1rem;
  color: #0c1c3d;
  line-height: 1.15;
  letter-spacing: .5px;
}

.docente-info .area {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
  max-width: 760px;
}

/* Divider suave entre tarjetas */
.docente-item:not(:last-of-type) {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 980px) {
  .docente-info h3 { font-size: 1.9rem; }
}

@media (max-width: 760px) {
  .docente-item { padding: 2.25rem 1.4rem 2.6rem; }
  .docente-foto { margin-bottom: 1.4rem; }
  .docente-info h3 { font-size: 1.7rem; }
  .docente-info .area { font-size: 1rem; }
}

@media (max-width: 480px) {
  .docente-item { margin-bottom: 2.5rem; }
  .docentes-galeria { padding: 3rem 1rem; }
}
