@import url("matched-headlines.css?v=1");

/* Home hero treatment follows the existing public site's full-bleed image presentation. */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: clamp(392px, 42vw, 630px);
  padding: clamp(3rem, 7vw, 8rem) clamp(1.25rem, 8vw, 11rem);
  overflow: hidden;
  isolation: isolate;
  border-radius: 0 5rem 0 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
background: rgba(10, 28, 22, .34);}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  object-position: 4% 12%;
}

.hero-copy {
  width: min(50vw, 780px);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.45rem, 4.65vw, 5.15rem) !important;
  max-width: none;
  color: var(--paper);
  font-weight: 800;
  text-align: center;
  text-wrap: balance;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .hero {
    min-height: 370px;
    padding: 3rem 1.25rem;
  }

  .hero-copy {
    width: 100%;
  }
}
