.wp-block-headless-story-content {
    background: #f0f4f7;
    border-radius: 32px;
    padding: 108px 64px;
    overflow: clip;
}

.story-content__top {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.story-content__text-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-content__eyebrow {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4;
    color: #365072;
    margin: 0;
}

.story-content__divider {
    display: block;
    width: 151px;
    height: 5px;
    background: #fa700d;
    border-radius: 3px;
}

.story-content__heading {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 52px;
    line-height: 1.1;
    color: #365072;
    margin: 0;
}

.story-content__body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(22, 30, 35, 0.75);
}

.story-content__body p {
    margin: 0 0 16px;
}

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

.story-content__body-accent {
    color: #fa700d;
}

.story-content__large-image {
    flex-shrink: 0;
    width: 679px;
    max-width: 50%;
    aspect-ratio: 3 / 4;
    border-radius: 32px;
    overflow: clip;
}

.story-content__large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content__gallery {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.story-content__gallery-large {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1 / 1;
    border-radius: 32px;
    overflow: clip;
}

.story-content__gallery-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content__gallery-grid {
    flex: 1 1 0;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.story-content__gallery-thumb {
    border-radius: 32px;
    overflow: clip;
}

.story-content__gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .story-content__top {
        flex-direction: column;
        gap: 40px;
    }

    .story-content__large-image {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .story-content__heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .wp-block-headless-story-content {
        padding: 48px 32px;
    }

    .story-content__gallery {
        flex-direction: column;
    }

    .story-content__gallery-large {
        aspect-ratio: 4 / 3;
    }

    .story-content__large-image {
        aspect-ratio: 4 / 3;
    }
}
