.news-section {
    background-color: #f5f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.news-section h2 {
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-teal);
}

.news-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.news-item h3 {
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.news-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.8rem;
}

.news-date, .news-source {
    display: inline-block;
}

.news-source {
    font-weight: 600;
}

.news-item p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.news-link {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.news-header h2 {
    margin-bottom: 0;
}

.news-refresh {
    background-color: var(--accent-teal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-refresh:hover {
    background-color: var(--primary-blue);
    transform: rotate(180deg);
}
