.testimonials-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
  }
}

.testimonials-card {
  display: flex;
  border-radius: 24px;
  background: #cccce6;

  padding: 32px;
  gap: 32px;
}

.testimonials-card-name-text {
  color: #231631;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.testinomials-text {
  color: #555;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* fix the typo in your HTML class name: */
.testimonials-card-image-and-name-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* …whatever other styling you need… */
}

/* likewise correct the content container selector */
.testimonials-content-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 24px;
  /* width: 100%; */
}

/* your button + badge container was fine */
.satisfaction-and-button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.satisfaction-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: #eff7fc; /* pale blue */
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 80px;
}

.satisfaction-badge .satisfaction-label {
  font-size: 12px;
  color: #333333;
  margin-bottom: 4px;
}

.satisfaction-badge .satisfaction-value {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.testifyers-list {
  flex-shrink: 0;
  width: 240px; /* adjust to your layout */
}

.testifyers-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.testifyers-list .testifyer {
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
}

.testifyers-list .testifyer:last-child {
  border-bottom: none;
}

/* Name */
.testifyers-list .name {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #b3b3b3; /* default (inactive) */
}

/* Role */
.testifyers-list .role {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #cccccc; /* default (inactive) */
}

/* Active state overrides */
.testifyers-list .testifyer.active .name {
  color: #1f1e38;
}

.testifyers-list .testifyer.active .role {
  color: #2d2c41;
}

/* Optional: tighten spacing on tablet/mobile */
@media (max-width: 768px) {
  .s4-person-image {
    height: 64px;
  }
  .testifyers-list {
    width: 100%;
    margin-top: 24px;
  }

  .testimonials-card-name-text {
    font-size: 24px;
  }

  .testinomials-text {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .s4-person-image {
    height: 32px;
  }
  /* .testifyers-list {
    display: none; 
  } */

  .testimonials-card {
    gap: 10px;
  }
  .testifyers-list .name {
    font-size: 16px;
  }

  /* Role */
  .testifyers-list .role {
    font-size: 12px;
  }

  .testimonials-card-name-text {
    font-size: 16px;
  }

  .testinomials-text {
    font-size: 16px;
  }
}

.read-more-color {
  color: #eff7fc;
}
