/* =====================================================
   OUTCOMES SECTION
===================================================== */

.section-outcomes {
    padding: 90px 0;
    background: #ffffff;
}

.section-outcomes .container {
    max-width: 1400px;
}


/* =====================================================
   LAYOUT
===================================================== */

.outcomes-layout {
    display: grid;
    grid-template-columns: 1fr 1px 1.4fr;
    gap: 60px;
    align-items: center;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.outcomes-content {
    max-width: 420px;
}

.outcomes-content .page-section-title {
    margin-bottom: 24px;
}

.outcomes-content .section-intro {
    color: #5a6178;
    font-size: 1.1rem;
    line-height: 1.8;
}


/* =====================================================
   DIVIDER
===================================================== */

.outcomes-divider {
    width: 1px;
    height: 220px;
    background: #e6e9ef;
    justify-self: center;
}


/* =====================================================
   OUTCOMES GRID
===================================================== */

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 34px 48px;
}


/* =====================================================
   OUTCOME ITEM
===================================================== */

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}


/* =====================================================
   ICON
===================================================== */

.outcome-icon {
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #051f45;

    color: #b18024;

    font-size: .95rem;

    box-shadow:
        0 8px 18px rgba(5,31,69,.08);
}


/* =====================================================
   TEXT
===================================================== */

.outcome-text {
    color: #051f45;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
}





