html,body{margin:0;}

/* Global Reset (Optional, but kept broad for box-sizing) */
        .carbon_content-wrapper * { box-sizing: border-box; }

        /* Scoped Styles within the Mother Div */
        .carbon_content-wrapper {
            --content-w: 46vw;
            --gutter: 6vw;
            --text-bg: rgba(255, 255, 255, 0.88);
            --accent: #5b2c83;
            
            margin: 0;
            padding: 0;
            font-family: 'Morion', Georgia, serif;
            background: #faf9f7;
            overflow-x: hidden;
            color: #333;
            margin-left: calc(-20px);
            margin-right: calc(-20px);
        }

        /* ---------------- HERO (PARALLAX) ---------------- */
        .carbon_content-wrapper .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .carbon_content-wrapper .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://interactive.nation.africa/2025/dev/trapped_online/images/hero.png') center/cover no-repeat;
            will-change: transform;
        }

        .carbon_content-wrapper .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, .25);
        }

        .carbon_content-wrapper .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 0 8vw;
            background-color: #1111115b;
        }

        .carbon_content-wrapper .hero h1 {
            font-size: clamp(2rem,6vw,2.3rem);
            margin-bottom: 1rem;
            
        }

        .carbon_content-wrapper .hero p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.5rem;
            opacity: .9;
        }

        /* ---------------- TEXT SECTIONS ---------------- */
        .carbon_content-wrapper .text-section {
            max-width: 760px;
            margin: 6rem auto;
            padding: 0 6vw;
            font-size: 1.1875rem;
            line-height: 1.75rem;
            font-weight: 300;
        }

        .carbon_content-wrapper .text-section {
            & h1 {
                font-size: clamp(1.5rem, 25cqw, 2.5rem) !important;
                font-weight: 400 !important;
                line-height: 1.125 !important;
                margin-bottom: 3rem;
            }
        }

        /* ---------------- PANELS ---------------- */
        .carbon_content-wrapper .panel {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .carbon_content-wrapper .bg {
            position: absolute;
            inset: 0;
            width: 110%;
            height: 110%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background-size: cover;
            background-position: center;
            will-change: transform;
        }

        .carbon_content-wrapper .panel .content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .carbon_content-wrapper .panel.left .content {
            justify-content: flex-start;
            padding-left: var(--gutter);
        }

        .carbon_content-wrapper .panel.right .content {
            justify-content: flex-end;
            padding-right: var(--gutter);
        }

        .carbon_content-wrapper .text-box {
            background: var(--text-bg);
            max-width: var(--content-w);
            padding: 1.6rem 1.9rem;
            border-radius: 12px;
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1);
            font-size: 1.15rem;
            line-height: 1.6;
        }

        .carbon_content-wrapper .panel.active .text-box {
            opacity: 1;
            transform: none;
        }

    

        /* ---------------- FOOTER ---------------- */
        .carbon_content-wrapper .dark_footer {
            background: #111;
            color: #ddd;
            padding: 2rem 6vw;
            text-align: left;
        }

        /* ---------------- RESPONSIVE ---------------- */
        @media (max-width: 900px) {
            .carbon_content-wrapper {
                --content-w: 88vw;
                --gutter: 4vw;
            }
            .carbon_content-wrapper .panel .content {
                justify-content: center;
                padding: 6vh 4vw;
                align-items: flex-start;
            }
            .carbon_content-wrapper .text-box {
                margin-top: 42vh;
            }
        }

        .author-byline {
            display: flex;
            flex-wrap: wrap; 
            align-items: center;
            justify-content: left;
            gap: 0.75rem;
            margin-top: var(--spacing-md);
            font-family: "Roboto", cursive;
            font-size: 0.85rem;
        }
        .author-byline img {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
        }
        .author-byline span { line-height: 1; }