.staff-skin {
  margin: 0;
  position: relative;
  overflow: hidden;
  display: block;
  background:
    radial-gradient(circle at 30% 18%, rgba(246, 196, 83, .32), transparent 36%),
    linear-gradient(145deg, #fff7ed 0%, #f5e6d3 100%);
  border: 1px solid rgba(217, 119, 6, .28);
  box-shadow: 0 12px 26px rgba(74, 47, 29, .14);
}

.staff-skin img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.staff-skin figcaption {
  display: none;
}

.staff-skin-card {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  flex: 0 0 50px;
}

.card .staff-skin-card {
  align-self: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover .staff-skin-card,
.card:focus-visible .staff-skin-card {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 16px 30px rgba(74, 47, 29, .18);
}

.card.admin .staff-skin-card {
  border-color: rgba(31, 78, 121, .24);
  background:
    radial-gradient(circle at 30% 18%, rgba(91, 155, 213, .22), transparent 36%),
    linear-gradient(145deg, #f8fbff 0%, #fff8df 100%);
}

.module-header-skin {
  display: block;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
}

.module-header-skin.empty {
  display: none;
}

.module-header-skin .staff-skin-header {
  width: 66px;
  height: 66px;
  border-radius: 22px;
}

.module-home .profile-name-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 16px;
}

.module-home .profile-name-panel > span {
  min-width: 0;
}

@media (max-width: 780px) {
  .staff-skin-card {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .module-header-skin,
  .module-header-skin .staff-skin-header {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .module-home .profile-name-panel {
    justify-content: flex-start;
  }
}
