/* News Section - Text list style */
.news {
    padding: 64px 0;
    background: #f8f9fa !important;
}

.news-list {
    max-width: 720px;
    margin: 0 auto;
    border-top: 1px solid #dadce0;
    border-bottom: 1px solid #dadce0;
}

.news-item {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 14px 20px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f3f4;
    transition: background 0.15s;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: #f8f9fa;
}

.news-date {
    font-size: 13px;
    color: #5f6368;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-title {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    line-height: 1.5;
}

.news-item:hover .news-title {
    color: #127C71;
}

.news-empty {
    text-align: center;
    color: #5f6368;
    padding: 48px 24px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .news {
        padding: 40px 0;
    }

    .news-item {
        flex-direction: column;
        gap: 4px;
        padding: 12px 16px;
    }
}
