/* =========================
   Founder Story Section
========================= */

.founder-story-section {
    background: #ffffff;
}

/* Top Mission */
.mission-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
}

.mission-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.mission-divider {
    height: 1px;
    background: #cfcfcf;
}

/* Black Philosophy Block */
.story-container {
    background: #000;
    border-radius: 28px;
    padding: 60px 40px;
    overflow: hidden;
}

.story-content {
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Background Big Text */
.story-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: clamp(60px, 8vw, 110px);
    font-weight: 900;
    /* extra bold */
    letter-spacing: 4px;
    /* spacing like design */
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.16);
    white-space: nowrap;

    pointer-events: none;
    z-index: 1;
}

/* Founder Title */
.founder-story-title {
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
}

/* Founder Image */
.founder-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.founder-story-img {
    width: 100%;
    object-fit: cover;
}

/* Founder Content */
.founder-story-content {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.founder-list {
    padding-left: 18px;
}

/* Responsive */
@media (max-width: 991px) {

    .story-container {
        padding: 40px 20px;
    }

    .story-bg-text {
        font-size: 50px;
    }

    .mission-title,
    .mission-text {
        text-align: center;
    }

    .founder-story-content {
        text-align: center;
    }

    .founder-list {
        display: inline-block;
        text-align: left;
    }
}