:root {
  --font-body: PP Telegraf, Helvetica Neue, Helvetica, Arial, sans-serif;
  --font-heading: Emotive Sands, PP Telegraf, Helvetica Neue, Helvetica, Arial, sans-serif;
}

[class*=mobile] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0;
}

@media screen and (max-width: 960px) {
  [class*=mobile] {
    display: block !important;
    visibility: visible !important;
    opacity: 1;
  }
}
.layout__video_full {
  width: 100%;
  position: relative;
}
.layout__video_full .video_full__wrapper {
  width: 100%;
  padding-top: var(--content-padding-top, 0);
  padding-bottom: var(--content-padding-bottom, 0);
}
.layout__video_full figure {
  width: 100%;
  height: 90vh;
  margin: 0;
  overflow: hidden;
}
.layout__video_full img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 960px) {
  .layout__video_full figure {
    height: auto;
    aspect-ratio: 4/3;
  }
}