/* ============================================================
   Judd Zebersky — Founder page
   ============================================================ */

/* ---------- page wrapper ---------- */
.jz-page {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 80px 24px 100px;
    margin-top: 60px;              /* clear fixed navbar */
}

/* ---------- eyebrow heading ---------- */
.jz-eyebrow {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: normal;
    text-transform: none;
    color: #0e0f11;
    text-align: center;
    margin: 0 0 12px;
}

/* ---------- founder name ---------- */
.jz-name {
    font-size: 56px;
    font-weight: 700;
    color: #0057B8;
    text-align: center;
    margin: 0 0 56px;
    line-height: 1.1;
}

/* ---------- hero image ---------- */
.jz-hero-wrap {
    width: 100%;
    max-width: 1150px;
    display: flex;
    justify-content: center;
    margin: 0 auto 40px;
}

.jz-hero-img {
    width: 100%;
    max-width: 1024px;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}

/* ---------- description / body text ---------- */
.jz-desc {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto 32px;
    text-align: left;
}

.jz-desc p {
    font-size: 17px;
    line-height: 1.75;
    color: #4b5563;                /* medium gray */
    margin: 0 0 24px;
}

.jz-desc p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   Responsive
   ============================================================ */

/* Tablets */
@media (max-width: 1024px) {
    .jz-page {
        padding: 60px 20px 80px;
        margin-top: 50px;
    }

    .jz-name {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .jz-hero-wrap {
        max-width: 900px;
    }

    .jz-desc {
        max-width: 900px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .jz-page {
        padding: 40px 16px 60px;
        margin-top: 40px;
    }

    .jz-eyebrow {
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }

    .jz-name {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .jz-hero-wrap {
        margin-bottom: 32px;
    }

    .jz-hero-img {
        border-radius: 10px;
    }

    .jz-desc p {
        font-size: 15px;
        line-height: 1.7;
    }
}
