.reviews-section {
  padding: 50px 0 85px;
  background: var(--cta-bg);
  overflow: hidden;
}

.reviews-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
  color: #2a2a2a;
  letter-spacing: 0.02em;
}

.reviews-subtitle {
  text-align: center;
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.reviews-embla {
  overflow: hidden;
}

.reviews-embla__container {
  display: flex;
  align-items: flex-start;
}

.reviews-embla__slide {
  flex: 0 0 85%;
  min-width: 0;
  padding: 0 8px;
}

@media (min-width: 768px) {
  .reviews-embla__slide {
    flex: 0 0 45%;
    padding: 0 10px;
  }
}

@media (min-width: 1024px) {
  .reviews-embla__slide {
    flex: 0 0 33.333%;
    padding: 0 12px;
  }
  .review-card {
    height: 270px;
  }
}

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  height: 250px;
}

.review-stars {
  color: var(--accent-stars);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.review-text {
  font-family: 'Source Serif 4', serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.review-attribution {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: #888;
  border-top: 1px solid #eee;
  padding-top: 12px;
  flex-shrink: 0;
}

.review-attribution .review-name {
  font-weight: 600;
  color: #2a2a2a;
  display: inline;
}

.review-attribution .review-date {
  display: inline;
  color: #aaa;
}

.review-attribution .review-date::before {
  content: " · ";
  color: #ccc;
}

.review-attribution .review-source {
  display: inline;
  color: #bbb;
}

.review-attribution .review-source::before {
  content: " · ";
  color: #ccc;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.reviews-nav .reviews-prev,
.reviews-nav .reviews-next {
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
  padding: 0;
}

.reviews-nav .reviews-prev:hover,
.reviews-nav .reviews-next:hover {
  border-color: #2a2a2a;
  background: #2a2a2a;
  color: #fff;
}

.reviews-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-dots .review-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  max-width: 10px;
  max-height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.reviews-dots .review-dot.is-selected {
  background: var(--accent);
  transform: scale(1.15);
}

.reviews-read-all-link {
  margin-left: auto;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass-dark);
  text-decoration: none;
  padding: 14px 36px;
  border: 1px solid var(--brass);
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.reviews-read-all-link:hover {
  background: var(--brass);
  color: #fff;
}

@media (max-width: 768px) {
  .reviews-nav { flex-wrap: wrap; }
  .reviews-read-all-link { margin: 16px auto 0; }
}
