.em2-testimonials{
    row-gap: 30px;
    margin-left: -15px;
    margin-right: -15px;
    & [class*='col-']{
        padding-left: 15px;
        padding-right: 15px;
    }
}
.em2-testimonial-item{
    padding: 40px 30px 80px 30px;
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.15);
    height: 100%;
    color: var(--text-mid);
    position: relative;
    &::before{
        content: '"';
        font-family: var(--cormorant-garamond);
        font-size: 72px;
        line-height: 1;
        color: var(--gold);
        opacity: 0.2;
        margin-bottom: -20px;
        display: block;
    }
    & .block-content{
        font-size: 14px;
        font-style: italic;
        font-weight: 300;
        margin-bottom: 25px;
        & p:last-child{
            margin: 0px;
        }
    }
    & .author-info{
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 10px;
        align-items: center;
        position: absolute;
        bottom: 40px;
        left: 30px;
        & .avatar{
            width: 40px;
            height: 40px;
            background: var(--navy-deep);
            border-radius: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: var(--gold);
            font-family: var(--cormorant-garamond);
            font-weight: 600;
        }
        & .title{
            font-size: 14px;
            font-weight: 500;
            color: var(--navy);
            line-height: 16px;
        }
        & .position{
            font-size: 12px;
            color: #888;
        }
    }
}
.em2-testimonials.style_1{
    & .em2-testimonial-item{
        border-radius: 12px;
        padding: 36px 28px 76px 28px;
        border: 1px solid var(--border);
        &::before{
            display: none;
        }
        & .block-content{
            font-family: var(--fraunces);
            font-size: 16px;
            font-style: italic;
            color: var(--text-mid);
            line-height: 1.65;
            margin-bottom: 20px;
            font-weight: 400;
        }
        & .author-info{
            bottom: 36px;
        }
    }
}
.em2-testimonials.style_2{
    & .em2-testimonial-item{
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 10px;
        padding: 36px 28px;
        color: var(--white);
        &::before{
            display: none;
        }
        & .block-content{
            font-family: var(--fraunces);
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 20px;
            &::after{
                content: '';
                width: 28px;
                height: 1px;
                background: var(--wood-light);
                display: block;
                margin-top: 20px;
            }
        }
        & .author-info{
            position: static;
            & .title{
                color: var(--white);
            }
            & .position{
                color: rgba(255,255,255,.4)
            }
        }
    }
}