html {
  scroll-behavior: smooth;
}

.kms-wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 40px auto;
}

.kms-page-header {
  margin-bottom: 28px;
}

.kms-wrap--archive {
  width: 100%;
  max-width: none;
  margin: 0;
}

.kms-wrap--archive .kms-page-header {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 32px;
  padding: 28px 20px 30px;
  background: rgb(0, 102, 153);
  text-align: center;
}

.kms-wrap--archive .kms-eyebrow,
.kms-wrap--archive .kms-page-title {
  color: #fff;
}

.kms-wrap--archive .kms-eyebrow {
  margin-bottom: 10px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.kms-wrap--archive .kms-page-title {
  display: inline-block;
  margin: 0;
  font-family: 'Mochiy Pop One', 'Zen Kaku Gothic New', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  font-size: clamp(32px, 5.04vw, 64px);
  line-height: .98;
  letter-spacing: .02em;
  font-weight: 400;
}

.kms-wrap--archive .kms-position-groups,
.kms-wrap--archive .kms-empty {
  width: min(1200px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}


.kms-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666;
}

.kms-page-title,
.kms-member-title {
  margin: 0;
  line-height: 1.1;
}

.kms-page-title {
  font-size: clamp(28px, 4vw, 52px);
}

.kms-member-title-row {
  --kms-pc-name-size: clamp(36px, 5.0vw, 68px);
  --kms-pc-playerno-size: clamp(34px, 4.8vw, 64px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.kms-member-title {
  display: flex;
  align-items: center;
  min-height: 0;
  font-size: var(--kms-pc-name-size);
  line-height: 0.80;
  font-family: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: rgb(0, 102, 153);
  margin-top: -4px;
}

.kms-playerno-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: calc(var(--kms-pc-playerno-size) * 1.18);
  min-width: calc(var(--kms-pc-playerno-size) * 1.18);
  min-height: calc(var(--kms-pc-playerno-size) * 1.1);
  height: auto;
  padding: 6px 8px 5px;
  background: rgb(0, 102, 153);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.kms-playerno-box__label {
  display: block;
  width: 100%;
  font-size: clamp(10px, 0.78vw, 11px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
}

.kms-playerno-box__value {
  display: block;
  width: 100%;
  margin-top: 4px;
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 0.88;
  text-align: center;
}

.kms-member-subtitle {
  margin: 10px 0 0;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #5f6673;
}

.kms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.kms-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.kms-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,.1);
}

.kms-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.kms-card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f3f3f3;
}

.kms-card__image img,
.kms-hero__photo img {
  width: 100%;
  height: 100%;
  display: block;
}

.kms-card__image img {
  object-fit: cover;
}

.kms-hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center center;
}

.kms-card__placeholder,
.kms-hero__placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: #999;
  font-weight: 700;
  letter-spacing: .08em;
}

.kms-card__body {
  padding: 12px 14px 14px;
  background: #fff;
}

.kms-card__namebar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(0, 102, 153, 0.80);
  z-index: 2;
}

