/* ==========================================================================
   PISTON TRIBE: OUTDOOR VEHICLES HUB (UPDATED)
   ========================================================================== */

/* --- 1. HERO SECTION OVERRIDES --- */
.pt-home-hero.outdoor-hub-hero {
    height: 60vh; 
    min-height: 500px;
    max-height: 800px;
}
.pt-home-title.outdoor-title {
    font-size: 64px; 
    margin-bottom: 25px;
}

/* --- 2. GRID SYSTEMS --- */
/* 5-Column Grid for Off-Road */
.pt-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* 2-Column Grid (Urban) */
.pt-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* Wider gap for feature cards */
}

/* --- 3. PROMO BANNERS --- */

/* Single Hero Banner (Mobility & Caravans) */
.pt-promo-banner-large {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Left Aligned Text */
    text-decoration: none;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
}

.pt-promo-banner-large .pt-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.pt-banner-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 600px;
    color: #fff;
}

.pt-banner-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1;
}

.pt-banner-desc {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
}

/* Split Hero (Hovercrafts) */
.pt-split-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.pt-split-card {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.pt-split-card .pt-overlay {
    background: rgba(0,0,0,0.5);
    transition: 0.3s;
}
.pt-split-card:hover .pt-overlay { background: rgba(0,0,0,0.3); }

.pt-split-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: #fff;
}


/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .pt-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .pt-grid-5 { grid-template-columns: repeat(2, 1fr); }
    .pt-grid-2 { grid-template-columns: 1fr; }
    
    .pt-promo-banner-large { height: 400px; justify-content: center; text-align: center; }
    .pt-banner-content { padding: 30px; }
    .pt-promo-banner-large .pt-overlay { background: rgba(0,0,0,0.6); }
    
    .pt-split-hero-grid { grid-template-columns: 1fr; height: auto; gap: 15px; }
    .pt-split-card { height: 300px; }
}