/* News Section Styles */
.news-section {
    max-width: 1200px;
    margin: 2rem auto 1.5rem;
    padding: 0 1.5rem;
}

.news-container {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.news-container:hover {
    transform: translateY(-2px);
}

.news-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.news-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.news-link {
    flex-shrink: 0;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.news-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 768px) {
    .news-container {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .news-text {
        white-space: normal;
    }

    .news-link {
        width: 100%;
    }
}