.links-block-list:not(:last-child) {
    margin-bottom: 15px;
}

.links-block-list__wrapper {
    display: flex;
    flex-direction: column;
    background: #f2f2ff;
    border-radius: 20px;
    padding: 16px;
    gap: 14px;
}

.links-block-list__item {
    display: flex;
    gap: 14px;
}

    .links-block-list__item:not(:last-child) {
       padding-bottom: 14px;
        border-bottom: 1px solid #dee3ed;
    }

.links-block-list__icon {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #dedcff;
    width: 34px;
    height: 34px;
    padding: 12px;
    flex-shrink: 0;
}

.links-block-list__content {
    display: flex;
    flex-direction: column;
}

.links-block-list__heading,
p.links-block-list__text {
    font-weight: 700;
    font-size: 17px;
    line-height: 1.4;
    color: #393939;
}

p.links-block-list__text {
    font-weight: 400;
}

.links-block-list__icon img {
    transition: all 0.3s ease-out;
}

a.links-block-list__item:hover .links-block-list__icon img {
    transform: rotate(45deg);
}

a.links-block-list__item:hover {
    text-transform: none;
    text-decoration: none;
}

@media screen and (max-width: 599.98px) {

    .links-block-list__wrapper {
        border-radius: 16px;
        padding: 14px;
    }

    .links-block-list__heading {
        font-size: 16px;
    }
    p.links-block-list__text {
        font-size: 15px;
    }

}