.support__row {
    box-shadow: 0 0 6px 0 rgba(237, 116, 255, 0.8);
    background: linear-gradient(360deg, rgba(234, 93, 255, 0.15) 0%, rgba(234, 93, 255, 0.05) 100%);
    border: 1px solid #ed74ff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
}

.support__title {
    margin-bottom: 20px;
}

.support__text {
    text-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.4);
    line-height: 150%;
}

.support__text p{
    margin-bottom: 20px;
}

.support__buttons {
    display: flex;
    gap: 10px;
}

.support__button {
    background: #0c0c0c;
    border-radius: 24px;
    font-weight: 700;
    text-decoration: none;
}

.support__button:visited,
.support__button:active {
    color: #FFFFFF;
}

@media screen and (min-width: 992px) {
    .support__text-wrapper {
        flex-basis: 664px;
    }

    .support__image {
        flex-basis: 480px;
    }

    .support__row {
        gap: 32px;
        align-items: center;
    }

    .support__image-mobile {
        display: none;
    }

    .support__button {
        padding: 10px 24px;
    }

    .support__title {
        text-align: left;
    }
}

@media screen and (max-width: 991.98px) {
    .support__row {
        gap: 20px;
        flex-direction: column;
    }

    .support__buttons {
        flex-direction: column;
    }

    .support__image {
        display: flex;
        justify-content: center;
    }

    .support__button {
        display: flex;
        justify-content: center;
    }

    .support__image {
        display: none;
    }

    .support__image-mobile {
        display: flex;
        margin-bottom: 20px;
    }

    .support__button {
        padding: 8px 12px;
    }
}