/* ============================================================
   새솔경영자문센터 | 회사소개 전용 스타일
   theme/saesol/css/about.css
   ============================================================ */

/* ── 히어로 ── */
.ab-hero {
  position       : relative;
  min-height     : 380px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  background     : #111 url('../img/about-bg.jpg') center/cover no-repeat;
  padding-top    : 80px;
}
.ab-hero::after {
  content  : '';
  position : absolute; inset: 0;
  background: rgba(0,0,0,.62);
}
.ab-hero-body {
  position  : relative; z-index: 1;
  padding   : 0 40px;
  text-align: center;
  width     : 100%;
}
.ab-hero-title {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size     : clamp(22px, 2.8vw, 46px);
  font-weight   : 800;
  color         : #fff;
  letter-spacing: -.02em;
}
.ab-hero-title em {
  color     : #2C6E2C;
  font-style: normal;
}

/* ── 섹션 타이틀 블록 (좌측 정렬 + 하단 수평선) ── */
.ab-title-block {
  text-align  : left;                    /* ★ 좌측 정렬 */
  padding     : 52px 0 40px;
  background  : #fff;
  max-width   : 1240px;
  margin      : 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  border-bottom: 1px solid #e0e0e0;     /* ★ 하단 수평선 */
}
.ab-title-h {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size     : clamp(28px, 3.5vw, 52px);
  font-weight   : 700;
  color         : #111;
  letter-spacing: -.03em;
  margin-bottom : 10px;
  line-height   : 1.2;
}
.ab-title-sub {
  font-size: 14px;
  color    : #999;
}

/* 세로 구분선 제거 (더 이상 사용 안 함) */
.ab-title-line,
.ab-title-line2 { display: none; }

/* ── 타이틀 wrapper (배경 흰색 풀너비) ── */
.ab-title-wrap {
  background: #fff;
}

/* ── 2단 본문 ── */
.ab-content {
  background: #f7f8f7;
  padding   : 0 0 88px;
}
.ab-content-inner {
  max-width: 1240px;
  margin   : 0 auto;
  padding  : 60px 60px 0;
  display  : grid;
  grid-template-columns: 340px 1fr;
  gap      : 64px;
  align-items: flex-start;
}

/* 좌: 사진 */
.ab-photo-wrap {
  position: sticky;
  top     : 100px;
}
.ab-photo {
  width          : 100%;
  aspect-ratio   : 3/4;
  object-fit     : cover;
  object-position: top;
  display        : block;
  border-radius  : 4px;
  background     : #1a1a1a url('../img/ceo.jpg') center/cover no-repeat;
}
.ab-photo-caption {
  margin-top    : 12px;
  text-align    : center;
  font-size     : 13px;
  font-weight   : 600;
  color         : #666;
  letter-spacing: .04em;
}

/* 우: 텍스트 */
.ab-text {
  padding-top: 0;
}
.ab-text-eyebrow {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size     : 15px;
  font-weight   : 700;
  color         : #2C6E2C;
  letter-spacing: .01em;
  margin-bottom : 8px;
  line-height   : 1.4;
}
.ab-text-headline {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size     : clamp(22px, 2.4vw, 34px);
  font-weight   : 700;
  color         : #111;
  letter-spacing: -.03em;
  line-height   : 1.35;
  margin-bottom : 28px;
}
.ab-body-p {
  font-size    : 15px;
  color        : #555;
  line-height  : 1.85;
  margin-bottom: 16px;
}
.ab-section-heading {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size     : 17px;
  font-weight   : 700;
  color         : #111;
  letter-spacing: -.01em;
  margin        : 32px 0 10px;
}
.ab-section-p {
  font-size  : 15px;
  color      : #555;
  line-height: 1.85;
}

/* ── 마무리 다크 섹션 ── */
.ab-closing {
  background: #1a1a1a;
  padding   : 88px 60px;
  text-align: center;
}
.ab-closing-inner { max-width: 860px; margin: 0 auto; }
.ab-closing-quote {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size     : clamp(22px, 3vw, 42px);
  font-weight   : 900;
  color         : #ffffff;
  letter-spacing: -.03em;
  line-height   : 1.4;
  margin-bottom : 40px;
}
.ab-closing-quote em { color: #7ec87e; font-style: normal; }
.ab-closing-p {
  font-size    : 16px;
  color        : rgba(255,255,255,.65);
  line-height  : 1.9;
  margin-bottom: 16px;
}
.ab-closing-thanks {
  margin-top : 32px;
  font-size  : 16px;
  color      : rgba(255,255,255,.45);
}

/* ── 반응형 ── */
@media (max-width: 960px) {
  .ab-title-block {
    padding-left : 40px;
    padding-right: 40px;
  }
  .ab-content-inner {
    grid-template-columns: 1fr;
    gap    : 40px;
    padding: 48px 40px 0;
  }
  .ab-photo-wrap { position: static; }
  .ab-photo {
    aspect-ratio: 4/3;
    max-height  : 400px;
  }
}
@media (max-width: 600px) {
  .ab-hero       { min-height: 200px; }
  .ab-hero-body  { padding: 0 24px; }
  .ab-title-block {
    padding: 32px 20px 28px;
  }
  .ab-content-inner { padding: 36px 20px 0; }
  .ab-content       { padding-bottom: 56px; }
  .ab-closing       { padding: 64px 24px; }
  .ab-body-p        { font-size: 14px; }
  .ab-section-p     { font-size: 14px; }
  .ab-section-heading { font-size: 15px; }
}
