/* ==========================================
   STATIC & INFRASTRUCTURE SECURITY PAGE SPECIFIC STYLES
   TSB Protection Services
========================================== */

/* Override CTA Section to White for better separation */
.static-page .cta-section {
    background: #ffffff;
}

/* Optional: Add a subtle border-top to the CTA for separation */
.static-page .cta-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ------------------------------------------
   INDUSTRIES WE PROTECT SECTION
------------------------------------------ */
.industries-protect-section {
    padding: clamp(48px, 6vw, 80px) 0;
    background: #ffffff;
}

.industries-protect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.industries-protect-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.industries-protect-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.protect-list {
    list-style: none;
    padding: 0;
}

.protect-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.85rem;
    color: var(--color-text);
}

.protect-list li:last-child {
    border-bottom: none;
}

.protect-list li i {
    color: var(--color-primary);
    width: 22px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.industries-protect-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.industries-protect-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ------------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------------ */

/* Tablet portrait */
@media (max-width: 991px) {
    .industries-protect-grid {
        gap: 2rem;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .industries-protect-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industries-protect-image {
        order: -1;
    }
    
    .industries-protect-content h2 {
        font-size: 1.2rem;
    }
    
    .industries-protect-content p {
        font-size: 0.85rem;
    }
    
    .protect-list li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
}

/* Mobile portrait */
@media (max-width: 640px) {
    .protect-list li {
        gap: 0.6rem;
    }
    
    .protect-list li i {
        width: 18px;
        font-size: 0.75rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .protect-list li {
        font-size: 0.75rem;
    }
}