body {
    background-color: white;
    color: black;
    font-family: Verdana;
}
.media-grid {
    display: grid;
    grid-template-columns: auto auto; /* Two columns */
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
    max-width: 1400px; /* Prevents overly wide layout */
  }
  
  .grid-image {
    width: 898px;
    height: 533px;
    object-fit: contain;
  }
  
  .grid-video {
    height: 533px; /* Match image height */
    width: auto; /* Maintain aspect ratio */
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .media-grid {
      grid-template-columns: 1fr; /* Single column */
      justify-items: center;
    }
    
    .grid-image, .grid-video {
      width: 100%;
      max-width: 898px;
      height: auto;
    }
  }