/* 1. HEADER (Stacked & Centered) */
header.site-nav {
    flex-direction: column !important; 
    height: auto !important;           
    padding: 15px 0 !important;        
    gap: 10px !important;              
    justify-content: center !important;
}

.logo {
    font-size: 0.6rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 5px !important;
}

.nav-links {
    margin-left: 0 !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.nav-links a {
    margin: 0 10px !important;
    font-size: 0.5rem !important;
}

/* 2. THE HERO REPAIR (Center-Hoist Fix) */
.hero, .article-hero {
    /* 40% of the screen height - Perfectly Grounded */
    height: 40vh !important; 
    min-height: 320px !important;
    
    display: flex !important;
    flex-direction: column !important;
    
    /* THE LIFT: Switch to center to avoid the 'Bottom 20%' blowout */
    justify-content: center !important; 
    align-items: center !important;
    text-align: center !important;
    
    /* Resetting all previous experiments */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
}

.hero h1, .article-hero h1 {
    font-size: 1.85rem !important;
    line-height: 1.2 !important;
    padding: 0 10% !important;
    margin: 0 !important;
    z-index: 10;
}

/* 3. TRIP LAB / TELEMETRY (The 2x2 Grid) */
.trip-lab {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; 
    
    /* Pulls the box up slightly to 'stitch' it to the image */
    margin: -30px 6% 30px !important; 
    
    padding: 15px !important;
    background: var(--card-surface) !important;
    border-left: 2px solid var(--terracotta) !important;
    height: auto !important;
}

.lab-item { padding: 5px !important; }
.lab-label { font-size: 0.45rem !important; }
.lab-value { font-size: 0.75rem !important; }

/* 4. LANDING PAGE GRID (Single Column) */
.grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    padding: 0 6% !important;
}

.trip-card {
    width: 100% !important;
}

/* 5. FIELD NOTES (The '...' Ellipsis Protection) */
.note-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    padding: 15px 0 !important;
}

.note-title {
    max-width: 100% !important;
    white-space: normal !important; 
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
}

/* 6. GHOST CARD / ADS */
.ad-placeholder {
    height: 180px !important;
}

