.cast {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cast-item {
  width: 21%;
  margin: 0 0 2rem;
}

.cast-thumb {
  position: relative;
  line-height: 0;
}

.cast-item p {
  margin: 0.3rem 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.cast-social {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon {
  width: 12%;
  margin: 1rem 0.5rem 0;
}

@media screen and (min-width: 1px) and (max-width: 743px) {
  .cast-item {
    width: 44%;
    margin: 0 0 2rem;
  }

  .cast-item p {
    margin: 0.5rem 0 0;
    font-size: 3.733vw;
  }


  .social-icon {
    width: 18%;
    margin: 0.6rem 0.5rem 0;
  }
}

@media screen and (min-width: 744px) and (max-width: 1024px) {
  .cast-item p {
    font-size: 1.823vw;
  }

  .social-icon {
    width: 18%;
    margin: 1rem 0.5rem 0;
  }

}