.yi-news-page {
    background-color: #0d0d0d;
    padding: 120px 0 80px 0;
    min-height: 100vh;
}

.yi-news-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.yi-news-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yi-news-subtitle {
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.yi-news-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.yi-news-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.yi-news-filters a {
    color: #888888;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.yi-news-filters a:hover,
.yi-news-filters a.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.yi-news-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yi-news-item {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.yi-news-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.yi-news-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
    gap: 10px;
}

.yi-news-date {
    color: #cccccc;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
}

.yi-news-category {
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
}

.cat-program {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196F3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.cat-event {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.cat-media {
    background-color: rgba(158, 158, 158, 0.1);
    color: #9E9E9E;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.cat-info, .yi-news-category {
    background-color: rgba(255, 107, 26, 0.1);
    color: #FF6B1A;
    border: 1px solid rgba(255, 107, 26, 0.3);
}

.yi-news-content {
    flex: 1;
}

.yi-news-post-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.yi-news-post-desc {
    color: #aaaaaa;
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.yi-news-item:hover .yi-news-post-title {
    color: var(--primary-color);
}

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

.yi-pagination a,
.yi-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Oswald', sans-serif;
    transition: all 0.3s ease;
}

.yi-pagination a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.yi-pagination span.current {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

@media (max-width: 768px) {
    .yi-news-item {
        flex-direction: column;
    }
    
    .yi-news-meta {
        margin-bottom: 15px;
    }
}
