.quiz-img-grid {
    display: flex;
    gap: clamp(7px, 1.5vw, 10px);

    /*new*/
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.img-grid {
    width: clamp(135px, 20vw, 196px);
    height: clamp(190px, 30vw, 295px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: #D9D9D9;
    border-radius: clamp(12px, 2vw, 20px);
    border: none;

    /*new*/
    padding: 5px;
    box-sizing: border-box;
}

.img-grid img {
    width: 98%;
    height: auto;

    max-width: 180px;
    max-height: 90%;
    object-fit: contain;
}

.img-grid-subtitle {
    font-size: clamp(14px, 2.5vw, 24px);
    margin-top: clamp(4px, 1vw, 8px);
}