  .supervisor {
    border: 1px solid #efefef;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 45px;
    padding: 8px 12px;
    box-shadow: 2px 2px 2px 2px gray;
  }

  .supervisor:hover {
    opacity: 0.5;
  }

  .supervisor-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  @media only screen and (max-width: 767px) {
    .supervisor-wrap {
      flex-direction: column;
    }
  }

  .supervisor-wrap figure {
    flex-shrink: 0;
  }

  .supervisor-wrap figure img {
    border-radius: 9999px;
    height: 150px;
    object-fit: cover;
    object-position: top;
    width: 150px;
  }

  @media only screen and (max-width: 767px) {
    .supervisor-wrap figure img {
      height: 180px;
      width: 180px;
    }
  }

  .supervisor-wrap figure .label {
    align-items: center;
    background-color: #313131;
    bottom: 10px;
    color: #ffffff;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 18px;
    justify-content: center;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    right: 0;
    text-align: center;
    width: 80px;
  }

  .supervisor-wrap figure .label::before,
  .supervisor-wrap figure .label::after {
    border-style: solid;
    content: '';
    position: absolute;
    top: 0;
  }

  .supervisor-wrap figure .label::before {
    border-color: transparent transparent transparent #ffffff;
    border-width: 9px 0 9px 3px;
    left: 0;
  }

  .supervisor-wrap figure .label::after {
    border-color: transparent #ffffff transparent transparent;
    border-width: 9px 3px 9px 0;
    right: 0;
  }

  .supervisor-texts {
    display: flex;
    gap: 4px;
    flex-direction: column;
  }

  .supervisor-texts dl {
    display: flex;
    gap: 4px;
    font-weight: bold;
    flex-direction: column;
  }

  .supervisor-texts dl dt {
    font-size: 12px;
  }

  .supervisor-texts dl dd {
    font-size: 16px;
  }

  .supervisor-texts dl dd::after {
    font-size: 16px;
    position: relative;
  }

  .supervisor-texts dl dd span {
    position: relative;
  }

  .supervisor-texts dl dd span::before,
  .supervisor-texts dl dd span::after {
    content: "";
    position: absolute;
    top: calc(50% - 0px);
    right: -20px;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    background-color: gray;
    transform-origin: calc(100% - 1px) 50%;
  }

  .supervisor-texts dl dd span::before {
    transform: rotate(45deg);
  }

  .supervisor-texts dl dd span::after {
    transform: rotate(-45deg);
  }

  .supervisor-texts p {
    font-size: 12px;
  }