.docentes-grid-container {
    position: relative;
}

.docentes-grid-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
    gap: 32px;
}

.docente-item {
    padding: 0;
    text-align: left;


    h4 {
        margin: 24px 0 0;
    }
}

/* .docente-image img {
    width: 100%;
    max-width: 256px;
    height: auto;
    border-radius: 30px;
} */

.docente-image {
    width: 100%;
    height: 256px;
    max-width: 256px;
    max-height: 256px;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.docente-meta {
    & a {
        color: #000000;
        text-decoration: none;
    }

    & p {
        margin: 0;
    }

    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.docentes-pagination {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;

    align-items: center;
}

.docentes-pagination .page-numbers {
    /* padding: 8px 12px; */
    margin: 0 5px;
    border: 1px solid #000000;
    text-decoration: none;
    border: 1px solid #000000;
    text-decoration: none;
    max-width: 40px;
    max-height: 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    border-radius: 50%;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-weight: bold;
    color: #000;
    font-size: 1rem;
    font-weight: 800;
}

.docentes-pagination a.page-numbers.next,
.docentes-pagination a.page-numbers.prev {
    border: none;
}

.docentes-pagination .current {
    background: #000000;
    color: #fff;
}

.docentes-grid-container.loading::before {
    content: 'Carregando...';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}