.hero {
            padding: 140px 20px 30px;
            text-align: center;
            background: var(--bg-main);
            transition: background var(--transition-speed) ease;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-title);
            transition: color var(--transition-speed) ease;
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

        .blog-category-section {
            padding: 20px 0 60px 0;
            background: var(--bg-main);
            transition: background var(--transition-speed) ease;
        }

        .breadcrumb-blog {
            background: transparent;
            padding: 0;
            margin-bottom: 30px;
        }

        .breadcrumb-blog .breadcrumb {
            padding: 0;
            margin: 0;
            background: transparent;
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
        }

        .breadcrumb-blog .breadcrumb-item {
            display: inline-flex;
            align-items: center;
        }

        .breadcrumb-blog .breadcrumb-item a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-blog .breadcrumb-item a:hover {
            color: var(--accent);
        }

        .breadcrumb-blog .breadcrumb-item.active {
            color: var(--text-title);
            font-weight: 600;
        }

        [data-theme="dark"] .breadcrumb-blog .breadcrumb-item.active {
            color: #ffffff;
        }

        .breadcrumb-blog .breadcrumb-item+.breadcrumb-item::before {
            color: var(--text-muted);
            content: "›";
            font-size: 1.2rem;
            padding: 0 8px;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .article-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: articleFadeIn 0.6s ease forwards;
        }

        .article-card:nth-child(1) { animation-delay: 0.05s; }
        .article-card:nth-child(2) { animation-delay: 0.10s; }
        .article-card:nth-child(3) { animation-delay: 0.15s; }
        .article-card:nth-child(4) { animation-delay: 0.20s; }
        .article-card:nth-child(5) { animation-delay: 0.25s; }
        .article-card:nth-child(6) { animation-delay: 0.30s; }
        .article-card:nth-child(7) { animation-delay: 0.35s; }
        .article-card:nth-child(8) { animation-delay: 0.40s; }
        .article-card:nth-child(9) { animation-delay: 0.45s; }
        .article-card:nth-child(10) { animation-delay: 0.50s; }
        .article-card:nth-child(11) { animation-delay: 0.55s; }
        .article-card:nth-child(12) { animation-delay: 0.60s; }

        @keyframes articleFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .article-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px var(--shadow-hover);
        }

        .article-pinned {
            border-color: #ffc107;
        }

        .article-pinned:hover {
            border-color: #ffc107;
            box-shadow: 0 20px 60px rgba(255, 193, 7, 0.15);
        }

        [data-theme="dark"] .article-card {
            border-color: var(--border-dark);
        }

        [data-theme="dark"] .article-card:hover {
            border-color: var(--accent);
            box-shadow: 0 20px 60px var(--shadow-hover);
        }

        .article-card-link {
            text-decoration: none;
            display: block;
        }

        .article-card-image {
            position: relative;
            overflow: hidden;
            height: 200px;
            background: var(--bg-sub);
        }

        .article-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .article-card:hover .article-card-image img {
            transform: scale(1.06);
        }

        .article-read-time {
            position: absolute;
            bottom: 12px;
            left: 12px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 999px;
            font-size: 12px;
            font-weight: 500;
            color: #fff;
        }

        .article-read-time svg {
            stroke: #fff;
        }

        .article-pinned-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 5;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 14px;
            background: #ffc107;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            color: #000;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
            animation: pulseBadge 2s infinite;
        }

        @keyframes pulseBadge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .article-pinned-badge svg {
            stroke: #000;
        }

        .article-card-body {
            padding: 20px 22px 18px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .article-category {
            margin-bottom: 4px;
        }

        .category-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            background: #408cb5;
            color: #fff;
            transition: all 0.3s ease;
        }

        .article-card:hover .category-badge {
            transform: scale(1.05);
        }

        .article-card-body h3 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 4px 0;
        }

        .article-card-body h3 a {
            color: var(--text-title);
            text-decoration: none;
            transition: color var(--transition-speed) ease;
        }

        .article-card-body h3 a:hover {
            color: var(--accent);
        }

        .article-card-body p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0 0 6px 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            border-top: 1px solid var(--border);
            margin-top: auto;
        }

        [data-theme="dark"] .article-card-footer {
            border-color: var(--border-dark);
        }

        .article-date {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .article-date svg {
            stroke: var(--text-muted);
        }

        .article-stats {
            display: flex;
            gap: 12px;
        }

        .article-stat {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .article-stat svg {
            stroke: var(--text-muted);
        }

        .articles-empty {
            text-align: center;
            padding: 60px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: all var(--transition-speed) ease;
        }

        .articles-empty svg {
            stroke: var(--text-muted);
            margin-bottom: 16px;
        }

        .articles-empty h3 {
            font-size: 20px;
            color: var(--text-title);
            margin-bottom: 8px;
        }

        .articles-empty p {
            color: var(--text-muted);
        }

        .articles-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .pagination-prev,
        .pagination-next {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--bg-sub);
            border: 1px solid var(--border);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .pagination-prev:hover,
        .pagination-next:hover {
            color: var(--text-title);
            background: var(--bg-card);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .pagination-pages {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .pagination-pages a,
        .pagination-pages span {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 8px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--bg-sub);
            border: 1px solid transparent;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .pagination-pages a:hover {
            color: var(--text-title);
            background: var(--bg-card);
            border-color: var(--border);
            transform: translateY(-2px);
        }

        .pagination-pages a.active {
            color: #fff;
            background: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 4px 15px rgba(18, 58, 72, 0.2);
        }

        .pagination-pages span {
            color: var(--text-muted);
            background: transparent;
            cursor: default;
        }

        .pagination-info {
            text-align: center;
            margin-top: 12px;
            color: var(--text-muted);
            font-size: 13px;
        }

        @media (max-width: 968px) {
            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .article-card-image {
                height: 180px;
            }

            .article-card-body {
                padding: 16px 18px 14px;
            }

            .article-card-body h3 {
                font-size: 16px;
            }
        }

        @media (max-width: 600px) {
            .blog-category-section {
                padding: 10px 0 40px 0;
            }

            .hero {
                padding: 30px 15px 15px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

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

            .article-card-image {
                height: 160px;
            }

            .article-card-body {
                padding: 14px 16px 12px;
            }

            .article-card-body h3 {
                font-size: 15px;
            }

            .article-card-body p {
                font-size: 13px;
            }

            .article-card-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .article-stats {
                gap: 8px;
            }

            .articles-pagination {
                gap: 8px;
            }

            .pagination-prev,
            .pagination-next {
                font-size: 13px;
                padding: 8px 14px;
            }

            .pagination-pages a,
            .pagination-pages span {
                min-width: 34px;
                height: 34px;
                font-size: 13px;
            }

            .article-pinned-badge {
                font-size: 11px;
                padding: 3px 10px;
            }

            .article-read-time {
                font-size: 11px;
                padding: 3px 10px;
            }

            .article-card {
                animation-delay: 0s !important;
            }
        }

        @media (max-width: 400px) {
            .article-card-image {
                height: 140px;
            }

            .article-card-body h3 {
                font-size: 14px;
            }
        }