.terms {
  font-size: 0.8em;
  color: #888;
  margin-bottom: 18px;
  text-align: center;
}

.terms a {
  color: var(--link);
  text-decoration: underline;
}

/* Welcome page hero titles use brand font */
.section.centered h1,
.section.centered h2 {
  font-family: 'Arial Rounded MT Bold', 'Arial Rounded MT', 'Arial Rounded', 'Helvetica Rounded', Arial, sans-serif;
}

.home-page .main {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 4rem 1.5rem 4.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.home-page .section.centered {
  width: 100%;
  max-width: 420px;
  flex: 0 1 360px;
}

.home-page .section.centered:first-of-type {
  text-align: center;
}

.hero-video {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  gap: 1.5rem;
}

.hero-video-player {
  width: clamp(280px, 40vw, 500px);
  border-radius: 16px;
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.25);
  display: block;
  margin: 0 auto;
}

.video-caption {
  font-size: 0.9rem;
  color: var(--text-main);
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .home-page .main {
    padding-top: 2.5rem;
    gap: 1.5rem;
  }

  .hero-video {
    align-items: center;
    text-align: center;
  }

  .hero-video-player {
    width: 100%;
  }

  .video-caption {
    text-align: center;
  }
}
