/* NSG Testimonials */

.nsg-testimonials {
  padding: 3rem 0 3.5rem;
  background: #e8e8e8;
  overflow: hidden;
}

/* ── Heading with horizontal rules ──────────────────────── */

.nsg-testimonials__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.nsg-testimonials__header::before,
.nsg-testimonials__header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #bbb;
}

.nsg-testimonials__heading {
  font-family: var(--nsg-font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  color: #111;
  margin: 0;
  white-space: nowrap;
}

/* ── Carousel viewport ───────────────────────────────────── */

.nsg-testimonials__viewport {
  overflow: hidden;
}

.nsg-testimonials__track {
  display: flex;
  align-items: stretch;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

/* ── Slide ───────────────────────────────────────────────── */

.nsg-testimonials__slide {
  flex: 0 0 25%;
  min-width: 0;
  padding: 0 0.625rem;
  box-sizing: border-box;
  display: flex;
}

/* ── Card ────────────────────────────────────────────────── */

.nsg-testimonials__card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #d5d5d5;
  padding: 1.75rem 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

/* ── Stars ───────────────────────────────────────────────── */

.nsg-testimonials__stars img {
  display: block;
  height: 22px;
  width: auto;
}

/* ── Quote ───────────────────────────────────────────────── */

.nsg-testimonials__copy {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #333;
  margin: 0;
  font-style: italic;
  flex: 1;
}

/* ── Author ──────────────────────────────────────────────── */

.nsg-testimonials__cite {
  font-style: italic;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.5;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1060px) {
  .nsg-testimonials__slide {
    flex: 0 0 33.333%;
  }
}

@media (max-width: 860px) {
  .nsg-testimonials__slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 560px) {
  .nsg-testimonials__slide {
    flex: 0 0 100%;
  }
}
