/* ==========================================================================
   PISTON TRIBE: EQUIPMENT PAGE STYLES
   ========================================================================== */

/* --- 1. HERO SECTION OVERRIDES --- */
.pt-home-hero.equipment-hub-hero {
    height: 60vh; 
    min-height: 500px;
    max-height: 800px;
    position: relative;
}

/* --- 2. HERO COLORS --- */

/* A. Overlay: Deep Industrial Blue/Grey */
.pt-home-hero.equipment-hub-hero .pt-overlay {
    background-color: rgba(40, 0, 10, 0.95); 
    background-image: none; 
    opacity: 1; 
}

/* B. Title Styling */
.pt-home-hero.equipment-hub-hero .pt-home-title.equipment-title {
    font-size: 64px; 
    margin-bottom: 25px;
    color: #ffffff; 
}

/* C. Subtitle Styling */
.pt-home-hero.equipment-hub-hero .pt-home-subtitle {
    color: #f0f0f0; 
    font-weight: 500;
}

/* D. Button Styling */
/*.pt-home-hero.equipment-hub-hero .pt-btn-hero-primary {
    background-color: #000000; 
    border: 2px solid #000000;
    color: #ffffff;
}

.pt-home-hero.equipment-hub-hero .pt-btn-hero-primary:hover {
    background-color: #cc0000; 
    border-color: #cc0000;
    color: #ffffff;
}

/* E. Tag Styling */
.pt-home-hero.equipment-hub-hero .pt-hero-inner span {
    background-color: #cc0000 !important; 
    color: #fff !important;
}

/* --- 3. GRIDS & CARDS --- */
.pt-grid-4 { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
}

.pt-grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.pt-grid-2 { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
}

/* --- 4. PROMO BANNERS (ADDED) --- */
/* This styling ensures the 'Tools Link' banner looks correct */
.pt-promo-banner-large {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
}

.pt-promo-banner-large .pt-overlay {
    /* Subtle gradient to make white text readable */
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 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;
    color: #fff;
}

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

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

@media (max-width: 768px) {
    .pt-grid-4, .pt-grid-3, .pt-grid-2 { grid-template-columns: 1fr; }
    
    .pt-home-hero.equipment-hub-hero { 
        height: 500px; 
    }
    
    .pt-home-title.equipment-title { 
        font-size: 42px; 
    }

    /* Responsive Banner Styles */
    .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); }
}