.related-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding-bottom: 10px;
    padding-left: 16px;
    padding-right: 16px;
}

.related-features-h1 {
    font-weight: 700;
    font-size: 54px;
    line-height: 105%;
    color: #F5F5FA;
    text-align: center;
}

.related-features-wrapper {
    display: flex;
    gap: 16px;
    max-width: 1200px;
    margin: auto;
}

.related-features-item {
    position: relative;
    padding: 24px;
    border-radius: 20px;
    flex: 1;
    background: transparent;

    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    cursor: pointer;
    transition: box-shadow 0.25s ease;
}

.related-features-item:hover {
    box-shadow: 1px 3px 9px rgba(71, 133, 255, 0.25);
}

.related-features-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, #0000ff6e 0%, #ff220047 60%);
    -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
            mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.related-features-item-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-features-item-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #F5F5FA;
}

.related-features-item-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #8989A3;
}

.related-features-item_link {
    background: linear-gradient(270deg, #4785FF 67.54%, #B8A1E6 100%);

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

    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.related-features-item_link::after {
    content: '';
    position: absolute;
    inset: 0;
}

@media screen and (max-width: 864px) {
    .related-features-wrapper {
        flex-direction: column;
    }

    .related-features-h1 {
        font-size: 36px;
    }

}