/* Imagenes adaptativas al tamano subido */

/* Work cards */
.work-thumb {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.work-thumb:has(img) {
  min-height: unset;
  height: auto;
}

/* Servicio: contenedor SVG/visual que recibe la foto del CMS */
.service-detail-visual {
  height: auto !important;
  min-height: unset !important;
}
.service-detail-visual img {
  width: 100% !important;
  height: auto !important;
  object-fit: unset !important;
  display: block !important;
}

/* Foto del equipo en Nosotros */
.team-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

/* Avatar en testimonios */
.tcard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Carrusel: overlay siempre visible sobre la imagen al hacer hover */
.carousel-slide {
  position: relative;
}
.carousel-slide img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}
.carousel-slide .work-overlay-v3 {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
}
