/* ============================================
   NEWS POST TYPE - ADDITIONAL STYLES
   ============================================ */

/* Featured image placeholder gradient */
.news-card-image:empty {
    background: linear-gradient(135deg, var(--primary-lightest) 0%, var(--light-gray) 100%);
    min-height: 220px;
}

/* News archive pagination */
.news-archive-template .archive-pagination .pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.news-archive-template .archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.75rem;
    border-radius: var(--border-radius);
    background: var(--white);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.news-archive-template .archive-pagination .page-numbers:hover {
    background: var(--primary-lightest);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.news-archive-template .archive-pagination .page-numbers.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.news-archive-template .archive-pagination .page-numbers.dots {
    border: none;
    background: none;
    color: var(--text-secondary);
}

/* News card image fallback */
.news-card-image:not(:has(img)) {
    background: linear-gradient(135deg, #e8edf5 0%, #d5dde8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.news-card-image:not(:has(img))::after {
    content: '\f15c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Print styles */
@media print {
    .news-sidebar {
        display: none;
    }

    .news-article {
        box-shadow: none;
        padding: 0;
    }

    .news-header-section {
        background: none;
        padding: 1rem 0;
    }
}
