.program-grid-container .program-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.program-grid-container .program-grid .program{
    flex: 32%
}

.program-grid-container .program-grid .program a {
    display: flex;
}

.program-grid-container .program-grid .program .program-image img {
    max-width: 100%;
    width: 100%;
}

.program-grid-container .program-grid .program .program-name {
    height: 94px;
    background-color: var(--primary-color);
    color: var(--text-color-white);
    font-size: 24px;
    padding: 18px;
    text-decoration: none;
    line-height: 1.25;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .program-grid-container .program-grid .program {
        flex: 100%;
    }

    .program-grid-container .program-grid .program .program-name {
        font-size: 20px
    }
}