/**
 * Team Section Image Size Fix
 * Ensures all team member images have consistent dimensions
 */

.team-author-boxarea .img1 {
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-author-boxarea .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .team-author-boxarea .img1 {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .team-author-boxarea .img1 {
        height: 300px;
    }
}
