@font-face {
  font-family: "LasVegasJackpot";
  src: url("/assets/fonts/LasVegas Jackpot Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* Main centered reviews box */
.section {
  max-width: 1100px;
  margin: 60px auto;

  padding: 40px;

  background-color: rgba(26, 22, 19, 0.92);

  border: 5px solid rgba(255,255,255,0.85);

  box-shadow:
    0 0 20px rgba(0,0,0,0.5),
    0 0 60px rgba(255,255,255,0.05);

  backdrop-filter: blur(4px);

  color: white;
  text-align: center;
}

/* Title */
.section h1 {
  font-size: 56px;
  margin-top: 0;
  margin-bottom: 10px;

  font-family: sans-serif;

  color: #ffffff;
}


.section p {
  font-family: sans-serif;

  font-size: 22px;
  line-height: 1.5;

  max-width: 700px;
  margin: 0 auto 40px auto;

  color: rgba(255,255,255,0.85);
}

.review-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(180px, 1fr));

  gap: 25px;
}

.review-card {
  background-color: rgba(255,255,255,0.05);

  border: 3px solid rgba(255,255,255,0.2);

  padding: 20px;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;

  color: white;
}

.review-card:hover {
  transform: translateY(-6px);

  border-color: white;

  background-color: rgba(255,255,255,0.12);
}

.review-card img {
  width: 100px;
  height: 100px;

  object-fit: contain;

  margin-bottom: 10px;
}

.review-card h2 {
  margin: 0;

  font-size: 24px;

  font-family: sans-serif;
}

/* Recent review section */

.recent-reviews {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(190px, 1fr));

  gap: 24px;

  margin-bottom: 50px;
}

/* Card */

.recent-review-card {
  display: block;

  overflow: hidden;

  text-decoration: none;

  background-color: rgba(255,255,255,0.05);

  border: 3px solid rgba(255,255,255,0.18);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;

  color: white;
}

.recent-review-card:hover {
  transform: translateY(-6px);

  border-color: white;

  background-color: rgba(255,255,255,0.1);
}

/* Cover */

.recent-review-card img {
  width: 100%;

  aspect-ratio: 2 / 3;

  object-fit: cover;

  display: block;
}

/* Bottom info area */

.recent-review-info {
  padding: 14px;
}

/* Rating */

.recent-review-rating {
  font-family: "LasVegasJackpot", sans-serif;

  color: #ffd54a;

  font-size: 22px;

  margin-bottom: 8px;
}

/* Media title */

.recent-review-title {
  font-size: 18px;

  line-height: 1.3;

  font-weight: bold;

  color: white;

  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}