.author-box{
    margin: 0 0 20px;
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    box-shadow: 2px 10px 45px rgba(25, 41, 75, .1);
    gap: 25px;
}
.author-photo{
    margin: 0 auto;
}
.author-photo img{
    max-width: none; 
    border-radius: 50%;
}
.author-text{
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 5px;
}
.author-name a{
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    color: #000;
    transition: all 0.3s ease;
}
.author-name a:hover{
    color: #0095ff;
}
.author-bio{
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
}
.justify-center .stk-3af6888-horizontal-scroller{
    justify-content: space-between;
}
@media(max-width: 768px){
    .author-box{
        flex-direction: column;
    } 
    .author-text{
        text-align: center;
    }
    .author-name{
        text-align: center;
    }
}