/* Homepage tutorial video section. */
.get-started {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 48px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.get-started h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.get-started__subtitle {
  margin-top: 20px;
  color: #596373;
  font-size: 18px;
}

.get-started__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  background: #151b22;
}

.get-started__watch {
  display: inline-block;
  margin-top: 12px;
  color: #596373;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 800px) {
  .get-started {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 32px;
  }
}
