.staff-section {
  width: 100%;
  height: auto;
  background: #fafafa;
  padding: 120px 40px;
}
@media only screen and (max-width: 768px) {
  .staff-section {
    padding: 80px 40px;
  }
}

.staff-section__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.staff-section__heading {
  position: relative;
  text-align: center;
  color: #222;
  font-size: 38px;
}
@media only screen and (max-width: 768px) {
  .staff-section__heading {
    font-size: 26px;
  }
}

.staff-section__heading::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 6px;
  background: #005a87;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.staff-section__desc {
  line-height: 2.2;
  text-align: center;
  margin-top: 80px;
}

.staff-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 64px;
}

.staff-card__img {
  width: 100%;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.8);
}

.staff-card__name {
  color: #222;
  padding-left: 16px;
  border-left: 6px solid #005a87;
  margin: 32px 0 24px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .staff-card__name {
    font-size: 1.5rem;
  }
}

.staff-card__en-name {
  font-size: 1.2rem;
  color: #555;
  font-style: italic;
  font-weight: lighter;
  letter-spacing: 1.2px;
}
@media only screen and (max-width: 768px) {
  .staff-card__en-name {
    font-size: 1.1rem;
  }
}


.staff-card__role {
  margin-bottom: 24px;
}

.staff-card__profile > p {
  text-align: justify;
  line-height: 2;
}
