.reviews-header {
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 20px;
  text-align: center;
}

.reviews-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.reviews-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
}

.reviews-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

#reviews-section {
  padding: 0px 10px;
  overflow: hidden;
}

.reviews-viewport {
  width: 100%;
  overflow: visible;
}

.reviews-viewport::before,
.reviews-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

 

.reviews-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

/* CARD WIDTHS */
.review-card {
  flex: 0 0 100%;
}

@media (min-width: 640px) {
  .review-card {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 33.3333%;
  }
}

/* GLASS CARD */
.review-content {
  height: 100%;
  padding: 24px;
  border-radius: 24px;

  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(24px) saturate(100%);
  -webkit-backdrop-filter: blur(24px) saturate(100%);

  border: 1px solid rgba(255, 255, 255, 0.12);

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.review-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.stars {
  color: #facc15;
  font-size: 0.85rem;
}

.review-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.6;
}
