/* Sección a media pantalla */
.ia-arte {
  position: relative;
  width: 100%;
  height: 50vh;         /* mitad de la pantalla */
  overflow: hidden;     /* recorte */
}

/* Wrapper ocupa todo el alto disponible */
.ia-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Imagen a ancho completo, recortada (cover) */
.ia-img {
  position: absolute;
  inset: 0;             /* top/right/bottom/left: 0 */
  width: 100%;
  height: 100%;
  object-fit: cover;    /* hace el crop */
  object-position: center;
  transform: none;
  will-change: auto;
}

/* Texto superpuesto centrado */
.ia-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: #fff;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
  opacity: 1; /* visible */
  pointer-events: none;
}

/* Opcional: asegurar mínimo alto útil en móviles muy bajos */
@media (max-height: 480px) {
  .ia-arte { min-height: 240px; }
}