.ngo2026StoryShell,
.ngo2026ObjectivesShell,
.ngo2026GalleryShell {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto 36px;
    padding: 0 22px;
}

.ngo2026StoryShell {
    display: grid;
    gap: 24px;
}

.ngo2026StoryCard {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(34, 197, 94, 0.12), transparent 30%),
        linear-gradient(135deg, #ffffff, #f4fbf6);
    border: 1px solid rgba(46, 125, 50, 0.10);
    border-radius: 14px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
    padding: 22px;
}

.ngo2026StoryCardReverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.ngo2026StoryCardReverse .ngo2026StoryMedia {
    order: 2;
}

.ngo2026StoryMedia {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    background: #eaf7ef;
}

.ngo2026StoryMedia img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 10px;
}

.ngo2026StoryContent {
    min-width: 0;
}

.ngo2026StoryEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 7px 12px;
    color: #2E7D32;
    background: #ffffff;
    border: 1px solid rgba(46, 125, 50, 0.18);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.ngo2026StoryContent h2,
.ngo2026GalleryHead h2,
.ngo2026SectionHeading h2 {
    margin: 0;
    color: #0f172a;
    font-size: 30px;
    line-height: 1.18;
    font-weight: 950;
}

.ngo2026StoryText {
    position: relative;
    max-height: 180px;
    overflow: hidden;
    color: #344054;
    font-size: 15px;
    line-height: 1.72;
    font-weight: 600;
}

.ngo2026StoryText::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 52px;
    background: linear-gradient(to bottom, rgba(248, 253, 249, 0), #f8fdf9 82%);
    pointer-events: none;
}

.ngo2026StoryCardReverse .ngo2026StoryText::after {
    background: linear-gradient(to bottom, rgba(248, 253, 249, 0), #f8fdf9 82%);
}

.ngo2026StoryText p {
    margin-bottom: 10px;
}

.ngo2026StoryBtn,
.ngo2026GalleryHead a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
    padding: 10px 18px;
    color: #ffffff;
    background: #2E7D32;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.ngo2026StoryBtn:hover,
.ngo2026GalleryHead a:hover {
    color: #ffffff;
    background: #1B5E20;
    text-decoration: none;
}

.ngo2026SectionHeading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 6px;
}

.ngo2026SectionHeading span {
    width: 74px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.45), transparent);
}

.ngo2026SectionSub {
    margin: 0 0 18px;
    color: #667085;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.ngo2026ObjectiveSlider {
    position: relative;
}

.ngo2026ObjectivesGrid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 1fr);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 4px 18px;
    scrollbar-width: none;
}

.ngo2026ObjectivesGrid::-webkit-scrollbar {
    height: 0;
}

.ngo2026ObjectiveCard {
    scroll-snap-align: start;
    min-width: 0;
    overflow: hidden;
    color: inherit;
    background: #ffffff;
    border: 1px solid rgba(46, 125, 50, 0.10);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ngo2026ObjectiveCard:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.13);
}

.ngo2026ObjectiveImage {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #edf7ef;
}

.ngo2026ObjectiveImage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.ngo2026ObjectiveCard:hover .ngo2026ObjectiveImage img {
    transform: scale(1.04);
}

.ngo2026ObjectiveBody {
    padding: 14px;
}

.ngo2026ObjectiveBody h3 {
    margin: 0 0 10px;
    color: #0f5132;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 950;
}

.ngo2026ObjectiveBody span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2E7D32;
    font-size: 13px;
    font-weight: 900;
}

.ngo2026ObjectiveEmpty,
.ngo2026GalleryEmpty {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #475467;
    background: linear-gradient(135deg, #f8fafc, #f0fdf4);
    border: 1px dashed rgba(46, 125, 50, 0.25);
    border-radius: 10px;
    text-align: center;
}

.ngo2026ObjectiveEmpty i,
.ngo2026GalleryEmpty i {
    color: #2E7D32;
    font-size: 32px;
}

.ngo2026GalleryHead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.ngo2026GalleryHead p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 14px;
    font-weight: 700;
}

.ngo2026GalleryFrame {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(232, 245, 233, 0.92), rgba(255, 255, 255, 0.96)),
        radial-gradient(circle at 12% 16%, rgba(129, 199, 132, 0.28), transparent 32%);
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    padding: 18px 48px 22px;
}

.ngo2026GalleryFrame #news-slider {
    margin-top: 0;
}

.ngo2026GallerySlide.post-slide {
    overflow: hidden;
    margin: 10px 12px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
}

