@media screen and (min-width: 1025px) {
/* 1. CURSOR HIDER - EXCLUDE ADMIN/EDITOR */
body:not(.wp-admin):not(.editor-styles-wrapper) * { cursor: none !important; }
body.wp-admin *, .editor-styles-wrapper *, .block-editor-block-list__layout * { cursor: auto !important; }
:root { --inner-px: clamp(60px, 8vw, 150px); }

/* DESKTOP NAV: Show pill, hide hamburger */
.nav-pill { display: flex !important; }
.hamburger-btn { display: none !important; }
.desktop-actions { display: flex !important; }


/* 1. BLOG — CLEAN PREMIUM (V113) */
.blog-horizontal-section .hss-item-inner {
    display: flex;
    flex-direction: column !important; /* Forces vertical layout in cards for space */
    padding: 0;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}

.bh-image-part {
    width: 100%;
    height: clamp(150px, 25vh, 220px) !important; /* Smaller image to save vertical space */
    position: relative;
    overflow: hidden;
    background: #111;
}

.bh-image-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hss-item:hover .bh-image-part img {
    transform: scale(1.05);
}

.bh-content-part {
    flex: 1;
    padding: clamp(20px, 3vw, 40px) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
    background: inherit;
}

.bh-status-bar { display: flex; align-items: center; gap: 10px; }
.bh-active-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

.blog-horizontal-section .hss-title {
    font-size: clamp(1.8rem, 3.5vw, 3.2rem) !important;
    font-weight: 850 !important;
    letter-spacing: -1.5px !important;
    line-height: 0.95 !important;
    margin-bottom: 15px !important;
}
.hss-item-lime-dark .hss-title { color: #000 !important; }

.spec-sheet { 
    margin: 10px 0; 
    padding: 20px 0; 
    border-top: 1px solid rgba(128,128,128,0.15); 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.hss-item-lime-dark .spec-sheet { border-top-color: rgba(0,0,0,0.08); }

.blog-horizontal-section .hss-action {
    margin-top: auto !important; /* Push to bottom */
    padding: 18px 25px !important;
}



/* 2. CINEMATIC DESKTOP SCROLLING */
.horizontal-scroll-section { min-height: 400vh; }
.blog-horizontal-section.lime-edition { min-height: 350vh; }

.hss-item:hover {
    transform: translateY(-10px);
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* 2. HERO DESKTOP (V74 FLOATING CARD) */
.hero-section { padding: 0 20px 40px; }
.hero-master {
    height: 85vh;
    width: 98vw;
    border-radius: clamp(20px, 3vw, 40px);
    /* CINEMATIC NOTCH AT BOTTOM */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 85% 100%, 82% 98.5%, 18% 98.5%, 15% 100%, 0 100%);
}

/* 3. DESKTOP NAVIGATION PILL */
.nav-pill {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    padding: 6px 10px;
    border-radius: 50px;
    display: flex;
    gap: 5px;
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10001;
}

.nav-link {
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 14px 35px;
    transition: 0.3s;
    border-radius: 50px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
    background: var(--card-dark);
}

.btn-pill {
    background: var(--accent);
    color: var(--text-dark);
    padding: 12px 30px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
}

/* 5. HERO SURGICAL QUICK LINKS (DESKTOP) */
.hero-quick-links {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    padding: 0;
    background: none !important;
    box-shadow: none !important;
    z-index: 20;
}

.ql-item {
    width: 75px;
    height: 75px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #fff !important;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
}

.ql-item i {
    width: 28px;
    height: 28px;
}

.ql-item:hover {
    background: var(--accent) !important;
    color: #000 !important;
    transform: translateY(-8px);
    border-color: var(--accent);
}


/* 4. MID-SIZE LAPTOP OPTIMIZATION (12-15 INCH) - RIGID TWO COLUMNS */
@media (max-width: 1440px) {
    :root { --inner-px: 40px; }
    
    /* Blog Fix - Ensuring card stays compact */
    .hss-item {
        width: clamp(380px, 45vw, 550px) !important;
        height: clamp(550px, 85vh, 750px) !important;
    }

    /* About Showcase - MANDATORY 2 COLUMNS */
    .as-image {
        display: grid !important;
        grid-template-columns: 1fr 1.2fr !important; /* Left tight, right more space */
        gap: 30px !important;
        padding: 40px !important;
        height: auto !important;
        min-height: 600px !important;
        align-items: center !important;
    }
    
    .as-headline {
        font-size: clamp(2rem, 6vw, 4.5rem) !important;
        max-width: 100% !important;
        line-height: 0.85 !important;
        margin: 0 !important;
    }
    
    .as-stat-panel {
        position: relative !important;
        width: 100% !important;
        right: auto !important;
        bottom: auto !important;
        padding: 30px !important;
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(10px);
    }

    /* Showcase Desktop Layout (Horizontal Bar at bottom) */
    .as-image {
        min-height: 700px !important;
        position: relative !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding-left: clamp(40px, 10vw, 150px) !important;
    }
    
    .as-stat-panel {
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 80% !important;
        max-width: 1000px;
        background: var(--accent) !important;
        border-radius: 40px 40px 0 0 !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        padding: 60px 0 !important;
    }
    
    .as-stat-box { flex: 1; border-right: 1px solid rgba(0,0,0,0.05); }
    .as-stat-box:last-child { border-right: none; }
    .as-stat-num { color: #000 !important; font-size: 80px !important; }
    .as-stat-label { color: #000 !important; opacity: 0.6; }
}
}





