#prog-themes { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    justify-content: center; 
}
#prog-themes img {
    width: 346px;
    height: 212px;
}

@media (max-width: 767px) { 
    #prog-themes {  
        grid-template-columns: 1fr; /* Один столбец на мобильных устройствах */ 
        justify-content: center; /* Центрирование по горизонтали */ 
        align-items: center; /* Центрирование по вертикали в мобильной версии */
    } 
    #prog-themes img { 
        display: block; 
        margin-left: auto; 
        margin-right: auto;
    } 
}