@charset "UTF-8";

.staff-card {
  display: flex;
  background-color: white;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.1);

  margin: 32px auto;
  justify-content: space-between;
  align-items: stretch;
}
@media only screen and (max-width: 760px) {
  .staff-card {
    flex-direction: column;
  }
}
.staff-thumb {
  padding: 24px;
  flex-grow: 1;
  flex-basis: 25%;
  background-color: rgba(255, 144, 104, 0.2);
}
@media only screen and (max-width: 760px) {
  .staff-thumb {
    display: grid;
    place-content: center;
  }
}
.staff-thumb img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 100px;
}
.staff-name {
  padding: 24px;
  flex-grow: 1;
  flex-basis: 25%;
}
.staff-prof {
  padding: 24px;
  flex-basis: 50%;
  flex-grow: 3;
}
@media only screen and (max-width: 760px) {
  .staff-prof {
    flex-basis: 100%;
  }
}
.staff-title {
  font-weight: 600;
  font-size: 24px;
}
.staff-job {
  font-weight: 300;
  font-size: 15px;
}
.staff-yomi {
  font-weight: 300;
  font-size: 13px;
}
