/* =========================================
   ABOUT US SECTION
   ========================================= */

.about-us-section {
    width: 100%;
    padding: 60px 20px;
}

/* ---- Header Grid (uses mb-lg for bottom margin) ---- */

.about-us__header {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-us__header-left {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-us__eyebrow {
    color: var(--primary, #566c31);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about-us__title {
    color: var(--jns-text, #1f270f);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.25;
    margin: 0;
}

.about-us__header-right {
    flex: 1 1 50%;
    min-width: 0;
}

.about-us__para {
    color: var(--jns-text, #1f270f);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    margin: 0;
}

/* ---- Bottom Banner Image ---- */

.about-us__image-card {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--primary, #566c31);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 36px;
}

/* ---- Overlay Quote Card on Image ---- */

.about-us__quote-card {
    display: flex;
    width: 528px;
    max-width: 100%;
    padding: 24px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background-color: var(--primary, #566c31);
    border-radius: 16px;
}

.about-us__quote-text {
    color: #FFFFFF;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

.about-us__quote-author {
    color: #D6EB12;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}

@media screen and (max-width: 1024px){
    .about-us-section{
            padding: 40px 20px 60px 20px;
    }
}

@media (max-width: 900px) {
    .about-us-section {
        padding: 40px 20px;
    }

    .about-us__header {
        flex-direction: column;
        gap: 20px;
    }

    .about-us__title {
        font-size: 28px;
        line-height: 1.3;
    }

    .about-us__image-card {
        min-height: 400px;
        padding: 20px;
    }

    .about-us__quote-card {
        width: 100%;
        padding: 20px;
        gap: 16px;
    }

    .about-us__quote-text,
    .about-us__quote-author {
        font-size: 17px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 40px 20px 0 20px; 
    }

    .about-us__eyebrow {
        font-size: 14px;
    }

    .about-us__title {
        font-size: 24px;
    }

    .about-us__para {
        font-size: 14px;
        line-height: 22px;
    }

    .about-us__image-card {
        min-height: 320px;
        padding: 16px;
        border-radius: 16px;
    }

    .about-us__quote-card {
        padding: 16px;
        gap: 12px;
        border-radius: 12px;
    }

    .about-us__quote-text,
    .about-us__quote-author {
        font-size: 15px;
        line-height: 22px;
    }
}
