.ab-voices {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: #ffffff;
  font-family: var(--brand-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ab-voices *,
.ab-voices *::before,
.ab-voices *::after {
  box-sizing: border-box;
}

.ab-voices ::selection {
  background: rgba(244, 168, 29, 0.35);
}

.ab-voices__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.ab-voices__head {
  margin-bottom: 4rem;
  text-align: center;
}

.ab-voices__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  padding: 0.375rem 1.25rem 0.375rem 0.375rem;
  border-radius: 999px;
  color: #ffffff;
  background: #1d1933;
  box-shadow: 0 20px 25px -5px rgba(229, 231, 235, 0.9), 0 8px 10px -6px rgba(229, 231, 235, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.ab-voices__badge:hover {
  transform: scale(1.05);
}

.ab-voices__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f4a81d;
  box-shadow: 0 0 10px rgba(244, 168, 29, 0.6);
}

.ab-voices__badge-icon svg {
  width: 1rem;
  height: 1rem;
  color: #ffffff;
}

.ab-voices__head h2 {
  max-width: 56rem;
  margin: 0 auto;
  color: #1d1933;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.ab-voices__carousels {
  width: 100%;
  padding-bottom: 2rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ab-voices__row {
  display: flex;
  overflow: hidden;
}

.ab-voices__row:first-child {
  margin-bottom: 24px;
}

.ab-voices__track {
  display: flex;
  width: max-content;
  animation: ab-voices-marquee-left 40s linear infinite;
}

.ab-voices__row--reverse .ab-voices__track {
  animation-name: ab-voices-marquee-right;
}

.ab-voices__track:hover {
  animation-play-state: paused;
}

.ab-voices__slot {
  display: flex;
  flex-shrink: 0;
  padding: 0 12px;
}

.ab-voice {
  display: flex;
  width: 380px;
  flex: 1 0 auto;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  box-shadow: none;
  opacity: 0.72;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ab-voice:hover {
  opacity: 1;
  box-shadow: none;
  transform: translateY(-0.25rem);
}

.ab-voice__mark {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.5rem;
  color: #f4a81d;
  opacity: 0.9;
}

/* Temanın global blockquote stilini (dolgu, zemin, italik, turuncu kenarlık) etkisizleştir. */
.ab-voice blockquote {
  margin: 0 0 2rem;
  padding: 0;
  border: 0;
  background: none;
  color: #374151;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625;
  quotes: none;
}

.ab-voice blockquote::before,
.ab-voice blockquote::after {
  content: none;
}

.ab-voice figcaption {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ab-voice__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #1d1933, #2b2550);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  font-weight: 600;
}

.ab-voice__person {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ab-voice__person strong {
  color: #1d1933;
  font-size: 1rem;
  font-weight: 700;
}

.ab-voice__person small {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

@keyframes ab-voices-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ab-voices-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media screen and (min-width: 640px) {
  .ab-voices__container {
    padding: 0 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .ab-voices {
    padding: 7rem 0;
  }

  .ab-voices__badge {
    font-size: 1rem;
  }

  .ab-voices__head h2 {
    font-size: 3rem;
  }

  .ab-voice {
    padding: 2.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .ab-voices__container {
    padding: 0 2rem;
  }

  .ab-voices__head h2 {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 639px) {
  .ab-voice {
    width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab-voices__row {
    overflow-x: auto;
  }

  .ab-voices__track {
    animation: none;
  }
}
