#featured-slider-slot {
  position: relative;
  margin-top: 0;
  border-top: none;
  padding-top: 0;
  padding-bottom: 0;
}

.tdmu-section--hero {
  padding-top: 0;
  padding-bottom: 0;
}

.tdmu-hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.tdmu-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.tdmu-slide {
  min-width: 100%;
  /*height: clamp(220px, 54vw, 540px);*/
  margin: 0;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tdmu-slide-media {
  display: block;
  width: 100%;
  height: auto;
}

.tdmu-slider-controls {
  position: absolute;
  right: 3rem;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.tdmu-slider-control {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(var(--tdmu-primary-rgb), 0.72);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.tdmu-slider-control:hover,
.tdmu-slider-control:focus-visible {
  background: rgba(var(--tdmu-primary-rgb), 0.86);
  border-color: rgba(255, 255, 255, 0.7);
}

.tdmu-slider-control:hover {
  transform: translateY(-1px);
}

.tdmu-slider-control:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: -2px;
}

.tdmu-slider-dots {
  position: absolute;
  left: 3rem;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  gap: 0.6rem;
}

.tdmu-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    width 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.tdmu-slider-dot:hover,
.tdmu-slider-dot:focus-visible {
  border-color: rgba(255, 255, 255, 0.75);
}

.tdmu-slider-dot.is-active {
  width: 32px;
  background: var(--tdmu-accent);
  border-color: var(--tdmu-accent);
}

@media (max-width: 1024px) {
  .tdmu-slider-controls {
    right: 2rem;
  }

  .tdmu-slider-dots {
    left: 2rem;
  }
}

@media (max-width: 767.98px) {
  .tdmu-slider-controls {
    right: 1rem;
    bottom: 1rem;
    gap: 0.4rem;
  }

  .tdmu-slider-control {
    width: 38px;
    height: 38px;
  }

  .tdmu-slider-dots {
    left: 1rem;
    bottom: 1rem;
    gap: 0.5rem;
  }

  .tdmu-slider-dot.is-active {
    width: 28px;
  }
}
