:root {
  --sem-color-white: #ffffff;
  --sem-color-light-warm-gray: #edece6;
  --sem-color-medium-warm-gray: #b3b3ac;
  --sem-color-dark-warm-gray: #5c5b54;
  --sem-color-medium-dark-warm-gray: #7c7b76;
  --sem-color-black: #000000;
  --sem-color-medium-gray: #555555;
  --sem-color-aqua-blue: #00aabe;
  --sbm-color-orange: #EA5A12;
  --sbm-color-orange-dark: #AE2B00;
}

.hfs {
  position: relative;
}
.hfs * {
  box-sizing: border-box;
}

.hfs-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  aspect-ratio: 1;
  line-height: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hfs-track::-webkit-scrollbar {
  display: none;
}

.hfs-slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.hfs-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, var(--sem-color-black) 92%);
  pointer-events: none;
}

.hfs-link {
  display: block;
  position: relative;
  height: 100%;
  color: #ffffff;
  text-decoration: none;
}
.hfs-link:hover, .hfs-link:focus {
  color: #ffffff;
  text-decoration: none;
}

.hfs-img {
  display: block;
  width: 100%;
  height: 100%;
}

.hfs-img-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hfs-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 40px 1.25rem;
  text-align: center;
}
@media (max-width: 768px) {
  .hfs-caption {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hfs-title {
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  font-size: 1.82rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hfs-title {
    font-size: 1.5rem;
  }
}

.hfs-byline {
  font-family: din-1451-lt-pro-engschrift, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.059em;
  line-height: 1.2;
  text-transform: uppercase;
  display: block;
  margin-top: 0.35rem;
  color: #ffffff;
  font-size: 0.82rem;
}

.hfs-caption .post-title-sponsored {
  color: #ffffff;
  font-size: 1rem;
}

.hfs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(237, 236, 230, 0.8);
  color: #5c5b54;
  text-decoration: none;
}
.hfs-arrow:hover, .hfs-arrow:focus {
  background-color: #edece6;
  color: #000000;
}
.hfs-arrow svg {
  display: block;
  width: 26px;
  height: 26px;
  fill: currentColor;
}
@media (max-width: 768px) {
  .hfs-arrow {
    width: 36px;
    height: 36px;
  }
  .hfs-arrow svg {
    width: 22px;
    height: 22px;
  }
}

.hfs-prev {
  left: 10px;
}

.hfs-next {
  right: 10px;
}

.hfs-dots {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: -1px 0 0;
  padding: calc(0.75rem + 1px) 0 1rem;
  border: 0;
  background-color: var(--sem-color-black);
}

.hfs-dot {
  display: block;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background-color: var(--sem-color-medium-warm-gray);
}
.hfs-dot[aria-current=true] {
  background-color: #ffffff;
}
.hfs-dot:focus {
  outline: 2px solid var(--sem-color-aqua-blue);
  outline-offset: 2px;
}
