.em2-item-image-links{
    & .em2-label::before{
        display: none;
    }
    & ul{
        list-style: none;
        margin: 0px;
        padding: 0px;
        & li{
            border-bottom: 1px solid rgba(255,255,255,.07);
            padding: 20px 0px;
            display: grid;
            grid-template-columns: 48px 1fr;
            column-gap: 15px;
            &:last-child{
                border: none;
                padding-bottom: 0px;
            }
            & a, & span{
                display: block;
            }
            & .title{
                font-size: 14px;
                color: var(--white);
                font-weight: 500;
            }
            & .subtitle{
                font-size: 12px;
                color: rgba(255,255,255,.4);
            }
            & .inner{
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            & .tag{
                font-size: 10px;
                font-weight: 700;
                padding: 3px 10px;
                border-radius: 100px;
                white-space: nowrap;
                background: rgba(27,42,68,.1);
                color: var(--navy);
            }
            & a:hover *{
                transform: translateX(15px);
            }
        }
    }
    &.style_1 ul li{
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 14px 16px;
        margin-bottom: 10px;
        & .thumb{
            border-radius: 6px;
        }
        & .title{
            color: var(--navy);
            margin: 0px;
        }
        & .subtitle{
            color: var(--text-soft);
        }
        &:hover{
            border-color: var(--wood);
            background: var(--wood-ultra);
            transform: translateX(-4px);
        }
    }
}