/* Quotes Section Styles */

/* Desktop Quotes */
.quotes {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
}

.quotes .quotes-slider {
  display: flex;
  transform: translateX(0);
}

.quotes .quotes-slider .quote-container {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quotes .quotes-slider .quote-container .single-quote {
  max-width: 820px;
  margin: 60px 0;
}

.quotes .quotes-slider .quote-container .single-quote .title {
  margin-bottom: 40px;
}

.quotes .quotes-slider .quote-container .single-quote .description {
  margin-bottom: 10px;
}

/* Mobile Quotes */
.quotes-mob-wrapper {
  padding-top: 75px;
  position: relative;
}

.quotes-mob-wrapper.hint::after {
  content: attr(data-hint);
  position: absolute;
  left: 32px;
  bottom: 60px;
  font-family: "Commissioner", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #333333;
  opacity: 0.3;
  z-index: 1;
}

.quotes-mob {
  display: flex;
  overflow-x: scroll;
  flex-direction: row;
  scroll-snap-type: x mandatory;
  overflow-y: hidden;
  transition: height 0.3s ease-in;
  margin-bottom: 90px;
}

.quotes-mob .quote-mob {
  scroll-snap-align: start;
  width: 100vw;
  display: flex;
  justify-content: center;
}

.quotes-mob .quote-mob .single-quote {
  padding-inline: 32px;
}

.quotes-mob .quote-mob .single-quote .title {
  margin-bottom: 30px;
}

.quotes-mob .quote-mob .single-quote .description {
  margin-bottom: 10px;
}

/* Hide scrollbar for mobile quotes */
.quotes-mob::-webkit-scrollbar {
  display: none;
}

.quotes-mob {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive Styles */

/* High DPI Displays (1.25x scaling) */
@media screen and (min-width: 1201px) and (-webkit-device-pixel-ratio: 1.25) {
  .quotes .quotes-slider .quote-container {
    width: 125vw;
  }
}

/* Tablets and Medium Screens */
@media screen and (max-width: 1200px) and (min-width: 481px) {
  .quotes-mob-wrapper {
    padding-top: 0;
  }

  .quotes-mob-wrapper.hint::after {
    left: 64px;
  }

  .quotes-mob .quote-mob .single-quote {
    padding: 60px 64px;
  }
}

/* High DPI Tablets */
@media screen and (max-width: 1229px) and (min-width: 960px) and (-webkit-device-pixel-ratio: 1.25) {
  .quotes .quotes-slider .quote-container {
    width: 125vw;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .quotes-mob .quote-mob {
    margin-bottom: 65px;
  }

  .quotes-mob-wrapper.hint::after {
    bottom: 55px;
  }
}
