/* 인물 소개 */

.founder-profile {
    padding: 74px 0 54px;
}

.founder-profile__grid {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 58px;
    align-items: center;
}


/* 멜빈 존스 사진 */

.founder-photo {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(4, 26, 52, 0.88) 100%
        ),
        url("/images/sub/lions/founder/jones-melvin.jpg")
        center top / cover no-repeat;

    box-shadow: 0 22px 50px rgba(5, 30, 60, 0.18);
}

.founder-photo::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 20px;
    pointer-events: none;
}

.founder-photo__signature {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 2;

    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-style: italic;
    text-align: center;
}


/* 인물 설명 */

.founder-name {
    margin: 0;

    color: var(--navy);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.04em;
}

.founder-name span {
    display: inline-block;
    margin-left: 10px;

    color: #8b95a1;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.founder-copy p:not(.section-eyebrow) {
    margin: 22px 0 0;

    color: #596777;
    font-size: 16px;
    line-height: 1.95;
    word-break: keep-all;
}

.founder-copy strong {
    color: var(--navy);
    font-weight: 700;
}


/* 주요 발자취
--------------------------------------------------------- */

.founder-milestones {
    padding: 46px 0 56px;
}


/* 인용문
--------------------------------------------------------- */

.founder-quote-section {
    padding: 14px 0 48px;
}


/* 멜빈 존스의 유산
--------------------------------------------------------- */

.founder-legacy {
    padding: 20px 0 120px;
}

.founder-legacy__card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 42px;
    align-items: center;

    padding: 26px;
    border-radius: 28px;
    background: var(--soft);
}

.founder-legacy__image {
    min-height: 250px;
    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            rgba(5, 30, 60, 0.04),
            rgba(5, 30, 60, 0.18)
        ),
        url("/images/sub/lions/founder/1cf0412d-8544-4d30-b30d-e44ff3323fcc.png")
        center / cover no-repeat;
}

.founder-legacy__copy {
    padding: 20px 28px 20px 0;
}

.founder-legacy__title {
    margin: 0;

    color: var(--navy);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.04em;
}

.founder-legacy__copy p:not(.section-eyebrow) {
    margin: 18px 0 0;

    color: #5f6c79;
    font-size: 16px;
    line-height: 1.9;
    word-break: keep-all;
}


/* 태블릿
--------------------------------------------------------- */

@media (max-width: 1024px) {
    .founder-profile__grid {
        grid-template-columns: 290px 1fr;
        gap: 40px;
    }

    .founder-legacy__card {
        grid-template-columns: 280px 1fr;
    }
}


/* 모바일
--------------------------------------------------------- */

@media (max-width: 768px) {
    .founder-profile {
        padding: 70px 0 44px;
    }

    .founder-profile__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .founder-photo {
        width: min(100%, 380px);
        min-height: 500px;
        margin: 0 auto;
    }

    .founder-milestones {
        padding: 36px 0 46px;
    }

    .founder-quote-section {
        padding: 10px 0 42px;
    }

    .founder-legacy {
        padding: 16px 0 80px;
    }

    .founder-legacy__card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 22px;
    }

    .founder-legacy__image {
        min-height: 300px;
    }

    .founder-legacy__copy {
        padding: 10px 8px 20px;
    }
}


/* 작은 모바일
--------------------------------------------------------- */

@media (max-width: 480px) {
    .founder-profile {
        padding-top: 54px;
    }

    .founder-photo {
        min-height: 440px;
        border-radius: 22px;
    }

    .founder-photo::before {
        inset: 14px;
        border-radius: 16px;
    }

    .founder-photo__signature {
        left: 20px;
        right: 20px;
        bottom: 22px;
        font-size: 27px;
    }

    .founder-name {
        font-size: 34px;
    }

    .founder-name span {
        display: block;
        margin: 8px 0 0;
        font-size: 18px;
    }

    .founder-copy p:not(.section-eyebrow) {
        font-size: 15px;
        line-height: 1.85;
    }

    .founder-legacy__card {
        padding: 18px;
        border-radius: 22px;
    }

    .founder-legacy__image {
        min-height: 240px;
        border-radius: 18px;
    }

    .founder-legacy__title {
        font-size: 28px;
    }

    .founder-legacy__copy p:not(.section-eyebrow) {
        font-size: 15px;
        line-height: 1.85;
    }
}