/* =========================================================
   GR ABOUT
   ========================================================= */

/* ====== SECTION (FULL WIDTH) ====== */
.gr-about {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;

    padding: 96px 0;
    background: #d8e8cf;
    position: relative;
}

/* ====== CONTAINER ====== */
.gr-about__container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 64px;
}

/* ====== GRID ====== */
.gr-about__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ====== LEFT ====== */
.gr-about__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: #e9fbea;
    color: #0a8f2f;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gr-about__title {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.gr-about__text {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.gr-about__text p {
    margin-bottom: 18px;
    color: #4a5565;
}

/* ====== RIGHT (IMAGE) ====== */
.gr-about__imageWrap {
    position: relative;
}

.gr-about__image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

.gr-about__imagePlaceholder {
    width: 100%;
    height: 420px;
    border-radius: 24px;
    background: #f1f5f9;
}

/* ====== OVERLAY CARD ====== */
.gr-about__overlay {
    position: absolute;
    left: -40px;
    bottom: 40px;

    background: #0aa23a;
    color: #ffffff;
    padding: 26px 30px;
    border-radius: 18px;

    width: 260px;
    box-shadow: 0 25px 45px rgba(0,0,0,.25);
}

.gr-about__overlayValue {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 6px;
}

.gr-about__overlayText {
    font-size: 14px;
    line-height: 1.4;
    opacity: .95;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {
    .gr-about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .gr-about__overlay {
        left: 24px;
    }
}

@media (max-width: 991px) {
    .gr-about {
        padding: 72px 0;
    }

    .gr-about__container {
        padding: 0 24px;
    }

    .gr-about__title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .gr-about__container {
        padding: 0 16px;
    }

    .gr-about__title {
        font-size: 30px;
    }

    .gr-about__overlay {
        position: static;
        margin-top: 20px;
        width: 100%;
    }
}
