/* Make embedded video responsive */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 1rem 0 1.5rem 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.md-content img {
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.md-typeset {
  font-size: 0.82rem;
}

.home-hero {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.2rem;
  align-items: center;
  margin: 1rem 0 1.6rem 0;
}

.home-hero__logo {
  width: 120px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.home-hero__text h1 {
  margin: 0;
}

.home-hero__text p {
  margin: .35rem 0 0 0;
  opacity: .9;
}

.home-hero__links {
  margin-top: .6rem;
  opacity: .95;
}

@media (max-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr;
  }
  .home-hero__logo {
    width: 96px;
  }
}
