/* Main Container: Grid creates the staggered look */
        .work-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr; /* Two column layout */
            gap: 40px;
        }

        /* Base Card Styling */
        .card-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
        }

        .label-box {
            box-sizing: border-box;
            display: flex;
            align-items: center;
            padding: 7px 16px;
            background: var(--bg-color);
            border: 1px solid var(--border-color);
            border-radius: 12px 12px 12px 0px;
            font-size: 20px;
            margin-bottom: -1px; /* Overlap border with content box */
            z-index: 1;
        }

        .content-box {
            box-sizing: border-box;
            display: flex;
            justify-content: left;
            align-items: left;
            padding: 16px;
            background: var(--bg-color);
            border: 1px solid var(--border-color);
            border-radius: 0 8px 8px 8px; /* Adjusted to match label */
            width: 100%;
            min-height: 80px;
        }

        .content-text {
            font-size: 1.2rem;
            line-height: 1.2;
            word-break: break-word;
            text-align: left;
        }

        /* Specific Layout Positions */
        
        /* 1. Code Variable: Top (Spans full width) */
        .pos-code {
            grid-column: 1 / -1;
            justify-self: center;
            max-width: 600px;
        }
        .pos-code .content-text { font-size: 1.4rem; }

        /* 2. Web: Left */
        .pos-web {
            grid-column: 1;
        }

        /* 3. Android: Right */
        .pos-android {
            grid-column: 2;
        }

        /* 4. iOS: Right (per your request "below android to the right") */
        .pos-ios {
            grid-column: 2;
        }

        /* Responsive Breakpoint: Mobile Stacking */
        @media (max-width: 900px) {
            .work-container {
                grid-template-columns: 1fr; /* Force single column */
            }
            
            .pos-code, .pos-web, .pos-android, .pos-ios {
                grid-column: 1;
                max-width: 100%;
            }
 
        }