/* ==========================================
   REMOTE ASSET PROTECTION PAGE SPECIFIC STYLES
   TSB Protection Services
========================================== */

/* Override CTA Section to White for better separation */
.remote-page .cta-section {
    background: #ffffff;
}

/* Optional: Add a subtle border-top to the CTA for separation */
.remote-page .cta-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ------------------------------------------
   OPERATING AREAS SECTION
------------------------------------------ */
.operating-areas-section {
    padding: clamp(48px, 6vw, 80px) 0;
    background: #ffffff;
}

.operating-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.operating-areas-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;
}

.operating-areas-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.area-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.area-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.area-highlight i {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 28px;
}

.area-highlight h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.area-highlight p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}

.operating-areas-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.operating-areas-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ------------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------------ */

/* Tablet portrait */
@media (max-width: 991px) {
    .operating-areas-grid {
        gap: 2rem;
    }
    
    .area-highlights {
        gap: 1rem;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .operating-areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .operating-areas-image {
        order: -1;
    }
    
    .operating-areas-content h2 {
        font-size: 1.2rem;
    }
    
    .operating-areas-content p {
        font-size: 0.85rem;
    }
    
    .area-highlight {
        gap: 0.75rem;
    }
    
    .area-highlight i {
        font-size: 1rem;
        width: 24px;
    }
    
    .area-highlight h4 {
        font-size: 0.85rem;
    }
    
    .area-highlight p {
        font-size: 0.75rem;
    }
}

/* Mobile portrait */
@media (max-width: 640px) {
    .area-highlight {
        gap: 0.6rem;
    }
    
    .area-highlight i {
        width: 20px;
        font-size: 0.9rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .area-highlight h4 {
        font-size: 0.8rem;
    }
    
    .area-highlight p {
        font-size: 0.7rem;
    }
}