h4.archive-heading {text-align: center;padding: 0;margin: 0;font-size: 28px;color: #000;text-transform: uppercase;margin-bottom: 15px;}
/* Grid 2 bài viết 1 hàng */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px; /* khoảng cách giữa các bài */
    padding: 30px;
}

.item_post {
    overflow: hidden;
    transition: all 0.3s;
}

.item_post_img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.item_post_content {
    padding: 10px;
}

/* Giới hạn 2 dòng cho tiêu đề */
.item_post_content .post-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
}

/* bỏ underline cho link bọc tiêu đề */
.item_post a {
    text-decoration: none !important;
    color: inherit;
}
