/* ============================================================
   About — about.html 전용 스타일 (styles.css의 --변수 재사용)
   ============================================================ */

.about-body {
  background: #eef2f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#about-app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.about-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.about-header h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.about-back {
  color: var(--blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.about-back:hover { text-decoration: underline; }
.about-header-spacer { flex: 1; }

.about-main {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 28px 20px 56px;
}

@media (max-width: 760px) {
  .about-main {
    padding-bottom: calc(56px + var(--map-nav-h, 0px));
  }
}

.about-content {
  width: 100%;
  max-width: 640px;
}

.about-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 28px;
}

.about-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 16px;
}

.about-section h2 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.about-section p {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text);
}
.about-section p:last-child { margin-bottom: 0; }

.about-section ul {
  margin: 0;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text);
}

.about-section li { margin-bottom: 6px; }
.about-section li:last-child { margin-bottom: 0; }
.about-section li b { color: var(--text); }

.about-contact {
  font-size: 13.5px;
  color: var(--muted);
}
.about-contact a {
  color: var(--blue);
  text-decoration: none;
}
.about-contact a:hover { text-decoration: underline; }

.about-footer-link {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}
