/* About Section */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
}

.profile-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
}

.about-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 500;
}

.about-text h2 span {
    display: inline;
    background-clip: text;
    -webkit-background-clip: text;
    color: #666666;
    transition: color 0.1s ease;
}

.about-text h2 span.revealed {
    color: #000000;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-text .social-links {
    justify-content: flex-start;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
