.review-carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.review-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-slide {
  min-width: 100%;
  padding: 24px;
  box-sizing: border-box;
}

/* KARTA */
.review-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.review-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

/* AVATAR */
.review-card__avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
}

/* AUTOR */
.review-card__author {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

/* GWIAZDKI */
.review-card__stars {
  font-size: 22px;
  color: #f5b301;
  margin-bottom: 16px;
}

/* TEKST */
.review-card__text {
  font-size: 17px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 16px;
}

/* LINK */
.review-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
}

.review-card__link:hover {
  text-decoration: underline;
}

.review-card__link span {
  white-space: nowrap;
}

.review-card__icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

/* STRZAŁKI */
.review-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

.review-carousel__arrow--prev {
  left: 10px;
}

.review-carousel__arrow--next {
  right: 10px;
}

.review-carousel__arrow:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* MOBILE */
@media (max-width: 768px) {
  .review-card {
    padding: 28px 22px;
  }

  .review-card__avatar {
    width: 84px;
    height: 84px;
  }

  .review-card__text {
    font-size: 15px;
  }
}