.guest-slider {
  min-width: 0;
}

.guest-slider-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 14px;
}

.guest-slider-toolbar p {
  margin: 0;
  color: #6b5950;
  font-size: .86rem;
}

.guest-slider-controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

.guest-slider-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(114,76,26,.22);
  border-radius: 50%;
  background: #fff;
  color: #3b261d;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.guest-slider-button:hover {
  background: #2b160e;
  color: #fff;
  transform: translateY(-2px);
}

.guest-slider-status {
  min-width: 72px;
  color: #725b4e;
  text-align: center;
  font-size: .78rem;
  font-weight: 800;
}

.guest-reviews {
  display: flex !important;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.guest-reviews::-webkit-scrollbar {
  display: none;
}

.guest-review {
  flex: 0 0 calc((100% - 28px) / 3);
  min-height: 290px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border: 1px solid rgba(114,76,26,.1);
  box-shadow: 0 12px 28px rgba(48,27,14,.06);
}

.guest-review::before {
  content: "“";
  height: 35px;
  color: rgba(189,125,0,.22);
  font: 700 4.2rem/.8 Georgia, serif;
}

.guest-review blockquote {
  position: relative;
  z-index: 1;
}

.guest-slider-progress {
  height: 3px;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(114,76,26,.12);
}

.guest-slider-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #bd7d00;
  transform: translateX(0);
  transition: transform .35s ease;
}

@media (max-width: 900px) {
  .guest-review {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 620px) {
  .guest-slider-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .guest-slider-controls {
    align-self: stretch;
    justify-content: flex-end;
  }

  .guest-review {
    flex-basis: 88%;
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guest-reviews {
    scroll-behavior: auto;
  }

  .guest-slider-button,
  .guest-slider-progress span {
    transition: none;
  }
}
