.cm-staff {
  width: 100%;
  color: #333;
  word-break: keep-all;
}
.cm-staff__header {
  margin-bottom: 42px;
  text-align: center;
}
.cm-staff__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #43915a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.cm-staff__title {
  margin: 0;
  color: #1f2933;
  font-size: 34px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.cm-staff__description {
  margin: 12px 0 0;
  color: #7a847d;
  font-size: 16px;
  line-height: 1.7;
}
.cm-staff__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.cm-staff__item {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 290px;
  overflow: hidden;
  background: #f3f3f2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cm-staff__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 65, 45, 0.08);
}
.cm-staff__photo {
  width: 100%;
  height: 100%;
  min-height: 290px;
  overflow: hidden;
  background: #e8ece8;
}
.cm-staff__photo img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.cm-staff__photo p {
  width: 100%;
  height: 100%;
  margin: 0;
}
.cm-staff__item:hover .cm-staff__photo img {
  transform: scale(1.02);
}
.cm-staff__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 290px;
  padding: 20px;
  color: #98a099;
  background: #e9ede9;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  box-sizing: border-box;
}
.cm-staff__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 38px 32px 30px;
  box-sizing: border-box;
}
.cm-staff__role-en {
  display: block;
  margin-bottom: 8px;
  color: #6e9f7a;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cm-staff__role {
  display: block;
  margin-bottom: 7px;
  color: #828882;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}
.cm-staff__name {
  position: relative;
  margin: 0;
  padding-bottom: 19px;
  color: #29352d;
  font-size: 29px !important;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.cm-staff__name::after {
  content: \"\";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #54a66a;
}
.cm-staff__email {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  padding-top: 30px;
  color: #8b918c;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cm-staff__email:hover {
  color: #3d8b53;
}
@media (max-width: 1000px) {
  .cm-staff__grid {
    gap: 18px;
  }
  .cm-staff__item {
    grid-template-columns: 44% 56%;
    min-height: 250px;
  }
  .cm-staff__photo, .cm-staff__photo-placeholder {
    min-height: 250px;
  }
  .cm-staff__info {
    padding: 30px 23px 25px;
  }
  .cm-staff__role {
    font-size: 16px;
  }
  .cm-staff__name {
    font-size: 24px !important;
  }
  .cm-staff__email {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .cm-staff__header {
    margin-bottom: 30px;
  }
  .cm-staff__eyebrow {
    margin-bottom: 6px;
    font-size: 12px;
  }
  .cm-staff__title {
    font-size: 29px;
  }
  .cm-staff__description {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.7;
  }
  .cm-staff__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cm-staff__item {
    display: block;
    min-height: 0;
  }
  .cm-staff__item:hover {
    transform: none;
    box-shadow: none;
  }
  .cm-staff__photo {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16/11;
  }
  .cm-staff__photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
  }
  .cm-staff__item:hover .cm-staff__photo img {
    transform: none;
  }
  .cm-staff__photo-placeholder {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16/11;
  }
  .cm-staff__info {
    min-height: 190px;
    padding: 26px 25px 24px;
  }
  .cm-staff__role-en {
    margin-bottom: 6px;
    font-size: 11px;
  }
  .cm-staff__role {
    margin-bottom: 5px;
    font-size: 15px;
  }
  .cm-staff__name {
    padding-bottom: 16px;
    font-size: 24px !important;
  }
  .cm-staff__name::after {
    width: 28px;
  }
  .cm-staff__email {
    margin-top: 27px;
    padding-top: 0;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .cm-staff__header {
    margin-bottom: 26px;
  }
  .cm-staff__title {
    font-size: 27px;
  }
  .cm-staff__description {
    font-size: 14px;
  }
  .cm-staff__grid {
    gap: 24px;
  }
  .cm-staff__item {
    display: block;
    min-height: 0;
  }
  .cm-staff__photo {
    min-height: 0;
    aspect-ratio: 16/11;
  }
  .cm-staff__photo-placeholder {
    min-height: 0;
    aspect-ratio: 16/11;
    font-size: 13px;
  }
  .cm-staff__info {
    min-height: 175px;
    padding: 22px 20px 21px;
  }
  .cm-staff__role-en {
    margin-bottom: 5px;
    font-size: 10px;
  }
  .cm-staff__role {
    margin-bottom: 4px;
    font-size: 14px;
  }
  .cm-staff__name {
    padding-bottom: 14px;
    font-size: 22px !important;
  }
  .cm-staff__name::after {
    width: 25px;
  }
  .cm-staff__email {
    margin-top: 23px;
    padding-top: 0;
    font-size: 12px;
    word-break: break-all;
  }
}