#w-staff {
    width: clamp(280px, 38vw, 400px);
}

.staff-card {
    display: flex;
    flex-direction: column;
    background: var(--blue);
}

.staff-card-top {
    position: relative;
    min-height: clamp(160px, 22vw, 220px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.staff-card-top-bg {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
    background-size: 14px 14px;
}

.staff-card-sweep {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 65%;
    height: 130%;
    border-radius: 50%;
    opacity: 0.25;
}

.staff-card-art {
    position: relative;
    width: clamp(140px, 55%, 220px);
    height: clamp(160px, 22vw, 220px);
    object-fit: contain;
    object-position: bottom;
    z-index: 1;
    filter: drop-shadow(2px 0 0 rgba(0, 0, 0, .08));
}

.staff-card-art-fallback {
    position: relative;
    width: clamp(140px, 55%, 220px);
    height: clamp(160px, 22vw, 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(50px, 8vw, 80px);
    z-index: 1;
}

.staff-card-name {
    position: absolute;
    top: 50%;
    right: clamp(8px, 2vw, 16px);
    transform: translateY(-50%);
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(14px, 2.8vw, 22px);
    color: white;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .35);
    text-align: right;
    z-index: 2;
    max-width: 48%;
    line-height: 1.6;
    word-break: break-word;
}

.staff-card-info {
    background: white;
    margin: 0 clamp(8px, 2vw, 14px) clamp(8px, 2vw, 14px);
    margin-top: -14px;
    border-radius: 16px;
    border: 3px solid var(--dark);
    padding: clamp(10px, 2vw, 16px);
    position: relative;
    z-index: 2;
}

.staff-card-role {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(6px, 1vw, 9px);
    color: var(--pink);
    text-decoration: underline;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.staff-card-desc {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(5.5px, 0.85vw, 7.5px);
    color: var(--dark);
    line-height: 2.1;
    text-align: justify;
}

.staff-nav {
    display: flex;
    justify-content: flex-end;
    background: var(--blue);
    padding: 5px 9px;
    border-top: 2px solid var(--dark);
}

.sarr {
    background: white;
    border: 2px solid var(--dark);
    border-radius: 6px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sarr:hover {
    background: var(--pink);
    color: white;
}
