/* ============================================
   NEWS.CSS - Trang danh sách tin tức (news.php)
   ============================================ */

/* --- Category Tabs --- */
.cat-tab {
    padding: 0.6rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #525252;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.cat-tab:hover { color: #a3a3a3; }
.cat-tab.active { color: white; border-color: var(--accent); }

/* --- Post Card --- */
.post-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s;
    overflow: hidden;
}

.post-card:hover {
    background: #1a1a1a;
    border-color: rgba(220, 38, 38, 0.15);
}

.post-card img { transition: transform 0.5s; }
.post-card:hover img { transform: scale(1.05); }

/* --- Pagination --- */
.page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #525252;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s;
}

.page-btn:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
}

.page-btn.active {
    color: white;
    background: var(--accent);
    border-color: var(--accent);
}
