.about-nav {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #1e1e1e;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 100;
    flex-shrink: 0;
}

.about-nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
}

.about-nav-back svg { width: 14px; height: 14px; }
.about-nav-back:hover { color: #f0f0f0; }

.about-nav-sep {
    width: 1px;
    height: 14px;
    background: #2a2a2a;
}

.about-nav-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.about-layout {
    flex: 1;
    height: 0;
}

.about-bio-second {
    margin-top: 16px;
}

.about-right {
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.about-photo {
    width: 100%;
    height: 100%;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* --- MOBILE --- */
@media (max-width: 768px), (orientation: portrait) {
    .about-photo {
        width: min(240px, 70vw);
        margin: 0 auto 40px;
    }
}
