/* ── PAGE HEADER ── */
.page-header {
  background: #0a0a0a;
  border-bottom: 2px solid #e8342a;
  padding: 36px 24px;
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-header-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8342a;
  margin-bottom: 8px;
}

.page-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #f0ede6;
  line-height: 1;
  margin-bottom: 10px;
}

.page-header-desc {
  font-size: 14px;
  color: #5a5550;
}

/* ── CONTAINER ── */
.reviews-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* ── REVIEW DESTACADA ── */
.review-featured {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.review-featured-img {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.review-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #e8342a;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.review-featured-content { position: relative; z-index: 2; }

.review-featured-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e8342a;
  margin-bottom: 8px;
}

.review-featured-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #f0ede6;
  margin-bottom: 10px;
  line-height: 1.05;
}

.review-featured-desc {
  font-size: 14px;
  color: #9a9590;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-featured-score-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-featured-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.review-featured-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-featured-platform {
  font-size: 12px;
  color: #5a5550;
  margin-top: 4px;
}

/* ── FILTROS ── */
.filtros-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1e1e1e;
}

.filtro {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #111;
  border: 1px solid #2a2a2a;
  color: #9a9590;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s;
}

.filtro:hover {
  border-color: #e8342a;
  color: #f0ede6;
}

.filtro.active {
  background: #e8342a;
  border-color: #e8342a;
  color: #fff;
}

/* ── GRILLA ── */
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.review-page-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.review-page-card:hover {
  border-color: #e8342a;
  transform: translateY(-2px);
}

.rpc-bar { height: 4px; }

.rpc-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rpc-body { padding: 16px; }

.rpc-platform {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5a5550;
  margin-bottom: 6px;
}

.rpc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #f0ede6;
  margin-bottom: 8px;
  line-height: 1.1;
}

.rpc-excerpt {
  font-size: 13px;
  color: #7a7570;
  line-height: 1.6;
  margin-bottom: 14px;
}

.rpc-score-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #1e1e1e;
}

.rpc-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.rpc-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════
   MOBILE — hasta 768px
═══════════════════════════════════ */
@media (max-width: 768px) {

  .page-header {
    padding: 24px 16px;
  }

  .page-header-title {
    font-size: 36px;
  }

  .reviews-page-container {
    padding: 20px 16px;
  }

  .review-featured-img {
    height: 220px;
    padding: 16px;
  }

  .review-featured-title {
    font-size: 26px;
  }

  .review-featured-desc {
    display: none;
  }

  .review-featured-score {
    font-size: 40px;
  }

  .reviews-page-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rpc-img {
    height: 120px;
  }

  .rpc-title {
    font-size: 18px;
  }

  .rpc-excerpt {
    font-size: 12px;
  }
}

/* ═══════════════════════════════════
   TABLET — entre 769px y 1024px
═══════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {

  .reviews-page-container {
    padding: 24px 16px;
  }

  .review-featured-img {
    height: 260px;
  }

  .review-featured-title {
    font-size: 30px;
  }
}
