.news-page {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
    width: 100%;
}

.news-section {
    background: #fff;
    padding: 0;
}

.news-section-header {
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.section-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.news-list {
    min-height: 400px;
}

.news-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    border-bottom: 1px solid #e0e0e0;
    height: 60px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.news-item:not(.empty-item):hover {
    background: #f9f9f9;
}

.news-link {
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    align-items: center;
    padding: 0 10px;
}

.news-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #333;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.news-title {
    font-size: 16px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.page-link:hover {
    background: #f0f0f0;
}

.page-link.active {
    background: #232527;
    color: #d5b77e;
    border-color: #232527;
}

.no-news {
    text-align: center;
    padding: 50px 0;
    color: #999;
    font-size: 16px;
}

.news-footer {
    background: #232527;
    color: #d5b77e;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .news-container {
        padding: 20px;
    }
}