/* ======================================
   OUR STORY SECTION
====================================== */

.fg-our-story {
    background-color: #EEF0FF;
    padding: 80px 0;
    width: 100% !important;
}

/* ======================================
   INNER CONTAINER — TWO COLUMNS
====================================== */

.fg-our-story__inner {
    max-width: 1680px;
    padding: 0 12px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ======================================
   LEFT COLUMN
====================================== */

.fg-our-story__left {
    flex: 0 0 45%;
    max-width: 30%;
}

/* Eyebrow */
.fg-our-story__eyebrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.fg-our-story__eyebrow-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #D2221A;
    flex-shrink: 0;
}

.fg-our-story__eyebrow-label {
    color: #06064E;
}

.fg-our-story__eyebrow-accent {
    color: #D2221A;
}

/* Heading — WYSIWYG output */
.fg-our-story__heading {
    margin-bottom: 32px;
}

.fg-our-story__heading h1,
.fg-our-story__heading h2,
.fg-our-story__heading h3,
.fg-our-story__heading p {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #06064E;
    margin: 0;
}

/* Colored words in heading (set via WYSIWYG color picker) */
.fg-our-story__heading span[style*="color"],
.fg-our-story__heading strong[style*="color"] {
    color: #D2221A !important;
}

/* Button */
.fg-our-story__btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #D2221A;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 90px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.fg-our-story__btn:hover {
    background-color: #b01a13;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(210, 34, 26, 0.35);
    color: #ffffff;
}

/* ======================================
   RIGHT COLUMN
====================================== */

.fg-our-story__right {
    flex: 0 0 45%;
    max-width: 45%;
}

.fg-our-story__description,
.fg-our-story__description p {
    font-size: 1.2rem;
    line-height: 1.75;
    color: #1C2131;
    margin: 0;
}

/* ======================================
   RESPONSIVE
====================================== */

/* XL — 1200px and below */
@media (max-width: 1199.98px) {
    .fg-our-story__heading h1,
    .fg-our-story__heading h2,
    .fg-our-story__heading h3,
    .fg-our-story__heading p {
        font-size: 2.4rem;
    }

}

/* LG — 992px and below */
@media (max-width: 991.98px) {
    .fg-our-story__inner {
        flex-direction: column;
        gap: 28px;
    }

    .fg-our-story__left,
    .fg-our-story__right {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .fg-our-story__heading h1,
    .fg-our-story__heading h2,
    .fg-our-story__heading h3,
    .fg-our-story__heading p {
        font-size: 2rem;
    }
}

/* MD — 768px and below (Tablet) */
@media (max-width: 767.98px) {
    .fg-our-story {
        padding: 60px 0;
    }

    .fg-our-story__inner {
        flex-direction: column;
        gap: 32px;
    }

    .fg-our-story__left {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .fg-our-story__right {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .fg-our-story__description,
    .fg-our-story__description p {
        max-width: 100%;
    }

}

/* SM — 576px and below */
@media (max-width: 575.98px) {
    .fg-our-story {
        padding: 48px 0;
    }

    .fg-our-story__heading h1,
    .fg-our-story__heading h2,
    .fg-our-story__heading h3,
    .fg-our-story__heading p {
        font-size: 1.75rem;
    }

    .fg-our-story__btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}
