/* Estilos para el nuevo formato Mosaico Editorial (Contenido) */
.mente {
  background: var(--parchment);
  padding: var(--section-padding) 0;
}

.mente .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mente-mosaic {
  width: 100%;
  overflow: hidden;
}


.mente-mosaic-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 580px;
  /* Reducimos ligeramente para que quepa mejor en el contenedor */
}

.mente-mosaic-row.reverse {
  direction: rtl;
}

.mente-mosaic-row.reverse>* {
  direction: ltr;
}

.mente-mosaic-img {
  overflow: hidden;
}

.mente-mosaic-img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 2s var(--ease-expo);
}

.mente-mosaic-row:hover .mente-mosaic-img img {
  transform: scale(1.05);
}

.mente-mosaic-text {
  padding: 4rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mente-mosaic-text.bg-stone {
  background: var(--stone-dark);
}

.mente-mosaic-text.bg-cedar {
  background: var(--cedar);
}

.mente-mosaic-text h3 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 200;
  line-height: 1.1;
  margin-bottom: 2rem;
  transition: transform 0.7s var(--ease-expo);
}

.mente-mosaic-text p {
  font-size: 1.3rem;
  font-family: var(--f-serif);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.mente-mosaic-text .budismo-divider {
  width: 40px;
  height: 1px;
  background: var(--saffron);
  margin-bottom: 2rem;
  transition: width 0.7s var(--ease-expo);
}

/* Animaciones de Hover para el Mosaico */
.mente-mosaic-row:hover .mente-mosaic-text h3 {
  transform: translateX(10px);
}

.mente-mosaic-row:hover .mente-mosaic-text .budismo-divider {
  width: 80px;
}

.mente-mosaic-text.bg-cedar h3,
.mente-mosaic-text.bg-cedar .section-tag,
.mente-mosaic-text.bg-cedar p {
  color: var(--parchment);
}

.mente-mosaic-text.bg-cedar .btn-editorial:hover {
  color: var(--parchment);
  border-bottom-color: var(--parchment);
}



@media (max-width: 1024px) {
  .mente-mosaic-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mente-mosaic-img {
    height: 400px;
  }

  .mente-mosaic-text {
    padding: 4rem 1.5rem;
  }
}