:root {
    --side-gap: 24px;
  }

  body {
    font-family: "Euclid Circular A", sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
  }

  .reviews-section {
    padding: 60px var(--side-gap);
    max-width: 1200px;
    margin: auto;
  }

  .reviews-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    margin-bottom: 30px;
    text-align: left;
  }

  .reviews-container {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .review-card {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  }

  .review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
  }

  .review-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
  }

  .review-author {
    font-size: 16px;
    font-weight: 600;
  }

  .review-stars {
    color: #E6B400;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .review-text {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 18px;
  }

  .review-date {
    margin-top: auto;
    font-size: 13px;
    color: #777;
  }

  /* Optional button */
  .write-review-btn {
    display: inline-block;
    margin-top: 26px;
    padding: 12px 22px;
    border-radius: 30px;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity .2s ease;
  }
  .write-review-btn:hover {
    opacity: .85;
  }
