/* about.css */
.directions-section .program-card img {
    max-width: 60%;
    height: auto;
    margin-bottom: 12px;
    border-radius: 6px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.directions-section .cards-grid {
    display: block;
    columns: 4;
    column-gap: var(--grid-column-spacing);
    break-inside: avoid;
    margin-top: 20px;
    box-sizing: border-box;
}
.directions-section .program-card {
    height: auto;
    display: block;
    margin-bottom: var(--grid-row-spacing);
    break-inside: avoid-column;
    text-align: center;
}
@media (min-width: 769px) and (max-width: 992px) {
    .directions-section .cards-grid {
        columns: 3;
    }
    .directions-section .program-card img {
        max-width: 65%;
    }
}
@media (max-width: 768px) {
    .directions-section .cards-grid {
        columns: 2;
    }
    .directions-section .program-card img {
        max-width: 70%;
    }
}
@media (max-width: 480px) {
    .directions-section .cards-grid {
        columns: 1;
    }
    .directions-section .program-card img {
        max-width: 75%;
    }
}