body.page-about {
    line-height: 1.8;
}

.about-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.about-emoji {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
}

.about-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.about-tagline {
    font-size: 18px;
    color: var(--text-sub);
}

.about-section {
    margin-bottom: 48px;
}

.about-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-section p,
.about-section ul {
    font-size: 16px;
    color: var(--text-sub);
    margin-bottom: 12px;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section li {
    padding: 6px 0;
}

.about-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.about-project-card {
    display: block;
    padding: 24px 20px;
    background: var(--white);
    border: 1px solid #F0F0F5;
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.about-project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: var(--green-light);
}

.about-project-emoji {
    font-size: 32px;
    margin-bottom: 8px;
}

.about-project-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-project-card p {
    font-size: 13px;
    color: var(--text-sub);
    margin: 0;
}

.about-contact {
    text-align: center;
    margin-top: 16px;
}

.about-contact a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.about-contact a:hover {
    background: var(--green);
    color: var(--white);
}

@media (max-width: 600px) {
    .about-container { padding: 0 20px; }
    .about-hero { padding: 40px 0 32px; }
    .about-hero h1 { font-size: 28px; }
    .about-emoji { font-size: 52px; }
}
