.onoff-testimonials {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.onoff-testimonials__track {
  display: flex;
  overflow: hidden;
}
.onoff-testimonials.has-nav .onoff-testimonials__track {
  scroll-behavior: smooth;
}

.onoff-testimonials__card {
  position: relative;
  overflow: hidden;
  flex: 0 0 100%;
  width: 100%;
  background: #e8f6ef;
  border-radius: 28px;
  padding: 72px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.onoff-testimonials__card::before, .onoff-testimonials__card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #d4efe1;
}
.onoff-testimonials__card::before {
  top: -40px;
  right: -30px;
  width: 220px;
  height: 220px;
  opacity: 0.6;
}
.onoff-testimonials__card::after {
  bottom: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  opacity: 0.5;
}

.onoff-testimonials__quote-mark {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 120px;
  line-height: 0.6;
  color: #17b978;
  height: 56px;
}

.onoff-testimonials__text {
  position: relative;
  margin: 0;
  font-size: 26px;
  line-height: 1.55;
  color: #1f2d3d;
  font-weight: 500;
}
.onoff-testimonials__text p {
  margin: 0;
}
.onoff-testimonials__text strong,
.onoff-testimonials__text b {
  color: #17b978;
  font-weight: 600;
}

.onoff-testimonials__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.onoff-testimonials__identity {
  text-align: left;
}

.onoff-testimonials__author {
  font-weight: 600;
  font-size: 17px;
  color: #1f2d3d;
}

.onoff-testimonials__role {
  font-size: 14px;
  color: #6b7a89;
}

.onoff-testimonials__divider {
  width: 1px;
  height: 44px;
  background: #c3ddce;
  margin: 0 8px;
}

.onoff-testimonials__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.onoff-testimonials__logo-img {
  max-width: 120px;
  max-height: 48px;
  width: auto;
  height: auto;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}

.onoff-testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.onoff-testimonials__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #d4efe1;
  color: #1f2d3d;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.2s ease;
}
.onoff-testimonials__arrow:hover, .onoff-testimonials__arrow:focus-visible {
  background: #17b978;
  color: #fff;
}

.onoff-testimonials__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.onoff-testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #d4efe1;
  cursor: pointer;
}
.onoff-testimonials__dot.is-active {
  background: #17b978;
}

@media (max-width: 600px) {
  .onoff-testimonials__card {
    padding: 48px 24px;
  }
  .onoff-testimonials__text {
    font-size: 20px;
  }
  .onoff-testimonials__meta {
    flex-direction: column;
    gap: 12px;
  }
  .onoff-testimonials__divider {
    display: none;
  }
}