/* =============================================
   ABOUT PAGE CSS
============================================= */

/* ===== BASE CSS ===== */
.page-hero { padding: 60px 0 40px; background: #fff; text-align: center; }
.breadcrumb { font-size: 14px; color: #9CA3AF; margin-bottom: 24px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.breadcrumb a { color: #9CA3AF; text-decoration: none; }
.breadcrumb a:hover { color: #2ECC71; }
.breadcrumb span { color: #9CA3AF; }

.page-hero h1 { font-size: 44px; margin-bottom: 16px; color: #1A1A2E; }
.page-hero p { font-size: 18px; color: #6B7280; max-width: 700px; margin: 0 auto; line-height: 1.6; }

.section-light { background: #fff; padding: 80px 0; }
.section-gray { background: #F8F9FA; padding: 80px 0; }
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { font-size: 32px; color: #1A1A2E; margin-bottom: 8px; }

.cta-banner { background: #2D3436; padding: 80px 0; text-align: center; }
.cta-banner h2 { color: #fff; font-size: 32px; margin-bottom: 16px; }
.cta-banner p { font-size: 16px; color: #D1D5DB; max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }

.story-grid { display: grid; grid-template-columns: 60% 40%; gap: 60px; align-items: start; max-width: 1100px; margin: 0 auto; }
@media(max-width:900px){ .story-grid { grid-template-columns: 1fr; gap: 40px; } .story-grid .img-wrap { grid-row: 1; } }

.story-text { font-size: 16px; color: #6B7280; line-height: 1.8; }
.story-text p { margin-bottom: 24px; }
.story-img-ph { width: 100%; aspect-ratio: 350/400; background: #E5E7EB; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #9CA3AF; font-size: 20px; font-weight: 500; }
.story-img { width: 100%; aspect-ratio: 350/400; object-fit: cover; border-radius: 16px; }

.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
@media(max-width:768px){ .approach-grid { grid-template-columns: 1fr; } }
.approach-block { background: #fff; padding: 16px 24px; border-left: 4px solid #E5E7EB; border-radius: 0 12px 12px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.approach-block.c-green { border-left-color: #2ECC71; }
.approach-block.c-blue { border-left-color: #3498DB; }
.approach-block.c-purple { border-left-color: #9B59B6; }
.approach-block.c-purp { border-left-color: #9B59B6; }
.approach-block.c-gold { border-left-color: #F4B400; }
.approach-block h4 { font-size: 18px; color: #1A1A2E; margin-bottom: 8px; }
.approach-block p { font-size: 15px; color: #6B7280; line-height: 1.6; margin: 0; }

.stats-row-large { display: flex; justify-content: space-between; max-width: 1000px; margin: 0 auto; padding: 20px 0; }
@media(max-width:768px){ .stats-row-large { flex-wrap: wrap; gap: 40px; justify-content: space-around; } .stat-item { width: 40%; } }
@media(max-width:480px){ .stats-row-large { flex-direction: column; align-items: center; gap: 40px; } .stat-item { width: 100%; text-align: center; } }
.stat-item { text-align: center; }
.stat-num { font-size: 48px; font-weight: 700; color: #2ECC71; line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 14px; color: #6B7280; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

.team-row { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.team-strip { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 16px 24px; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; }
.team-strip:hover { border-color: #2ECC71; box-shadow: 0 4px 12px rgba(46,204,113,0.1); }
.team-av { width: 64px; height: 64px; border-radius: 50%; background: #F3F4F6; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 600; color: #9CA3AF; flex-shrink: 0; }
.team-info { flex: 1; min-width: 0; }
.team-name { font-size: 18px; color: #1A1A2E; font-weight: 600; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.team-role { font-size: 14px; color: #2ECC71; font-weight: 600; }
.team-desc { font-size: 14px; color: #6B7280; white-space: normal; }
.team-link { font-size: 14px; color: #2ECC71; font-weight: 600; flex-shrink: 0; }
@media(max-width:600px){ .team-strip { flex-direction: column; text-align: center; } .team-link { margin-top: 8px; } }
