.htk-news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.htk-news-thumb img {
    width: 100%;
    /* height: 280px; */
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.htk-news-excerpt{font-size:13px;padding-top:10px;}
.htk-news-tag {
    font-size: 13px;
    display: inline-block;
    font-weight: 600;
    padding: 3px 10px;
    background: #fff3ed;
    color: #ff6b35;
    border-radius: 30px;
    margin-top: 20px;
}
.htk-news-item h3{
    font-size:20px;
    line-height:1.3;
	padding-top:10px;
}

.htk-news-meta{
    color:#777;
    margin-top:15px;
	font-size: 12px;
}

@media(max-width:849px){

    .htk-news-grid{
        grid-template-columns:1fr;
    }

}
.htk-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* TOP alignment */
    margin-bottom: 20px;
}

.htk-news-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}
.text-5xl {
    font-size: 3rem;
    line-height: 1;
}
.htk-news-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.2s ease;
}

.htk-news-btn:hover {
    background: #ff6b35;
	color:#fff;
}
.htk-news-item a{font-size:1.2rem;}
.htk-news-title {
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* ITEM BOX */
.news-item {
   
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
	padding:10px;
}

/* IMAGE */
.news-item img {
    width: 100%;
    transition: transform 0.4s ease;
    transform: scale(1); /* mặc định zoom in nhẹ */
}

/* TITLE */
.news-item h3,
.news-item h2 {
    transition: color 0.3s ease;
}

/* HOVER EFFECT */
.news-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	 border-radius: 30px;
	
}
.news-item:hover a{ color: #ff6b35;}
/* zoom OUT khi hover */
.news-item:hover img {
    transform: scale(1.1); /* zoom out về bình thường */
}

/* title đổi màu cam */
.news-item:hover h3,
.news-item:hover h2 {
    color: #ff6b35;
}