/* ==========================================================
   OWNER PAGE — EXACT SCREENSHOT LAYOUT
   ========================================================== */

body .owner-profile-section {
    width: 100%;
    padding: 58px 0 72px;
    background: #ffffff;
}

body .owner-profile-grid {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    width: min(calc(100% - 3rem), 980px);
    margin-inline: auto;
}

/* Left portrait column */
body .owner-profile-image {
    min-width: 0;
}

body .owner-profile-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

body .owner-image-placeholder {
    display: grid;
    min-height: 540px;
    place-items: center;
    padding: 2rem;
    background: #e5ebef;
    color: #596672;
    text-align: center;
}

/* Right biography column */
body .owner-profile-content {
    min-width: 0;
    padding-top: 4px;
}

body .owner-profile-content h1 {
    max-width: 560px;
    margin: 0 0 30px;
    color: #004c8e;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.45;
    text-transform: uppercase;
}

body .owner-profile-biography {
    max-width: 560px;
    color: #30363b;
    font-size: 17px;
    line-height: 1.72;
}

body .owner-profile-biography p {
    margin: 0 0 18px;
}

/* Keep footer close to the completed content */
body .owner-profile-section + .site-footer {
    margin-top: 0;
}

/* Tablet */
@media (max-width: 900px) {
    body .owner-profile-grid {
        grid-template-columns: 330px minmax(0, 1fr);
        gap: 38px;
        width: min(calc(100% - 2.5rem), 860px);
    }

    body .owner-profile-content h1 {
        font-size: 29px;
    }

    body .owner-profile-biography {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    body .owner-profile-section {
        padding-block: 44px 60px;
    }

    body .owner-profile-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        width: min(calc(100% - 2rem), 560px);
    }

    body .owner-profile-image {
        max-width: 430px;
        margin-inline: auto;
    }

    body .owner-profile-content h1,
    body .owner-profile-biography {
        max-width: none;
    }

    body .owner-profile-content h1 {
        font-size: 28px;
    }
}
