.em2-zone{
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    & > a{
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
    }
    & .heading-inner{
        position: relative;
        &::before{
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0px;
            top: 0px;
            background: linear-gradient(to top, rgba(27,42,68,.88) 0%, rgba(27,42,68,.1) 60%);
            content: '';
            z-index: 1;
        }
        & .distance{
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .2);
            color: #fff;
            font-size: 11px;
            font-weight: 500;
            padding: 5px 12px;
            border-radius: 100px;
        }
        & .thumb img{
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
        & .heading{
            position: absolute;
            bottom: 15px;
            left: 20px;
            z-index: 2;
            & .em2-title{
                font-size: 22px;
                font-style: italic;
                font-family: var(--fraunces);
                color: var(--white);
                margin: 0px;
            }
            & .em2-label{
                font-size: 10px;
                color: rgba(255,255,255,.5);
                letter-spacing: 2.5px;
                margin: 0px;
                &::before{
                    display: none;
                }
            }
        }
    }
    & .body-inner{
        padding: 24px 22px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        & .block-content{
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.75;
            font-weight: 400;
            & p:last-child{
                margin-bottom: 0px;
            }
        }
        & ul.categories{
            list-style: none;
            margin: 0px;
            padding-left: 0px;
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            & li{
                font-size: 11px;
                color: var(--wood);
                font-weight: 500;
                background: var(--wood-ultra);
                padding: 4px 10px;
                border-radius: 100px;
                border: 1px solid var(--wood-pale);
            }
        }
        & .footer{
            color: var(--navy);
            padding-top: 10px;
            border-top: 1px solid var(--border);
            & a{
                font-size: 13px;
                font-weight: 500;
                display: inline-flex;
                gap: 5px;
                align-items: center;
                color: var(--navy);
                &::after{
                    font-family: "Font Awesome 6 Free";
                    font-weight: 900;
                    content: "\f061";
                    font-size: 11px;
                }
            }
        }
    }
    &:hover{
        border-color: var(--wood);
        box-shadow: 0 12px 48px rgba(139, 94, 60, .14);
        transform: translateY(-5px);
        & .footer a{
            gap: 10px;
        }
    }
}