.listagem-banner {
    margin-top: 1.875rem !important;
}

.container-inferior-autor {
    margin-top: 100px;

    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 30px;
}

.listagem-autor {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.about-author-desktop {
    max-width: 300px;
    margin-bottom: 1.875rem;
}

.about-author-center {
    margin-top: 1.25rem;
    display: none;
}

.about-author {
    background: #f3f3f3;
    padding: 1.25rem;
    border-radius: 10px;

    grid-column: 2;
    grid-row: 1;

    font-family: 'Roboto Condensed';
    color: var(--textdescimg);
}

.about-author h2 {
    font-size: 18px;
    line-height: 22px;
    color: var(--graydefault);
    font-weight: bold;
    margin-bottom: 0.625rem;
}

.about-author p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    color: var(--gray)
}

.banner-autor {
    grid-column: 2;
    grid-row: 2;
}

.profile-author {
    margin-top: calc(5.625rem + 1.875rem);
    gap: 0.625rem 1.25rem;
    flex-wrap: wrap;
    font-family: 'Roboto Condensed';
    padding-bottom: 1.875rem;
    border-bottom: 1px solid #F3F3F3;
}

.profile-author__image {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 5px;
}

.profile-author__info {
    display: flex;
    flex-direction: column;
    gap: 0.313rem;
    max-width: 380px;
}

.profile-author__info h2 {
    font-weight: bold;
    font-size: 30px;
    line-height: 34px;
    margin: 0;
}

.profile-author__info p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    color: var(--textdescimg);
}

.profile-author__links {
    margin-top: 0.313rem;
    gap: 0.313rem;
}

.profile-author__links img {
    width: 1.5rem;
    height: 1.5rem;
}


@media(max-width: 993px) {
    .listagem-banner {
        margin-top: 1.25rem !important;
    }

    .container-inferior-autor {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        margin-top: 30px;
    }

    .about-author-center {
        display: block;
    }

    .about-author-desktop {
        display: none;
    }

    .profile-author {
        padding-bottom: 1.25rem;
    }

    .about-author {
        margin-top: 0;
        grid-column: 1;
        grid-row: 1;
    }


    .listagem-autor {
        grid-column: 1;
        grid-row: 2;
    }

    .banner-autor {
        grid-column: 1;
        grid-row: 3;
    }
}