/* --- About Page Specific Layout --- */

/* Fail-safe Box Sizing */
* { box-sizing: border-box; }

.container {
    max-width: 720px !important; /* Strictly 720px container */
    width: 90%;
    margin: 60px auto;
}

/* --- Updated About Page Title --- */
.about-page-title {
    font-family: 'Fleur De Leah', cursive;
    font-size: 3.6rem; 
    font-weight: 400;
    color: var(--l-text-main);
    text-align: center;
    
    /* Reusing your stability fixes */
    margin-top: 10px !important; 
    margin-bottom: 25px;
    line-height: 0.8; 
    display: block;
}

/* --- Mobile View (Stacked & Centered) --- */
.about-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.bio-image {
    width: 100%;
    max-width: 180px; /* Reduced to 180px per your request */
    height: auto;
    border-radius: 12px; /* 12px radius */
    border: 2px solid var(--l-accent-pink); /* 2px pink border */
    box-shadow: 0 0 20px rgba(255, 133, 161, 0.3);
    object-fit: cover;
    margin: 22px auto 0 auto; /* 22px top margin */
}

/* --- Desktop View (Side-by-Side Float) --- */
@media (min-width: 768px) {
    .about-content-wrapper {
        flex-direction: row !important; /* Image left, text right */
        align-items: flex-start;
        text-align: left;
    }

    .bio-image-wrapper {
        flex: 0 0 180px; /* Locked at 180px column width */
    }

    .bio-image {
        margin: 0 !important; /* Removes auto-center for desktop layout */
    }

    .bio-full {
        flex: 1; /* Text fills the remaining space */
        padding-left: 45px; /* Clean gap between portrait and text */
    }
}

/* --- Typography --- */
.bio-full p {
    margin-bottom: 22px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--l-text-main);
}
.bio-full a {
    color: var(--l-accent-pink);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.bio-full a:hover {
    border-bottom: 1px solid var(--l-accent-pink);
    opacity: 0.8;
}