.news-main-content {
    background-color: #f5f7fa;
    min-height: calc(100vh - 200px);
}

.banner-section {
    align-items: center;
    background: var(--portal-accent-gradient-soft, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    display: flex;
    height: 200px;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
}

.banner-image {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.banner-placeholder {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content-wrapper {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 250px 1fr;
    margin-bottom: 2rem;
}

.sidebar {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: fit-content;
    padding: 1.5rem;
}

.sidebar-nav h3 {
    border-bottom: 2px solid var(--portal-sidebar-title-border, var(--portal-accent-border, #0066cc));
    color: var(--portal-sidebar-title-color, #22314d);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav .nav-item {
    margin-bottom: 0.5rem;
}

.sidebar-nav .nav-item a {
    background-color: var(--portal-sidebar-link-bg, transparent);
    border: 1px solid var(--portal-sidebar-link-border, transparent);
    border-radius: 6px;
    color: var(--portal-sidebar-link-color, #5a6677);
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-nav .nav-item a:hover {
    background-color: var(--portal-sidebar-link-hover-bg, var(--portal-accent-soft, #f0f8ff));
    border-color: var(--portal-sidebar-link-hover-border, var(--portal-accent-border-muted, #d9e5f7));
    color: var(--portal-sidebar-link-hover-color, var(--portal-accent-link, #0066cc));
}

.sidebar-nav .nav-item.active a {
    background-color: var(--portal-sidebar-link-active-bg, var(--portal-accent-primary, #0066cc));
    border-color: var(--portal-sidebar-link-active-border, var(--portal-accent-border, #0066cc));
    box-shadow: var(--portal-sidebar-link-active-shadow, 0 10px 22px rgba(15, 23, 42, 0.08));
    color: var(--portal-sidebar-link-active-color, var(--portal-accent-contrast, #ffffff));
}

.news-content-area {
    min-width: 0;
}

.search-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box input {
    border: 1px solid #ddd;
    border-radius: 4px;
    flex: 1;
    font-size: 14px;
    padding: 0.8rem 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: var(--portal-accent-primary, #0066cc);
    outline: none;
}

.search-btn {
    background-color: var(--portal-button-primary-bg, var(--portal-accent-primary, #0066cc));
    border: 1px solid var(--portal-button-primary-border, var(--portal-accent-border, #0066cc));
    border-radius: 4px;
    color: var(--portal-button-primary-text, var(--portal-accent-contrast, #ffffff));
    cursor: pointer;
    font-size: 14px;
    width: 65px;
    height: 32px;
    padding: 0;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: var(--portal-button-primary-hover-bg, var(--portal-accent-primary-hover, #0059b3));
    border-color: var(--portal-button-primary-hover-border, var(--portal-accent-primary-hover, #0059b3));
}

.filter-section {
    align-items: center;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.filter-section > span {
    color: #666;
    font-size: 14px;
}

.filter-options {
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

.filter-options label {
    color: #666;
    font-size: 14px;
}

.filter-options select {
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    padding: 0.5rem;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    border-bottom: 1px solid #ebebeb;
    padding: 0.9rem 0;
}

.news-item:first-child {
    border-top: 1px solid #ebebeb;
}

.news-item:hover {
    background-color: transparent;
}

.news-item-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    gap: 1.5rem;
}

.news-title {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    color: var(--portal-list-link-color, #333);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.5;
}

.news-item-link:hover .news-title {
    color: var(--portal-list-link-hover-color, var(--portal-accent-link-hover, #0052a3));
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--portal-list-link-hover-color, var(--portal-accent-link-hover, #0052a3));
}

.news-date {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-empty {
    background-color: #fff;
    border-radius: 8px;
    color: #999;
    padding: 2rem;
    text-align: center;
}

.pagination {
    align-items: center;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
}

.page-btn {
    background-color: var(--portal-pagination-bg, #ffffff);
    border: 1px solid var(--portal-pagination-border, #d6dde7);
    border-radius: 4px;
    color: var(--portal-pagination-text, #333333);
    cursor: pointer;
    font-size: 14px;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background-color: var(--portal-pagination-hover-bg, var(--portal-accent-soft, #f0f8ff));
    border-color: var(--portal-pagination-hover-border, var(--portal-accent-border, #0066cc));
    color: var(--portal-pagination-hover-text, var(--portal-accent-link, #0066cc));
}

.page-btn.disabled,
.page-btn.disabled:hover {
    background-color: var(--portal-pagination-disabled-bg, #f5f5f5);
    border-color: var(--portal-pagination-disabled-border, #dddddd);
    color: var(--portal-pagination-disabled-text, #999999);
    cursor: not-allowed;
}

.page-info {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .banner-section {
        height: 150px;
    }

    .banner-placeholder {
        font-size: 20px;
    }

    .search-box {
        flex-direction: column;
    }

    .filter-section {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
}
