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

.results-section {
    width: 100%;
    background: #eaf3f8;
    padding: 80px 0 40px;
    box-sizing: border-box;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   TITLE
   ========================================= */

.results-title {
    margin: 0 0 38px;
    text-align: center;
    line-height: 1.15;
    font-weight: 700;
}

/* =========================================
   STATS
   ========================================= */

.results-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: start;
    margin-bottom: 40px;
}

/* =========================================
   INDIVIDUAL RESULT
   ========================================= */

.result-item {
    text-align: left;
}

.result-number {
    margin-bottom: 10px;
    font-size: 72px;
    line-height: 1.5;
    font-weight: 600;

    background: radial-gradient(84.02% 84.02% at 50% 15.98%,
            #0C6AA5 0%,
            #021927 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-description {
    margin: 0;
    line-height: 1.35;
    font-weight: 500;

    color: #515151;
    max-width: 240px;

}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .results-stats {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }

    .result-item {
        text-align: center;
    }

    .result-description {
        margin: 0 auto;
    }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .results-section {
        padding: 32px 20px;
    }



    .results-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .result-number {
        font-size: 52px;
    }


}