.news-main {
    padding-top: 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    padding: 2rem;
}

.news-hero {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.news-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.filter-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button.active {
    background: white;
    color: var(--primary-color);
}

.featured-news {
    grid-column: 1 / -1;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.news-image {
    position: relative;
    height: 200px;
}

.news-card.featured .news-image {
    height: 400px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.875rem;
}

.tag.urgent {
    background: #dc3545;
}

.news-content {
    padding: 2rem;
}

.news-content time {
    color: #666;
    font-size: 0.875rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-numbers a,
.current-page {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
}

.current-page {
    background: var(--secondary-color);
    color: white;
}

.news-sidebar {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    align-self: start;
    position: sticky;
    top: 100px;
}

.trending-topics ul {
    list-style: none;
    padding: 0;
}

.trending-topics li {
    margin-bottom: 1rem;
}

.trending-topics a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-subscribe {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.subscribe-form input {
    padding: 0.75rem;
    border: 1px solid #eee;
    border-radius: 5px;
}

.subscribe-form button {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .news-main {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-template-columns: 1fr;
    }
    
    .news-sidebar {
        position: static;
    }
} 