    .section--result {
        padding: 0 5%;
    }

    .section__title--result {
        margin-bottom: 35px;
    }

    .result__content-title {
        font-family: 'Lato', sans-serif;
        font-weight: bold;
        font-size: 20px;
      	line-height: 1.5;
        margin-bottom: 20px;
    }

    .result__description {
        font-size: 17px;
        line-height: 1.5;
    }

    .result__card-list {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        padding: 0 30px 0 25px;
        margin: 30px auto;
    }

    /* === Result card === */
    .result__card {
        position: relative;
        width: 100%;
        max-height: 130px;
        padding: 20px;
        padding-bottom: 25px;
        background: #e9e9ec;
        border-radius: 15px;
        backdrop-filter: blur(5px);
        border-bottom: 2px solid rgba(120, 49, 164, 1);
        border-left: 2px solid rgba(120, 49, 164, 1);
        box-shadow: -25px 20px 15px rgba(120, 49, 164, 0.2);
        transform: skewX(10deg);
        transition: all 0.7s;
        overflow: hidden;
        cursor: default;
        color: #1C1B39;
    }

    .result__card.active {
        max-height: 250px;
        transform: skew(0deg);
    }

    .result-card__stat {
        font-family: 'Lato', sans-serif;
        text-align: center;
        font-size: 45px;
        font-weight: 900;
        color: #E62379;
    }

    .result-card__points {
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 25px;
        opacity: 0.5;
        transition: opacity 0.4s ease;
    }

    .result__card.active .result-card__points {
        opacity: 0;
    }

    .result-card__description {
        opacity: 0;
        margin-top: 20px;
        font-size: 17px;
        font-weight: 500;
        line-height: 1.4;
        transition: opacity 0.7s ease;
    }

    .result__card.active .result-card__description {
        opacity: 1;
    }

    /* === Responsive === */
    @media (min-width: 640px) {
        .result__card-list {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 40px;
            padding: 0;
            margin-top: 60px;
        }

        .result__card {
            max-width: 250px;
            min-height: 180px;
            height: 100%;
            text-align: center;
        }

        .section__title--result {
            font-size: 35px;
        }

        .result__content-title {
            font-size: 22px;
        }

        .result__description {
            font-size: 20px;
            max-width: 750px;
        }

        .result-card__description {
            font-size: 18px;
        }
    }

    @media (max-width: 1024px) {
        .section--result {
            padding-top: 30px;
        }
    }
