/* ===================== ABOUT FLEX LAYOUT ===================== */
.about-flex {
    display: flex;
    align-items: flex-start;
    gap: 2.2rem;
    margin: 2.2rem 0 2.2rem 0;
    flex-wrap: wrap;
}
.about-img-col {
    flex: 0 0 auto;
    text-align: center;
}
.about-img-col img {
    width: 220px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 4px 24px #0002;
}
.about-img-caption {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 0.5rem;
}
.about-text-col {
    flex: 1 1 0%;
    min-width: 220px;
}
@media (max-width: 700px) {
    .about-flex {
        flex-direction: column;
        gap: 1.2rem;
    }
    .about-img-col img {
        width: 100%;
        max-width: 320px;
    }
}

/* ===================== ABOUT SOCIAL ===================== */
.about-social {
    margin-top: 2.5rem;
}
.about-social h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}
.about-social-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.about-social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: var(--card-bg, #1e293b);
    color: var(--text-main, #e2e8f0);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, transform 0.15s;
}
.about-social-links a:hover {
    background: var(--accent, #38bdf8);
    color: #fff;
    transform: translateY(-2px);
}
body.light-mode .about-social-links a {
    background: #e3eef9;
    color: #1e293b;
    border: 1px solid #9ec5e8;
}
body.light-mode .about-social-links a:hover {
    background: #4a9fe5;
    color: #fff;
}
