/* Minimal About Page - Boris Cherny style */

body.page-about {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #fff;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.6;
}

.about-page {
    max-width: 680px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.about-content h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 24px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 20px;
    color: #333;
}

.social-links {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.social-links a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.15s ease;
}

.social-links a:hover {
    color: #004499;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .about-page {
        padding: 80px 20px 60px;
    }

    .about-content h1 {
        font-size: 26px;
    }

    .about-content p,
    .social-links {
        font-size: 16px;
    }
}
