/* ---------- Hero ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) clamp(20px, 4vw, 40px) 76px;
  background: linear-gradient(180deg, var(--bg) 28%, #000 100%);
}

.hero__inner {
  width: 100%;
  max-width: var(--content-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

.hero__frame {
  position: relative;
  width: 60%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.hero__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero__text {
  width: 60%;
  max-width: 800px;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  color: var(--fg-muted);
}

@media (max-width: 700px) {
  .hero__inner {
    gap: 40px;
  }
  .hero__frame {
    width: 87%;
  }
  .hero__text {
    width: 85%;
    max-width: unset;
  }
}
