@charset "utf-8";

#ctt {
  margin: 0;
  padding: 0;
  background: #fff;
}

#ctt.c-talentPageWrap {
  padding-bottom: 90px;
}

#ctt_con {
  --talent-ink: var(--color-text, #173248);
  --talent-muted: rgba(23, 50, 72, .76);
  --talent-line: rgba(20, 110, 166, .14);
  --talent-blue: var(--color-main, #146ea6);
  --talent-sky: var(--color-sub-1, #2ba8d9);
  --talent-green: var(--color-sub-3, #9abf75);
  --talent-radius: 18px;
  --talent-shadow: 0 14px 36px rgba(31, 70, 88, .07);
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 20px 0;
  color: var(--talent-ink);
  font-family: var(--font-main, sans-serif);
  word-break: keep-all;
}

#ctt_con *,
#ctt_con *::before,
#ctt_con *::after {
  box-sizing: border-box;
}

#ctt_con .c-talentSectionHead {
  margin-bottom: 24px;
  text-align: left;
}

#ctt_con .c-talentSectionHead h2 {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding-bottom: 12px;
  color: var(--talent-ink);
  font-size: clamp(20px, 1.6vw + 12px, 26px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -.4px;
}

#ctt_con .c-talentSectionHead h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--color-title-line);
  opacity: .95;
}

#ctt_con .c-talentMap {
  margin-top: 72px;
  padding: 48px 24px 54px;
  border: 1px solid rgba(20, 110, 166, .11);
  border-radius: var(--talent-radius);
  background: linear-gradient(180deg, #fff 0%, rgba(247, 251, 253, .86) 100%);
  box-shadow: var(--talent-shadow);
}

#ctt_con .c-talentOrbit {
  position: relative;
  width: min(100%, 720px);
  height: 570px;
  margin: 0 auto;
}

#ctt_con .c-talentOrbit__diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 2px solid rgba(20, 110, 166, .16);
  border-radius: 88px;
  background: linear-gradient(135deg, rgba(43, 168, 217, .08), rgba(154, 191, 117, .08));
  transform: translate(-50%, -50%) rotate(45deg);
}

#ctt_con .c-talentAxis {
  position: absolute;
  z-index: 2;
  width: 138px;
  height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 9px solid var(--axis-color);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 32px rgba(23, 50, 72, .10);
}

#ctt_con .c-talentAxis--humanity {
  --axis-color: #42b8c6;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#ctt_con .c-talentAxis--responsibility {
  --axis-color: var(--talent-blue);
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

#ctt_con .c-talentAxis--professional {
  --axis-color: var(--talent-green);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#ctt_con .c-talentAxis--community {
  --axis-color: #75b85b;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

#ctt_con .c-talentAxis__icon,
#ctt_con .c-talentCard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#ctt_con .c-talentAxis__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--axis-color);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#ctt_con .c-talentAxis strong {
  color: #2c424e;
  font-size: 18px;
  font-weight: 900;
}

#ctt_con .c-talentOrbit__center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 194px;
  height: 194px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 10px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--talent-sky), var(--talent-blue) 62%, #267b8e);
  box-shadow: 0 18px 42px rgba(20, 110, 166, .20);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}

#ctt_con .c-talentOrbit__center span {
  font-size: 13px;
  font-weight: 700;
  opacity: .88;
}

#ctt_con .c-talentOrbit__center strong {
  font-size: 23px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -.04em;
}

#ctt_con .c-talentDetails {
  margin-top: 0;
}

#ctt_con .c-talentCards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#ctt_con .c-talentCard {
  --card-color: var(--talent-blue);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--talent-line);
  border-radius: var(--talent-radius);
  background: linear-gradient(180deg, #fff 0%, var(--color-surface-soft-2, #f7fbfd) 145%);
  box-shadow: 0 12px 34px rgba(23, 50, 72, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

#ctt_con .c-talentCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--card-color);
}

#ctt_con .c-talentCard:hover {
  border-color: color-mix(in srgb, var(--card-color) 38%, transparent);
  box-shadow: 0 18px 44px rgba(23, 50, 72, .10);
  transform: translateY(-3px);
}

