.em2-showrooms{
    & > .heading{
        margin-bottom: 24px;
        border-bottom: 1.5px solid var(--border);
    }
    & .em2-showroom-item{
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 40px 32px;
        position: relative;
        overflow: hidden;
        height: 100%;
        & .em2-title{
            font-size: 22px;
            font-weight: 400;
            font-family: var(--fraunces);
            margin-bottom: 4px;
        }
        & .em2-label{
            display: block;
            margin-bottom: 4px;
        }
        & .heading{
            margin-bottom: 10px;
        }
        &:not(.noborder):hover{
            border-color: var(--wood);
            box-shadow: 0 12px 40px rgba(27, 42, 68, .1);
            transform: translateY(-4px);
        }
        &.noborder{
            background: transparent;
            border: 1px dashed var(--border);
            display: flex;
            flex-direction: column;
            justify-content: center;
            & .em2-title{
                font-style: italic;
            }
            & .thumb{
                width: auto;
                height: auto;
                display: block;
                font-size: 28px;
            }
            & .em2-readmore{
                width: fit-content;
            }
        }
    }
    & .borderTop{
        position: absolute;
        top: 0px;
        left: 0px;
        height: 3px;
        width: 100%;
    }
    & .location{
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 100px;
        margin-bottom: 12px;
        background: #f0f4ff;
        color: #1a3a8a;
    }
    & .thumb{
        width: 64px;
        height: 64px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--fraunces);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    & .block-content{
        font-size: 14px;
        color: var(--text-mid);
        line-height: 1.7;
    }
    & .tags{
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        & span{
            font-size: 11px;
            background: var(--smoke);
            border: 1px solid var(--border);
            color: var(--text-soft);
            padding: 4px 12px;
            border-radius: 100px;
            font-weight: 400;
        }
    }
}
@media (max-width: 768px){
    .em2-showrooms{
        & .em2-showroom-item{
            margin-bottom: 15px;
            height: auto;
        }
    }
}