.hero-section-container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-image {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.75rem;
  padding: 2rem;
}

.hero-image-cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(var(--card-light-rgb), 0.65);
  border-radius: 0.75rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 48rem;
}

.title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-light);
}

.subtitle {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
}