.kms-card__namerow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.kms-card__role-badge {
  position: absolute;
  left: 14px;
  bottom: 56px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  background: rgb(0, 102, 153);
  border: 1px solid rgba(255,255,255,0.95);
  color: #fff;
  font-size: 14.4px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  max-width: calc(100% - 28px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kms-card__position-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 0;
  background: #fff;
  color: rgb(0, 102, 153);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  flex-shrink: 0;
}

.kms-card__name {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #fff;
  z-index: 2;
}

.kms-card__submeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kms-card__english,
.kms-card__grade {
  margin: 0;
  color: #4b5563;
}

.kms-card__english {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kms-card__personal-no {
  flex-shrink: 0;
  color: #123b8f;
}

.kms-card__english-name {
  min-width: 0;
}

.kms-card__grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgb(0, 102, 153);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}


.kms-empty {
  padding: 24px 0;
}

.kms-breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.kms-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.kms-hero {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.kms-hero__photo {
  position: relative;
  min-height: 640px;
  height: 100%;
  align-self: stretch;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.kms-hero__mobile-overlay {
  display: none;
}

.kms-hero__content {
  padding: 12px 0;
}

.kms-hero__intro {
  position: relative;
  z-index: 2;
}

.kms-hero__details {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}
.kms-hero__content .kms-member-title {
  margin-top: -2px;
}

.kms-hero__content .kms-member-subtitle {
  text-transform: none;
}

.kms-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.kms-tag {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.kms-tags--desktop {
  gap: 10px;
}

.kms-tags--desktop .kms-tag {
  min-height: 46px;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.kms-tag--position-desktop {
  min-width: 78px;
  padding: 0 10px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  color: rgb(0, 102, 153);
  font-size: 26px;
}

.kms-tag--grade-desktop {
  min-width: 78px;
  padding: 0 10px;
  background: rgb(0, 102, 153);
  color: #fff;
  font-size: 26px;
}

.kms-tag--role-desktop {
  min-height: 46px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.26);
  color: rgb(0, 102, 153);
  font-size: 18px;
  border-radius: 999px;
}

.kms-profile-table {
  display: grid;
  gap: 10px;
}

.kms-profile-table > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.kms-profile-table dt {
  font-weight: 700;
}

.kms-profile-table dd {
  margin: 0;
}

.kms-profile-role {
  color: rgb(0, 102, 153);
  font-weight: 700;
}

.kms-sections {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.kms-section-card {
  padding: 22px 24px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.kms-section-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.kms-section-card p {
  margin: 0;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .kms-sections {
    margin-top: 0;
  }

  .kms-hero {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    margin-bottom: 40px;
  }

  .kms-hero__photo {
    order: 1;
    position: relative;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
    background: transparent;
    overflow: hidden;
    margin-bottom: 30px;
  }

  .kms-hero__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transform: scale(1.08);
  }

  .kms-hero__content {
    order: 2;
    padding: 0;
  }

  .kms-playerno-box {
    display: none;
  }

  .kms-hero__intro {
    display: none;
  }

  .kms-hero__mobile-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 8px 14px 14px;
    pointer-events: none;
  }

  .kms-member-title--mobile {
    margin: 0;
    font-size: clamp(24px, 7.8vw, 38px);
    line-height: 0.96;
    max-width: 76%;
    color: rgb(0, 102, 153);
    text-shadow:
      1px 1px 0 rgba(255, 255, 255, 0.95),
      -1px 1px 0 rgba(255, 255, 255, 0.95),
      1px -1px 0 rgba(255, 255, 255, 0.95),
      -1px -1px 0 rgba(255, 255, 255, 0.95),
      0 2px 10px rgba(255, 255, 255, 0.35);
  }

  .kms-member-subtitle--mobile {
    margin: 0 0 6px;
    line-height: 1.02;
    font-size: 14px;
    font-weight: 700;
    max-width: 76%;
  }

  .kms-tags--mobile {
    --kms-mobile-playerno-width: 106px;
    --kms-mobile-playerno-height: 84px;
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: none;
    pointer-events: none;
  }

  .kms-tags--mobile .kms-tag {
    position: absolute;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 15px;
    pointer-events: auto;
  }

  .kms-tags--mobile .kms-tag--playerno {
    left: 14px;
    bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: var(--kms-mobile-playerno-width);
    min-width: var(--kms-mobile-playerno-width);
    min-height: 92px;
    padding: 6px 3px 5px;
    border-radius: 0;
    background: rgb(0, 102, 153);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    gap: 4px;
  }

  .kms-tags--mobile .kms-tag--playerno .kms-tag__playerno-label {
    display: block;
    width: 100%;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
    text-align: center;
    white-space: nowrap;
  }

  .kms-tags--mobile .kms-tag--playerno .kms-tag__playerno-value {
    display: block;
    width: 100%;
    font-size: 48px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0;
    text-align: center;
  }

  .kms-tags--mobile .kms-tag--role-mobile {
    left: 14px;
    bottom: calc(14px + var(--kms-mobile-playerno-height));
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: var(--kms-mobile-playerno-width);
    min-width: var(--kms-mobile-playerno-width);
    max-width: var(--kms-mobile-playerno-width);
    min-height: 34px;
    padding: 4px 6px;
    border-radius: 0;
    border: 1px solid rgb(0, 102, 153);
    background: #fff;
    color: rgb(0, 102, 153);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    font-size: clamp(11px, 3vw, 16px);
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .kms-tags--mobile .kms-tag--position-mobile {
    right: 14px;
    bottom: 14px;
    width: 78px;
    min-width: 78px;
    min-height: 46px;
    padding: 0 10px;
    justify-content: center;
    text-align: center;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.78);
    color: rgb(0, 102, 153);
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  }

  .kms-tags--mobile .kms-tag--grade-mobile {
    right: 14px;
    bottom: 70px;
    width: 78px;
    min-width: 78px;
    min-height: 46px;
    padding: 0 10px;
    justify-content: center;
    text-align: center;
    background: rgb(0, 102, 153);
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  }

  .kms-hero__details {
    margin-top: 0;
    padding: 0;
  }

  .kms-profile-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.kms-position-groups {
  display: grid;
  gap: 40px;
}


.kms-position-nav {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 0 0 28px;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 18px 20px 20px;
  background: rgb(0, 102, 153);
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.kms-position-nav__label {
  display: none;
}

.kms-position-nav__buttons {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.kms-position-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 0;
  border: 0;
  background: #fff;
  color: rgb(0, 102, 153);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.kms-position-nav__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  opacity: .96;
}

.kms-position-group {
  scroll-margin-top: 96px;
}

.kms-position-group__title {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  margin: 0;
  padding: 0 22px 0 0;
  background: linear-gradient(135deg, rgb(0, 102, 153), rgba(0, 102, 153, 0.88));
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.kms-position-group__title::before {
  content: '';
  width: 18px;
  align-self: stretch;
  background: rgba(255,255,255,.18);
  margin-right: 16px;
}

.kms-position-group__title-text {
  display: inline-block;
  padding-top: 2px;
  letter-spacing: .04em;
}

@media (max-width: 768px) {
  .kms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .kms-wrap--archive .kms-page-header {
    padding: 22px 16px 24px;
    margin-bottom: 24px;
  }

  .kms-wrap--archive .kms-eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: .22em;
  }

  .kms-wrap--archive .kms-page-title {
    font-size: clamp(24px, 7.7vw, 39px);
    line-height: 1.02;
  }

  .kms-wrap--archive .kms-position-groups,
  .kms-wrap--archive .kms-empty {
    width: min(100%, calc(100% - 24px));
  }

  .kms-card__namebar {
    gap: 2px !important;
    padding: 11px 10px 1px 3px !important;
    min-height: 52px !important;
    align-items: center;
  }

  .kms-card__role-badge {
    display: inline-flex;
    left: 9px;
    top: auto;
    bottom: 62px;
    min-height: 38px;
    padding: 5px 15px;
  }

  .kms-card__role-badge--staff {
    top: auto !important;
    bottom: 56px !important;
    left: 9px;
    min-height: 38px;
    padding: 5px 15px;
  }

  .kms-card--staff .kms-card__name {
    padding-left: 10px;
  }

  .kms-card__namerow {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
  }

  .kms-card__position-badge {
    width: 3.2em;
    min-width: 3.2em;
    max-width: 3.2em;
    height: 30px;
    min-height: 30px;
    padding: 0 !important;
    font-size: 12px;
    margin: 0 5px !important;
    align-self: center;
    box-sizing: border-box;
    flex: 0 0 3.2em;
  }

  .kms-card__name {
    font-size: 20.9px;
  }

  .kms-card__body {
    padding: 7px 10px 10px !important;
  }

  .kms-card__submeta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
  }

  .kms-card__english {
    min-width: 0;
    flex: initial;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .05em;
  }

  .kms-card__english-name {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .kms-card__grade {
    min-width: 46px;
    min-height: 30px;
    padding: 0 8px;
    font-size: 13px;
    justify-self: end;
  }


  .kms-card__namerow {
    margin: 0 !important;
    min-height: 0 !important;
  }

  .kms-card__name {
    line-height: 1.02 !important;
    margin: 0 !important;
  }

  .kms-card__submeta {
    margin-top: 2px !important;
  }

  .kms-position-nav {
    width: 100vw;
    margin-bottom: 22px;
    padding: 14px 12px 16px;
  }

  .kms-position-nav__label {
    display: none;
  }

  .kms-position-nav__buttons {
    width: min(100%, calc(100% - 24px));
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .kms-position-nav__button {
    min-height: 38px;
    padding: 0 6px;
    font-size: 15px;
  }

  .kms-position-group {
    gap: 14px;
    scroll-margin-top: 80px;
  }

  .kms-position-group__title {
    min-height: 46px;
    padding-right: 16px;
    font-size: 1.2rem;
  }

  .kms-position-group__title::before {
    width: 12px;
    margin-right: 12px;
  }
}

@media (max-width: 640px) {
  .kms-wrap--single {
    width: min(100%, calc(100% - 20px));
    margin-top: 24px;
  }

  .kms-hero {
    gap: 14px;
  }

  .kms-hero__mobile-overlay {
    padding: 8px 12px 12px;
  }

  .kms-member-title--mobile {
    font-size: clamp(24px, 7.8vw, 38px);
    line-height: 0.96;
    max-width: 76%;
  }

  .kms-member-subtitle--mobile {
    margin: 0 0 6px;
    line-height: 1.05;
    font-size: 14px !important;
    font-weight: 700;
    max-width: 76%;
  }

  .kms-tags--mobile .kms-tag {
    min-height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }

  .kms-tags--mobile {
    --kms-mobile-playerno-width: 106px;
    --kms-mobile-playerno-height: 84px;
  }

  .kms-tags--mobile .kms-tag--playerno {
    left: 12px;
    bottom: 12px;
    width: var(--kms-mobile-playerno-width);
    min-width: var(--kms-mobile-playerno-width);
    min-height: var(--kms-mobile-playerno-height);
    padding: 5px 2px 4px;
    gap: 3px;
  }

  .kms-tags--mobile .kms-tag--playerno .kms-tag__playerno-label {
    font-size: 11px;
  }

  .kms-tags--mobile .kms-tag--playerno .kms-tag__playerno-value {
    font-size: 39px;
  }

  .kms-tags--mobile .kms-tag--role-mobile {
    left: 12px;
    bottom: calc(12px + var(--kms-mobile-playerno-height));
    width: var(--kms-mobile-playerno-width);
    min-width: var(--kms-mobile-playerno-width);
    max-width: var(--kms-mobile-playerno-width);
    min-height: 30px;
    padding: 3px 5px;
    font-size: clamp(10px, 3.1vw, 13px);
  }

  .kms-tags--mobile .kms-tag--position-mobile {
    right: 12px;
    bottom: 12px;
    width: 72px;
    min-width: 72px;
    min-height: 42px;
    padding: 0 8px;
    font-size: 22px;
  }

  .kms-tags--mobile .kms-tag--grade-mobile {
    right: 12px;
    bottom: 64px;
    width: 72px;
    min-width: 72px;
    min-height: 42px;
    padding: 0 8px;
    font-size: 22px;
  }
}

.kms-staff-section {
  width: min(1200px, calc(100% - 32px));
  margin: 56px auto 0;
}

.kms-staff-section__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  color: rgb(0, 102, 153);
}

.kms-staff-section__title::before {
  content: '';
  display: block;
  width: 14px;
  height: 1.15em;
  background: rgb(0, 102, 153);
}

.kms-card--staff {
  cursor: default;
}

.kms-card--staff:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.kms-card__role-badge--staff {
  bottom: 56px;
}

.kms-card__english--staff {
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .kms-staff-section {
    width: min(100%, calc(100% - 20px));
    margin-top: 40px;
  }
}
