/* Reseñas — bento morado */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

body.page-resenas {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Manrope", system-ui, sans-serif;
  background: #1e1b4b;
  color: #e0e7ff;
}

.page-resenas main {
  flex: 1;
  padding: 44px 20px 72px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-resenas h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-resenas .deck {
  color: #a5b4fc;
  margin: 0 0 36px;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
}

.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
@media (max-width: 800px) {
  .bento {
    grid-template-columns: 1fr;
  }
}

.bento .cell {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  background: #312e81;
  border: 1px solid rgba(165, 180, 252, 0.2);
}
.bento .cell.large {
  grid-row: span 2;
  min-height: 420px;
}
@media (max-width: 800px) {
  .bento .cell.large {
    grid-row: auto;
    min-height: 280px;
  }
}

.bento .cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.4s ease;
}
.bento .cell:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.bento .overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(transparent 20%, rgba(15, 23, 42, 0.92));
}
.bento .score {
  font-size: 2rem;
  font-weight: 800;
  color: #fcd34d;
  line-height: 1;
}
.bento h2 {
  margin: 8px 0 4px;
  font-size: 1.2rem;
  font-weight: 700;
}
.bento p {
  margin: 0;
  font-size: 0.88rem;
  color: #c7d2fe;
  line-height: 1.5;
}
