/* Program Card */
.program-card {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    cursor: pointer;
}
.program-card__eyebrow {
    font-family: Google Sans;
    font-weight: 500;
    font-size: 12px;
}
.program-card__title {
    font-family: Google Sans Display;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.5px;
    color: #202124;
    margin-bottom: 8px;
}
.dark .program-card__title {
    color: #FFFFFF;
}
.program-card__body {
    font-family: Google Sans;
    font-size: 16px;
    line-height: 24px;
    color: #202124;
    margin-bottom: 8px;
}
.dark .program-card__body {
    color: #FFFFFF;
}

/* Program Hero */
.program-hero {
    display: flex;
    flex-direction: column;
    height: 540px;
    margin-bottom: 40px;
}
.program-hero__header {
    font-family: Google Sans Display;
    font-weight: 500;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -3px;
    color: #202124;
    margin-bottom: 16px;
}
.program-hero__body {
    font-family: Google Sans;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #202124;
    padding-left: 20px;
    padding-right: 20px;
}
.program-hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 40px 0px 40px;
}
.program-hero__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.program-hero__image .program-header__image {
    width: 309px;
    height: 228px;
}

 /* Program Content */
 .program-content {
    @apply md:ml-[16px];
    display: flex;
    flex-direction: column;
    position: relative;
}
.program-content__left {
    width: 100%;
    height: max-content;
}
.program-content__right {
    width: 100%;
}

/* Mobile Breakpoint */
@media (min-width: 576px) {
    .program-hero {
        height: 407px;
        flex-direction: row;
    }
    .program-hero .program-hero__header {
        font-size: 96px;
        line-height: 108px;
        letter-spacing: -3px;
    }
    .program-hero .program-hero__body {
        font-size: 20px;
        line-height: 28px;
    }

    .program-hero__body {
        padding: 0px;
    }
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
    /* Only use the larger laptop on desktop. */
    .program-hero .program-hero__image .program-header__image {
        width: 403px;
        height: 298px;
    }
    .program-content {
        flex-direction: row;
    }
    .program-content__left {
        width: 338px;
        margin-right: 48px;
    }
}