.flf-hero-slider {
  margin: 0 auto;
  max-width: 100%;
}

.flf-hero-slider__viewport {
  position: relative;
  overflow: hidden;
  background: #e8f6fc;
}

.flf-hero-slider__track {
  position: relative;
  min-height: 600px;
}

.flf-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.flf-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.flf-hero-slide__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.flf-hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 55%);
}

.flf-hero-slide__content {
  position: absolute;
  left: clamp(1.5rem, 7vw, 5.5rem);
  top: clamp(4.5rem, 18vw, 8.5rem);
  max-width: min(44rem, 80vw);
  z-index: 2;
}

.flf-hero-slide__title {
  margin: 0 0 1.75rem;
  color: #2d9cce;
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-size: clamp(2.2rem, 6vw, 5.4rem);
  font-weight: 200;
  line-height: 1.15;
}

.flf-hero-btn {
  display: inline-block;
  padding: 12px 35px;
  color: #fff;
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.flf-hero-btn--cyan { background: rgba(0, 175, 239, 0.75); }
.flf-hero-btn--blue { background: rgba(45, 156, 206, 0.75); }
.flf-hero-btn:hover { color: #2d9cce; background: #fff; }

.flf-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.flf-hero-dot {
  width: 13px;
  height: 13px;
  border: 5px solid #000;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.flf-hero-dot.is-active,
.flf-hero-dot:hover {
  background: #000;
  border-color: #fff;
}

.flf-hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(45,156,206,0.15);
  z-index: 3;
}

.flf-hero-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: rgba(45,156,206,0.45);
}

@media (max-width: 1024px) {
  .flf-hero-slider__track,
  .flf-hero-slide__image { min-height: 500px; height: 500px; }
}

@media (max-width: 778px) {
  .flf-hero-slider__track,
  .flf-hero-slide__image { min-height: 500px; height: 500px; }
}

@media (max-width: 480px) {
  .flf-hero-slider__track,
  .flf-hero-slide__image { min-height: 400px; height: 400px; }
  .flf-hero-slide__content { top: 5.5rem; }
  .flf-hero-btn { display: none; }
}
