/* =========================
   BLOQUE GENERAL
========================= */
.block-collage {
  margin: 4rem 0;
}

.block-collage .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.collage-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}

.collage-group {
  flex: 1;
  min-width: 350px;
  max-width: 550px;
  position: relative;
}

/* =========================
   COLLAGE BASE
========================= */
.editorial-collage {
  position: relative;
  width: 100%;
  min-height: 650px;
}

/* =========================
   IMÁGENES
========================= */
.img-wrapper {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  background: transparent;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: none;
}

.img-1 img {
  object-position: center 15%;
}

.img-2 img {
  object-position: center 12%;
}

/* Imagen 1 */
.img-1 {
  top: 0;
  left: 0;
  width: 68%;
  aspect-ratio: 4 / 3;
  z-index: 1;
}

/* Imagen 2 */
.img-2 {
  top: 270px;
  right: 0;
  width: 72%;
  aspect-ratio: 4 / 3;
  z-index: 2;
}

/* =========================
   CARD
========================= */
.info-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58%;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  z-index: 3;
}

.collage-title {
  font-family: 'Teko', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #a31e33;
}

.collage-text {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.4;
  margin: 0;
  font-size: 1rem;
  color: #333;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {

  .editorial-collage {
    min-height: 520px;
  }

  .img-1 { width: 75%; }
  .img-2 { top: 230px; width: 78%; }

  .info-card {
    width: 68%;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .editorial-collage {
    position: relative;
    min-height: 600px;
  }

  .img-wrapper {
    position: absolute;
    width: 100%;
    aspect-ratio: 4 / 3;
    box-shadow: none;
  }

  .img-1 {
    top: 0;
    left: 0;
    right: 0;
  }

  .img-2 {
    top: 45%;
    left: 0;
    right: 0;
  }

  .img-wrapper img {
    object-position: center 10%;
  }

  .info-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    margin: 0;
    z-index: 10;
  }
}