/* Our Story CSS file */
/* ------------------------------------------------- */

/* Introduction Section */
/* ------------------------------------------------- */

.our-story-intro {
    padding: var(--space-11) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.our-story-intro .heading-1 {
    max-width: 1400px;
    color: var(--neutral-950);
}

.our-story-intro .body-large {
    max-width: 720px;
    color: var(--neutral-500);
}

/* History Section */
/* ------------------------------------------------- */

.our-story-history {
    padding: var(--space-11) 0 0;
}

.our-story-history .heading-2 {
    color: var(--neutral-950);
}

/* Text Section */
/* ------------------------------------------------- */

.our-story-text {
    padding: var(--space-11) 0 0;
}

.our-story-text .eyebrow {
    margin-bottom: var(--space-5);
}

.our-story-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-9);
}

.our-story-text-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.our-story-text-right {
    display: flex;
    flex-direction: column;
}

.our-story-text .heading-2 {
    color: var(--neutral-950);
}

.our-story-text .body-medium {
    color: var(--neutral-500);
}

/* Gallery Section */
/* ------------------------------------------------- */

.our-story-gallery {
    padding: var(--space-11) 0;
}

.our-story-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.our-story-gallery-row {
    display: grid;
    gap: var(--space-4);
}

.our-story-gallery-item {
    overflow: hidden;
}

.our-story-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text 2 Section */
/* ------------------------------------------------- */

.our-story-text-2 {
    padding: 0 0 var(--space-11) 0;
}

.our-story-text-2 .eyebrow {
    margin-bottom: var(--space-5);
}

.our-story-text-2-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-9);
}

.our-story-text-2-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.our-story-text-2-right {
    display: flex;
    flex-direction: column;
}

.our-story-text-2 .heading-2 {
    color: var(--neutral-950);
}

.our-story-text-2 .body-medium {
    color: var(--neutral-500);
}

/* Future Section */
/* ------------------------------------------------- */

.our-story-future {
    position: relative;
    padding: var(--space-12) 0;
}

.our-story-future-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.our-story-future-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.our-story-future .wrap {
    position: relative;
    z-index: 1;
}

.our-story-future-content {
    background: var(--Background-Overlay, rgba(0, 0, 0, 0.10));
    backdrop-filter: blur(5px);
    display: flex;
    padding: var(--Component-Padding-XL, 64px) var(--Section-Padding-M, 120px);
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 1035px;
    margin: auto;
}

.our-story-future-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-3);
    text-align: center;
}

.our-story-future-right {
    text-align: center;
}

.our-story-future .eyebrow {
    color: var(--neutral-25);
}

.our-story-future .heading-2 {
    color: var(--neutral-25);
}

.our-story-future .body-medium {
    color: var(--neutral-25);
}

/* Responsive */
/* ------------------------------------------------- */

@media (max-width: 800px) {
    .our-story-text-wrapper,
    .our-story-text-2-wrapper {
        grid-template-columns: 1fr;
    }
}
