/* =========================================
   OUR STORY PAGE
========================================= */

.about-story-page {
    padding: 110px 0;
}

.about-story-article {
    max-width: 1100px;
    margin: 0 auto;
}

.about-story-header {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.about-story-title {
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin: 25px 0 35px;
}

.about-story-introduction {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-story-image-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 90px;
}

.about-story-image-wrapper {
    margin: 0;
    overflow: hidden;
}

.about-story-image-wrapper:first-child {
    min-height: 520px;
}

.about-story-image-wrapper:last-child {
    min-height: 420px;
    margin-top: 80px;
}

.about-story-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.about-story-body {
    max-width: 760px;
    margin: 0 auto;
}

.about-story-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    margin: 20px 0 30px;
}

.about-story-text {
    font-size: 1.08rem;
    line-height: 1.9;
}

.about-story-footer {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 65px;
}


/* =========================================
   MOBILE OUR STORY PAGE
========================================= */

@media (max-width: 768px) {

    .about-story-page {
        padding: 60px 16px;
    }

    .about-story-header {
        margin-bottom: 45px;
    }

    .about-story-title {
        font-size: 2.7rem;
    }

    .about-story-introduction {
        font-size: 1rem;
    }

    .about-story-image-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 55px;
    }

    .about-story-image-wrapper:first-child,
    .about-story-image-wrapper:last-child {
        min-height: 300px;
        height: 300px;
        fit-content: cover;
        margin-top: 0;
    }

    .about-story-heading {
        font-size: 2.3rem;
    }

    .about-story-text {
        font-size: 1rem;
    }

    .about-story-footer {
        flex-direction: column;
        align-items: stretch;
    }

} 