.hns-featured-slider {
  position: relative;
  --hns-featured-slider-container: 1280px;
  --hns-featured-slider-gutter: max(20px, calc((100% - var(--hns-featured-slider-container)) / 2));
  --hns-featured-slider-text: 320px;
  --hns-featured-slider-gap: 64px;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
  background: #191919;
  color: #fff4de;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.hns-featured-slider *,
.hns-featured-slider *::before,
.hns-featured-slider *::after {
  box-sizing: border-box;
}

.hns-featured-slider__watermark {
  position: absolute;
  top: 170px;
  left: -235px;
  z-index: 0;
  color: rgba(255, 244, 222, 0.04);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 248px;
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
  white-space: nowrap;
}

.hns-featured-slider__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 15px 0 15px;
}

.hns-featured-slider__heading {
  width: min(100% - 40px, var(--hns-featured-slider-container));
  margin: 0 auto 48px;
  color: #fff4de;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.hns-featured-slider__swiper {
  width: 100%;
}

.hns-featured-slider__slide {
  display: grid;
  grid-template-columns:
    var(--hns-featured-slider-gutter)
    var(--hns-featured-slider-text)
    var(--hns-featured-slider-gap)
    minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.hns-featured-slider__content {
  grid-column: 2;
}

.hns-featured-slider__content h3 {
  margin: 0 0 18px;
  color: #fff4de;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.hns-featured-slider__content p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.hns-featured-slider__lines {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.hns-featured-slider__line {
  display: block;
  width: 38px;
  height: 12px;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
  cursor: pointer;
}

.hns-featured-slider__line::before {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 244, 222, 0.42);
  content: "";
  transition: background 240ms ease, transform 240ms ease;
}

.hns-featured-slider__line.is-active::before,
.hns-featured-slider__line:hover::before,
.hns-featured-slider__line:focus-visible::before {
  background: #fff4de;
  transform: scaleY(2);
}

.hns-featured-slider__image {
  grid-column: 4;
  height: 820px;
  margin: 0;
  overflow: hidden;
  background: #2b2a27;
}

.hns-featured-slider__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1200ms ease;
}

.hns-home-featured-section,
.hns-home-featured-section .section-bg,
.hns-home-featured-section .bg-fill {
  background-color: #191919 !important;
}

.hns-home-featured-section .hns-page-heading {
  color: #fff4de !important;
}

.hns-featured-slider__slide.swiper-slide-active .hns-featured-slider__image img {
  transform: scale(1);
}

.hns-featured-slider__slide.swiper-slide-active .hns-featured-slider__content {
  animation: hnsFeaturedSliderContent 900ms ease both;
}

@keyframes hnsFeaturedSliderContent {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hns-featured-slider {
    --hns-featured-slider-text: 280px;
    --hns-featured-slider-gap: 36px;
  }

  .hns-featured-slider__heading {
    font-size: 34px;
  }

  .hns-featured-slider__image {
    height: 620px;
  }
}

@media (max-width: 767px) {
  .hns-home-featured-section,
  .hns-home-featured-section .section-bg,
  .hns-home-featured-section .bg-fill {
    background-color: #fffcf5 !important;
  }

  .hns-home-featured-section .hns-page-heading {
    margin-bottom: 0;
    color: #191919 !important;
  }

  .hns-featured-slider {
    background: #fffcf5;
    color: #191919;
  }

  .hns-featured-slider__inner {
    padding: 12px 0 0;
  }

  .hns-featured-slider__watermark {
    display: none;
  }

  .hns-featured-slider__heading {
    margin-bottom: 30px;
    color: #191919;
    font-size: 28px;
  }

  .hns-featured-slider__slide {
    display: flex;
    flex-direction: column-reverse;
    gap: 26px;
  }

  .hns-featured-slider__content {
    width: min(100% - 40px, var(--hns-featured-slider-container));
    margin-inline: auto;
    padding-left: 0;
    text-align: center;
  }

  .hns-featured-slider__content h3 {
    color: #191919;
    font-size: 24px;
  }

  .hns-featured-slider__content p {
    color: #7d7d7d;
    font-size: 14px;
  }

  .hns-home-featured-section.dark .hns-featured-slider,
  .hns-home-featured-section.dark .hns-featured-slider__content,
  .hns-home-featured-section.dark .hns-featured-slider__content h3 {
    color: #191919 !important;
  }

  .hns-home-featured-section.dark .hns-featured-slider__content p {
    color: #7d7d7d !important;
  }

  .hns-featured-slider .hns-brand-button--outline-gold {
    --hns-brand-button-color: #191919;
    --hns-brand-button-border: #191919;
    --hns-brand-button-hover: #000;
    --hns-brand-button-shadow: 0 0 24px rgba(25, 25, 25, 0.16), inset 0 0 0 1px rgba(25, 25, 25, 0.34);
    --hns-brand-button-active-shadow: 0 0 18px rgba(25, 25, 25, 0.12), inset 0 0 0 1px rgba(25, 25, 25, 0.3);
    --hns-brand-button-glint: linear-gradient(110deg, rgba(25, 25, 25, 0) 34%, rgba(25, 25, 25, 0.3) 46%, rgba(25, 25, 25, 0.12) 55%, rgba(25, 25, 25, 0) 68%), radial-gradient(circle at 50% 50%, rgba(25, 25, 25, 0.14) 0%, rgba(25, 25, 25, 0.08) 28%, rgba(25, 25, 25, 0) 62%);
    min-height: 42px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 11px;
  }

  .hns-featured-slider__lines {
    display: none;
  }

  .hns-featured-slider__image {
    width: 100%;
    height: 208px;
    margin-inline: 0;
  }
}
