.section-people-cards .people-group:nth-child(n+2) {
    display: none;
}

.section-people-cards .people-grid {
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: 1fr;
}

.section-people-cards .people-grid > .person-card {
    background-color: var(--color-background-standard);
    border: 1px solid var(--color-border);
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.section-people-cards .people-grid > .person-card .person-image {
    aspect-ratio: 3 / 2;
    background-color: transparent;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    width: 100%;
}

.section-people-cards .people-grid > .person-card .person-image:has(.person-image-back):hover .person-image-inner {
    transform: rotateY(180deg);
}

.section-people-cards .people-grid > .person-card .person-image .person-image-inner {
    height: 100%;
    position: relative;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.8s;
    width: 100%;
}

.section-people-cards .people-grid > .person-card .person-image .person-image-inner .person-image-front, 
.section-people-cards .people-grid > .person-card .person-image .person-image-inner .person-image-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

.section-people-cards .people-grid > .person-card .person-image .person-image-inner .person-image-back {
    transform: rotateY(180deg);
}

.section-people-cards .people-grid > .person-card .person-image img {
    border: 0;
    border-radius: 0;
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.75s;
    width: 100%;
}

.section-people-cards .people-grid > .person-card .person-image img:first-of-type {
    z-index: 100;
}

.section-people-cards .people-grid > .person-card .person-image img:last-of-type:not(:first-of-type) {
    display: none;
    z-index: 101;
}

.section-people-cards .people-grid > .person-card .person-content {
    padding-bottom: 3rem;
    position: relative;
}

.section-people-cards .people-grid > .person-card .person-content .bio {
    padding: 0.75rem 1.5rem;
}

.section-people-cards .people-grid > .person-card .person-content h4 {
    font-size: var(--font-size-heading-3);
    font-weight: var(--font-weight-light);
    margin-bottom: 0.125rem;
}

.section-people-cards .people-grid > .person-card .person-content h4 + p {
    font-size: var(--font-size-smaller);
    font-weight: var(--font-weight-bold);
    letter-spacing: calc(2 * var(--tracking-basis));
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-people-cards .people-grid > .person-card .person-content .bio-short p:last-of-type, 
.section-people-cards .people-grid > .person-card .person-content .bio-long p:last-of-type {
    margin-bottom: 0;
}

.section-people-cards .people-grid > .person-card .person-content .bio-long {
    display: none;
}

.section-people-cards .people-grid > .person-card .bio-link {
    align-items: center;
    border-top: 1px solid var(--color-border);
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    left: 0;
    padding: 0.75rem 1.5rem;
    position: absolute;
    text-align: left;
    width: 100%
}

.section-people-cards .people-grid > .person-card .bio-link button {
    background-color: transparent;
    border: 0;
    color: var(--color-link-normal);
    cursor: pointer;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
    padding: 0;
    text-align: left;
}

.section-people-cards .people-grid > .person-card .bio-link button:hover {
    color: var(--color-link-hover);
}

.section-people-cards .people-grid > .person-card + .overlay .overlay-wrapper {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    place-content: center;
    width: 100%;
}

.section-people-cards .people-grid > .person-card + .overlay .content {
    border: 1px solid var(--color-dark-border);
    border-radius: 0;
    margin: 0 auto;
    max-height: 90%;
    max-width: 24rem;
    overflow-x: hidden;
    overflow-y: auto;
    top: auto;
    transform: none;
    width: 90%;
}

.section-people-cards .overlay .content .overlay-bio .flex-box > div {
    flex: none;
    width: 100%;
}

.section-people-cards .overlay .content .overlay-bio .flex-box > div:first-of-type img {
    aspect-ratio: 4 / 3;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-width: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.section-people-cards .overlay .content .overlay-bio .flex-box > div:last-of-type {
    padding: 1.5rem;
}

.section-people-cards .overlay .content .overlay-bio .flex-box > div:last-of-type .bio-overlay-name {
    font-family: var(--font-header);
    font-size: var(--font-size-heading-2);
    font-weight: var(--font-weight-light);
    margin-bottom: 0.125rem;
}

.section-people-cards .overlay .content .overlay-bio .flex-box > div:last-of-type .bio-overlay-name  span {
    font-weight: var(--font-weight-semibold);
}

.section-people-cards .overlay .content .overlay-bio .flex-box > div:last-of-type .bio-overlay-role {
    font-size: var(--font-size-smaller);
    font-weight: var(--font-weight-bold);
    letter-spacing: calc(2 * var(--tracking-basis));
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-people-cards .overlay .content .overlay-bio .flex-box > div:last-of-type .bio-long p:last-of-type {
    margin-bottom: 0;
}

.section-people-cards .overlay .content .overlay-bio .flex-box > div:last-of-type .closer {
    padding-top: 1.5rem;
}

.section-people-cards .overlay .content .overlay-bio .flex-box > div:last-of-type .closer button {
    background-color: var(--color-link-normal);
    border: 0;
    border-radius: 100vw;
    box-shadow: none;
    color: var(--color-background-standard);
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-bold);
    margin: 0;
    padding: 0.75rem 1.5rem;
    place-content: center;
    width: max-content;
}

.section-people-cards .overlay .content .overlay-bio .flex-box > div:last-of-type .closer button:hover {
    background-color: var(--color-link-hover);
}

.section-people-cards .people-grid-condensed {
    display: grid;
    grid-gap: 1.5rem;
    margin-top: 1rem;
}

.section-people-cards .people-grid-condensed > .flex-box {
    align-items: center;
}

.section-people-cards .people-grid-condensed > .flex-box > div:first-of-type {
    margin-right: 1rem;
    width: 6rem;
}

.section-people-cards .people-grid-condensed > .flex-box > div:first-of-type img {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-border);
    border-radius: 100vw;
    display: block;
    object-fit: cover;
    object-position: center;
}

.section-people-cards .people-grid-condensed > .flex-box > div:last-of-type {
    flex: 1;
}

.section-people-cards .people-grid-condensed > .flex-box > div:last-of-type .person-name {
    font-family: var(--font-header);
    font-size: var(--font-size-heading-4);
    font-weight: var(--font-weight-light);
    margin: 0;
}

.section-people-cards .people-grid-condensed > .flex-box > div:last-of-type .person-role {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-medium);
    letter-spacing: calc(2 * var(--tracking-basis));
    margin: 0;
    text-transform: uppercase;
}

.section-people-cards .author-block {
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

.section-people-cards .author-block:first-of-type {
    padding-top: 0;
}

.section-people-cards .author-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.125rem;
}

.section-people-cards .author-block h5 {
    font-family: var(--font-body);
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
}

.section-people-cards .author-block .author-books {
    display: grid;
    gap: 1rem;
}

.section-people-cards .author-block .author-books-1, 
.section-people-cards .author-block .author-books-2 {
    grid-template-columns: 100%;
}

.section-people-cards .author-block .author-books > .flex-box {
    gap: 1rem;
    width: 100%;
}

.section-people-cards .author-block .author-books > .flex-box > div:first-of-type, 
.section-people-cards .author-block .author-books > .flex-box > div:first-of-type img {
    width: 6rem;
}

.section-people-cards .author-block .author-books > .flex-box > div:first-of-type img {
    border: 1px solid var(--color-border);
}

.section-people-cards .author-block .author-books > .flex-box > div:last-of-type {
    flex: 1;
}

.section-people-cards .author-block .author-books > .flex-box > div:last-of-type h6 {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: var(--font-weight-normal);
    line-height: 1.25;
    margin-bottom: 0.125rem;
}

.section-people-cards .author-block .author-books > .flex-box > div:last-of-type h6 + p {
    line-height: 1.25;
    margin-bottom: 0.25rem;
}

.section-people-cards .author-block .author-books > .flex-box > div:last-of-type h6 + p + a {
    display: block;
}

@media (min-width: 40rem) { /* 640 px */
    .section-people-cards .people-grid-condensed {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width: 48rem) { /* 768 px */
    .section-people-cards .people-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .section-people-cards .people-grid > .person-card {
        max-width: 100%;
    }

    .section-people-cards .people-grid > .person-card .person-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .section-people-cards .author-block {
        padding: 1.5rem 0 2.5rem 0;
    }
    
    .section-people-cards .author-block h4 {
        font-size: var(--font-size-heading-4);
    }

    .section-people-cards .author-block .author-books-2 {
        gap: 2rem;
        grid-template-columns: repeat(2,1fr);
    }
    
    .section-people-cards .author-block .author-books > .flex-box > div:first-of-type, 
    .section-people-cards .author-block .author-books > .flex-box > div:first-of-type img {
        width: 8rem;
    }
    
    .section-people-cards .author-block .author-books > .flex-box > div:last-of-type h6 {
        font-size: 1.25rem;
        line-height: 1.333;
        margin-bottom: 0.5rem;
    }
    
    .section-people-cards .author-block .author-books > .flex-box > div:last-of-type h6 + p {
        line-height: 1.333;
        margin-bottom: 0.5rem;
    }
    
    .section-people-cards .author-block .author-books > .flex-box > div:last-of-type h6 + p + a {
        display: block;
    }
}

@media (min-width: 61.875rem) { /* 990 px */
    .section-people-cards .people-grid > .person-card + .overlay .content {
        max-width: 48rem;
    }

    .section-people-cards .overlay .content .overlay-bio .flex-box > div:first-of-type {
        padding: 1.5rem 0.5rem 0 1.5rem;
        width: 25%;
    }

    .section-people-cards .overlay .content .overlay-bio .flex-box > div:last-of-type {
        flex: 1;
        padding-left: 1rem;
        width: auto;
    }
}

@media (min-width: 64rem) { /* 1024 px */
    .section-people-cards .people-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

