/* ======================================== New_Posts =================== */
/* ===== Layout tổng ===== */
.post-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== Card ===== */
.homepage-entry-post {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}

.homepage-entry-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

/* ===== Bài đầu tiên nổi bật ===== */
.homepage-entry-post:first-child {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: stretch;
}

/* ===== Ảnh ===== */
.homepage-entry-content-thumbnail {
    overflow: hidden;
}

.homepage-entry-content-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.homepage-entry-post:hover img {
    transform: scale(1.05);
}

/* ===== Nội dung ===== */
.homepage-entry-categories,
.homepage-entry-header,
.homepage-entry-modified-time,
.homepage-entry-excerpt {
    padding: 0 24px;
}

.homepage-entry-categories {
    padding-top: 24px;
    margin-bottom: 12px;
}

.homepage-entry-categories a {
    display: inline-block;
    background: #f3f4f6;
    color: #444;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 6px;
    margin-bottom: 6px;
}

.homepage-entry-title {
    margin-bottom: 12px;
}

.homepage-entry-title a {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
    text-decoration: none;
}

.homepage-entry-title a:hover {
    color: #0066cc;
}

.homepage-entry-modified-time {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.homepage-entry-excerpt {
    color: #555;
    line-height: 1.7;
    padding-bottom: 18px;
    flex-grow: 1;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
		overflow: visible;
		display: block;
	
}

/* ===== Bài nổi bật ===== */
.homepage-entry-post:first-child .homepage-entry-title a {
    font-size: 34px;
}

.homepage-entry-post:first-child .homepage-entry-excerpt {
    -webkit-line-clamp: 4;
    font-size: 16px;
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {

    .post-listing {
        grid-template-columns: repeat(2, 1fr);
    }

    .homepage-entry-post:first-child {
        grid-column: span 2;
    }

    .homepage-entry-post:first-child .homepage-entry-title a {
        font-size: 28px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 767px) {

    .post-listing {
        grid-template-columns: 1fr;
    }

    .homepage-entry-post:first-child {
        grid-column: auto;
        display: flex;
    }

    .homepage-entry-post:first-child .homepage-entry-title a {
        font-size: 24px;
    }

    .homepage-entry-categories,
    .homepage-entry-header,
    .homepage-entry-modified-time,
    .homepage-entry-excerpt {
        padding-left: 18px;
        padding-right: 18px;
    }

    .homepage-entry-excerpt {
        padding-bottom: 18px;
    }
}

/***/
.index_homepage a,
.index_homepage p {
    color: rgba(238, 228, 228, 0.897);
    font-size: 8px;
    line-height: 0.1;

}

.index_homepage {
    max-height: 100px;
    overflow: auto;
}