.video-container {
  width: 100%;
  margin: 0 auto;
  height: 85vh;
  overflow: hidden;
  border-radius: var(--border-radius-24);
}

.video-section {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

@media (max-width: 768px) {
  .video-section {
    height: 364px;
    border-radius: var(--border-radius-12);
  }
}