.pageTitleMedia {
    padding-top: 40px;
}

.achievementSection {

    padding: 32px 5%;

    display: grid;
    place-items: center;

    .cards {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 0;
    }

    .card {
        width: 100%;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 0;
        box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.25);
        display: grid;
        row-gap: 12px;
    }

    .card--imgBox {
        border-radius: 8px;
    }

    .card--img {
        border-radius: 8px;
    }
    
    .card--body {
        display: grid;
        row-gap: 8px;
    }

    .card--title,
    .card--text {
        color: var(--black);
    }
}

@media screen and (max-width: 1024px) {
    .achievementSection {
        .cards {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

@media screen and (max-width: 599px) {
    .achievementSection {
        .cards {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}