/* About Section */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: center;
    /* Default center for alignment */
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .about-layout {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
}

.about-text {
    /* Ensure text block is centered in its grid cell if needed, though text-align handles content */
    margin: 0 auto;
}

.about-text .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

.about-image {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
}

.about-image img {
    position: relative;
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--color-surface-2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--color-primary);
}

.about-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-main);
    opacity: 0.2;
    filter: blur(40px);
    border-radius: 50%;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.about-image:hover .about-glow {
    opacity: 0.4;
}

@media (max-width: 968px) {
    .about-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-text .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
}