.shv-home-hero-section {
  padding-top: 14px;
  padding-bottom: 14px;
}

.shv-home-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 16 / 5;
  overflow: hidden;
  border: 1px solid rgba(14, 116, 184, 0.14);
  border-radius: 16px;
  background: #eaf6ff;
  box-shadow: 0 10px 30px rgba(15, 91, 145, 0.12);
}

.shv-home-hero picture,
.shv-home-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.shv-home-hero-media {
  display: block;
  object-fit: cover;
  object-position: center;
}

.shv-home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 33%, rgba(255, 255, 255, 0.34) 54%, rgba(255, 255, 255, 0) 70%);
}

.shv-home-hero-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  width: min(48%, 650px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 50px);
  color: #0f172a;
}

.shv-home-hero-eyebrow {
  margin: 0 0 8px;
  color: #0369a1;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.shv-home-hero-title {
  max-width: 600px;
  margin: 0;
  font-size: clamp(26px, 2.5vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.shv-home-hero-description {
  max-width: 570px;
  margin: 12px 0 0;
  color: #334155;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.55;
}

.shv-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.shv-home-hero-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 150ms ease, transform 150ms ease;
}

.shv-home-hero-action:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.shv-home-hero-action:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.32);
  outline-offset: 3px;
}

.shv-home-hero-action.is-primary {
  border-color: #0369a1;
  background: #0369a1;
  color: #fff;
  box-shadow: 0 6px 18px rgba(3, 105, 161, 0.2);
}

.shv-home-hero-action.is-secondary {
  border-color: rgba(3, 105, 161, 0.34);
  background: rgba(255, 255, 255, 0.9);
  color: #075985;
}

.shv-banner-track {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  transition: transform 500ms ease;
}

.shv-banner-slide {
  position: relative;
  width: 100%;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.shv-banner-slide-link,
.shv-banner-slide-image {
  display: block;
  width: 100%;
  height: 100%;
}

.shv-banner-slide-image {
  object-fit: cover;
  object-position: center;
}

.shv-banner-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.shv-banner-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0;
  background: rgba(15, 23, 42, 0.34);
  cursor: pointer;
}

.shv-banner-dot[aria-current='true'] {
  width: 24px;
  background: #fff;
}

.shv-banner-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.58);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.shv-banner-nav.is-previous {
  left: 12px;
}

.shv-banner-nav.is-next {
  right: 12px;
}

.shv-banner-nav:focus-visible,
.shv-banner-dot:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.38);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .shv-home-hero-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .shv-home-hero {
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    box-shadow: 0 7px 20px rgba(15, 91, 145, 0.12);
  }

  .shv-home-hero-media {
    object-position: center;
  }

  .shv-home-hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.24) 72%, rgba(255, 255, 255, 0) 100%);
  }

  .shv-home-hero-copy {
    width: 69%;
    padding: 14px;
  }

  .shv-home-hero-eyebrow {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .shv-home-hero-title {
    max-width: 265px;
    font-size: clamp(19px, 5.7vw, 23px);
    line-height: 1.14;
  }

.shv-home-hero-description {
    display: -webkit-box;
    max-width: 255px;
    margin-top: 7px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .shv-home-hero-actions {
    flex-wrap: nowrap;
    gap: 7px;
    margin-top: 10px;
  }

  .shv-home-hero-action {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 11px;
    white-space: nowrap;
  }

  .shv-banner-nav {
    width: 44px;
    height: 44px;
  }
}

.shv-home-hero-contact {
  max-width: 570px;
  margin: 9px 0 0;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 359px) {
  .shv-home-hero-copy {
    width: 72%;
    padding: 11px;
  }

  .shv-home-hero-eyebrow,
  .shv-home-hero-description {
    display: none;
  }

  .shv-home-hero-contact {
    max-width: 255px;
    margin-top: 6px;
    font-size: 10px;
  }

  .shv-home-hero-title {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shv-home-hero-action {
    transition: none;
  }

  .shv-banner-track {
    transition: none;
  }

  .shv-home-hero-action:hover {
    transform: none;
  }
}
