/* What Our Clients Say - Figma node 2348:10717 */

.ecm-testimonials {
  background: linear-gradient(180deg, #00599a 0%, #001e34 100%);
  padding: 64px 0;
}

.ecm-testimonials__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.ecm-testimonials__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.ecm-testimonials__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--grey-pure-white);
}

.ecm-testimonials__tagline {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--grey-pure-white);
}

.ecm-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.ecm-testimonials__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecm-testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.ecm-testimonials__stars {
  display: flex;
  gap: 8px;
}

.ecm-testimonials__stars img {
  width: 24px;
  height: 24px;
}

.ecm-testimonials__quote {
  font-size: 16px;
  font-style: italic;
  line-height: 1.25;
  color: #eeeeee; /* no matching Figma token */
}

.ecm-testimonials__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.ecm-testimonials__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--grey-pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.ecm-testimonials__name,
.ecm-testimonials__role {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.ecm-testimonials__name {
  font-weight: 600;
  color: var(--grey-pure-white);
}

.ecm-testimonials__role {
  color: #cccccc; /* no matching Figma token */
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .ecm-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .ecm-testimonials {
    padding: 48px 0;
  }

  .ecm-testimonials__title {
    font-size: 24px;
  }
}
