/* === About Page Style === */

/* 전역 폰트는 tokens.css 에서 지정됨
   body { font-family: "Segoe UI", Arial, sans-serif; } */

/* === Hero Banner === */
.about-hero {
  background: url('/img/main_banner.png') center/cover no-repeat;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
}
.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}
.about-hero p {
  margin-top: 10px;
  font-size: 1.1rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* === Section Title === */
.page-about h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  border-bottom: 3px solid var(--burgundy);
  display: inline-block;
  padding-bottom: .4rem;
  color: var(--ink);
}

/* === Card === */
.page-about .card {
  border: none;
  border-left: 6px solid var(--burgundy);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  padding: 1.2rem 1.5rem;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.page-about .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.page-about .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
}
.page-about .card-text,
.page-about li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
}

/* === Highlight === */
.page-about .highlight {
  color: var(--burgundy);
  font-weight: 600;
}

/* === About Page Styles === */
.page-about main {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
}

/* Section Title */
.page-about h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 3px solid var(--burgundy);
}

/* Grid Layout for Cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 1.5rem;
}

/* Info Card */
.about-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform .2s, box-shadow .2s;
}
.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Card Title */
.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: .5rem;
}

/* Card Body */
.about-card p {
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--ink);
}

/* Emphasize Bullet List inside Card */
.about-card ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: .95rem;
  color: var(--ink);
}
.about-card ul li {
  margin-bottom: .3rem;
}

/* CTA Buttons Section */
.page-about .cta {
  text-align: center;
  margin-top: 40px;
}
.page-about .cta .btn {
  margin: 0 8px;
}
