@media screen and (min-device-width: 901px){
    .about-the-author {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .about-the-author__column {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 50%;
        padding-top: 4rem;
    }
    .about-the-author__info {
    }
    .about-the-author__name {
        color: rgb(30, 30, 30);
        font-size: 3rem;
        font-weight: 700;
        line-height: 3.7rem;
    }
    .about-the-author__text {
        color: rgb(30, 30, 30);
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 2rem;
        padding-top: 1rem;
    }
    .social-bar {
        display: flex;
        justify-content: space-between;
        gap: 3rem;
        width: max-content;
    }
    .social-bar__icon {
        width: 6rem;
        height: 6rem;
        background-size: cover;
        transition-duration: 0.5s;
    }
    .social-bar__icon:hover{
        scale: 1.07;
    }
    .social-bar__icon:nth-of-type(1){
        background-image: url(/assets/images/yt.png);
    }
    .social-bar__icon:nth-of-type(2){
        background-image: url(/assets/images/vk.png);
    }
    .social-bar__icon:nth-of-type(3){
        background-image: url(/assets/images/tg.png);
    }
    .about-the-author__photo {
        height: 60rem;
        margin-top: -5rem;
    }
}

@media screen and (min-device-width: 320px) and (max-device-width: 900px)  {
    .about-the-author {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
    }
    .about-the-author__column {
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
    }
    .about-the-author__info {
    }
    .about-the-author__name {
        color: rgb(30, 30, 30);
        font-size: 3rem;
        font-weight: 700;
        line-height: 3.7rem;
    }
    .about-the-author__text {
        color: rgb(30, 30, 30);
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 2rem;
        padding-top: 1rem;
    }
    .about-the-author__photo {
        order: 0;
        width: 100%;
    }

    .social-bar {
        display: flex;
        justify-content: space-between;
        gap: 3rem;
        width: max-content;
        padding: 1.5rem;
    }
    .social-bar__icon {
        width: 6rem;
        height: 6rem;
        background-size: cover;
        transition-duration: 0.5s;
    }
    .social-bar__icon:hover{
        scale: 1.07;
    }
    .social-bar__icon:nth-of-type(1){
        background-image: url(/assets/images/yt.png);
    }
    .social-bar__icon:nth-of-type(2){
        background-image: url(/assets/images/vk.png);
    }
    .social-bar__icon:nth-of-type(3){
        background-image: url(/assets/images/tg.png);
    }
}