.portrait-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.portrait {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin: 20px;
  width: 175px;
  max-width: calc(100% - 20px - 20px);
  text-decoration: none;
}

.portrait-links {
  display: flex;
  justify-content: space-between;
  margin-top: -15px;
}

.portrait[data-style=small] {
  width: 125px;
}

.portrait[data-style=tiny] {
  flex-direction: row;
  gap: 15px;
  width: unset;
  text-align: left;
}

.portrait-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.portrait[data-style=tiny] .portrait-image {
  width: 50px;
}

.portrait[data-style=tiny] .portrait-role {
  display: none;
}

.portrait-text {
  display: flex;
  flex-direction: column;
  line-height: calc(var(--spacing) - 0.4);
}

.portrait-name {
  white-space: nowrap;
  font-family: var(--heading);
  font-weight: var(--semi-bold);
}

.portrait-role .icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: var(--background);
  box-shadow: var(--shadow);
  transform: translate(14%, 14%);
}

.portrait[data-style=small] .portrait-role .icon {
  left: -2px;
  top: -2px;
}

.portrait[data-style=small] .portrait-role {
  font-size: 11px;
}

.portrait .portrait-role {
  font-size: 13px;
  font-weight: var(--regular);
  color: var(--text-light);
}

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