/* LEXLOOP BREATHER BLOCK - DESKTOP ONLY OVERRIDE */

.lexloop-breather-section {
    background-color: #000000;
    padding: 120px 5vw 160px; /* Reduced top padding from 180px to 120px for faster visibility */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* Reduced gap slightly */
    align-items: center;
    position: relative;
    z-index: 10; /* Boosted Z-Index to ensure it sits above everything */
    border-top: 1px solid rgba(255,255,255,0.05); 
    margin-top: -1px; /* Ensure seamless connection */
}

/* Hide on Mobile/Tablet */
@media (max-width: 1024px) {
    .lexloop-breather-section {
        display: none !important;
    }
}

/* LEFT COLUMN: THE HOOK */
.breather-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.breather-eyebrow {
    font-family: 'Space Mono', monospace;
    color: #00FFCC; /* Teal */
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.9;
}

.breather-h2 {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-size: 5.5rem; /* ~88px */
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0;
}

/* RIGHT COLUMN: THESIS & DIAGRAM */
.breather-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.breather-thesis {
    font-family: 'Inter', sans-serif;
    color: #A0A0A0; /* Muted Silver */
    font-size: 1.5rem; /* 24px */
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 300;
}

/* PIPELINE DIAGRAM UI */
.breather-pipeline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.pipeline-node {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #FFFFFF;
    background: #0A0A0A;
    border: 1px solid #333333;
    border-radius: 4px;
    padding: 12px 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.pipeline-node:hover {
    border-color: #555;
    background: #111;
    transform: translateY(-2px);
}

.pipeline-connector {
    width: 40px;
    height: 1px;
    background: #333333;
    position: relative;
}

/* Optional Arrow on Connector */
.pipeline-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    transform: rotate(45deg);
}
