/* ============================================
   News Page — Specific Styles
   ============================================ */

/* ── Page Container ── */
.news-page-container {
    padding: 40px 0 80px;
    background: #fff;
}

/* ── Breadcrumbs ── */
.breadcrumb-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumb-path {
    display: flex;
    align-items: center;
    gap: 5px;
}

.action-tools {
    display: flex;
    gap: 15px;
    align-items: center;
}

.action-tools i {
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.action-tools i:hover {
    color: var(--primary-orange);
}

/* ── Main Title ── */
.news-main-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-weight: 700;
}

/* ── Category Tabs ── */
.news-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
    gap: 5px;
    overflow-x: auto;
}

.news-tab {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
}

.news-tab.active {
    color: white;
    background: #a34b4b;
    border-radius: 4px 4px 0 0;
}

.tab-count {
    font-size: 0.8rem;
    margin-left: 3px;
}


