/* ========== STORY PAGE ========== */
.story-page {
    width: 85%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

/* Left Photo */
.story-photo {
    flex: 0 0 47%;
    position: relative;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 50px 0;
}

.story-photo-wrapper {
    position: relative;
    width: 80%;
    height: 82%;
    overflow: hidden;
}

.story-photo-wrapper img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-photo-logo {
    position: absolute;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    z-index: 2;
}

/* Right Content */
.story-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    background: var(--color-white);
    padding: 60px 50px;
}

.story-text-wrapper {
    max-width: 540px;
}

.story-heading {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 36px;
    letter-spacing: 0.02em;
}

/* Blocks */
.story-block {
    margin-bottom: 10px;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-block h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.story-block p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    color: #333;
    line-height: 1.75;
    margin-bottom: 14px;
}

.story-block p:last-child {
    margin-bottom: 0;
}

/* Divider */
.story-divider {
    width: 60px;
    height: 1px;
    background: var(--color-light-gray);
    margin: 30px 0;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .story-content {
        padding: 50px 30px;
    }

    .story-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .story-page {
        width: 100%;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .story-photo {
        flex: none;
        height: 40vh;
    }

    .story-content {
        flex: none;
        padding: 40px 30px 80px;
    }
}
