.person {
    display: flex;
    align-items: center;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.person__circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 10rem;
    width: 10rem;
    min-width: 10rem;
    background-color: #575756;
}

.person__avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    height: 7.5rem;
    width: 7.5rem;
    border: 0;
    object-fit: cover;
}

.person__info {
    margin-left: 6rem;
}

@media (max-width: 768px) {
    .person__info {
        margin-left: 0;
    }
}

.person__quote {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
}

.person__question {
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.person__name,
.person__institute {
    font-weight: 800;
    margin-bottom: 0.75rem;
}

@media (max-width: 990px) {
    .person {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .person__circle {
        transform: none;
    }
}