.author__box {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(11, 49, 57, 0.2) 0%, rgba(20, 124, 192, 0.2) 100%);
}

.author__image img{
    border-radius: 20px;
}

.author__position {
    font-size: 14px;
    margin: 0;
    line-height: 140%;
}

.author__social-networks {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.author__social-network {
    display: flex;
}


.author__list {
    display: flex;
    flex-wrap: wrap;
}

.author__list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1E2A35;
    padding: 12px 14px;
    border-radius: 20px;
}

.author__list-icon {
   flex-shrink: 0;
}

.author__list-icon img{
    width: 24px;
    height: 24px;
}

.author__list-name {
    line-height: 150%;
}

.author__footer {
    border: 1px solid #1E2A35;
    padding: 20px;
    border-radius: 32px;
    display: flex;
    gap: 40px;
}

.author__footer-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    text-align: center;
}

.author__footer-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.author__footer-rate {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    justify-content: center;
}

.author__footer-rate picture {
    display: flex;
}

.author__footer-stars {
    max-height: 24px;
}

.author__button {
    min-width: 200px;
    font-size: 18px;
}

@media screen and (min-width: 991px) {
    .author {
        margin-top: 90px;
    }

    .author__box {
        padding: 24px;
    }

    .author__top {
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
    }

    .author__name {
        margin-bottom: 12px;
    }

    .author__body-header {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 42px;
    }

    .author__social-network img{
        width: 32px;
        height: 32px;
    }

    .author__list {
        gap: 20px;
        max-width: 450px;
    }

    .author__image {
        flex-basis: 240px;
    }

    .author__body {
        flex-basis: 982px;
    }

    .author__footer {
        margin-top: 40px;
        max-width: 806px;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
    }

    .author__footer-image {
        flex-basis: 160px;
        flex-shrink: 0;
    }

    .author__footer-body {
        flex-basis: 326px;
    }

    .author__button {
        flex-basis: 200px;
    }

    .author__name-wrap-mobile {
        display: none;
    }

    .author__social-networks-mobile {
        display: none;
    }
}

@media screen and (max-width: 990.98px) {
    .author {
        margin-top: 60px;
    }

    .author__box {
        padding: 24px 16px;
    }

    .author__name {
        margin-bottom: 14px;
    }

    .author__social-network img{
        width: 44px;
        height: 44px;
    }

    .author__list {
        gap: 14px;
        flex-direction: column;
    }

    .author__top {
        margin-bottom: 20px;
    }

    .author__footer {
        margin-top: 60px;
        flex-direction: column;
        align-items: center;
    }

    .author__name-wrap, .author__social-networks {
        display: none;
    }

    .author__name-wrap-mobile {
        display: block;
    }

    .author__social-networks-mobile {
        display: flex;
        justify-content: center;
    }

    .author__image {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .author__text p {
        font-size: 14px;
    }
}