#highlights {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
}

.highlight {
  position: relative;
  width: 100%;
  display: block;
  height: 100vh;
  object-fit: cover;
}
.highlight iframe {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 768px) {
  .highlight {
    object-fit: contain;
    height: auto;
  }
}
