.results {
    margin-top: 201px;
    margin-bottom: 160px;
}

.results__content {
    border-radius: 32px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 2px solid rgba(89, 85, 137, 1);
    background: #403C68;
    background-image: url('../img/bg-results.svg');
    background-size: auto 787px;
    background-position: center;
}

.result__title {
    margin-bottom: 24px;
    font-size: 42px;
    font-weight: 700;
    line-height: 54.6px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.result__description {
    margin-bottom: 32px;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFFCC;
}

.results__links {
    margin-top: 60px;
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.results__links a {
    text-decoration: none;
}

.results__links a:visited {
    color: inherit;
}

.links__item {
    background: #4E4886;
    width: 158px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #6660A4;
    box-shadow: 0px 4px 4px #494480;
    border-radius: 10px;
    color: #fff;
    height: 100%;
}

.links__item-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.link-vk {
    width: 19px;
    height: 22px;
    margin-right: 5px;
}

.link-telegram {
    width: 22px;
    height: 22px;
    margin-right: 5px;
}

.link-roistat {
    width: 26px;
    height: 24px;
    margin-right: 5px;
}

/* .links__item img {
  width: 114px;
  height: 24px;
} */

.results__news {
    margin-top: 24px;
    font-size: 13px;
    font-weight: 450;
    line-height: 19.5px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    max-width: 506px;
    color: #FFFFFFCC;
}

@media screen and (max-width: 1280px) {
    .result__title {
        font-size: 38px;
        line-height: 49.4px;
    }

    .result__description {
        font-size: 20px;
        line-height: 30px;
    }
    
    .results {
        margin: 140px 0;
    }
}

@media screen and (max-width: 980px) {
    .results__content {
        /* padding: 40px 0 20px 0; */
        padding: 32px;
    }

    .result__title {
        font-size: 30px;
        line-height: 39px;
        margin-bottom: 16px;
    }

    .result__description {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 24px;
    }

    .results {
        margin: 120px 0;
    }
}

@media screen and (max-width: 750px) {
    .results {
        margin: 40px 0;
    }
    .results .results__content {
        border-radius: 20px;
        padding: 32px 16px;
    }
    .result__title {
        font-size: 28px;
        line-height: 150%;
        width: 100%;
        text-align: center;
    }

    .results__content {
        padding: 16px 0;
    }

    .result__description {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .results .btn {
        width: 288px;
    }

    .results__links {
        margin-top: 10px;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .links__item {
        width: 100%;
    }
    .results__news {
        margin-top: 10px;
        width: 288px;
    }
}

