/* Latest Post Hover Widget */
.lphw-wrapper{
    width:100%;
    display:flex;
    gap:30px;
    align-items:flex-start;
}
.lphw-card{
    position:relative;
    flex:1 1 25%;
    min-width:0;
    overflow:hidden;
    transition:flex-basis .55s cubic-bezier(.22,.61,.36,1);
}
.lphw-card {
    flex: 1 1 33.333%;
}

.lphw-wrapper:hover .lphw-card {
    flex: 1 1 25%;
}


.lphw-wrapper:hover .lphw-card:hover {
    flex: 1 1 50%;
}
.lphw-card:hover .lphw-image-wrap , .lphw-card:hover .lphw-image-wrap  .lphw-image{
    height: 546px !important;
}
.lphw-image-link{display:block;text-decoration:none;color:inherit;}
.lphw-image-wrap{
    position:relative;
    width:100%;
    height:290px;
    overflow:hidden;
    border-radius:20px;
    background:#eee;
}
.lphw-image{
    width:100%;
    height: 390px !important;
    display:block;
    object-fit:cover;
    transition:transform .7s cubic-bezier(.22,.61,.36,1);
}
.lphw-card:hover .lphw-image{transform:scale(1.05);}

.lphw-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.20);
    opacity:0;
    transition:opacity .35s ease;
}
.lphw-card:hover .lphw-overlay{opacity:1;}

.lphw-eye{
    width:74px;
    height:74px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(20,20,20,.80);
    color:#65c92a;
    border:1px solid rgba(255,255,255,.15);
    transform:scale(.75);
    transition:transform .35s ease;
}
.lphw-card:hover .lphw-eye{transform:scale(1);}
.lphw-eye svg{width:34px;height:34px;display:block;}

.lphw-content{padding-top:25px;}
.lphw-date{
    margin-bottom:10px;
    font-size:16px;
    line-height:1.4;
    color:#555;
}
.lphw-title{
    margin:0;
    padding:0;
    font-size:25px;
    line-height:1.3;
    font-weight:500;
}
.lphw-title a{
    color:#111;
    text-decoration:none;
    transition:color .25s ease;
}
.lphw-title a:hover{color:#65c92a;}
.lphw-no-image{width:100%;height:100%;background:#ddd;}
.lphw-no-posts{padding:30px;text-align:center;font-size:18px;}

@media(max-width:1024px){
    .lphw-wrapper{gap:20px;}
    .lphw-image-wrap{height:260px;}
    .lphw-title{font-size:21px;}
    .lphw-date{font-size:14px;}
}

@media(max-width:767px){
    .lphw-wrapper{flex-direction:column;gap:35px;}
    .lphw-card,
    .lphw-card:first-child,
    .lphw-wrapper:hover .lphw-card,
    .lphw-wrapper:hover .lphw-card:hover{
        flex:none;
        width:100%;
    }
    .lphw-image-wrap{height:300px;}
    .lphw-content{padding-top:18px;}
    .lphw-title{font-size:22px;}
    .lphw-eye{width:64px;height:64px;}
}
