/* ===============================
   ABOUT — IMAGEN EDITORIAL
=============================== */

.about-fullimg {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* Imagen real */
.img-about {
  position: relative;
  z-index: 2;
  width: 100vw;
  height: 100%;
  margin: 0;
  display: block;
  object-fit: cover;
}

@media (max-width: 600px) {
  .about-fullimg {
    height: 100vh;
  }

  .img-about {
    width: 100vw;
    height: 100vh;
    object-fit: fill; /* se estira a propósito */
  }
}