/* ===== 共用：分頁篩選頁面框架 =====
   news.php / downloads.php / credit-courses.php 共用的
   頁面區塊、標題與分類篩選分頁樣式 */
.news-section {
    padding: 80px 0 100px 0;
    background: #ffffff;
}

.news-header {
    margin-bottom: 30px;
}

.news-title {
    font-size: 2.2rem;
    color: #2E1F47;
    font-family: 'Noto Serif TC', serif;
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Filter Tabs */
.news-tabs-container {
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.news-tab {
    padding: 10px 20px;
    font-size: 1.05rem;
    font-family: 'Inter', 'Noto Serif TC', sans-serif;
    font-weight: 600;
    color: #555555;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -1px;
    border-bottom: 2px solid transparent;
}

.news-tab:hover {
    color: #8B2C2C;
}

.news-tab.active {
    background-color: #8B2C2C;
    color: #ffffff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom: 2px solid #8B2C2C;
}
