.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; /* Adjusts spacing between items */
}

.video-item {
    text-align: center; /* Centers text and images */
}

.video-item img {
    max-width: 100%; /* Ensures images are responsive */
    height: auto;
}
