.list-articles {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    background: #fafafa;
    min-height: 100vh;
    padding: 24px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;

    /* Search Bar */
    .search-bar {
        margin-bottom: 24px;

        .search {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            background: white;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            transition: all 0.3s ease;

            &:hover {
                box-shadow: 0 4px 16px rgba(0,0,0,0.06);
                border-color: rgba(0,0,0,0.08);
            }

            svg {
                color: #6b7280;
                flex-shrink: 0;
            }

            .search-input {
                border: none;
                background: transparent;
                outline: none;
                font-size: 1rem;
                color: #111827;
                width: 100%;
                font-family: 'Inter', sans-serif;

                &::placeholder {
                    color: #9ca3af;
                }
            }
        }
    }

    /* Articles Grid */
    .articles-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    /* Article Card */
    .article-card {
        background: white;
        border-radius: 24px;
        overflow: hidden;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 1px 0 rgba(0,0,0,0.03);
        opacity: 0;
        transform: translateY(30px);

        &.visible {
            opacity: 1;
            transform: translateY(0);
        }

        &:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(0,0,0,0.08);

            .article-image img {
                transform: scale(1.08);
            }

            .article-title {
                color: #2563eb;
            }
        }

        .article-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 24px 24px 0 0;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            }
        }

        .article-content {
            padding: 16px 16px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .article-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: #111827;
            line-height: 1.4;
            margin: 0 0 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s ease;
        }

        .article-meta {
            display: flex;
            gap: 14px;
            align-items: center;
            font-size: 0.825rem;
            color: #6b7280;
        }
    }

    /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;

        .page-btn {
            width: 48px;
            height: 48px;
            border: none;
            background: white;
            color: #6b7280;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 1px 0 rgba(0,0,0,0.03);

            &:hover {
                background: #f3f4f6;
                color: #2563eb;
                transform: translateY(-2px);
            }

            &.active {
                background: linear-gradient(135deg, #2563eb, #6366f1);
                color: white;
                box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
            }
        }
    }

    /* Responsive */
    @media (max-width: 992px) {
        .articles-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
    }

    @media (max-width: 640px) {
        padding: 20px 16px 48px;

        .articles-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .article-card {
            .article-title {
                font-size: 1.1rem;
            }
        }
    }
}
