#org {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Noto Sans KR", "Noto Sans SC", sans-serif;
  color: #222;
}

.lang-zh {
  color: #666;
}

/* CEO */
.org-ceo {
  text-align: center;
  margin: 40px 0 70px;
}

.org-ceo .title {
  font-size: 22px;
  font-weight: 600;
}

.org-ceo .lang-zh {
  font-size: 16px;
  margin-top: 4px;
}

.ceo-line {
  width: 60px;
  height: 2px;
  background: #0067bf;
  margin: 18px auto 0;
}

/* GRID */
.org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* CARD */
.org-card {
  position: relative;
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 38px 34px 34px;
}

/* 상단 포인트 */
.card-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0067bf;
}

/* TITLE */
.org-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.4;
}

/* LIST */
.org-list {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}

.org-list li {
  position: relative;
  padding-left: 14px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 9px;
}

.org-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #0067bf;
  border-radius: 50%;
}

/* MOBILE */
@media (max-width: 900px) {
  .org-grid {
    grid-template-columns: 1fr;
  }
}
