/* ============ REVIEWS PAGE STYLES ============ */

:root {
  --gold: #C9982E;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
  --text: #333;
  --text-light: #666;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --dark: #2d2d2d;
}

/* ============ REVIEWS HEADING SECTION ============ */
.reviews-heading {
  background: var(--white);
  text-align: center;
  padding: 60px 20px 40px;
}

.reviews-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.reviews-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

/* ============ REVIEWS GRID SECTION ============ */
.reviews-section {
  background: var(--light-bg);
  padding: 60px 20px 80px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============ REVIEW CARD ============ */
.review-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 30px;
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.reviewer-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars .fa-star {
  color: var(--text);
  font-size: 14px;
}

.review-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-title {
    font-size: 36px;
  }

  .reviews-heading {
    padding: 40px 20px 30px;
  }

  .reviews-section {
    padding: 40px 20px 60px;
  }
}
