.md-staff-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 24px;
}

.md-staff-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(66, 232, 255, .16), transparent 34%),
        radial-gradient(circle at 50% 82%, rgba(255, 211, 91, .14), transparent 38%);
    pointer-events: none;
}

.md-staff-card__skin {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: end center;
    height: 260px;
    margin: 0 auto 18px;
    border: 1px solid rgba(66, 232, 255, .24);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    overflow: hidden;
}

.md-staff-card__skin img {
    width: min(190px, 86%);
    max-height: 238px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .42));
    transition: transform .22s var(--ease), filter .22s var(--ease);
}

.md-staff-card:hover .md-staff-card__skin img {
    transform: translateY(-4px) scale(1.03);
    filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .48));
}

.md-staff-card__skin span {
    display: none;
}

.md-staff-card__skin.is-missing-skin img {
    display: none;
}

.md-staff-card__skin.is-missing-skin span {
    width: 104px;
    height: 104px;
    margin: auto;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(66, 232, 255, .18), rgba(255, 211, 91, .18));
    border: 1px solid rgba(66, 232, 255, .28);
    font-size: 42px;
    font-weight: 900;
}

.md-staff-card h3,
.md-staff-card p,
.md-staff-card__profile {
    position: relative;
    z-index: 1;
}

.md-staff-card h3 {
    margin: 0;
    font-size: 24px;
}

.md-staff-card p {
    margin: 4px 0 12px;
    color: #ffd35b;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.md-staff-card__profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(66, 232, 255, .28);
    border-radius: 999px;
    color: #dbfbff;
    background: rgba(66, 232, 255, .08);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

@media (max-width: 620px) {
    .md-staff-card__skin {
        height: 240px;
    }
}
