.cov-customer-say {
  background: var(--cov-bg);
}

.cov-customer-say .cov-section-title {
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 38px);
}

.cov-customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cov-customer-card {
  background: #1b2126;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cov-customer-stars {
  color: var(--cov-yellow);
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1;
}

.cov-customer-text {
  color: #a5abb6;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  flex: 1;
}

.cov-customer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.cov-customer-avatar {
  width: 57px;
  height: 57px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
}
.cov-customer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cov-customer-name {
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
}

@media (max-width: 900px) {
  .cov-customer-grid {
    grid-template-columns: 1fr;
  }
}
