 /* Articles Header Section */
        .articles-header {
            background: white;
            padding: 80px 20px 60px 20px;
            /* Top padding to avoid header overlap */
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .articles-header .header-icon {
            width: 100vw;
            object-fit: cover;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            margin-bottom: 40px;
            display: block;
        }

        .articles-header h1 {
            font-size: 3rem;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .articles-header p {
            font-size: 1.4rem;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
        }

        .articles-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 40px 20px;
            /* Reduced top padding since header section handles spacing */
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .article-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
        }

        .article-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .article-featured-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .article-content {
            padding: 25px !important;
        }

        .article-date {
            color: #999;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            font-weight: 400;
        }
      

        .article-excerpt {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #666;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-link {
            color: #1E1832;
            text-decoration: none;
        }

        .article-link:hover {
            color: #D89623;
            text-decoration: none;
        }

        .read-more-btn {
            background: #D89623;
            color: white;
            padding: 8px 20px;
            border-radius: 15px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.3s ease;
            display: inline-block;
            margin-top: 10px;
        }

        .read-more-btn:hover {
            background: #c08420;
            color: white;
            text-decoration: none;
        }

        .pagination-wrapper {
            padding: 60px 0;
            text-align: center;
        }

        .pagination .page-link {
            border: 1px solid #ddd;
            margin: 0 5px;
            padding: 12px 20px;
            color: #333;
            font-weight: 400;
            background: white;
            border-radius: 0;
        }

        .pagination .page-item.active .page-link {
            background: #333;
            border-color: #333;
            color: white;
        }

        .pagination .page-link:hover {
            background: #D89623;
            border-color: #D89623;
            color: white;
        }

        /* Responsive Grid */
        @media (max-width: 992px) {
            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .articles-container {
                max-width: 800px;
            }
        }

        @media (max-width: 768px) {
            .articles-header {
                padding: 100px 15px 40px 15px;
            }

            .articles-header h1 {
                font-size: 2rem;
            }

            .articles-header p {
                font-size: 1rem;
            }

            .articles-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .articles-container {
                padding: 40px 15px 20px 15px;
            }

            .article-featured-image {
                height: 180px;
            }

            .article-content {
                padding: 20px 15px;
            }

            .article-title {
                font-size: 1.2rem;
            }

            .article-excerpt {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .article-content {
                padding: 20px 15px;
            }

            .article-title {
                font-size: 1.1rem;
            }
        }

        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
            color: #999;
        }

        .empty-state h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 300;
        }

        .empty-state p {
            font-size: 1rem;
            font-weight: 300;
        }

         .article-hero {
            position: relative;
            height: 60vh;
            min-height: 400px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .article-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
            z-index: 1;
        }

        .article-hero-content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 40px 0;
            width: 100%;
            transform: translateY(20px);
        }

        .article-meta {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }


        .article-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            line-height: 1.4;
            margin-bottom: 0;
            opacity: 0.9;
        }

        .article-content {
            background: transparent;
            margin-top: 0;
            position: relative;
            z-index: 3;
            padding: 40px 0;
        }

        .article-body {
            font-family: 'Georgia', serif;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }

        .article-body h1,
        .article-body h2,
        .article-body h3,
        .article-body h4,
        .article-body h5,
        .article-body h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            color: #1E1832;
        }

        .article-body h1 {
            font-size: 2.5rem;
        }

        .article-body h2 {
            font-size: 2rem;
            color: #D89623;
        }

        .article-body h3 {
            font-size: 1.5rem;
        }

        .article-body p {
            margin-bottom: 1.5rem;
        }

        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .article-body ul,
        .article-body ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .article-body li {
            margin-bottom: 0.5rem;
        }

        .article-body blockquote {
            border-left: 4px solid #D89623;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: #f8f9fa;
            border-radius: 0 15px 15px 0;
            font-style: italic;
            color: #666;
        }

        .article-info {
            padding: 30px 0;
            border-top: 2px solid #f0f0f0;
            border-bottom: 2px solid #f0f0f0;
            margin: 40px 0;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #D89623, #426BD4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .reading-time {
            background: #426BD4;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .related-articles {
            background: #f8f9fa;
            padding: 60px 0;
            margin-top: 60px;
        }

        .related-article-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
        }

        .related-article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .related-article-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .related-article-content {
            padding: 25px;
        }

        .article-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1E1832;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .article-title a {
            color: #1E1832;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .article-title a:hover {
            color: #D89623 !important;
            text-decoration: none;
        }

        .related-article-excerpt {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .read-more-btn {
            background: #D89623;
            color: white;
            padding: 8px 20px;
            border-radius: 15px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .read-more-btn:hover {
            background: #c08420;
            color: white;
            text-decoration: none;
        }

          .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .btn-primary {
            background: #D89623;
            border-color: #D89623;
            color: white;
            padding: 10px 25px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .btn-primary:hover {
            background: #1E1832;
                border-color: #1E1832;
            color: white;
            padding: 10px 25px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        @media (max-width: 768px) {
            .article-title {
                font-size: 2.5rem;
            }

            .article-subtitle {
                font-size: 1.2rem;
            }

            .article-hero-content {
                padding: 40px 0;
            }

            .article-content {
                padding: 60px 0 40px 0;
            }

            .article-body {
                font-size: 1rem;
            }

            .related-article-image {
                height: 180px;
            }

            .related-article-content {
                padding: 20px 15px;
            }
        }