.about-page { background:#fff; }

/* HERO */
.about-hero {
  position: relative;
  min-height: 520px;
  color: #fff;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.5)),
              url("/images/about/hero.jpg") center/cover no-repeat;
}
.about-hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 20px;
}
.eyebrow {
  letter-spacing: .2em;
  font-size: 12px;
}
.about-hero-title {
  font-size: 40px;
  margin: 10px 0;
}
.about-hero-sub {
  max-width: 600px;
  line-height: 1.7;
}

/* HISTORY */
.timeline {
  margin-top: 40px;
  border-left: 2px solid #e5e5e5;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  position: relative;
}
.timeline-item::before {
  content:"";
  position:absolute;
  left:-37px;
  top:6px;
  width:10px;
  height:10px;
  background:#111;
  border-radius:50%;
}
.timeline-item .year {
  font-weight:700;
}

/* PERSON */
.person-name {
  margin: 6px 0 14px;
  font-size: 18px;
  font-weight: 600;
}
.emphasis {
  font-weight: 600;
  color:#111;
}
/* PERSON 섹션 */
.about-person .grid-2 {
  display: grid;
  grid-template-columns: 420px 1fr; /* 왼쪽 이미지 고정폭 */
  gap: 48px;
  align-items: flex-start;
}

/* 이미지 영역 */
.person-media {
  position: sticky;
  top: 120px; /* 스크롤 시 자연스럽게 고정 */
}

/* 이미지 카드 */
.media-card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f5f7;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* 이미지 자체 */
.media-card img {
  width: 100%;
  height: 520px;          /* 핵심: 높이 고정 */
  object-fit: cover;      /* 비율 유지하며 잘라냄 */
  display: block;
}

/* MOBILE */
@media (max-width:768px){
  .timeline-item { grid-template-columns:1fr; }
  .about-hero-title { font-size:32px; }
}
/* =========================
   ABOUT FINAL CTA
========================= */

.about-final {
  padding: 100px 0;
  background: #f7f7f7;
  color: #111;
  text-align: center;
}

.about-final .final-sub {
  color: #555;
}

.about-final .final-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-final .final-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-final .final-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-final .final-sub {
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  line-height: 1.6;
}

.about-final .final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
  .about-final {
    padding: 72px 20px;
  }
  .about-final .final-title {
    font-size: 26px;
  }
}

.about-final .btn-ghost {
  border: 1px solid #111;
  color: #111;
  background: transparent;
}

.about-final .btn-ghost:hover {
  background: #111;
  color: #fff;
}

.about-intro .emphasis { font-weight: 600; color:#111; margin-top: 14px; }
.about-intro .bridge { margin-top: 18px; color:#555; line-height: 1.7; }

/* =========================
   ABOUT → SERVICES (SIMPLE)
========================= */

.about-service-bridge-simple .simple-bridge-card{
  border: 1px solid #eee;
  border-radius: 20px;
  background: #fff;
  padding: 34px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.about-service-bridge-simple .simple-bridge-title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-service-bridge-simple .simple-bridge-desc{
  margin: 0 0 18px;
  color: #444;
  line-height: 1.7;
}

.about-service-bridge-simple .simple-bridge-actions{
  display: flex;
  justify-content: center;
}

@media (max-width: 768px){
  .about-service-bridge-simple .simple-bridge-card{
    padding: 24px;
  }
  .about-service-bridge-simple .simple-bridge-title{
    font-size: 20px;
  }
}

/* =========================
   DESKTOP READING WIDTH FIX
========================= */

/* Intro(우리는 어떻게 시작되었는가) 텍스트 블록을 중앙에 두고 폭 제한 */
.about-intro .intro-text {
  max-width: 760px;
  margin: 0 auto;
}

/* 섹션 타이틀/설명도 너무 좌측으로 붙어 보이면 동일하게 */
.about-intro .section-head,
.about-history .section-head,
.about-origin .origin-text,
.about-purpose .container,
.about-person .person-text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* 단, grid-2 레이아웃(이미지+텍스트)은 깨지면 안되니 origin/person은 텍스트만 제한 */
.about-origin .container.grid-2,
.about-person .container.grid-2 {
  max-width: 1120px; /* 기존 컨테이너 폭 유지 */
}
.about-origin .origin-text,
.about-person .person-text {
  max-width: 560px; /* 텍스트만 읽기 좋게 */
}

/* 반응형 줄바꿈 유틸 */
.m-only { display: none; }
@media (max-width: 768px) {
  .m-only { display: inline; }
}

/* =========================
   DESKTOP ONLY – INTRO WIDTH OVERRIDE
========================= */
@media (min-width: 1024px) {
  .about-intro .intro-text {
    max-width: 880px;
  }
}
/* =========================
   ABOUT DESKTOP ALIGNMENT FIX
========================= */

/* About 페이지에서 텍스트 기준선 통일 */
@media (min-width: 1024px) {

  /* 섹션 타이틀 + 설명 */
  .about-page .section-head,
  .about-intro .intro-text {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }

  /* History 타이틀 설명도 동일 기준 */
  .about-history .section-head {
    max-width: 880px;
  }

  /* 타임라인은 넓게 두되, 시작선만 맞춘다 */
  .about-history .timeline {
    margin-left: calc((100% - 880px) / 2);
  }
}

/* =========================
   DESKTOP LINE BREAK FIX (FORCE OVERRIDE)
========================= */
@media (min-width: 1024px) {

  /* Intro 문단 줄바꿈 규칙을 정상화 */
  .about-intro .intro-text,
  .about-intro .intro-text p,
  .about-intro .section-desc {
    max-width: 920px !important;
    margin-left: auto !important;
    margin-right: auto !important;

    word-break: keep-all !important;       /* 한글: 단어 단위 줄바꿈 */
    overflow-wrap: normal !important;      /* anywhere 방지 */
    white-space: normal !important;        /* 이상한 nowrap/프리포맷 방지 */
  }

}
@media (max-width: 900px) {
  .about-person .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .person-media {
    position: static;
  }

  .media-card img {
    height: 360px;
  }
}
/* =========================
   ABOUT – ORIGIN IMAGE ALIGN
========================= */

.about-origin .grid-2 {
  display: grid;
  grid-template-columns: 420px 1fr; /* PERSON과 동일 */
  gap: 48px;
  align-items: flex-start;
}

/* ORIGIN 이미지 영역 */
.about-origin .origin-media {
  position: sticky;
  top: 120px;
}

/* ORIGIN 이미지 카드 (PERSON과 완전 동일) */
.about-origin .media-card {
  border-radius: 18px;
  overflow: hidden;
  background: #f5f5f7;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-origin .media-card img {
  width: 100%;
  height: 520px;     /* PERSON과 동일 */
  object-fit: cover;
  display: block;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-origin .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-origin .origin-media {
    position: static;
  }

  .about-origin .media-card img {
    height: 360px;
  }
}

