/*
 * Service Images Fix
 * One Sphere Solutions
 * Reduces the size of images on all service pages (legal, it, hr, accounting, marketing, health-and-safety)
 */

/* Reduce the size of the service icon in the header */
.legal-header-right {
    width: 100px; /* Reduced from original size */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.legal-services-icon {
    max-width: 60px; /* Reduced from 80px */
    height: auto;
}

/* Reduce the height of the full-width content image */
.legal-content-image {
    width: 100%;
    max-height: 400px; /* Reduced from 800px */
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.legal-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .legal-content-image {
        max-height: 350px;
    }
    
    .legal-header-right {
        width: 90px;
    }
    
    .legal-services-icon {
        max-width: 55px;
    }
}

@media (max-width: 768px) {
    .legal-content-image {
        max-height: 250px;
    }
    
    .legal-header-right {
        width: 80px;
        margin-top: 10px;
    }
    
    .legal-services-icon {
        max-width: 50px;
    }
}

@media (max-width: 576px) {
    .legal-content-image {
        max-height: 180px;
    }
    
    .legal-header-right {
        width: 70px;
    }
    
    .legal-services-icon {
        max-width: 45px;
    }
}

@media (max-width: 480px) {
    .legal-content-image {
        max-height: 150px;
    }
    
    .legal-header-right {
        width: 60px;
    }
    
    .legal-services-icon {
        max-width: 40px;
    }
}
