/* Video (responsive, full width of content area) */
.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-bottom: 56.25%;
    margin: 1rem 0;
  }
  
  .video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
  }
  
  /* Images (your earlier tweak) */
  img {
    border-radius: 8px;
  }
  
  img:hover {
    opacity: 0.9;
    transition: 0.2s;
  }
  
  /* OPTIONAL: make content wider */
  .md-grid {
    max-width: 1400px;
  }