/* HERO WRAPPER */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

/* HERO ENTRIES */
.hero-entry {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 0;
}

.hero-entry.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* HERO CONTENT */
.usa-hero {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

/* DOT NAVIGATION */
.hero-dots-wrapper {
  display: flex;
  justify-content: flex-start;
  padding-left: 1.5rem; /* match .usa-grid alignment */
  margin-top: 10px;
}

.hero-dots {
  display: flex;
  gap: 20px;
}

.hero-nav-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
}

.hero-nav-dot.active {
  background: #1c2e50;
  color: #fff;
}

/* HIDE HERO ON MOBILE */
@media screen and (max-width: 767px) {
  .hero-wrapper,
  .hero-dots-wrapper {
    display: none !important;
  }
}

.hero-entry .usa-button:hover {
  transform: scale(1.075);
  transform-origin: 50.01%;
  transition: .2s all;
  box-shadow: 3px 3px 8px #373737;
}
.usa-hero-callout {border-radius:6px;}
.animate:hover {transform: scale(1.075);transition: scale 0.5s;}
.hp-links dl dd ul {margin-top:3px;margin-bottom:3px;} 


#hero-nav-bg {
  background:#d6d7d9;
  padding:3px 0 12px 0;
  margin:0;
  box-shadow: inset 0 6px 6px -6px rgba(0,0,0,0.5), inset 0 -6px 6px -6px rgba(0, 0, 0, 0.1);
}


/* TODO: below can probably be removed when uswds.css is upgraded v3*/

/* stylelint-enable */
.usa-grid,
.usa-grid-full {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.usa-grid::after,
.usa-grid-full::after {
  clear: both;
  content: "";
  display: block;
}

.usa-grid {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

@media screen and (min-width: 600px) {
  .usa-grid {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.usa-grid-full {
  padding: 0;
}