.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-grid {
    display: flex; 
    gap: 5px;
    justify-content: center;
    align-items: center;

}
.video-grid-width {
    width: 50%;
}

@media (max-width: 768px) {
    .video-grid {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .video-grid-width {
        width: 100%;
    }
}

.mdLink a {
  color: #2563eb;
}
.mdLink a:hover {
  color: #60a5fa;
}
html.dark .mdLink a {
  color: #60a5fa;
}
html.dark .mdLink a:hover {
  color: #bfdbfe;
}

.zoomed {
  position: fixed !important;
  margin-top: 0em !important;
  top: 0; left: 0;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9999;
  background:rgba(40, 42, 46, 0.8);
  backdrop-filter: blur(5px);
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}