/* Images in Wellness Centrum a Zem Stay */
.member-block-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rezervujte si svoj pobyt */
.events-section .container {
padding-left: 32px;
padding-right: 32px;
}

.review-widget-container {
    display: inline-block;
 
}

/* =========================
   REVIEWS SLIDER – CLEAN
   ========================= */

/* Wrapper (arrows + slider) */
.review-slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* Slider viewport */
.review-slider {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  padding: 1rem 0;
}

.review-slider {
  margin-left: auto;
  margin-right: auto;
}

/* Track */
.review-track {
  display: flex;
  gap: 24px;
  scroll-behavior: smooth;
}

/* Review card */
.testimonial {
  flex: 0 0 320px;
  max-width: 320px;
  min-height: 320px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Review text */
.testimonial p.fst-italic {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 1rem;
  font-size: 1.05em;
  padding: 0 0.5rem;
  word-break: break-word;
}

/* Footer */
.testimonial .review-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial .stars {
  margin-bottom: 0.3rem;
}

.testimonial .review-name {
  font-weight: 600;
}

/* =========================
   ARROWS
   ========================= */

.review-arrow {
  background: #3D405B;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s ease;
  z-index: 10;
}

.review-arrow:hover {
  background: #2c2f4a;
}

.review-arrow.left {
  margin-right: 12px;
}

.review-arrow.right {
  margin-left: 12px;
}

.review-arrow:disabled {
  background: #bfc1cc;
  cursor: not-allowed;
  opacity: 0.6;
}

.review-arrow:disabled:hover {
  background: #bfc1cc;
}

/* =========================
   DOTS
   ========================= */

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfcfcf;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.review-dot.active {
  background: #3D405B;
  transform: scale(1.3);
}

.review-dot:hover {
  background: #3D405B;
}

/* =========================
   RESPONSIVE MAX-WIDTHS
   ========================= */
/* Desktop: 3 full cards */
@media (min-width: 1200px) {
  .review-slider {
    max-width: calc(320px * 3 + 24px * 2);
  }
}

/* Tablet: 2 full cards */
@media (min-width: 993px) and (max-width: 1199px) {
  .review-slider {
    max-width: calc(320px * 2 + 24px);
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 992px) {

  .testimonial {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 280px;
    padding: 0.8rem;
  }

  .review-slider {
    max-width: 320px; /* exactly 1 card width */
    margin: 0 auto;   /* center it */
  }

  .testimonial p.fst-italic {
    font-size: 0.85rem;
  }

  .review-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 28px;
  background: #ffffff;
  color: #2f6f62;
  border: 2px solid #2f6f62;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.google-review-btn:hover {
  background: #2f6f62;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.786);
}
