/* Masthead base */
header.masthead {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* Overlay */
header.masthead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Controls below CTA */
.slide-controls {
  position: static;
  /* place below button */
  margin-top: 4rem;
  display: flex;
  justify-content: start;
  gap: 1.5rem;
  z-index: 2;
}

/* Line style buttons */
.slide-btn {
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  padding: 0.25rem 0.75rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.slide-btn:hover {
  border-color: #fff;
  color: #fff;
  background: none;
  transform: none;
}

/* Pager line dots */
#slide-pager {
  display: flex;
  gap: 1rem;
}

.pager-dot {
  width: 100px;
  height: 3px;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pager-dot.active {
  background: #fff;
}
