
.hero-section {
  position: relative;
  background-size: cover;
  background-position: left;
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  object-position: top;
}

@media (min-width: 1280px) {
  .hero-section {
    height: 70vh;
  }
}

.hero-overlay {
  color: var(--color-white);
  fill: var(--color-white);
  display: flex;
  flex-direction: column;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  height: 100%;
}

.hero-content-container {
  max-width: 1200px;
  padding-top: 2rem;
  padding-left: 8rem;
}

.hero-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-title);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title a {
  color: inherit;
  text-decoration: none;
}

.hero-subtitle-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.hero-subtitle {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 300;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}
