.keys__row {
    display: flex;
}

.keys__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.keys__item {
    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;
    padding: 8px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.keys__item-name {
    font-weight: 700;
    flex-basis: 160px;
}

.keys__item-value {
    flex-basis: 240px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.keys__text {
    line-height: 1.5;
}

@media screen and (min-width: 992px) {
    .keys__text {
        margin-bottom: 40px;
    }

    .keys__row {
        gap: 20px;
        justify-content: center;
    }

    .keys__items {
        flex-basis: 464px;
    }
}

@media screen and (max-width: 991.98px) {
    .keys__text {
        margin-bottom: 20px;
    }

    .keys__row {
        gap: 10px;
        flex-direction: column;
    }

    .keys__item {
        padding: 5px 16px;
    }
}