/* Blogs-index skin — CSS VERBATIM from Subash's blogs-home-page.html comp.
   ALL rules scoped under body.blogs-index so nothing leaks into the global
   Bricks header/footer chrome. :root/body -> body.blogs-index; html + @keyframes
   global; @media inner scoped. Do NOT re-skin — fixes go through the comp first. */

body.blogs-index {
            --bg-navy: #13217c;
            --primary-blue: #3b5bff;
            --cta-magenta: #cc00cc;
            --accent-blue: #e6ebff;
            --text-white: #fffdfe;
            --text-dark: #333;
            --text-gray: #808080;
            --success-green: #2d8a4e;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            --container-width: 1920px;
        }
body.blogs-index * {
            margin: 0;

            .blog-section {
                background-color: #e6ebff;
                padding: 60px 0;
            }

            .filter-container {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                margin-bottom: 50px;
                justify-content: left;
                max-width: 1200px;
                margin-left: auto;
                margin-right: auto;
            }

            .filter-pill {
                background: #fff;
                border: none;
                border-radius: 100px;
                padding: 8px 20px;
                font-size: 18px;
                line-height: 29px;
                color: var(--text-dark);
                cursor: pointer;
                transition: all 0.2s ease;
                font-family: var(--font-body);
                -webkit-tap-highlight-color: transparent;
                /* Removes default tap highlight on mobile */
                user-select: none;
                /* Prevents text selection on quick double-taps */
            }

            .filter-pill.active {
                background: var(--primary-blue);
                color: #fff;
            }

            .filter-pill:hover:not(.active) {
                background: #f1f5f9;
                color: #334155;
            }

            .blog-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .blog-card {
                background: #fff;
                border-radius: 12px;
                padding: 16px;
                display: flex;
                flex-direction: column;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                cursor: pointer;
            }

            .blog-thumbnail {
                width: 100%;
                height: 200px;
                border-radius: 10px;
                object-fit: cover;
            }

            .blog-category-flex {
                display: flex;
                gap: 10px;
                align-items: center;
            }

            .blog-category-badge {
                background: var(--accent-blue);
                color: var(--primary-blue);
                font-family: var(--font-body);
                font-size: 18px;
                line-height: 29px;
                padding: 4px 12px;
                border-radius: 999px;
                display: inline-block;
                margin: 10px 0;
                width: max-content;
            }

            .blog-title {
                font-size: 18px;
                line-height: 29px;
                font-weight: 600;
                color: var(--primary-blue);
                margin-bottom: 10px;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .blog-excerpt {
                font-size: 14px;
                color: var(--text-dark);
                line-height: 22px;
                margin-bottom: 20px;
                flex-grow: 1;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .blog-meta {
                display: flex;
                align-items: center;
                gap: 16px;
                font-size: 13px;
                color: #94a3b8;
            }

            .blog-meta-item {
                display: flex;
                align-items: center;
                gap: 6px;
                font-size: 14px;
                line-height: 22px;
                color: var(--text-gray);
            }

            .blog-meta-item svg {
                width: 16px;
                height: 16px;
            }

            .load-more-container {
                text-align: center;
                margin-top: 40px;
            }

            .btn-load-more {
                background: var(--primary-blue);
                color: #fff;
                border: none;
                border-radius: 8px;
                padding: 14px 40px;
                font-size: 18px;
                line-height: 29px;
                font-weight: 600;
                cursor: pointer;
                transition: background 0.2s ease;
                font-family: var(--font-body);
            }

            .btn-load-more:hover {
                background: var(--bg-navy);
            }

            @media (max-width: 1024px) {
                .blog-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 768px) {}

            padding: 0;
            box-sizing: border-box;
        }
html {
            scroll-behavior: smooth;
        }
body.blogs-index {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.5;
            background-color: #e6ebff;
        }
body.blogs-index h1, body.blogs-index h2, body.blogs-index h3, body.blogs-index h4, body.blogs-index h5, body.blogs-index h6 {
            font-family: var(--font-heading);
            font-weight: 600;
        }
body.blogs-index .container {
            width: 100%;
            max-width: var(--container-width);
            padding: 0 80px;
            margin: 0 auto;
        }
body.blogs-index .section-for-desktop {
            display: flex;
            justify-content: center;
            padding: 60px 0;
        }
body.blogs-index .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all .3s ease;
            border: none;
            font-family: var(--font-heading);
        }
body.blogs-index .btn-magenta {
            background-color: var(--cta-magenta);
            color: var(--text-white);
            -webkit-tap-highlight-color: transparent;
            /* Removes default tap highlight on mobile */
            user-select: none;
            /* Prevents text selection on quick double-taps */
        }
body.blogs-index .btn-magenta:hover {
            background-color: #a600a6;
        }
body.blogs-index .hero {
            background-color: var(--bg-navy);
            color: var(--text-white);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
body.blogs-index .hero .container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
        }
body.blogs-index .hero-content, body.blogs-index .hero-testimonial {
            min-width: 0;
        }
body.blogs-index .hero-content h1 {
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 20px;
            overflow-wrap: break-word;
        }
body.blogs-index .hero-content p {
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 22px;
            line-height: 30px;
            margin-bottom: 20px;
            overflow-wrap: break-word;
        }
body.blogs-index .hero-features {
            list-style: none;
            margin-bottom: 30px;
        }
body.blogs-index .hero-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 18px;
            flex-wrap: nowrap;
        }
