﻿.news-list {
    /*background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;*/
}

.news-item {
    position: relative;
    padding: 24px 30px;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: white;
}

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

    .news-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .news-item:hover {
        background: linear-gradient(to right, #f0f4ff 0%, #ffffff 100%);
        transform: translateX(8px);
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
        z-index: 10;
    }

        .news-item:hover::before {
            transform: scaleY(1);
        }

.news-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

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

.news-source {
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .news-source::before {
        content: '📰';
        font-size: 1rem;
    }

.news-link {
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.news-item:hover .news-link {
    opacity: 1;
    transform: translateX(0);
}

.news-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .news-link a:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }

    .news-link a::after {
        content: '→';
        font-size: 1.1rem;
    }

@media (max-width: 768px) {
    .news-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-item:hover {
        transform: translateX(4px);
    }

    .news-link {
        width: 100%;
    }

        .news-link a {
            width: 100%;
            justify-content: center;
        }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-item {
    animation: fadeIn 0.5s ease backwards;
}

    .news-item:nth-child(1) {
        animation-delay: 0.05s;
    }

    .news-item:nth-child(2) {
        animation-delay: 0.1s;
    }

    .news-item:nth-child(3) {
        animation-delay: 0.15s;
    }

    .news-item:nth-child(4) {
        animation-delay: 0.2s;
    }

    .news-item:nth-child(5) {
        animation-delay: 0.25s;
    }

    .news-item:nth-child(n+6) {
        animation-delay: 0.3s;
    }
