/* ===========================
   ABOUT / BIO SECTION
   =========================== */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-card);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-bio {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

