.hero {
  position: relative;
  width: 100%;
  background-color: #000;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 55%,
    rgba(6, 10, 15, 0.6) 100%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 32px;
  text-align: center;
  width: 100%;
}

.hero__cta {
  min-width: 170px;
  padding: 14px 36px;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(47, 128, 255, 0.45);
}

@media (max-width: 1024px) {
  .hero {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 320px;
    background-position: center center;
  }
  .hero__inner {
    padding-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 400px;
  }
}
