/* Program Summary responsive divider */
.program-summary-divider {
    width: 100%;
    height: 2px;
    background-color: #7FD4FF;
    max-width: 400px;
}

@media (min-width: 768px) {
    .program-summary-divider {
        width: 2px;
        height: 90px;
    }
}

.card-hover-border {
    border: 2px solid #dee2e6;
    transition: border-color 0.2s ease;
}

.card-hover-border:hover {
    border-color: #9EDBF7 !important;

    .mentoring-program-card__cta {
        background-color: #9EDBF7 !important;
    }
}

.the-problem-cards {
    border: 2px solid #CCCCCC;
    border-radius: 8px;
    padding: 30px 40px 16px;
    background: #F5F6FA;

    img {
        width: 30px;
        height: 30px;
    }

    .problem-card__title {
        font-weight: 600;
    }

    p {
        font-size: 16px;
    }
}

.the-problem-cards:hover {
    border: 2px solid #000;
}

.problem-card__icon {
    width: 50px;
    height: 50px;
    background-color: #14233b;
    border-radius: 16%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;

    >i {
        font-size: 30px;
        color: #9EDBF7;
        font-weight: 300;
    }
}

.problems-footer-text {
    color: #000;
    padding: 30px 20px;
    border-left: 8px solid #9EDBF7;
    background: #e1ecff;
    font-size: 14px;
}

/* How It Works */
.how-it-works-section {
    background: #F5F6FA;
    padding: 80px 0;
    /* margin-bottom: 48px; */
}

.how-it-works-header h2 {
    color: #000;
    font-weight: 600;
}

.how-it-works-logo {
    width: 28px;
    margin-bottom: 10px;
}

.how-it-works-desc {
    font-size: 14px;
}

/* steps */

.how-step {
    text-align: left;
    background: #fff;
    padding: 30px 40px;
    border: 2px solid #CCCCCC;
}

.how-step h3 {
    color: #000;
    font-weight: 600;
    margin-top: 30px;
}

.how-step p {
    font-size: 14px;
}

/* number box */
.step-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shaddow-step-number {
    font-size: 4rem;
    color: #E0E2EC;
    font-weight: 600;
}

.step-number {
    background: #14233b;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #9edbf7;
}

.learninghub-link {
    text-decoration: underline !important;
    font-weight: 500;
}

.learninghub-link:hover {
    /* color: #fff */
}

.container-max-width {
    max-width: 960px;
}


/* outcomes section */
.outcomes-list {
    max-width: 1000px;
    margin: auto;
}

/* outcome list alignment */
.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    border: 1px solid #9EDBF7;
    padding: 12px;
    background: #253952;
    color: #FFFFFF;
    border-radius: 7px;
}

/* tick icon */
.outcome-item img {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

/* text */
.outcome-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* highlight box */
.outcome-highlight {
    margin-top: 40px;
    background: #73a1c208;
    padding: 44px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #73A1C26B;
}

.outcome-highlight p {
    margin: 0;
    font-size: 14px;
    color: #FFFFFF;
}

/* small text */
.small-text {
    font-size: 14px;
}

.call-to-action-section {
    background: #9EDBF7;
    padding: 80px 0;
    margin-bottom: 48px;

    p {
        padding-top: 24px
    }
}

.outcomes-section {
    background: #14223C;
}