section {
    padding: var(--spacing-xl) 0;
    min-height: calc(100vh - var(--footer-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
}


figure {
    width: 80vw;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    top: -2rem;
    left: 50%;
    transform: translateX(-25%);
    margin: var(--spacing-md) auto 0 auto;
    margin-bottom: -20%;
}

figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {
    figure {
        width: unset;
        max-width: unset;
        height: 80vh;
        top: 50%;
        left: unset;
        right: 0;
        transform: translate(5%, -50%);
        margin: 0;
    }
}
@media (min-width: 992px) {
    figure {
        transform: translate(20%, -50%);
    }
}