/* ============================================
   Founder Page — Editorial Style
   ============================================ */

.founder-page {
    padding: 80px 0 100px;
}

/* Two-column layout */
.founder-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- Heading ---- */
.founder-heading {
    margin-bottom: 40px;
}

.founder-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 52px;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.15;
    margin-bottom: 12px;
    font-style: italic;
}

.founder-title-bar {
    width: 200px;
    height: 4px;
    background: #8b1a2b;
    border-radius: 2px;
}

/* ---- Body Text ---- */
.founder-body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
}

.founder-body p {
    font-size: 19px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.founder-body ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.founder-body ul li {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 6px;
}

/* ---- Portrait Column ---- */
.founder-portrait-column {
    position: sticky;
    top: 120px;
    display: flex;
    justify-content: center;
}

.founder-portrait-wrapper {
    position: relative;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Decorative SVG arcs */
.founder-decorative-arcs {
    position: absolute;
    top: -30px;
    left: -40px;
    width: 400px;
    height: 450px;
    pointer-events: none;
    z-index: 0;
}

/* Circular portrait */
.founder-portrait-circle {
    position: relative;
    z-index: 1;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 5px solid #fff;
    flex-shrink: 0;
}

.founder-portrait-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Caption below portrait */
.founder-portrait-caption {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.caption-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.caption-name {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 19px;
    font-weight: 700;
    color: #222;
}

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

@media (max-width: 1024px) {
    .founder-layout {
        grid-template-columns: 1fr 280px;
        gap: 40px;
    }

    .founder-title {
        font-size: 43px;
    }

    .founder-portrait-circle {
        width: 220px;
        height: 220px;
    }

    .founder-portrait-wrapper {
        width: 280px;
    }

    .founder-decorative-arcs {
        width: 340px;
        height: 400px;
        left: -30px;
        top: -20px;
    }
}

@media (max-width: 768px) {
    .founder-page {
        padding: 50px 0 70px;
    }

    .founder-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* On mobile, show portrait first */
    .founder-portrait-column {
        order: -1;
        position: static;
    }

    .founder-portrait-wrapper {
        width: 260px;
        margin: 0 auto;
    }

    .founder-portrait-circle {
        width: 200px;
        height: 200px;
    }

    .founder-decorative-arcs {
        width: 300px;
        height: 350px;
        left: -20px;
        top: -15px;
    }

    .founder-title {
        font-size: 36px;
        text-align: center;
    }

    .founder-title-bar {
        margin: 0 auto;
        width: 150px;
    }

    .founder-heading {
        text-align: center;
    }

    .founder-body p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .founder-page {
        padding: 30px 0 50px;
    }

    .founder-title {
        font-size: 32px;
    }

    .founder-portrait-circle {
        width: 170px;
        height: 170px;
    }

    .founder-portrait-wrapper {
        width: 220px;
    }

    .founder-decorative-arcs {
        width: 260px;
        height: 310px;
        left: -20px;
        top: -15px;
    }

    .founder-body p {
        font-size: 17px;
        line-height: 1.75;
    }
}