
.vid-container {
    width: 100%;
    max-width: 462px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-top: 133%; /* Portrait aspect ratio to match thumbnails */
    border: none;
    border-radius: 0;
    background-color: transparent;
    height: auto;
  }
  
  .video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover; /* This will crop the video to fit the container dimensions */
    border-radius: 10px;
  }
