/* NODE PROGRAM */
.program {
    margin-bottom: 100px;
}

.program__content {
    align-items: center;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.program__content-wrapper {
    height: fit-content;
    grid-column: span 6;
}

.program__image {
    grid-column-start: 8;
    grid-column-end: span 5;
}

.program__image img {
    object-fit: cover;
    width: 100%;
}

.program__content-wrapper h1 {
    font-size: 40px;
    font-weight: 300;
    line-height: 48px;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.program__content-wrapper p {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.program-sidebar__wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
}

#program-sidebar-parent {
    grid-column: span 4;
    position: relative;
}

#program-sidebar-parent #navbar-sidebar {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .08);
    border: 1px solid #DCDCDC;
    padding: 24px;
    position: sticky;
    top: 110px;
}

#program-sidebar-parent #navbar-sidebar .sidebar_menu_header {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: .079px;
    margin-bottom: 8px;
}

#program-sidebar-parent #navbar-sidebar ul li {
    border-bottom: 1px solid #DCDCDC;
    padding: 16px 0;
}

#program-sidebar-parent #navbar-sidebar ul .views-field:last-of-type li {
    border-bottom: 0;
    padding: 16px 0 0;
}

#program-sidebar-parent #navbar-sidebar ul li a {
    color: #263C3F;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: .079px;
    transition: color 250ms ease-in-out;
}

#program-sidebar-parent #navbar-sidebar ul li a:hover {
    color: #7FB83F;
}

#program-sidebar-parent #navbar-sidebar ul li a.navbar-sidebar--active {
    color: #388F43;
}

/* PARAGRAPH PROGRAM CONTENT */
.program-content {
    grid-column: span 8;
}

.program-content__wrapper:not(:last-of-type) {
    margin-bottom: 40px;
}

.program-content h2 {
    color: #388F43;
    font-family: Roboto;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 24px;
    padding-top: 105px;
    margin-top: -105px;
}

.program-content h3 {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 24px;
}

.program-content ul {
    list-style-type: disc;
    padding-left: 30px;
}

.program-content ul li {
    margin-bottom: 4px;
}

/* NODE PROGRAMS */
.programs {
    margin-bottom: 120px;
}

.programs-box {
    border: 1px solid #E9EBEB;
    grid-column: span 4;
    order: 1;
    padding: 24px;
}

.programs-box__title {
    color: #263C3F;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 16px;
}

.programs-box__desc {
    color: #4B686C;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 21px;
}

.programs-box__cta a {
    color: #4B686C;
    border: 1px solid #4B686C;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 8px 16px 11px 16px ;
    text-align: center;
    text-transform: uppercase;
    transition: color 250ms ease-in-out, background-color 250ms ease-in-out, opacity 250ms ease-in-out;
}

.programs-box__cta a:hover {
    color: #fff;
    background-color: #4B686C;
    opacity: .85;
}

/* VIEW PROGRAMS */
.programs-view {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.programs-view__link {
    display: block;
    grid-column: span 4;
    height: 100%;
    position: relative;
    width: 100%;
}

.programs-view__title {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.programs-view__title h2,
.programs-view__title p {
    color: #fff;
    font-family: Roboto;
}

.programs-view__title h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
}

.programs-view__title p {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.programs-view__thumbnail {
    height: 100%;
    position: relative;
    width: 100%;
}

.programs-view__thumbnail:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    height: 50%;
    position: absolute;
    width: 100%;
}

.programs-view__thumbnail img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    max-height: 234px;
}

.program__color {
    background: #008A90;
    height: 24px;
    width: 100vw;
    margin-top: 25px;
}

@media only screen and (max-width: 1023px) {
    /* VIEW PROGRAMS */
    .programs-view__link {
        grid-column: span 6;
    }

    /* NODE PROGRAMS */
    .programs-box {
        grid-column: span 6;
    }

    /* NODE PROGRAM */
    .program__image,
    .program__content-wrapper {
        grid-column: span 12;
    }

    .program__content {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    /* NODE PROGRAM */
    .program__content,
    .program-sidebar__wrapper {
        gap: 16px;
    }

    .program-sidebar__wrapper {
        grid-auto-flow: dense;
    }

    #program-sidebar-parent {
        margin-bottom: 30px;
        grid-column: span 12;
    }

    #program-sidebar-parent {
        order: 1;
    }

    /* PARAGRAPH PROGRAM CONTENT */
    .program-content {
        grid-column: span 12;
        order: 2;
    }

    /* VIEW PROGRAMS */
    .programs-view__link {
        grid-column: span 12;
    }

    /* NODE PROGRAMS */
    .programs-box {
        grid-column: span 12;
    }

    .program__color {
        margin-bottom: 25px;
    }
}