.ars-reviews {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}

.ars-slider-wrapper {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ars-slide {
  display: none;
  padding: 48px 28px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(15, 15, 18, 0.08);
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(15, 15, 18, 0.12);
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  gap: 20px;
}

.ars-slide.is-active {
  display: flex;
}

.ars-slide.is-visible {
  display: flex;
}

.ars-stars-wrap {
  display: flex;
  justify-content: center;
}

.ars-provider-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -6px;
}

.ars-provider-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.9;
}

.ars-stars {
  display: inline-flex;
  gap: 4px;
}

.ars-star {
  width: 24px;
  height: 24px;
  fill: #ffd66b;
}

.ars-content {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.ars-author-wrap {
  gap: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.ars-avatar {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 42, 62, 0.2);
  box-shadow: 0 6px 16px rgba(15, 15, 18, 0.2);
}

.ars-author-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ars-author {
  font-size: 14px;
  font-weight: 700;
}

.ars-recommendation {
  font-size: 12px;
  opacity: 0.8;
}

.ars-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ars-btn {
  cursor: pointer;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 15, 18, 0.08);
  box-shadow: 0 4px 12px rgba(15, 15, 18, 0.15);
  color: #0f0f12;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.ars-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230f0f12' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.ars-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230f0f12' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.ars-btn:hover {
  border-color: #ff2a3e;
  box-shadow: 0 6px 20px rgba(255, 42, 62, 0.25);
  transform: scale(1.08);
}

.ars-bullets {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ars-next-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ars-more-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  color: #ff2a3e;
  background: #ffffff;
  border: 1px solid rgba(255, 42, 62, 0.35);
  border-radius: 999px;
  padding: 2px 7px;
  line-height: 1;
  pointer-events: none;
}

.ars-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(15, 15, 18, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.ars-bullet.is-active {
  background: #ff2a3e;
  transform: scale(1.2);
}

.ars-empty {
  border: 1px dashed rgba(15, 15, 18, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

@media (max-width: 600px) {
  .ars-slide {
    padding: 28px 18px;
  }

  .ars-content {
    font-size: 16px;
  }
}

@media (min-width: 901px) {
  .ars-slider-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .ars-slide {
    height: 100%;
  }
}
