/* Detail.Leader */
.staffmemberdetailheader {
    display: flex;
    column-gap: 1em;
    flex-wrap: wrap;
}

.staffmemberdetailheader img {
    border: 2px solid #717171;
    padding: 2px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px #b9b9b9;
    aspect-ratio: 1;
    object-fit: cover;
    background-color: #dfdfdf;
}

.staffmemberdetaildata dt {
    font-weight: 600;
}

.staffmemberdetaildata dd {
    margin: 0.53em 0 1.26em;
}

.staffmemberdetailoversees {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 3.5px;
}

.staffmemberdetailoversees a:not([href]) {
    background-color: black;
}
.staffmemberdetailoversees a {
    display: block;
    background-color: var(--samish-red);
    border-radius: 1em;
    padding: 2px 10px;
    color: white;
    position: relative;
    bottom: 0;
    transition: all 100ms ease-out;
}

.staffmemberdetailoversees a:hover {
    text-decoration: none;
}
.staffmemberdetailoversees a[href]:hover {
    background-color: var(--samish-red-brightened);
    bottom: 0.1em;
    box-shadow: 0px 0.1em 0.25em #d9d9d9;
}



/* List.Leader*/
.staffmemberlist {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    column-gap: 1.3em;
    row-gap: 1.3em;
    flex-wrap: wrap;
}

.staffmemberlistitem {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    justify-content: space-between;
    width: 264px;
    flex-grow: 1;
    max-width: 300px;
    box-shadow: 0px 1.8px 6px #a39999;
    background: hsl(0 0% 93% / 1);
}

.staffmemberlistitem > * {
    margin: 0;
    text-align: center;
}

.staffmembername {
    font-size: 1.5rem;
    margin-top: 9px;
    text-shadow: 0 0.333px 2px #fff, 0 2px 6px #d7d7d7, 0 2px 3px #AAA;
}

.staffmemberimg {
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    max-height: 150px;
    margin: 0.4em;
    box-shadow: 0px 2.8px 4px hsl(0 5% 75% / 1);
    padding: 2px;
    border: 1px solid #555;
}

.staffmembertitle {
    margin-inline: 2px;
    text-shadow: 0 1px 3px #ccc, 0 1px 6px #ddd;
}

.staffmembersummary {
    flex-grow: 1;
    margin: 0.1em 1.1em 0.55em;
    font-size: 0.7em;
    color: #555;
    text-shadow: 0 1px 3px #ccc;
    display: inline-flex;
    align-items: center;
}

.staffmemberdetailslink {
    background: var(--samish-red);
    color: white;
    width: calc(100% + 2.2px);
    font-size: 0.9em;
    border-radius: 0 0 6px 6px;
    transition: all 170ms ease-out;
    box-shadow: 0px 1.8px 6px hsl(0 5% 52% / 1);
}

a.staffmemberdetailslink:is(:hover,:focus) {
    text-decoration: none;
    background: var(--samish-red-brightened);
    transition: all 80ms ease-out;
}