/* ==========================================================================
   Customer Reviews Section Styles
   ========================================================================== */

.af-customer-reviews-section {
  padding: var(--spacing-section) 0;
  background-color: var(--bg-color);
}

/* Header & Intro Text */
.af-reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--spacing-xl) auto;
}

.af-reviews-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: var(--spacing-md);
}

/* Ensure the grid doesn't stretch cards too wide if there's only one review */
.af-reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

@media (min-width: 768px) {
  .af-reviews-intro {
    font-size: 1.1rem;
  }
}