.news-wrapper {
    max-width: 100%;
}

.news-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(30, 24, 18, 0.5);
    border: 1px solid #4a3f2f;
    border-radius: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background: rgba(40, 32, 20, 0.6);
    border: 1px solid #4a3f2f;
    border-radius: 5px;
    color: #b8a589;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: rgba(50, 40, 25, 0.8);
    color: #d4af37;
}

.filter-btn.active {
    background: linear-gradient(135deg, #3d2f1f, #2a1f12);
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.news-article {
    background: linear-gradient(135deg, rgba(30, 24, 18, 0.8), rgba(20, 16, 12, 0.8));
    border: 1px solid #4a3f2f;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.news-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.news-article:hover {
    border-color: #5d4a1f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.news-article:hover::before {
    opacity: 1;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(74, 63, 47, 0.5);
    gap: 15px;
}

.news-title-section {
    flex: 1;
}

.news-category {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.news-category.update {
    background: rgba(100, 149, 237, 0.15);
    border-color: rgba(100, 149, 237, 0.3);
    color: #6495ed;
}

.news-category.event {
    background: rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.3);
    color: #ff8c00;
}

.news-category.maintenance {
    background: rgba(217, 83, 79, 0.15);
    border-color: rgba(217, 83, 79, 0.3);
    color: #d9534f;
}

.news-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 6px;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    color: #8b7355;
}

.news-date {
    display: flex;
    font-size: 15px;
    align-items: center;
    gap: 5px;
}

.news-author {
    display: flex;
    font-size: 15px;
    align-items: center;
    gap: 5px;
}

.news-image {
    width: 120px;
    height: 120px;
    background: rgba(40, 32, 20, 0.6);
    border: 2px solid #4a3f2f;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    color: #b8a589;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.news-content p {
    margin-bottom: 12px;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(74, 63, 47, 0.3);
}

.news-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.news-tag {
    padding: 3px 8px;
    background: rgba(40, 32, 20, 0.5);
    border: 1px solid #4a3f2f;
    border-radius: 10px;
    font-size: 15px;
    color: #8b7355;
}

.btn-read-more {
    padding: 6px 16px;
    background: linear-gradient(135deg, #3d2f1f, #2a1f12);
    border: 1px solid #5d4a1f;
    border-radius: 5px;
    color: #d4af37;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Cinzel', serif;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #5d4a1f, #3d2f1f);
    border-color: #d4af37;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

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

.page-btn {
    padding: 8px 14px;
    background: rgba(40, 32, 20, 0.6);
    border: 1px solid #4a3f2f;
    border-radius: 5px;
    color: #b8a589;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: linear-gradient(135deg, #3d2f1f, #2a1f12);
    border-color: #d4af37;
    color: #d4af37;
}

@media (max-width: 768px) {
    .news-header {
        flex-direction: column;
    }

    .news-image {
        width: 100%;
        height: 200px;
    }

    .news-filters {
        justify-content: center;
    }
}