.program_outcome_section {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--dark-green);
}

.program_outcome_section .program_content {
    padding-right: 104px;
}

.program_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.program_grid .program_count_card {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 9px 26px 18px 23px;
    border-radius: 24px;
    min-height: 234px;
}

.program_grid .program_count_card p,
.program_grid .program_count_card h3 {
    max-width: 195px;
    color: var(--primary-black);
}

.program_grid .pc_3 p,
.program_grid .pc_3 h3 {
    max-width: 195px;
    color: var(--primary-white);
}

.program_grid .program_count_card h3 {
    font-weight: 400;
    font-size: 80px;
    line-height: 120%;
}

.program_grid .program_count_card p {
    line-height: 150%;
}


.program_content .article_box {
    border-left: 3px solid white;
    padding-left: 23px;
}

.program_content .article_box article {
    margin-bottom: 10px;
}

@media(max-width: 1366px) {
    .program_outcome_section .program_content {
        padding-right: 0px;
    }
}

@media(max-width: 820px) {
    .program_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media(max-width: 767px) {
    .program_outcome_section .program_content {
        margin-bottom: 32px;
        padding-right: 0;
    }

    .program_outcome_section .program_content p {
        margin-bottom: 16px !important;
    }

    .program_content .article_box {
        border-left: 3px solid white;
        padding-left: 17px;
        margin-bottom: 13px !important;
    }

    .program_outcome_section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .program_content .article_box article {
        margin-bottom: 4px;
    }

    .program_grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .program_grid .program_count_card {
        min-height: 251px;
    }
}