/* =====================================================
   SECTION - RESULTS
===================================================== */

.section-results {
    padding: 60px 0;
    background: #ffffff;
}




/* =====================================================
   Results List
===================================================== */

.results-list {

    display: flex;
    flex-direction: column;

    gap: 36px;
}

/* =====================================================
   Result Card
===================================================== */

.result-card {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 60px;

    align-items: center;

    padding: 42px 48px;

    background: #ffffff;

    border: 1px solid #e3e8ef;
    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(5,31,69,.05);

    transition: all .3s ease;
}


/* =====================================================
   Left Column
===================================================== */

.result-left {

    display: flex;
    flex-direction: column;
}

.result-icon {

    margin-bottom: 24px;
}

.result-icon img {

    width: 60px;
    height: 60px;

    object-fit: contain;
}

.result-left h3 {

    margin: 0 0 18px;

    color: #051f45;

    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
}

.result-left p {

    margin: 0;

    color: #5a6178;

    font-size: 1.05rem;
    line-height: 1.85;
}

/* =====================================================
   Right Column
===================================================== */

.result-right {

    border-left: 4px solid #b18024;

    padding-left: 34px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-impact-title {

    display: inline-block;

    align-self: flex-start;

    margin-bottom: 18px;

    padding: 8px 16px;

    background: #b18024;
    color: #ffffff;

    border-radius: 999px;

    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.result-impact-text {
    color: #051f45;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.8;
}