#ctt_con .c-talentCard[data-tone="humanity"] { --card-color: #42b8c6; }
#ctt_con .c-talentCard[data-tone="responsibility"] { --card-color: var(--talent-blue); }
#ctt_con .c-talentCard[data-tone="community"] { --card-color: #75b85b; }
#ctt_con .c-talentCard[data-tone="professional"] { --card-color: var(--talent-green); }

#ctt_con .c-talentCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 24px 22px 10px;
}

#ctt_con .c-talentCard__number {
  color: var(--card-color);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

#ctt_con .c-talentCard__icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: color-mix(in srgb, var(--card-color) 11%, #fff);
}

#ctt_con .c-talentCard__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--card-color);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#ctt_con .c-talentCard > strong {
  display: block;
  min-height: 80px;
  padding: 0 22px 22px;
  color: #293f4b;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: -.035em;
}

#ctt_con .c-talentCard > strong em {
  color: var(--card-color);
  font-style: normal;
}

#ctt_con .c-talentCard__section {
  flex: 1 1 auto;
  padding: 24px 22px 26px;
  border-top: 1px solid var(--talent-line);
  background: rgba(247, 249, 250, .72);
}

#ctt_con .c-talentCard__section + .c-talentCard__section {
  background: #fff;
}

#ctt_con .c-talentCard__section h4 {
  margin: 0 0 13px;
  color: #293f4b;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  text-align: center;
}

#ctt_con .c-talentCard__section ul {
  margin: 0;
  padding: 0 0 0 1.2em;
  color: var(--talent-muted);
  font-size: 15px;
  line-height: 1.72;
}

#ctt_con .c-talentCard__section li::marker {
  color: var(--card-color);
}

#ctt_con .c-talentCard__section li + li {
  margin-top: 6px;
}

@media (max-width: 1100px) and (min-width: 821px) {
  #ctt_con .c-talentCards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  #ctt.c-talentPageWrap {
    padding-bottom: 72px;
  }

  #ctt_con {
    padding: 36px 16px 0;
  }

  #ctt_con .c-talentMap {
    margin-top: 54px;
    padding: 38px 12px 42px;
    border-radius: 20px;
  }

  #ctt_con .c-talentOrbit {
    height: 470px;
  }

  #ctt_con .c-talentOrbit__diamond {
    width: 270px;
    height: 270px;
    border-radius: 72px;
  }

  #ctt_con .c-talentAxis {
    width: 108px;
    height: 108px;
    gap: 4px;
    border-width: 7px;
  }

  #ctt_con .c-talentAxis--responsibility { right: 4px; }
  #ctt_con .c-talentAxis--community { left: 4px; }

  #ctt_con .c-talentAxis__icon svg {
    width: 27px;
    height: 27px;
  }

  #ctt_con .c-talentAxis strong {
    font-size: 15px;
  }

  #ctt_con .c-talentOrbit__center {
    width: 154px;
    height: 154px;
    border-width: 8px;
  }

  #ctt_con .c-talentOrbit__center strong {
    font-size: 19px;
  }

  #ctt_con .c-talentDetails {
    margin-top: 0;
  }

  #ctt_con .c-talentCards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #ctt_con .c-talentCard {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  #ctt_con .c-talentOrbit {
    height: 400px;
  }

  #ctt_con .c-talentOrbit__diamond {
    width: 210px;
    height: 210px;
    border-radius: 58px;
  }

  #ctt_con .c-talentAxis {
    width: 88px;
    height: 88px;
    border-width: 6px;
  }

  #ctt_con .c-talentAxis__icon svg {
    width: 22px;
    height: 22px;
  }

  #ctt_con .c-talentAxis strong {
    font-size: 13px;
  }

  #ctt_con .c-talentOrbit__center {
    width: 128px;
    height: 128px;
    border-width: 6px;
  }

  #ctt_con .c-talentOrbit__center span {
    font-size: 11px;
  }

  #ctt_con .c-talentOrbit__center strong {
    max-width: 90px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #ctt_con .c-talentCard {
    transition: none;
  }
}

/* 첫 콘텐츠 상단 여백: status / org_chart와 동일한 시각 간격 */
#ctt.c-talentPageWrap > #ctt_con {
  padding-top: 54px;
}
