.han-latest-posts-wrap{
    width:100%;
}

.han-latest-posts-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:34px;
}

.han-post-card{
    background:#f4f4f4;
    border-radius:0;
    min-width:0;
}

.han-post-card__thumb{
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:#ececec;
    aspect-ratio: 1.34 / 0.86;
}

.han-post-card__thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}

.han-post-card:hover .han-post-card__thumb img{
    transform:scale(1.04);
}

.han-post-card__content{
    padding-top:18px;
}

.han-post-card__meta{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:12px;
    color:#666;
    font-size:14px;
    line-height:1.5;
    margin-bottom:16px;
}

.han-post-card__sep{
    opacity:.7;
}

.han-post-card__title{
    margin:0;
    max-width:100%;
    font-size:26px;
    line-height:1.18;
    font-weight:600;
    letter-spacing:-0.02em;
    word-break:break-word;
    overflow-wrap:anywhere;
}

.han-post-card__title a{
    color:#111;
    text-decoration:none;
    transition:color .3s ease;
}

.han-posts-empty{
    grid-column:1/-1;
    background:#f4f4f4;
    border-radius:20px;
    padding:32px;
    font-size:16px;
}

@media (max-width: 1024px){
    .han-latest-posts-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:24px;
    }

    .han-post-card__title{
        font-size:22px;
    }
}

@media (max-width: 767px){
    .han-latest-posts-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .han-post-card__thumb{
        aspect-ratio: 1.2 / 0.82;
        border-radius:18px;
    }

    .han-post-card__content{
        padding-top:14px;
    }

    .han-post-card__meta{
        gap:9px;
        margin-bottom:12px;
        font-size:13px;
    }

    .han-post-card__title{
        font-size:18px;
        line-height:1.24;
    }
}
