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

@media (max-width: 520px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-container {
  border: 1px solid #187485;
  background: #d1f4f4;
  padding: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #187485;
  background: black;
}

.review-image {
  position: relative;
  height: 150px;
  background: black;
  overflow: hidden;
  border-bottom: 1px solid #187485;
  isolation: isolate;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-image.fit-contain img {
  object-fit: contain;
  background: black;
}

.review-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.9) 0 1px,
    rgba(0,0,0,0)   1px 3px
  );
  mix-blend-mode: multiply;
}

.review-title {
  padding: 4px 6px;
  background: #2FB4C4;
  color: #ffffff;
  border-bottom: 1px solid #187485;
  font-family: 'THEBOLDFONT', system-ui, sans-serif;
  font-size: 12pt;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-meta {
  padding: 4px 6px;
  background: #EAF9FB;
  color: #107484;
  font-size: 10pt;
  text-align: center;
  font-family: 'THEBOLDFONT', system-ui, sans-serif;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
