/* =============================================================
   pxl_founder_quote — Founder Bio / Quote Card
   ============================================================= */

.bha-founder-wrap {
    padding-top: 80px;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ── Card ── */
.bha-founder-card {
    position: relative;
    background: #1B3A8C;
    border-radius: 20px;
    padding: 96px 52px 48px;
    text-align: center;
}

/* ── Floating circular image ── */
.bha-founder-img-wrap {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.20);
}

.bha-founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ── Body text ── */
.bha-founder-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 28px;
}

/* ── Divider ── */
.bha-founder-card::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 auto 24px;
}

/* ── Attribution ── */
.bha-founder-attr {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    letter-spacing: 0.5px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .bha-founder-wrap {
        padding-top: 64px;
    }
    .bha-founder-card {
        padding: 80px 28px 36px;
        border-radius: 16px;
    }
    .bha-founder-img-wrap {
        width: 128px;
        height: 128px;
        top: -64px;
    }
    .bha-founder-text {
        font-size: 15px;
    }
}
