/**
 * Fotos Equipo: forzar formato cuadrado 1:1 (recorte cover).
 * Se carga después del style.css principal para anular reglas del tema.
 */

/* Contenedor: siempre cuadrado */
body section#team.wrap-page article header figure,
body section#team.wrap-page article#ceo header figure,
.team-photo-frame {
  display: block !important;
  width: 100% !important;
  position: relative !important;
  overflow: hidden !important;
  background-color: #e8edf2 !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
}

@supports not (aspect-ratio: 1 / 1) {
  body section#team.wrap-page article header figure::before,
  body section#team.wrap-page article#ceo header figure::before,
  .team-photo-frame::before {
    content: "" !important;
    display: block !important;
    padding-bottom: 100% !important;
  }
}

/* Imagen: recorte centrado en el rostro, ligero zoom para encuadre tipo retrato */
body section#team.wrap-page article header figure img,
body section#team.wrap-page article#ceo header figure img,
body section#team.wrap-page article#ceo img,
.team-photo-frame img,
.team-photo-frame .team-photo-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 38% !important;
  transform: scale(1.15) !important;
  display: block !important;
  font-size: 0 !important;
  line-height: 0 !important;
}
