.page-header {
    h1 {
        font-size: 3.0625rem;
        color: var(--primary-text);
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    p {
        color: #555C74;
        font-size: 1.5625rem;
    }
}

.our-story-body {
    color: #262831;
    font-size: 1.25rem;
}

.our-story-heading {
    font-size: 1.9375rem;
    font-weight: 600;
    color: #262831;
    margin-bottom: 12px;
}

.our-story-image-text {
    margin-top: 8px;
    font-size: 0.875rem;
    color: var(--primary-text);
    margin-bottom: 0;
}

.why-choose-es-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;

    .why-choose-es-box {
        background-color: #FAFF86;
        border-radius: 16px;
        padding: 28px;
        display: flex;
        flex-direction: column;
        gap: 48px;

        p {
            color: var(--primary-text);
            font-size: 1.25rem;
        }
    }
}

.our-story-store-image {
    width: 100%;
    border-radius: 16px;
    height: 480px;
    object-fit: cover;
}

.our-story-stores {
    display: flex;
    gap: 16px;
    /* flex-wrap: wrap; */
    margin: 32px 0;
}

.our-story-team-image-container {
    margin: 48px 0 32px;
}

.our-story-section {
    margin-bottom: 44px;
}

.diane-and-john-image-container {
    margin-top: 32px;
}

.why-choose-section {
    margin-bottom: 32px;

    .our-story-heading {
        margin-bottom: 32px;
    }
}

@media (max-width: 1439.98px) {
    .why-choose-es-grid {
        grid-template-columns: 1fr;

        .why-choose-es-box {
            p {
                font-size: 1rem;
            }
        }
    }

    .our-story-stores {
        flex-direction: column;
    }

    .our-story-body {
        font-size: 1rem;
    }

    .our-story-heading {
        font-size: 1.4375rem;
        margin-bottom: 8px;
    }

    .our-story-team-image-container {
        margin: 32px 0 16px;
    }

    .our-story-store-image {
        height: 400px;
    }

    .our-story-section {
        margin-bottom: 28px;
    }

    .diane-and-john-image-container {
        margin-top: 16px;
    }

    .why-choose-section {
        margin-bottom: 16px;

        .our-story-heading {
            margin-bottom: 16px;
        }
    }

    .page-header {
        h1 {
            font-size: 1.8125rem;
        }

        p {
            font-size: 1rem;
        }
    }
}