body.blogs-index .hero-feature-item img {
            width: 24px;
            height: 24px;
        }
body.blogs-index .hero-testimonial {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
body.blogs-index .hero-img {
            width: 100%;
            max-width: 480px;
            height: auto;
            border-radius: 20px;
            object-fit: cover;
            display: block;
        }
body.blogs-index /* Hero Carousel Styles */
        .hero-carousel-container {
            width: 100%;
            max-width: 700px;
            overflow: hidden;
            position: relative;
            padding: 20px 0px;
            margin: -20px -10px;
        }
body.blogs-index .hero-carousel-track {
            display: flex;
        }
body.blogs-index .hero-carousel-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: contain;
            cursor: pointer;
        }
@media (max-width:1024px) {
body.blogs-index .container {
                padding: 0 40px;
            }
body.blogs-index .hero {
                padding: 40px 0;
            }
body.blogs-index .hero .container {
                grid-template-columns: 1.1fr 1fr;
                gap: 30px;
            }
body.blogs-index .hero-content h1 {
                font-size: 38px;
            }
body.blogs-index .hero-content p {
                font-size: 16px;
                margin-bottom: 20px;
            }
body.blogs-index .hero-feature-item {
                font-size: 16px;
                gap: 10px;
                margin-bottom: 20px;
            }
body.blogs-index .hero-features {
                margin-bottom: 30px;
            }
body.blogs-index .hero-img {
                max-width: 380px;
            }
body.blogs-index .blog-section {
                padding: 40px 0;
            }
}
@media (max-width:768px) {
body.blogs-index .container {
                padding: 0 20px;
            }
body.blogs-index .hero {
                padding: 40px 0;
            }
body.blogs-index .hero .container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: left;
                padding: 0 20px;
            }
body.blogs-index .hero-content h1 {
                font-size: 36px;
                line-height: 42px;
                text-align: left;
                width: 100%;
                overflow-wrap: break-word;
                word-break: break-word;
                white-space: normal !important;
            }
body.blogs-index .hero-content p {
                font-size: 20px;
                margin-bottom: 20px;
            }
body.blogs-index .hero-feature-item {
                font-size: 16px;
                margin-bottom: 20px;
            }
body.blogs-index .hero-testimonial {
                width: 100%;
                justify-content: center;
                margin-top: 30px;
            }
body.blogs-index .hero-img {
                max-width: 100%;
                border-radius: 12px;
            }
body.blogs-index .blog-section {
                padding: 40px 0;
            }
body.blogs-index .filter-container {
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 15px;
                -webkit-overflow-scrolling: touch;
                -ms-overflow-style: none;
                /* IE and Edge */
                scrollbar-width: none;
                gap: 8px;
                margin-bottom: 20px;
            }
body.blogs-index .filter-container::-webkit-scrollbar {
                display: none;
            }
body.blogs-index .filter-pill {
                white-space: nowrap;
                flex-shrink: 0;
                padding: 8px 16px;
                font-size: 14px;
                font-weight: 500;
            }
body.blogs-index .blog-grid {
                grid-template-columns: 1fr;
            }
}

/* ── Bricks integration reset (scoped) ── */
body.blogs-index .brxe-container, body.blogs-index #brx-content > .brxe-container{max-width:none;padding:0;}

