/*=============== ABOUT PAGE SPECIFIC STYLES ===============*/

/* Page Hero */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + var(--spacing-xxl));
  padding-bottom: var(--spacing-xxl);
  background: var(--gradient-primary);
  text-align: center;
}

.page-hero__content {
  color: var(--white);
}

.page-hero__title {
  font-size: clamp(1.875rem, 5vw, 3.5rem);
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.page-hero__description {
  font-size: var(--h3-font-size);
  color: rgba(255, 255, 255, 0.9);
}

/* Philosophy Section */
.philosophy__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

/* 좌측: 이미지 */
.philosophy__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.philosophy__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 우측: 문구 */
.philosophy__quote-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy__main-quote {
  font-size: 1.9rem;  /* h1-font-size(2.375rem)의 80% */
  font-weight: var(--font-medium);
  font-style: italic;
  color: var(--primary-deep-navy);
  line-height: 1.6;
  text-align: center;
}

.philosophy__main-quote strong {
  color: var(--primary-blue-accent);
}

/* 하단 설명 */
.philosophy__bottom {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.philosophy__description {
  font-size: var(--h3-font-size);  /* 연혁 섹션 카드 폰트와 동일 */
  line-height: 1.8;
  color: var(--neutral-blue);
  margin-bottom: var(--spacing-md);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.philosophy__description:last-child {
  margin-bottom: 0;
}

.philosophy__description strong {
  color: var(--primary-deep-navy);
  font-weight: var(--font-semi-bold);
}

/* 기존 스타일 유지 (하위 호환) */
.philosophy__text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.philosophy__values {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.philosophy__value {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--secondary-light-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.philosophy__value:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.philosophy__value i {
  font-size: 2.4rem;
  color: var(--primary-royal-blue);
  min-width: 48px;
}

.philosophy__value h4 {
  font-size: var(--h2-font-size);
  margin-bottom: var(--spacing-xs);
}

.philosophy__value p {
  color: var(--neutral-blue);
  font-size: var(--normal-font-size);
  line-height: 1.7;
}

.philosophy__card {
  background: var(--gradient-primary);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.philosophy__card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.philosophy__card i {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  opacity: 0.8;
}

.philosophy__card blockquote {
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.philosophy__card cite {
  font-size: var(--normal-font-size);
  font-style: normal;
  opacity: 0.9;
  display: block;
  text-align: right;
}

/* History Timeline */
.history__timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.history__timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--secondary-medium-gray);
}

.history__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.history__year {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-deep-navy);
  text-align: right;
  padding-right: var(--spacing-md);
  position: relative;
}

.history__year::after {
  content: '';
  position: absolute;
  right: -21px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-gold);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.history__content {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.history__content:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.history__content h3 {
  font-size: var(--h2-font-size);
  color: var(--primary-deep-navy);
  margin-bottom: var(--spacing-sm);
}

.history__content p {
  color: var(--neutral-blue);
  font-size: var(--h3-font-size);
  line-height: 1.8;
}

/* Team Section */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.team__member {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.team__member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team__avatar {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.team__avatar i {
  font-size: 4rem;
  color: var(--white);
}

.team__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team__name {
  font-size: var(--h2-font-size);
  margin-bottom: var(--spacing-xs);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.team__position {
  color: var(--primary-royal-blue);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-md);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.team__bio {
  color: var(--neutral-blue);
  font-size: var(--normal-font-size);
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Awards Section */
.awards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.award__card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.award__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.award__icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

.award__icon i {
  font-size: 3rem;
  color: var(--primary-gold);
}

.award__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-sm);
  line-height: 1.5;
}

.award__year {
  color: var(--primary-royal-blue);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-sm);
}

.award__description {
  color: var(--neutral-blue);
  font-size: var(--normal-font-size);
  line-height: 1.7;
}

/* Responsive - About Page */
@media screen and (max-width: 1024px) {
  .philosophy__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .philosophy__visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .philosophy__main-quote {
    font-size: 1.4rem;  /* h2-font-size(1.75rem)의 80% */
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .history__timeline::before {
    left: 80px;
  }

  .history__item {
    grid-template-columns: 80px 1fr;
  }

  .history__year {
    font-size: var(--h3-font-size);
  }
}

@media screen and (max-width: 768px) {
  .page-hero__title {
    font-size: var(--h1-font-size);
  }

  .page-hero__description {
    font-size: var(--normal-font-size);
  }

  .philosophy__main-quote {
    font-size: 1.2rem;  /* h3-font-size(1.5rem)의 80% */
  }

  .philosophy__value {
    flex-direction: column;
    text-align: center;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .awards__grid {
    grid-template-columns: 1fr;
  }
  
  .history__timeline::before {
    left: 30px;
  }
  
  .history__item {
    grid-template-columns: 60px 1fr;
    gap: var(--spacing-md);
  }
  
  .history__year {
    font-size: var(--normal-font-size);
  }
  
  .history__year::after {
    right: -16px;
    width: 12px;
    height: 12px;
    border-width: 3px;
  }
}

@media screen and (max-width: 480px) {
  .page-hero__title {
    font-size: var(--h2-font-size);
  }

  .philosophy__card {
    padding: var(--spacing-lg);
  }

  .philosophy__card blockquote {
    font-size: var(--h3-font-size);
  }

  .team__member {
    padding: var(--spacing-lg);
  }

  .team__avatar {
    width: 100px;
    height: 100px;
  }

  .history__item {
    grid-template-columns: 50px 1fr;
  }

  .history__timeline::before {
    left: 25px;
  }

  .history__content {
    padding: var(--spacing-md);
  }
}