/* about.css */
.page-hero{background:linear-gradient(160deg,var(--bg2) 0%,var(--primary-light) 100%);padding:64px 0 48px;border-bottom:1px solid var(--border);}
.page-hero h1{margin:10px 0 12px;}
.page-hero-sub{font-size:1rem;color:var(--muted);font-weight:500;}
.about-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:72px;align-items:start;}
.about-stats-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:20px;}
.astat-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-sm);padding:16px 18px;display:flex;align-items:center;gap:12px;box-shadow:var(--shadow-sm);}
.astat-ico{font-size:1.4rem;flex-shrink:0;}
.astat-num{font-family:'Fraunces',serif;font-size:1.5rem;font-weight:900;color:var(--primary);line-height:1;}
.astat-label{font-size:0.72rem;color:var(--muted);font-weight:600;}
.about-info-card{background:var(--bg2);border:1px solid var(--border);border-radius:var(--radius);padding:24px;}
.info-row{display:flex;gap:12px;align-items:flex-start;padding:10px 0;border-bottom:1px solid var(--border);font-size:0.88rem;}
.info-row:last-child{border-bottom:none;}
.info-label{font-weight:700;color:var(--ink2);min-width:90px;flex-shrink:0;}
.info-row span,.info-row a{color:var(--muted);}
.info-row a:hover{color:var(--primary);}
.edu-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:28px;display:flex;gap:20px;align-items:flex-start;box-shadow:var(--shadow-sm);}
.edu-icon{width:52px;height:52px;border-radius:14px;background:var(--primary-light);display:flex;align-items:center;justify-content:center;font-size:1.4rem;flex-shrink:0;}
.edu-degree{font-weight:800;font-size:1.05rem;color:var(--ink);margin-bottom:4px;}
.edu-inst{font-size:0.85rem;color:var(--primary);font-weight:600;margin-bottom:6px;}
@media(max-width:900px){.about-grid{grid-template-columns:1fr;gap:40px;}}
