.trabajos-carrusel-item video.video-carrusel {
  position: relative;
}

.trabajos-carrusel-item video.video-carrusel::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  background: url('/assets/img/galeria/play-icon.svg') center center no-repeat;
  background-size: 64px 64px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Estilo para videos en el carrusel para que el poster se vea como fondo centrado y recortado */

.trabajos-carrusel-item video.video-carrusel {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: center;
  background: #000;
  border-radius: 15px;
  display: block;
  margin: 0;
  padding: 0;
}

.trabajos-carrusel-item {
  min-width: 300px;
  max-width: 340px;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.trabajos-carrusel-modal-video {
  width: 100%;
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
}

/* Overlay para ícono de reproducción sobre el video */
.video-overlay {
  position: relative;
  width: 100%;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay video.video-carrusel {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: center;
  background: #000;
  border-radius: 15px;
  display: block;
}

.video-overlay .play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.8;
  z-index: 2;
}
