.mod-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px; /* space between containers */
    margin-top: 25px;
}

/* Update .video-container for side-by-side layout */
.mod-container {
    flex: 1 1 500px; /* allows wrapping and sets min width */
    max-width: 500px;
    margin: auto;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    text-decoration: none;
    /* Remove margin-left/right: auto and max-width: 800px */
}

.mod-container:hover {
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
    background: rgb(255, 255, 255, 0.10);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.mod-context {
    text-align: center;
    font-size: 25px;
    color: white;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 25px;
    padding: auto;
}

img {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 5px;
}