.testimonials {
  padding-block: var(--section-padding);
  position: relative;
  overflow: hidden;
  background: url("http://softoria.test/wp-content/uploads/2026/05/bg-what-we-build-img.webp") no-repeat bottom right/55% auto, radial-gradient(ellipse 50% 60% at 100% 80%, oklch(from var(--third-900) l c h/0.18) 0%, transparent 55%), radial-gradient(ellipse 40% 55% at 5% 50%, oklch(from var(--secondary-950) l c h/0.4) 0%, transparent 55%), linear-gradient(130deg, var(--secondary-950) 0%, var(--neutral-950) 45%, var(--third-950) 100%);
}
.testimonials__layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 63.98rem) {
  .testimonials__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.testimonials .is-group {
	color: #ffffff;
}

.testimonials__carousel {
  min-width: 0;
}
.testimonials__wrapper {
  position: relative;
}
.testimonials__overflow {
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testimonials__card {
  flex: 0 0 100%;
}
@media (min-width: 48rem) {
  .testimonials__card {
    flex: 0 0 calc(50% - 0.625rem);
  }
}
@media (min-width: 64rem) {
  .testimonials__card {
    flex: 0 0 calc(33.333% - 0.8333333333rem);
  }
}
@media (min-width: 80rem) {
  .testimonials__card {
    flex: 0 0 calc(25% - 0.9375rem);
  }
}
.testimonials__card {
  background: oklch(from var(--neutral-950) l c h/0.6);
  border: 1px solid oklch(from var(--text-inverse) l c h/0.08);
  border-radius: 1.125rem;
  padding: 1.625rem 1.375rem 1.5rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .testimonials__card:hover {
    background: oklch(from var(--neutral-900) l c h/0.72);
    border-color: oklch(from var(--primary-400) l c h/0.3);
    transform: translateY(-4px);
  }
}
.testimonials__card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--primary-950);
  border: 1px solid var(--primary-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 1rem;
  color: var(--primary-400);
}
.testimonials__card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
.testimonials__card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-inverse);
  margin: 0;
  margin-block-end: 0.625rem;
  line-height: 1.3;
}
.testimonials__card-text {
  font-size: var(--font-size-sm);
  color: oklch(from var(--text-inverse) l c h/0.6);
  line-height: 1.68;
  margin: 0;
}
.testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-block-start: 1.5rem;
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: oklch(from var(--text-inverse) l c h/0.22);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease, border-radius 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .testimonials__dot:hover {
    background: oklch(from var(--text-inverse) l c h/0.5);
  }
}
.testimonials__dot--active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary-400);
}