.elementor-widget-link {
    width: 100%;

    .link-wrapper {
        display: flex;

        .text-link {
            cursor: pointer;
            transition: all 0.3s;
        }

        .image-link {
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
            border-radius: 15px;
            overflow: hidden;

            &:hover {
                box-shadow: 0 0 30px 0 rgba(0,0,0,.15);
            }
        }
    }
}