/* pages/about.php 전용 스타일. 공용 컴포넌트는 css/gpc-theme.css 참고. */

.ab-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px,6vw,64px); }

.ab-greet { display: grid; grid-template-columns: 220px 1fr; gap: clamp(24px,4vw,56px); padding: clamp(52px,8vw,88px) 0; border-bottom: 1px solid var(--border); }
@media (max-width: 760px) { .ab-greet { grid-template-columns: 1fr; gap: 20px; } }
.ab-greet__k { font-family: var(--serif); font-size: clamp(22px,3vw,30px); font-weight: 600; color: var(--navy); line-height: 1.4; }
.ab-greet__body { font-size: 16px; line-height: 1.9; color: #33405c; }
.ab-greet__body p { margin: 0 0 18px; }
.ab-greet__sign { margin-top: 28px; font-size: 15px; color: var(--muted); }
.ab-greet__sign b { font-size: 19px; color: var(--navy); font-weight: 700; margin-left: 8px; letter-spacing: .02em; }

.ab-stats { display: grid; grid-template-columns: repeat(2,1fr); column-gap: 32px; row-gap: 36px; margin: clamp(52px,8vw,88px) 0; }
.ab-stat { padding-left: 18px; border-left: 2px solid var(--gold); }
/* 항목이 3개라 2단 그리드에 고아 칸이 남는다 → 첫 항목(경력)이 한 줄을 통째로 차지한다.
   경력이 이 기관의 핵심 근거라 수치를 한 단계 키우고, 비는 오른쪽 절반은 설명 한 줄로 채운다
   (홈 .hm-stat과 동일 규칙). */
.ab-stat:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: auto minmax(0,1fr); column-gap: clamp(20px,3vw,40px); }
.ab-stat:first-child .ab-stat__v { grid-column: 1; grid-row: 1; font-size: clamp(40px,4.8vw,60px); }
.ab-stat:first-child .ab-stat__l { grid-column: 1; grid-row: 2; }
.ab-stat__note { grid-column: 2; grid-row: 1 / -1; align-self: center; margin: 0; max-width: 340px; font-size: 14.5px; line-height: 1.7; color: var(--muted); }
.ab-stat__v { font-family: var(--serif); font-size: clamp(30px,3.6vw,44px); font-weight: 600; color: var(--navy); line-height: 1; }
.ab-stat__v span { font-size: .6em; color: var(--blue); margin-left: 2px; }
.ab-stat__l { margin-top: 12px; font-size: 14px; color: var(--muted); }
@media (max-width: 680px) {
  .ab-stat:first-child { grid-template-columns: 1fr; }
  .ab-stat__note { grid-column: 1; grid-row: auto; margin-top: 10px; max-width: none; font-size: 13px; line-height: 1.6; }
}

.ab-why { padding-bottom: clamp(56px,8vw,96px); }
.ab-why__head { text-align: center; margin-bottom: clamp(32px,5vw,52px); }
.ab-why__head .gpc-eyebrow { justify-content: center; }
.ab-why__head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(26px,3.4vw,40px); color: var(--navy); margin: 14px 0 0; letter-spacing: -.02em; }
.ab-grid { display: grid; grid-template-columns: repeat(2,1fr); }
.ab-card { padding: 40px 44px 44px; border-left: 1px solid var(--border); border-top: 1px solid var(--border); }
.ab-card:nth-child(2n+1) { border-left: 0; padding-left: 0; }
.ab-card:nth-child(-n+2) { border-top: 0; padding-top: 0; }
.ab-card::before { content: ''; display: block; width: 26px; height: 2px; background: var(--gold); }
.ab-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); margin: 18px 0 0; }
.ab-card p { font-size: 14.5px; line-height: 1.75; color: var(--muted); margin: 12px 0 0; }
@media (max-width: 720px) {
  .ab-grid { grid-template-columns: 1fr; }
  .ab-card { border-left: 0; padding-left: 0; }
  .ab-card:nth-child(-n+2) { border-top: 1px solid var(--border); padding-top: 40px; }
  .ab-card:first-child { border-top: 0; padding-top: 0; }
}

.ab-cta { max-width: var(--wrap); margin: 0 auto clamp(64px,9vw,100px); padding: clamp(40px,6vw,56px) clamp(20px,6vw,64px) 0; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.ab-cta__t { font-size: clamp(17px,2.4vw,22px); font-weight: 700; color: var(--navy); font-family: var(--serif); }
.ab-cta__s { font-size: 14px; color: var(--muted); margin-top: 6px; }
.ab-cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }
