/* SWD Reviews Slider Styles */
.swd-reviews-swiper {
  max-width: 100%;
  width: calc(var(--content-width) + 30px);
  padding: 50px 15px;
  overflow: hidden;
  position: relative;
  padding-block-end: 50px;
  display: flex;
  justify-content: center;
}

.swd-review-card {
  background: var(--secondary-l-4);
  border-radius: var(--radius);
  padding: var(--space-m);
  box-shadow: 0 5px 15px var(--tertiary-20);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--light);
}

.swd-review-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.swd-review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(100%);
}

.swd-review-meta {
  flex: 1;
  min-width: 0;
}

.swd-reviewer-name {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: var(--text-title);
}

.swd-review-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.swd-star {
  color: #ddd;
  font-size: 18px;
  line-height: 1;
}
.swd-star.filled {
  color: #ffc107;
}

.swd-review-date {
  font-size: var(--text-xs);
  color: #666;
}

.swd-review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.swd-review-content p {
  margin: 0 0 12px 0;
  line-height: 1.5;
  color: var(--text-body);
  flex: 1;
}

.swd-read-more {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--tertiary);
  font-size: var(--text-s);
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.swd-read-more:hover {
  text-decoration: underline;
}

.swd-reviews-swiper .swiper-button-next,
.swd-reviews-swiper .swiper-button-prev {
  color: var(--tertiary);
  width: 44px;
  height: 44px;
  background: var(--secondary-l-4);
  border-radius: 50%;
  box-shadow: 0 5px 15px var(--tertiary-20);
}
.swd-reviews-swiper .swiper-button-next:after,
.swd-reviews-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}
.swd-reviews-swiper .swiper-button-next:hover,
.swd-reviews-swiper .swiper-button-prev:hover {
  background: var(--tertiary);
  color: var(--secondary-l-4);
}
.swd-reviews-swiper .swiper-pagination {
  bottom: 10px;
}
.swd-reviews-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--light-50);
  border: 1px solid var(--secondary-l-1);
}
.swd-reviews-swiper .swiper-pagination-bullet-active {
  background: var(--tertiary);
}
.swd-reviews-swiper .swiper-pagination-fraction {
  color: #666;
  font-weight: 500;
}
.swd-reviews-swiper .swiper-pagination-progressbar {
  background: rgba(var(--tertiary), 0.2);
}
.swd-reviews-swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--tertiary);
}

@media (max-width: 768px) {
  .swd-review-card {
    padding: var(--space-m);
  }
  .swd-review-avatar {
    width: 50px;
    height: 50px;
  }
  .swd-reviews-swiper .swiper-button-next,
  .swd-reviews-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  .swd-reviews-swiper .swiper-button-next:after,
  .swd-reviews-swiper .swiper-button-prev:after {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .swd-reviews-slider-container {
    padding: 10px 0;
  }
  .swd-reviews-swiper {
    padding: 10px 5px 40px;
  }
  .swd-review-card {
    padding: var(--space-m);
  }
  .swd-review-header {
    gap: 12px;
  }
}/*# sourceMappingURL=style.css.map */