.ngo2026GalleryFrame .ngo2026GallerySlide .post-img {
    position: relative;
    overflow: hidden;
    height: 230px;
    margin: 0;
    background-color: #f8fafc;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: zoom-in;
    isolation: isolate;
}

.ngo2026GalleryFrame .ngo2026GallerySlide .post-img::before {
    content: '';
    position: absolute;
    inset: -14px;
    z-index: -2;
    background-image: inherit;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(16px);
    transform: scale(1.1);
}

.ngo2026GalleryFrame .ngo2026GallerySlide .post-img::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.38);
}

.ngo2026GalleryFrame .ngo2026GallerySlide .post-img img {
    position: static;
    width: 100%;
    height: 100%;
    display: block;
    max-width: none;
    max-height: none;
    object-fit: contain;
    padding: 8px;
    transform: none;
}

.ngo2026GalleryPreviewModal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ngo2026GalleryPreviewModal.ngo2026GalleryPreviewOpen {
    display: flex;
}

.ngo2026GalleryPreviewBackdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(4, 26, 15, 0.74);
    cursor: zoom-out;
}

.ngo2026GalleryPreviewDialog {
    position: relative;
    z-index: 1;
    width: min(960px, 94vw);
    max-height: 90vh;
}

.ngo2026GalleryPreviewClose {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #16753a;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    cursor: pointer;
}

.ngo2026GalleryPreviewImageWrap {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    max-height: 88vh;
    border-radius: 16px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    isolation: isolate;
}

.ngo2026GalleryPreviewImageWrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    z-index: -2;
    background-image: inherit;
    background-position: center;
    background-size: cover;
    filter: blur(22px);
    transform: scale(1.08);
}

.ngo2026GalleryPreviewImageWrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.24);
}

.ngo2026GalleryPreviewImageWrap img {
    width: 100%;
    height: min(76vh, 680px);
    display: block;
    object-fit: contain;
    padding: 14px;
}

.ngo2026GalleryFrame .owl-controls,
.ngo2026GalleryFrame .owl-buttons {
    display: none !important;
}

.ngo2026StorySliderNav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #2E7D32;
    box-shadow: 0 10px 22px rgba(46, 125, 50, 0.24);
    cursor: pointer;
    transform: translateY(-50%);
}

.ngo2026GalleryFrame .ngo2026StorySliderNav {
    width: 38px;
    height: 38px;
    background: rgba(46, 125, 50, 0.96);
    box-shadow: 0 12px 24px rgba(46, 125, 50, 0.28);
}

.ngo2026GalleryFrame .ngo2026StorySliderNav i {
    font-size: 14px;
    line-height: 1;
}

.ngo2026StorySliderNav:hover {
    background: #1B5E20;
}

.ngo2026StorySliderPrev {
    left: -10px;
}

.ngo2026StorySliderNext {
    right: -10px;
}

.ngo2026GalleryFrame .ngo2026StorySliderPrev {
    left: 14px;
}

.ngo2026GalleryFrame .ngo2026StorySliderNext {
    right: 14px;
}

.ngo2026StorySliderNavHidden {
    display: none;
}

@media (max-width: 1100px) {
    .ngo2026ObjectivesGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ngo2026StoryShell,
    .ngo2026ObjectivesShell,
    .ngo2026GalleryShell {
        margin-bottom: 28px;
        padding: 0 12px;
    }

    .ngo2026StoryCard,
    .ngo2026StoryCardReverse {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
        border-radius: 12px;
    }

    .ngo2026StoryCardReverse .ngo2026StoryMedia {
        order: 0;
    }

    .ngo2026StoryMedia {
        aspect-ratio: 16 / 10;
    }

    .ngo2026StoryContent h2,
    .ngo2026GalleryHead h2,
    .ngo2026SectionHeading h2 {
        font-size: 23px;
    }

    .ngo2026StoryText {
        max-height: 142px;
        font-size: 13px;
    }

    .ngo2026ObjectivesGrid {
        grid-auto-columns: minmax(238px, 82vw);
        gap: 12px;
    }

    .ngo2026StorySliderNav {
        display: none;
    }

    .ngo2026GalleryHead {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .ngo2026GalleryFrame {
        padding: 12px;
        border-radius: 14px;
    }

    .ngo2026GalleryFrame .ngo2026GallerySlide .post-img {
        height: 210px;
    }

    .ngo2026GalleryHead a {
        margin-top: 0;
        width: 100%;
    }
}
