/* News Page */
.page-header {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

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

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

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

.news-card a {
    text-decoration: none;
    color: #333;
}

.news-image {
    height: 200px;
}

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

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.4em;
    margin: 0 0 10px;
}

.news-content p {
    color: #666;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #007bff;
    font-weight: bold;
}

.no-news {
    text-align: center;
    padding: 50px;
    font-size: 1.2em;
}

/* News Detail Page */
.news-article {
    max-width: 800px;
    margin: 40px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.news-header {
    text-align: center;
    margin-bottom: 30px;
}

.news-header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

.article-meta {
    color: #666;
    font-size: 0.9em;
}

.featured-image {
    margin-bottom: 30px;
}

.featured-image img {
    width: 100%;
    border-radius: 10px;
}

.article-content {
    font-size: 1.1em;
    line-height: 1.8;
}
