/* 전체 */
.about-page {
  background: #F3F4F6;
}

.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 플레이스홀더 (나중에 제거) */
.about-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border-radius: 12px;
}

/* 섹션1: 건물 이미지 */
.about-hero-img {
  border-radius: 12px;
  overflow: hidden;
}

.about-hero-img img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* 좌우 배치 */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text-col {
  padding: 20px 0;
  text-align: center;
}

.about-img-col {
  border-radius: 12px;
  overflow: hidden;
}

.about-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* 텍스트 스타일 */
.about-text-col h1 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 16px;
}

.about-text-col h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 16px;
}

.about-line {
  width: 50px;
  height: 3px;
  background: #C9A96E;
  margin: 0 auto 28px;
}

.about-text-col p {
  font-size: 15px;
  line-height: 2;
  color: #4B5563;
  margin-bottom: 14px;
  text-align: left;
}

.about-text-col strong {
  color: #1a1f36;
}

.about-highlight {
  font-size: 15px !important;
  font-weight: 700;
  color: #1a1f36 !important;
  margin: 0 0 0 !important;
}

.about-sign {
  margin-top: 24px;
  color: #9CA3AF !important;
  text-align: center !important;
}

.about-sign strong {
  color: #1a1f36;
  font-size: 17px;
}

.about-sign-img {
  display: block;
  margin: 12px auto 0;
  width: 100%;
  max-width: 560px;
  height: auto;
}

/* 데스크탑: 모바일 전용 제목 숨김 */
.about-greeting-title-mobile {
  display: none;
}

/* 모바일 */
@media (max-width: 768px) {
  .about-wrap {
    padding: 20px 16px 40px;
    gap: 24px;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }


  .about-text-col h1 { font-size: 22px; }
  .about-text-col h2 { font-size: 20px; }
  .about-text-col p { font-size: 14px; }

  .about-greeting-title-mobile {
    display: block;
    text-align: center;
    margin-bottom: -9px;
  }
  .about-greeting-title-mobile h2 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1f36;
    margin-bottom: 15px;
  }
  .about-greeting-title-mobile .about-line {
    margin: 0 auto 15px;
  }
  .about-greeting-title-desktop {
    display: none;
  }
}
