/* News list page specific styles */

.news-header {
    padding: 8rem 2rem 4rem;
    background: var(--off-white);
    text-align: center;
}

.news-header h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.news-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.news-list {
    padding: 3rem 2rem 5rem;
}

.news-container {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.news-item h2 {
    margin-bottom: 0.5rem;
}

.news-item h2 a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item h2 a:hover {
    color: var(--primary-blue);
}

.news-item time {
    color: var(--gray);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.news-item p {
    color: var(--gray);
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.no-posts {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
}
