.hero {
  position: relative;
  padding-block: 2rem;
  display: flex;
  height: calc(100vh - 83.4px);
  align-items: center;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070");
  filter: brightness(0.6);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to bottom,
    rgb(10 35 66 / 0.8),
    rgb(10 35 66 / 0.5)
  );
}

.hero__container {
  position: relative;
  max-width: 48rem;
  margin-top: -83.4px;
}

.hero__title {
  font-weight: 600;
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  color: var(--color-white);
  line-height: calc(1em + 0.5rem);
}
.hero__description {
  margin-block: 1.75rem;
  font-weight: 500;
  line-height: calc(1em + 0.5rem);
  color: rgba(255, 255, 255, 0.7);
}

.hero__cta-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__cta-secondary {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  backdrop-filter: blur(2px);
}
.hero__cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

@media (width >= 768px) {
  .hero__title {
    font-size: 3.75rem;
  }
  .hero__description {
    font-size: 1.125rem;
  }
  .hero__cta-container {
    flex-direction: row;
  }
}
