/* ===== Voices ===== */
.voices {
  background: var(--white);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.voice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--cream-deep);
}

.voice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: transparent;
}

.voice-card::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  width: 28px;
  height: 22px;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A5C23A'%3E%3Cpath d='M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.voice-text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 20px;
  padding-top: 8px;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cream);
}

.voice-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.voice-avatar svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

.voice-avatar-client {
  background: var(--brown-light);
}

.voice-avatar-client svg { fill: var(--brown); }

.voice-avatar-partner {
  background: var(--orange-light);
}

.voice-avatar-partner svg { fill: var(--orange); }

.voice-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.voice-role {
  font-size: 0.78rem;
  color: var(--text-lighter);
  margin-top: 2px;
}

.voice-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.voice-badge-client {
  background: var(--brown-light);
  color: var(--brown);
}

.voice-badge-partner {
  background: var(--orange-light);
  color: var(--orange);
}
