.listing-page-hero-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-page-hero-lockup-wrapper {
  position: absolute;
  padding: 24px;
  width: 100%;
  max-width: 1280px;
}

.listing-page-hero-lockup {
  width: 100%;
  max-width: clamp(400px, 45%, 50%);
}

.listing-page-hero-lockup h1 {
  text-wrap: balance;
}

.listing-page-hero-lockup-light * {
  color: #fff !important;
}

.listing-page-hero-lockup-dark * {
  color: #000 !important;
}

.listing-page-hero-banner-wrapper {
  width: 100%;
  text-align: center;
}

.listing-page-hero-banner-wrapper picture,
.listing-page-hero-banner-wrapper picture source,
.listing-page-hero-banner-wrapper picture img {
  display: block;
}

.listing-page-hero-banner-wrapper picture img {
  object-fit: cover;
  width: 100%;
  height: 630px;
}



.listing-page-body-wrapper {
  max-width: 1386px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 96px auto 0 auto;
}
.listing-page > div:first-child > a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  width: 100%;
}
.listing-page > div:first-child .listing-page-item-content,
.listing-page > div:first-child .listing-page-item-thumbnail {
  padding-left: 0; 
  padding-right: 0;
}
.listing-page > div:first-child .listing-page-item-content {
  padding-right: 30px;
}
.listing-page > div:first-child .listing-page-item-content h2 {
}
.listing-page > div:first-child .listing-page-item-thumbnail {
  padding-left: 10px;
  aspect-ratio: auto;
  border-radius: 4px;
  overflow: hidden;
}
.listing-page > div:first-child .listing-page-item-thumbnail img {
  aspect-ratio: 16/9;
}
.listing-page-item {
  margin: 0 0 64px 0;
  display: block;
  color: rgb(33, 37, 41);
}
.listing-page-item:hover {
  text-decoration: none;
  color: rgb(33, 37, 41);
}
.listing-page-item h2 {
  margin: 16px 0 0 0;
}
.listing-page-item .caption-1 {
  margin: 8px 0 0 0;
  display: block;
}
.listing-page-item .btn {
  margin: 16px 0 0 0;
}
.listing-page-item .btn:active {
  position: relative;
  top: 1px;
}
.listing-page-item-content {
  display: block;
}
.listing-page-item-thumbnail {
  display: block;
  aspect-ratio: 1/1;
}
.listing-page-item-thumbnail picture,
.listing-page-item-thumbnail source {
  display: block;
}
.listing-page-item-thumbnail picture {
  border-radius: 4px;
  overflow: hidden;
}
.listing-page-item-thumbnail img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  /* transition: transform ease-in-out 0.8s; */
}
.listing-page-item:hover img {
  /* transform: scale(1.1); */
}

@media (max-width: 767px) {
  .listing-page-hero-wrapper {
    align-items: flex-start;
  }
  .listing-page-hero-banner-wrapper picture img {
    height: 450px;
  }
  .listing-page > div:first-child > a {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .listing-page > div:first-child .listing-page-item-thumbnail {
    padding-left: 0;
    aspect-ratio: 1/1;
  }
  .listing-page > div:first-child .listing-page-item-thumbnail img {
    aspect-ratio: 1/1;
  }
}



/**
 * Tea types slider
 */
.tea-types-slider-wrapper {
  max-width: 1386px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 96px auto 0 auto;
}

.tea-types-slider-wrapper .swiper {
  position: relative;
  /* overflow: hidden; */
}

.tea-types-slider-wrapper .swiper-slide {
  width: 140px;
  position: relative;
}

.tea-types-slider-wrapper .swiper-slide a:hover {
  text-decoration: none;
}

.tea-types-slider-wrapper .swiper-slide img.teaImageDefault {
  width: 100%;
  opacity: 1;
  transition: all ease-in-out 0.2s;
}
.tea-types-slider-wrapper .swiper-slide img.teaImageHover {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: all ease-in-out 0.2s;
}
.tea-types-slider-wrapper .swiper-slide:hover img.teaImageDefault {
  opacity: 0;
  transform: scale(0.8);
  transition: all ease-in-out 0.2s;
}

.tea-types-slider-wrapper .swiper-slide:hover img.teaImageHover {
  opacity: 1;
  transform: scale(1);
  transition: all ease-in-out 0.2s;
}

