.staff-block .staff__image {
  position: relative;
  margin-bottom: clamp(10px, calc(0.625vw + 8px), 20px);
  border-radius: 10px;
  overflow: hidden;
}

.staff-block .staff__image:after {
  content: "";
  display: block;
  padding-bottom: 89%;
}

.staff-block .staff__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.staff-block .staff__experience {
  position: absolute;
  bottom: clamp(10px, calc(0.625vw + 8px), 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: var(--secondary);
  border-radius: 10px;
  padding: 5px 10px;
  max-width: 100%;
  width: -moz-max-content;
  width: max-content;
  --color: var(--white);
  text-align: center;
}

.staff-block .staff__name {
  text-align: center;
}

.staff-block .staff__name:not(:last-child) {
  margin-bottom: 5px;
}

.staff-block .staff__post {
  --color: var(--gray);
  text-align: center;
}

/*# sourceMappingURL=block.css.map */