body.reviews-page .view-content {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}

.review-link-container,
body.reviews-page .view-header {
  text-align: center;
  padding-bottom: 20px;
}

/* Each row */
body.reviews-page .views-row {
  margin-bottom: 3rem;
}

/* Full review layout */
.review-full {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: #1A1717;
  color: #e9e3d7;
  border-left: 4px solid #C20F2D;
}

/* LEFT SIDE (photo) */
.review-full-left {
  flex: 0 0 120px;
}

.review-full-left img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-top: 20%;
}

/* RIGHT SIDE */
.review-full-right {
  flex: 1;
}

/* HEADER */
.review-full-header {
  margin-bottom: 1rem;
}

.review-full-header .review-name {
  font-family: "Ultra";
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: normal;
}

.review-full-header .review-verified {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  padding-top: 5px;
}

/* BODY */
.review-full-body {
  position: relative;
  padding-left: 2rem;
}

.review-full-body .review-text {
  font-family: "Atilla";
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
}

/* Quotes */
.quote-open,
.quote-close {
  position: absolute;
  font-size: 3rem;
  color: #C20F2D;
  line-height: 1;
}

.quote-open {
  left: 0;
  top: -10px;
}

.quote-close {
  right: 0;
  bottom: -10px;
}

/* Modal background */
.review-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

/* Image */
.review-modal-content {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

/* Close button */
.review-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Cursor hint */
.review-photo img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.review-photo img:hover {
  transform: scale(1.05);
}



@media (max-width: 992px) {
  .review-full {
    flex-direction: column;
    text-align: center;
  }

  .review-full-left {
    margin: 0 auto;
  }

    .review-full-left img {
    width: 50%;
    height: auto;
    border-radius: 50%;
    margin-top: 20px;
    }

  .review-full-body {
    padding-left: 0;
  }

  .quote-open,
  .quote-close {
    position: static;
    display: inline-block;
  }
}