.Post--item{
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    border-radius: var(--largeradius);
    overflow: hidden;
    border: 1px solid #efefef;
    box-shadow: 0 10px 30px #00000008;
    transition: .35s ease;
    flex: 1;
    min-width: 370px;
    max-width: 470px;
    cursor: pointer;
}

.Post--item:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 38px #00000012;
}

.-Po-Thumb{
    position: relative;
    overflow: hidden;
    border-radius: var(--largeradius) var(--largeradius) 0 0;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
}

.-Po-Thumb img{
    transition: .45s ease;
}

.Post--item:hover .-Po-Thumb img{
    transform: scale(1.05);
}

.-Po-Info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px 26px;
    flex: 1;
}

.post-card-meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    width: 100%;
}

.post-meta-item{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.city-initem{
    position: relative;
}

.city-initem::after{
    content: "";
    width: 1px;
    height: 14px;
    background: #d9e0e6;
    margin-inline-start: 6px;
}

.post-meta-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: #7c8896;
    font-size: 14px;
}

.post-meta-value{
    color: var(--primary-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.city-initem .post-meta-value{
    color: var(--uicolor);
}

.city-initem .post-meta-icon{
    color: var(--uicolor);
}

.post-date .post-meta-value{
    color: #6f7b88;
}

.sile-otm-con{
    width: 100%;
    margin-bottom: 9px;
}

.posts_title{
    margin: 0;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 600;
}

.posts_title a{
    color: var(--primary-text);
    text-decoration: none;
    transition: .3s ease;
}

.Post--item:hover .posts_title a{
    color: var(--uicolor);
}

.post-excerpt{
    width: 100%;
    color: var(--secondarytext);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.posts_tit{
    margin-top: auto;
}

.posts_tit{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--uicolor);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    transition: .3s ease;
}

.posts_tit a i{
    transition: .3s ease;
}

.Post--item:hover .posts_tit a i{
    transform: translateX(-4px);
}

@media (max-width: 991px){
    .-Po-Thumb img{
        height: auto;
    }

    .posts_title{
        font-size: 22px;
    }

    .post-excerpt{
        font-size: 15px;
    }
}

@media (max-width: 767px){
    .Post--item{
        border-radius: 24px;
        min-width: 280px;
    }

    .-Po-Thumb{
        border-radius: 24px 24px 0 0;
    }
 

    .-Po-Info{
        padding: 22px 18px 20px;
    }

    .post-card-meta{
        gap: 8px;
    }

    .post-meta-item{
        gap: 6px;
    }

    .post-meta-icon{
        width: 16px;
        height: 16px;
        flex-basis: 16px;
        font-size: 13px;
    }

    .posts_title{
        font-size: 20px;
    }

    .post-excerpt{
        font-size: 14px;
        line-height: 1.8;
    }

    .posts_tit a{
        font-size: 15px;
    }
}
