.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.news-header {
    text-align: center;
    margin-bottom: 2rem;
}

.news-header h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

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

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.news-meta {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.news-excerpt {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    display: inline-block;
    color: #b8860b;
    text-decoration: none;
    font-weight: 500;
}

.news-link:hover {
    text-decoration: underline;
}

.news-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-button {
    padding: 0.75rem 1.5rem;
    background-color: #b8860b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #8b6914;
}

.nav-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-container {
        padding: 1rem;
    }

    .news-header h1 {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-navigation {
        flex-direction: column;
        align-items: center;
    }

    .nav-button {
        width: 100%;
        max-width: 300px;
    }
} 