/* Title row */
.staff-slider .staff-slider-title { 
    width: 100%; 
    margin-bottom: 25px; 
}

/* Two-column wrapper */
.staff-slider .staff_slider_wrap {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 2.5rem 2rem;
}

/* First column: images grid */
.staff-slider .authors-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

/* Image items */
.staff-slider .authors-image {
    margin: 0 0.5rem;
    border-radius: 50%;
    overflow: hidden; /* 'hidden' for proper circle cropping (instead of invalid 'none') */
    padding: 0.5rem 0;
    cursor: pointer;
}
.staff-slider .authors-image img {
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 85px;
    height: 85px;
    transition: 300ms ease;
}
.staff-slider .authors-image.active img {
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.45);
    background: #fff;
    border: 1px solid #89B2B5;
    padding: 5px;
}

/* Second column: bios */
.staff-slider .authors-bio { 
    display: none; /* hide by default; show only when active */
}
.staff-slider .authors-bio.active {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.staff-slider .author-bio {
    width: calc(100% - 325px);
}
.staff-slider .author_featured_image_wrap {
    max-width: 290px;
    height: auto;
}
.staff-slider-title h2 {
    text-align: center;
}
.staff-slider i {
    font-style: italic;
 
}
.staff-slider strong {
    font-weight: bold;
 
}
@media screen and (max-width: 1040px) {
    .staff-slider .authors-images-grid {
        display: block;
        white-space: nowrap;
        overflow-x: scroll;
        height: 130px;
    }
    .staff-slider .staff_slider_wrap {
        display: block;
    }
    .staff-slider .authors-image {
        display: inline-block;
    }
    .staff-slider .author-bio {
        width: 100%;
        order: 2;
    }
    .staff-slider .author_featured_image_wrap {
        order: 1;
        margin-bottom: 25px;
    }
 

}