body.interior:not(.gamburd) #content {
    margin-bottom: 0;
    padding-bottom: 4em;
}

.staffApp h1,
.staffApp .intro-text * {
    text-align: center;
}

main .wrap {
    max-width: 100em;
}

main .wrap #content {
    max-width: 100%;
}

.content .staff-members {
    display: flex;
    flex-wrap: wrap;
    gap: 4em 3em;
    justify-content: center;
    margin: 3em 0;
}

.content .staff-members li {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 0;
    text-align: center;
    width: calc(17% - 0.75em);
}

.content .staff-members li:before {
    display: none;
}

.content .staff-members li figure > img {
    aspect-ratio: 1;
    border: 4px solid var(--yellow);
    border-radius: 50%;
    display: block;
    margin: 0 auto 0.5em;
    object-fit: cover;
    object-position: center;
}

.content .staff-members li h2 {
    font-style: normal;
    font-weight: 700;
    margin-bottom: 0.25em;
}

.content .staff-members li p {
    color: var(--grey);
    font-style: normal;
    margin: 0;
}

.content .staff-members li .actions {
    display: flex;
    gap: 0.5em;
    justify-content: center;
    margin-top: 1em;
}

.content .staff-members li .icon-link {
    align-items: center;
    aspect-ratio: 1;
    background: var(--light-blue);
    border-radius: var(--border-radius);
    display: inline-flex;
    height: 2.5em;
    justify-content: center;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    vertical-align: middle;
    width: 2.5em;
}

.content .staff-members li .icon-link:is(:hover, :focus-visible) {
    background: var(--dark-blue);
}

.content .staff-members li .icon-link img {
    border: 0;
    border-radius: 0;
    display: block;
    filter: invert(1);
    height: auto;
    max-height: 75%;
    max-width: 75%;
    width: auto;
}

.content .staff-member {
    margin-inline: auto;
    max-width: 50em;
}

.content .staff-member .staff-header {
    align-items: center;
    background: var(--light-blue-grey-2);
    border-radius: var(--border-radius);
    display: flex;
	gap: 1em;
    justify-content: space-between;
    padding: clamp(1rem, 0.682rem + 1.59vw, 1.875rem);
}

.content .staff-member .staff-header h1 {
    text-align: left;
	margin-bottom: 0.125em;
}

.content .staff-member .staff-header img {
    border-radius: var(--border-radius);
    display: block;
    height: auto;
    max-width: 9em;
}

.content .staff-member .photoright {
    border-radius: var(--border-radius);
    max-width: 30%;
}

textarea {
    min-height: 10ch;
}

/* 1160px */
@media (max-width: 72.5em) {
    .content .staff-members li {
        width: calc(22% - 0.75em);
    }
}

/* 950px */
@media (max-width: 59.375em) {
    .content .staff-members li {
        width: calc(30% - 0.75em);
    }
}

/* 749px */
@media (max-width: 46.8125em) {

    .content .staff-member .staff-header {
        flex-direction: column-reverse;
		text-align: center;
    }

    .content .staff-member .staff-header h1 {
		text-align: center;
    }

}

/* 650px */
@media (max-width: 40.625em) {
    .content .staff-members {
        gap: 2em;
    }

    .content .staff-members li {
        width: calc(50% - 1em);
    }
}

/* 400px */
@media (max-width: 25em) {
    .content .staff-members li {
        width: 100%;
    }

    .content .staff-members li img {
        max-width: 11.25em;
    }
}