.locale-launch-page:lang(ja) {
  font-family: system-ui, -apple-system, "Hiragino Sans", "Yu Gothic", sans-serif;
}

.locale-launch-page:lang(ko) {
  font-family: system-ui, -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.locale-launch-page:lang(de),
.locale-launch-page:lang(es),
.locale-launch-page:lang(fr),
.locale-launch-page:lang(pt),
.locale-launch-page:lang(it),
.locale-launch-page:lang(nl),
.locale-launch-page:lang(pl) {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.locale-launch-page .launch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
}

.locale-launch-page .launch-grid > a {
  display: flex;
  min-width: 0;
  min-height: 126px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: #23262f;
  background: #fff;
  border: 2px solid #23262f;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(35, 38, 47, .12);
  text-decoration: none;
}

.locale-launch-page .launch-grid b {
  font-size: 17px;
  line-height: 1.35;
}

.locale-launch-page .launch-grid span {
  color: #5a5650;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.locale-launch-page .steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: launch-step;
}

.locale-launch-page .steps li {
  position: relative;
  min-width: 0;
  padding: 16px 16px 16px 54px;
  background: #fff;
  border: 2px solid #23262f;
  border-radius: 8px;
  counter-increment: launch-step;
}

.locale-launch-page .steps li::before {
  content: counter(launch-step);
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: #3fa34d;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.locale-launch-page .steps b,
.locale-launch-page .steps span {
  display: block;
  overflow-wrap: anywhere;
}

.locale-launch-page .steps span {
  margin-top: 5px;
  color: #5a5650;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 680px) {
  .locale-launch-page .launch-grid,
  .locale-launch-page .steps {
    grid-template-columns: 1fr;
  }

  .locale-launch-page .launch-grid > a {
    min-height: 104px;
  }
}
