/* SGOA NGO - Brand colors only: teal #01758b + orange #f0592a (and black/white) */
:root {
    --sgoa-primary: #01758b;
    --sgoa-primary-hover: #015f6d;
    --sgoa-secondary: #f0592a;
    --sgoa-secondary-hover: #d94e24;
    --sgoa-primary-light: rgba(1, 117, 139, 0.08);
    --sgoa-secondary-light: rgba(240, 89, 42, 0.08);
    --theme-color1: var(--sgoa-primary);
    --headings-color: #1a1a1a;
    --text-dark: #1a1a1a;
    --text-muted: #383737;
    --text-light: #ffffff;
    --border-light: #e5e7eb;
    --bg-subtle: #f8fafb;
    --theme-light-background: #F2F3F5;
    --container-max: 1200px;
    --section-padding: 5rem 1.5rem;
    /* Typography */
    --text-font: "Plus Jakarta Sans", sans-serif;
    --title-font: "Oswald", sans-serif;
    --font-sans: var(--text-font);
    --body-font-size: 16px;
    --body-line-height: 1.8;
    --body-font-weight: 400;
    --line-height-heading-h1: 1em;
    --line-height-heading: 1.3;
    --line-height-heading-small: 1.166em;
    --h1-font-size: 75px;
    --h2-font-size: 48px;
    --h3-font-size: 36px;
    --h4-font-size: 24px;
    --h5-font-size: 20px;
    --h6-font-size: 18px;
    --h1-font-weight: 500;
    --h2-font-weight: 500;
    --h3-font-weight: 500;
    --h4-font-weight: 400;
    --h5-font-weight: 400;
    --h6-font-weight: 400;
    /* Section titles */
    --sec-subtitle-size: 14px;
    --sec-subtitle-color: var(--sgoa-primary);
    --sec-subtitle-spacing: 3.36px;
    --sec-title-size: clamp(1.75rem, 3vw, 2.25rem);
    --sec-title-bar-width: 30px;
    --sec-title-bar-height: 3px;
    --sec-title-subtitle-font-size: 14px;
    --sec-title-subtitle-color: var(--theme-color1);
    --sec-title-subtitle-font-family: var(--text-font);
    --sec-title-subtitle-font-weight: 600;
    --sec-title-subtitle-line-height: 20px;
    --sec-title-color: var(--headings-color);
    --sec-title-font-size: var(--h2-font-size);
    --sec-title-font-family: var(--title-font);
    --sec-title-font-weight: var(--h2-font-weight);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Archisky-style text selection */
::selection {
    background: var(--sgoa-primary);
    color: var(--text-light);
    text-shadow: none;
}

body {
    font-family: var(--font-sans);
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    font-weight: var(--body-font-weight);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: justify;
}
p {
    color: #383737;
}

/* Base headings using typography variables */
h1 { font-family: var(--title-font); font-size: var(--h1-font-size); font-weight: var(--h1-font-weight); line-height: var(--line-height-heading-h1); color: var(--headings-color); }
h2 { font-family: var(--title-font); font-size: var(--h2-font-size); font-weight: var(--h2-font-weight); line-height: var(--line-height-heading); color: var(--headings-color); }
h3 { font-family: var(--title-font); font-size: var(--h3-font-size); font-weight: var(--h3-font-weight); line-height: var(--line-height-heading); color: var(--headings-color); }
h4 { font-family: var(--title-font); font-size: var(--h4-font-size); font-weight: var(--h4-font-weight); line-height: var(--line-height-heading-small); color: var(--headings-color); }
h5 { font-family: var(--title-font); font-size: var(--h5-font-size); font-weight: var(--h5-font-weight); line-height: var(--line-height-heading-small); color: var(--headings-color); }
h6 { font-family: var(--title-font); font-size: var(--h6-font-size); font-weight: var(--h6-font-weight); line-height: var(--line-height-heading-small); color: var(--headings-color); }

/* Images: no rounded corners */
img {
    border-radius: 0;
}

/* Keep headings and short labels left-aligned when body is justified */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
.sec-title .title,
.sec-title .section-title,
.sec-title .news-stories-title,
.sec-title .sub-title {
    text-align: left;
}

/* Container alias (Archisky uses auto-container) */
.auto-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Accessibility: skip link (standard for UN/NGO sites) */
.skip-link {
    position: absolute;
    top: -3rem;
    left: 0.5rem;
    z-index: 10000;
    padding: 0.75rem 1.25rem;
    background: var(--sgoa-primary);
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    outline: 2px solid var(--sgoa-secondary);
    outline-offset: 2px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== ARCHISKY-STYLE SECTION TITLE ===== */
.sec-title {
    position: relative;
    margin-bottom: 2.5rem;
}
.sec-title .sub-title {
    position: relative;
    display: inline-block;
    font-size: var(--sec-title-subtitle-font-size);
    line-height: var(--sec-title-subtitle-line-height);
    font-weight: var(--sec-title-subtitle-font-weight);
    font-family: var(--sec-title-subtitle-font-family);
    color: var(--sec-title-subtitle-color);
    text-transform: uppercase;
    padding-left: 40px;
    margin-bottom: 10px;
    letter-spacing: var(--sec-subtitle-spacing);
}
.sec-title .sub-title::before {
    position: absolute;
    left: 0;
    top: 50%;
    height: var(--sec-title-bar-height);
    width: var(--sec-title-bar-width);
    margin-top: -2px;
    background-color: var(--sgoa-primary);
    border-radius: 5px;
    content: "";
}
.sec-title h2,
.sec-title .section-title {
    font-family: var(--sec-title-font-family);
    font-size: var(--sec-title-font-size);
    font-weight: var(--sec-title-font-weight);
    color: var(--sec-title-color);
    line-height: var(--line-height-heading);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}
.sec-title.light .sub-title { color: rgba(255,255,255,0.95); }
.sec-title.light .sub-title::before { background-color: var(--text-light); }
.sec-title.light h2,
.sec-title.light .title,
.sec-title.light .section-title { color: var(--text-light); }
.sec-title .text {
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
}
.sec-title .section-link,
.sec-title .section-title-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.sec-title .section-link:hover,
.sec-title .section-title-link:hover {
    opacity: 0.85;
    text-decoration: underline;
}
.sec-title.light .section-link,
.sec-title.light .section-title-link { color: inherit; }

/* ===== HEADER / MENU (standard NGO top bar) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.2s ease;
}
.header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

/* Top bar: social icons + search (above main menu) */
.header-utility {
    background: var(--sgoa-primary);
    padding: 0.5rem 0;
}
.header-utility-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.header-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.2s ease, transform 0.2s ease;
}
.header-social-icon:hover {
    background: rgba(255,255,255,0.35);
    color: #fff;
    transform: translateY(-1px);
}
.header-social-icon:focus {
    outline: 2px solid rgba(255,255,255,0.8);
    outline-offset: 2px;
}

.header-search-wrap {
    flex-shrink: 0;
}
.header-search-form {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    min-width: 200px;
    max-width: 280px;
}
.header-search-input {
    flex: 1;
    min-width: 0;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.4);
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
}
.header-search-input::placeholder {
    color: var(--text-muted);
}
.header-search-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.6);
    background: #fff;
}
.header-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 34px;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.4);
    border-left: none;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 0.9375rem;
    transition: background 0.2s ease;
}
.header-search-submit:hover {
    background: rgba(255,255,255,0.4);
    color: #fff;
}
.header-search-submit:focus {
    outline: 2px solid rgba(255,255,255,0.8);
    outline-offset: 0;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.header-top { width: 100%; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    min-height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.logo:focus { outline: 2px solid var(--sgoa-primary); outline-offset: 4px; }

.logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-text { color: var(--sgoa-primary); }

/* Main Navigation */
.main-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 1.25rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, background 0.2s ease;
}
.nav-item > a:hover { color: var(--sgoa-primary); background: var(--sgoa-primary-light); }
.nav-item > a:focus { outline: 2px solid var(--sgoa-primary); outline-offset: 2px; }

/* Dropdown */
.nav-item { position: relative; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    border-radius: 0 0 8px 8px;
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--sgoa-primary);
}

/* Only open the direct dropdown (not nested submenus) when hovering the top-level nav item */
.nav-item.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 0.5rem 1.25rem;
    color: #333333;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    transition: background 0.2s ease, color 0.2s ease;
}
.dropdown li a:hover { background: var(--sgoa-primary-light); color: var(--sgoa-primary); padding-left: 1.5rem; }

/* Nested dropdown (Focus Areas submenu) */
.dropdown li.has-submenu { position: relative; }
.dropdown li.has-submenu > a { display: flex; align-items: center; justify-content: space-between; }
.dropdown .submenu-arrow {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}
.dropdown li.has-submenu:hover .submenu-arrow { transform: translateX(2px); }
.dropdown .sub-dropdown {
    left: 100%;
    top: 0;
    margin-top: 0;
    transform: translateY(0) translateX(-4px);
    border-top: 3px solid var(--sgoa-primary);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.dropdown li.has-submenu:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
}
.dropdown .sub-dropdown li a {
    padding: 0.5rem 1.25rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}

@media (max-width: 991px) {
    .dropdown .sub-dropdown {
        left: 0;
        top: 100%;
        margin-top: 0;
        transform: translateY(-4px);
    }
    .dropdown li.has-submenu:hover .sub-dropdown {
        transform: translateY(0);
    }
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
}
.mobile-menu-btn:hover { background: var(--sgoa-primary-light); }
.mobile-menu-btn:focus { outline: 2px solid var(--sgoa-primary); outline-offset: 2px; }

.mobile-nav-backdrop {
    display: none;
}
@media (min-width: 1025px) {
    .mobile-nav-backdrop { display: none !important; }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    margin-top: 120px;
    height: 65vh;
    min-height: 420px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-content {
    text-align: center;
    max-width: 800px;
    padding: 40px 32px 48px;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.slide-content h1 {
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
    color: #fff;
    letter-spacing: 0.02em;
    text-align: center;
}

.slide-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 28px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.5);
    text-align: center;
    color: #fff;
}

.slide-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 24px;
}

.slide-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.5);
    color: #fff;
}

.slide-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.95);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.slide-provinces {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    text-align: center;
}

.slide-provinces li {
    padding-left: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.5);
    color: #fff;
}

.slide-provinces li::before {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--sgoa-secondary);
    color: var(--text-light);
    border: 2px solid var(--sgoa-secondary);
}

.btn-primary:hover {
    background: var(--sgoa-secondary-hover);
    border-color: var(--sgoa-secondary-hover);
    color: var(--text-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(1, 117, 139, 0.35);
}
.btn-primary:focus { outline: 2px solid var(--sgoa-secondary); outline-offset: 2px; }

/* Archisky-style theme button (hover overlay animation) */
.theme-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: var(--title-font);
    text-decoration: none;
    border-radius: 4px;
}
.theme-btn .btn-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.btn-style-one {
    position: relative;
    font-size: 14px;
    line-height: 26px;
    padding: 15px 30px;
    font-weight: 500;
    overflow: hidden;
    color: var(--text-light);
    background: var(--sgoa-secondary);
    border: 2px solid var(--sgoa-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.btn-style-one::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--text-dark);
    border-radius: inherit;
    transform: scale(0, 1);
    transform-origin: top right;
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-one:hover {
    color: var(--sgoa-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.btn-style-one:hover::before {
    transform: scale(1, 1);
    transform-origin: bottom left;
}
.btn-style-one:focus { outline: 2px solid var(--sgoa-primary); outline-offset: 2px; }

/* CTA light variant (white border on dark bg) */
.btn-cta-light {
    background: transparent !important;
    color: var(--text-light) !important;
    border: 2px solid rgba(255,255,255,0.9) !important;
}
.btn-cta-light::before { background-color: var(--text-light); }
.btn-cta-light:hover { color: var(--text-dark) !important; }

/* Explore More button: finger animated (JS adds .explore-more-finger) */
.explore-more-btn-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: visible;
}
.explore-more-finger {
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    font-size: 1.25rem;
    color: var(--sgoa-primary);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.35s ease;
}
.explore-more-finger-visible {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
    animation: explore-more-finger-point 0.6s ease-in-out infinite alternate;
}
@keyframes explore-more-finger-point {
    from { transform: translateY(-50%) translateX(4px); }
    to   { transform: translateY(-50%) translateX(12px); }
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--sgoa-primary);
    border-color: var(--sgoa-primary);
    color: var(--text-light);
}
.slider-nav:focus { outline: 2px solid white; outline-offset: 2px; }

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover,
.dot.active {
    background: var(--sgoa-primary);
    border-color: var(--sgoa-primary);
}

/* ===== NEWSLETTER / CALL TO ACTION (Archisky-style) ===== */
.newsletter-banner.call-to-action-cta {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    background: var(--sgoa-primary);
    padding: 3rem 1.5rem;
    overflow: hidden;
}
.newsletter-banner .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 117, 139, 0.95) 0%, rgba(1, 95, 109, 0.9) 100%);
    pointer-events: none;
}
.newsletter-banner .outer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}
.newsletter-banner .content-box {
    flex: 1;
    min-width: 280px;
}
.newsletter-banner .sec-title {
    margin-bottom: 0;
}
.newsletter-banner .sec-title .sub-title {
    color: rgba(255,255,255,0.9);
}
.newsletter-banner .sec-title .sub-title::before {
    background-color: #fff;
}
.newsletter-banner .btn-box {
    flex-shrink: 0;
}
.newsletter-banner .theme-btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .newsletter-banner.call-to-action-cta .outer-box {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-banner .content-box { min-width: 100%; }
}

/* Page sections nav: jump links + full section pages */
.page-sections-nav {
    background: #f5f5f5;
    padding: 14px 24px;
    border-bottom: 1px solid #eee;
}
.page-sections-nav .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    font-size: 0.9rem;
}
.page-sections-nav .page-sections-label {
    color: #666;
    font-weight: 600;
    margin-right: 4px;
}
.page-sections-nav .page-sections-sep {
    color: #ccc;
    margin: 0 4px;
}
.page-sections-nav a {
    color: var(--sgoa-primary);
    text-decoration: none;
}
.page-sections-nav a:hover {
    text-decoration: underline;
    color: var(--sgoa-primary-hover);
}
@media (max-width: 768px) {
    .page-sections-nav .container { flex-direction: column; align-items: flex-start; }
}

.newsletter-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.newsletter-text {
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--sgoa-secondary);
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: none;
}

.btn-subscribe:hover {
    background: var(--sgoa-secondary-hover);
    color: var(--text-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(1, 117, 139, 0.35);
}
.btn-subscribe:focus { outline: 2px solid rgba(255,255,255,0.8); outline-offset: 2px; }

.btn-subscribe i {
    font-size: 1rem;
}

/* ===== WHO WE ARE SECTION ===== */
.who-we-are {
    background: #fff;
    padding: var(--section-padding);
}

.who-we-are-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.who-we-are-text {
    min-height: 420px;
    max-height: 420px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Inner wrapper: takes remaining space and clips overflow so button stays visible */
.who-we-are-text-inner {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.who-we-are-text .learn-more-link {
    margin-top: auto;
    flex-shrink: 0;
}

.who-we-are-text .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.who-we-are-text .section-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: var(--sgoa-primary);
}

.who-we-are-text .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.who-we-are-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sgoa-primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: gap 0.2s ease;
}
.learn-more-link:hover { color: var(--sgoa-primary-hover); gap: 1rem; }
.learn-more-link:focus { outline: 2px solid var(--sgoa-primary); outline-offset: 2px; }

.learn-more-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--sgoa-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
}

.who-we-are-image {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    max-height: 420px;
}

.who-we-are-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 420px;
    max-height: 420px;
}

/* ===== VISION & MISSION IMAGES (Focus Areas) ===== */
.vision-mission-images {
    background: var(--bg-subtle);
    padding: var(--section-padding);
}

.vision-mission-images .sec-title { margin-bottom: 2rem; }
.vision-mission-images .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--sgoa-primary);
    margin-bottom: 12px;
}

.vision-mission-images .section-title {
    font-size: var(--sec-title-size);
    font-weight: 500;
    font-family: var(--title-font);
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Focus Areas – one row, scroll with < > buttons, text left on cards */
.focus-areas-row-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.focus-areas-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 2px solid var(--border-light);
    background: #fff;
    color: var(--sgoa-primary);
    font-size: 1.125rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.focus-areas-btn:hover {
    background: var(--sgoa-primary);
    color: #fff;
    border-color: var(--sgoa-primary);
}

.focus-areas-btn:focus {
    outline: 2px solid var(--sgoa-primary);
    outline-offset: 2px;
}

.focus-areas-btn-prev { left: -24px; }
.focus-areas-btn-next { right: -24px; }

/* Focus Areas full page: all cards visible, no prev/next buttons */
.focus-areas-full-grid .focus-areas-grid {
    flex-wrap: wrap;
    overflow: visible;
    justify-content: flex-start;
}
.focus-areas-full-grid .focus-areas-grid .focus-area-card-block {
    flex: 1 1 280px;
    max-width: 320px;
}

.focus-areas-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.focus-areas-grid::-webkit-scrollbar {
    display: none;
}

.focus-area-card-block {
    flex: 0 0 300px;
    min-width: 300px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.focus-area-card-block:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.focus-area-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.focus-area-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.focus-area-card-block:hover .focus-area-card-image img {
    transform: scale(1.05);
}

.focus-area-card-content {
    padding: 20px 24px 24px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.focus-area-card-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sgoa-primary);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.focus-area-card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 20px 0;
    text-align: justify;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.focus-area-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid var(--border-light);
    color: var(--sgoa-primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.focus-area-read-more:hover {
    border-color: var(--sgoa-secondary);
    color: var(--sgoa-secondary);
}

.focus-area-read-more:focus {
    outline: 2px solid var(--sgoa-primary);
    outline-offset: 2px;
}

/* Legacy grid (sections / other pages) */
.vision-mission-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.vm-image-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: block;
    text-decoration: none;
    color: inherit;
}

.vm-image-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.vm-image-item:hover img {
    transform: scale(1.05);
}

.vm-image-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(1, 117, 139, 0.92));
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
}

/* ===== WORK GALLERY ===== */
.work-gallery {
    background: #fff;
    padding: var(--section-padding);
}

.work-gallery .sec-title { margin-bottom: 2rem; }
.work-gallery .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--sgoa-primary);
    margin-bottom: 12px;
}

.work-gallery .section-title {
    font-size: var(--sec-title-size);
    font-family: var(--title-font);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0;
}

.work-gallery .gallery-intro,
.work-gallery .sec-title .text.gallery-intro {
    text-align: center;
    max-width: 640px;
    margin: 1rem auto 2.5rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Gallery carousel - one centered slide, border on active, dots below */
.gallery-carousel-outer {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 56px;
}
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(1, 117, 139, 0.9);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-btn:hover {
    background: var(--sgoa-primary-hover);
}
.gallery-btn:focus { outline: 2px solid white; outline-offset: 2px; }
.gallery-btn-prev { left: 8px; }
.gallery-btn-next { right: 8px; }

.gallery-carousel-viewport {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}
.gallery-carousel-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}
.gallery-slide {
    flex: 0 0 320px;
    width: 320px;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
    border: 4px solid transparent;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
                border-color 0.2s ease,
                box-shadow 0.2s ease,
                opacity 0.25s ease;
    transform-origin: center center;
    background: #fff;
}
.gallery-slide.active {
    border-color: var(--sgoa-primary);
    box-shadow: 0 8px 28px rgba(1, 117, 139, 0.3);
    z-index: 1;
}
.work-gallery .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.work-gallery .gallery-slide:hover img {
    transform: scale(1.05);
}

/* Three indicators below carousel - O format (circle outline, one filled = active) */
.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 0 8px;
}
.gallery-dot {
    width: 14px;
    height: 14px;
    padding: 0;
    border: 2px solid var(--sgoa-primary);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.gallery-dot.active {
    background: var(--sgoa-primary);
}
.gallery-dot:hover:not(.active) {
    background: rgba(1, 117, 139, 0.25);
}
.gallery-dot:focus {
    outline: 2px solid var(--sgoa-secondary);
    outline-offset: 2px;
}
@media (max-width: 768px) {
    .gallery-carousel-outer { padding: 0 48px; }
    .gallery-slide { flex: 0 0 280px; width: 280px; height: 210px; }
    .gallery-btn { width: 40px; height: 40px; font-size: 1rem; }
    .gallery-btn-prev { left: 4px; }
    .gallery-btn-next { right: 4px; }
}

/* Gallery lightbox - click to show big */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox.is-open[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    cursor: pointer;
}
.gallery-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.gallery-lightbox-close:hover {
    background: rgba(255,255,255,0.35);
}
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255,255,255,0.4);
}
.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }

@media (max-width: 900px) {
    .vision-mission-grid { grid-template-columns: repeat(2, 1fr); }
    .focus-area-card-block { flex: 0 0 280px; min-width: 280px; }
    .focus-areas-btn-prev { left: 8px; }
    .focus-areas-btn-next { right: 8px; }
}
@media (max-width: 768px) {
    .vision-mission-grid { grid-template-columns: 1fr; }
    .focus-area-card-block { flex: 0 0 260px; min-width: 260px; }
    .focus-areas-btn { width: 40px; height: 40px; font-size: 1rem; }
    .focus-areas-btn-prev { left: 4px; }
    .focus-areas-btn-next { right: 4px; }
}

/* ===== NEWS & STORIES SECTION (reference layout) ===== */
/* Grid row/cols */
.news-section-row.row { display: flex; flex-wrap: wrap; margin: 0 -15px 40px; align-items: flex-end; }
.news-section-row.row > [class*="col-"] { padding: 0 15px; }
.news-section .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.news-section .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.news-section .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.news-section .col-md-6 { flex: 0 0 50%; max-width: 50%; }
.news-section .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.news-section .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
@media (max-width: 991.98px) {
    .news-section .col-lg-4, .news-section .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 767.98px) {
    .news-section .col-lg-4, .news-section .col-lg-6, .news-section .col-md-4, .news-section .col-md-6, .news-section .col-md-8 { flex: 0 0 100%; max-width: 100%; }
    .news-section .sec-title { margin-bottom: 20px; text-align: center; }
}
.news-section .top-btn { display: flex; justify-content: flex-end; align-items: center; }
@media (max-width: 991.98px) {
    .news-section .top-btn { justify-content: center; margin-bottom: 20px; }
}

.news-section.news-stories {
    background: #fff;
    padding: var(--section-padding);
}

.news-section .sec-title .sub-title { color: var(--sgoa-primary); }
.news-section .news-stories-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

/* News block cards */
.news-section .news-block { margin-bottom: 30px; }
.news-section .news-block .inner-box {
    position: relative;
    transition: box-shadow 0.3s ease;
}
.news-section .news-block .inner-box:hover {
    box-shadow: 0 15px 40px rgba(1, 117, 139, 0.15);
}
.news-section .news-block .inner-box:hover .image-box .image a:after {
    left: 0; right: 0; opacity: 0;
    transition: all 400ms linear;
}
.news-section .news-block .inner-box:hover .image-box .image img { transform: scale(1.1); }

.news-section .news-block .image-box { position: relative; width: 100%; }
.news-section .news-block .image-box .image,
.news-section .news-block .image-box figure.image {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    height: 280px !important;
    min-height: 280px;
    max-height: 280px;
    width: 100% !important;
    display: block !important;
}
.news-section .news-block .image-box .image a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    position: relative;
}
.news-section .news-block .image-box .image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
    object-fit: cover !important;
    object-position: center;
    transition: all 400ms ease;
}
.news-section .news-block .image-box .image a:after {
    content: "";
    position: absolute;
    left: 50%;
    right: 51%;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}
.news-section .news-block .image-box .post-date {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-right: 20px;
    margin-bottom: 20px;
    z-index: 10;
}
@media (max-width: 575.98px) {
    .news-section .news-block .image-box .post-date { margin-right: 10px; margin-bottom: 10px; }
    .news-section .news-block .image-box .image,
    .news-section .news-block .image-box figure.image {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }
    .news-section .news-block .image-box .image img { min-height: 220px !important; }
}
.news-section .news-block .image-box .post-date .date {
    position: relative;
    background: var(--sgoa-secondary);
    color: #fff;
    line-height: 21px;
    padding: 9px 20px;
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 700;
}

.news-section .news-block .content-box {
    border: 1px solid var(--border-light);
    border-top: none;
    padding: 20px 30px;
}
@media (max-width: 1199.98px) {
    .news-section .news-block .content-box { padding: 15px 20px 20px; }
}
.news-section .news-block .content-box .post-meta { margin-bottom: 19px; }
.news-section .news-block .content-box .post-meta li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}
.news-section .news-block .content-box .post-meta li:first-child { margin-right: 10px; }
.news-section .news-block .content-box .post-meta li .icon {
    color: var(--sgoa-secondary);
    margin-right: 10px;
}
.news-section .news-block .content-box .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section .news-block .content-box .title a {
    color: var(--sgoa-primary);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
}
.news-section .news-block .content-box .title a:hover { color: var(--sgoa-secondary); }
.news-section .news-block .content-box .title.title-wrap .title-text,
.news-section .news-block .content-box .title.title-wrap .title-text a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section .news-block .content-box .title.title-wrap .title-text a { color: var(--sgoa-primary); text-decoration: none; }
.news-section .news-block .content-box .title.title-wrap .title-text a:hover { color: var(--sgoa-secondary); }
.news-section .news-block .content-box .text {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6em;
    color: var(--text-muted);
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section .news-block .content-box .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sgoa-primary);
    font-weight: 600;
    transition: color 0.2s ease;
}
.news-section .news-block .content-box .read-more .icon { transition: color 0.2s ease; }
.news-section .news-block .content-box .read-more:hover { color: var(--sgoa-secondary); }
.news-section .news-block .content-box .read-more:hover .icon { color: var(--sgoa-secondary); }

/* News carousel track (desktop: 3 columns in one row) */
.news-carousel-outer { position: relative; }
.news-carousel-track.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.news-carousel-track.row > .news-block {
    padding: 0 15px;
    box-sizing: border-box;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
/* Hide cloned slides on desktop so only 3 cards show in one row */
.news-carousel-track .news-block.news-clone {
    display: none !important;
}
@media (max-width: 991.98px) {
    .news-carousel-track.row > .news-block:not(.news-clone) {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 768px) {
    .news-carousel-track.row > .news-block {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .news-carousel-track .news-block.news-clone {
        display: block !important;
    }
}

/* Mobile carousel */
.news-carousel-nav { display: none; }
@media (max-width: 768px) {
    .news-carousel-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 20px;
        padding: 0 16px;
    }
    .news-nav-btn {
        width: 44px;
        height: 44px;
        border: 1px solid var(--sgoa-primary);
        background: #fff;
        color: var(--sgoa-primary);
        cursor: pointer;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }
    .news-nav-btn:hover:not(:disabled) {
        background: var(--sgoa-primary);
        color: #fff;
    }
    .news-nav-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }
    .news-dots {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .news-dot {
        width: 8px;
        height: 8px;
        background: #ccc;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    .news-dot.active { background: var(--sgoa-primary); }
    .news-carousel-outer {
        overflow: hidden;
        position: relative;
        touch-action: pan-y;
    }
    .news-carousel-track {
        display: flex;
        flex-wrap: nowrap;
        transition: transform 0.4s ease;
        margin: 0 -15px;
    }
    .news-carousel-track .news-block,
    .news-carousel-track .news-block.news-clone {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .news-section .news-block.news-clone { display: block; }
}

/* Homepage news: one row, no carousel */
.news-one-row { position: relative; }
.news-one-row-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    align-items: stretch;
}
.news-one-row-grid .news-one-row-card {
    flex: 1 1 0;
    min-width: 260px;
    max-width: calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
}
.news-one-row-grid .news-one-row-card .inner-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}
.news-one-row-grid .news-one-row-card .content-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 220px;
}
.news-one-row-grid .news-one-row-card .content-box .text {
    flex: 1 1 5.5em;
    min-height: 5.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
@media (max-width: 991.98px) {
    .news-one-row-grid .news-one-row-card { max-width: calc(50% - 12px); }
}
@media (max-width: 576px) {
    .news-one-row-grid .news-one-row-card { flex: 1 1 100%; max-width: 100%; }
}
.news-one-row .news-one-row-card .content-box .title { font-size: var(--news-card-title-size, inherit); }
.news-one-row .news-one-row-card .content-box .text {
    font-size: var(--news-card-text-size, inherit);
}
.news-one-row .news-one-row-card .content-box .text .excerpt-read-more {
    color: var(--sgoa-primary);
    font-weight: 600;
    text-decoration: none;
}
.news-one-row .news-one-row-card .content-box .text .excerpt-read-more:hover {
    color: var(--sgoa-secondary);
    text-decoration: underline;
}

.news-stories-full { padding-top: 0; }
.news-stories-full .sub-page-intro { text-align: center; margin-bottom: 40px; }
@media (max-width: 768px) {
    .news-section.news-stories { padding: 60px 16px; }
}

/* Legacy news-meta (e.g. on news listing pages) */
.news-meta {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* ===== WHERE WE WORK - MAP SECTION ===== */
.where-we-work {
    background: var(--bg-subtle);
    padding: var(--section-padding);
    text-align: center;
}

.where-we-work .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.where-we-work .section-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: var(--sgoa-primary);
}

.where-we-work .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.where-we-work .map-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.map-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
}

.map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Interactive map */
.sgoa-map {
    width: 100%;
    height: 580px;
    border-radius: 6px;
    overflow: hidden;
}

/* Custom marker styling - site colors */
.sgoa-marker-icon,
.leaflet-marker-icon.sgoa-marker-icon {
    background: none !important;
    border: none !important;
}

.sgoa-marker-icon i {
    font-size: 28px;
    color: var(--sgoa-primary);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.sgoa-marker-icon:hover i {
    color: var(--sgoa-primary-hover);
}

/* Markers with province name labels */
.sgoa-marker-with-label,
.leaflet-marker-icon.sgoa-marker-with-label {
    background: none !important;
    border: none !important;
}

.sgoa-marker-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sgoa-marker-wrap i {
    font-size: 26px;
    color: var(--sgoa-primary);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    margin-bottom: 2px;
}

.sgoa-marker-wrap:hover i {
    color: var(--sgoa-primary-hover);
}

.sgoa-province-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.95);
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
    margin-top: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.legend-color {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
}

.legend-teal {
    background: var(--sgoa-primary) !important;
}

.map-provinces-list {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.legend-afg {
    font-weight: 600;
    color: var(--sgoa-primary);
}

.where-we-work .map-note {
    margin-top: 24px;
    font-size: 0.9rem;
    color: #666;
}

.where-we-work .map-note i {
    margin-right: 6px;
}

@media (max-width: 768px) {
    .where-we-work {
        padding: 60px 16px;
    }
    .map-wrapper {
        padding: 16px;
    }
    .sgoa-map {
        height: 420px;
    }
}

/* ===== WHERE WE WORK PAGE (banner + Select a Province + detail panel) ===== */
.where-we-work-page { margin-top: 120px; }
.where-we-work-page .about-page-banner { min-height: 380px; }

.where-we-work-content {
    padding: 40px 1.5rem 48px;
}
.where-we-work-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 2rem 0;
    max-width: 800px;
}

.where-we-work-select-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}
@media (max-width: 768px) {
    .where-we-work-select-row { grid-template-columns: 1fr; }
}

.where-we-work-select-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.where-we-work-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
}
.where-we-work-list li { margin: 0; }
.where-we-work-province-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: #fff;
    border: none;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.where-we-work-list li:last-child .where-we-work-province-btn { border-bottom: none; }
.where-we-work-province-btn:hover {
    background: var(--sgoa-primary-light);
    color: var(--sgoa-primary);
}
.where-we-work-province-btn.active {
    background: var(--sgoa-primary);
    color: #fff;
    font-weight: 600;
}
.where-we-work-province-btn:focus {
    outline: 2px solid var(--sgoa-primary);
    outline-offset: 2px;
}

.where-we-work-detail {
    background: var(--bg-subtle);
    border-radius: 6px;
    padding: 1.5rem 1.75rem;
    min-height: 180px;
}
.where-we-work-detail-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--sgoa-primary);
    margin: 0 0 1rem 0;
}
.where-we-work-detail-image {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: block;
}

.where-we-work-detail-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 0.75rem 0;
}
.where-we-work-detail-text:last-child { margin-bottom: 0; }

.where-we-work-map-wrap {
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}
.where-we-work-map-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    text-align: left;
}
/* Ensure sec-title on Where We Work page is left-aligned like index */
.where-we-work-content .sec-title {
    text-align: left;
}
.where-we-work-content .sec-title .sub-title,
.where-we-work-content .sec-title .section-title,
.where-we-work-content .sec-title .text {
    text-align: left;
}
.where-we-work-content .sec-title .text {
    max-width: 800px;
    margin-bottom: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 92vw);
        max-width: 360px;
        height: 100%;
        height: 100dvh;
        background: #fff;
        box-shadow: -8px 0 32px rgba(0,0,0,0.2);
        z-index: 1001;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        display: flex;
        padding-top: 72px;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
    .header.nav-open .main-nav {
        transform: translateX(0);
    }
    .mobile-nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        backdrop-filter: blur(2px);
    }
    .header.nav-open .mobile-nav-backdrop {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
    body.nav-open { overflow: hidden; }
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 0 2rem;
    }
    .nav-item > a {
        padding: 1rem 1.25rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        border-bottom: 1px solid var(--border-light);
        font-size: 0.9375rem;
        font-weight: 600;
    }
    /* Mobile accordion: main menu first, submenus expand on click */
    .nav-item.has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        min-width: auto;
        padding: 0 0 0 1.25rem;
        margin: 0;
        border-left: 3px solid var(--sgoa-primary);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-item.has-dropdown.dropdown-open .dropdown {
        max-height: 600px;
    }
    .nav-item.has-dropdown > a .fa-chevron-down {
        display: inline-block;
        font-size: 0.75rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    .nav-item.has-dropdown.dropdown-open > a .fa-chevron-down {
        transform: rotate(180deg);
    }
    .dropdown li a {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        font-weight: 400;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .dropdown li a:hover {
        padding-left: 1.25rem;
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 48px;
        min-height: 48px;
        font-size: 1.25rem;
    }

    .header-inner {
        padding: 0 16px;
        position: relative;
        z-index: 1002;
    }

    .slide-content {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .header-utility-inner {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .header-search-form {
        min-width: 140px;
        max-width: 100%;
    }
    .hero-slider {
        height: 60vh;
        min-height: 380px;
    }

    .slider-nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 12px;
    }

    .slider-next {
        right: 12px;
    }

    .slide-provinces {
        gap: 8px 16px;
    }

    .newsletter-inner {
        flex-direction: column;
        gap: 16px;
    }

    .newsletter-text {
        font-size: 1rem;
    }

    .who-we-are-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-we-are-text {
        min-height: 320px;
        max-height: 320px;
        overflow: hidden;
    }

    .who-we-are-image {
        order: -1;
        min-height: 320px;
        max-height: 320px;
    }

    .who-we-are-image img {
        min-height: 320px;
        max-height: 320px;
    }
}

/* ===== ABOUT US PAGE ===== */
.about-page { margin-top: 90px; }

.about-banner {
    background: var(--sgoa-primary);
    padding: 32px 24px;
    text-align: center;
}

.about-banner h1 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
}

.about-hero {
    width: 100%;
    overflow: hidden;
}

.about-hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 450px;
}

.about-mission {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
    text-align: center;
}

.mission-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* Two-column cards */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.about-card {
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 32px 36px 40px;
    position: relative;
}

.about-card-yellow .card-content {
    background: var(--sgoa-secondary);
}

.about-card-teal .card-content {
    background: var(--sgoa-primary);
}

.about-card-teal .card-content h2,
.about-card-teal .card-content p {
    color: white;
}

.card-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.about-card-yellow .card-content h2 {
    color: var(--text-light);
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 20px 0;
}

.about-card-yellow .card-content p {
    color: var(--text-light);
    opacity: 0.95;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.about-card-yellow .learn-more-btn {
    color: var(--text-light);
}

.about-card-teal .learn-more-btn {
    color: white;
}

.learn-more-btn:hover { gap: 14px; }

.learn-more-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: currentColor;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
}

.about-card-yellow .learn-more-btn i {
    background: var(--text-light);
    color: var(--sgoa-secondary);
}

.about-card-teal .learn-more-btn i {
    background: white;
    color: var(--sgoa-primary);
}

/* Governance & Team */
.about-governance {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.governance-main h2,
.about-accountability h2,
.about-partners h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.governance-main p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 28px 0;
}

.governance-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gov-btn {
    display: inline-block;
    padding: 14px 24px;
    background: rgba(1, 117, 139, 0.12);
    color: var(--sgoa-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid var(--sgoa-primary);
    transition: all 0.3s ease;
}

.gov-btn:hover {
    background: var(--sgoa-primary);
    color: white;
}

.about-team-box {
    background: var(--sgoa-secondary);
    padding: 36px 28px;
}

.about-team-box h2 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.about-team-box p {
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.about-team-box .learn-more-btn {
    color: white;
}

.about-team-box .learn-more-btn i {
    background: white;
    color: var(--sgoa-secondary);
}

/* Our Donors */
.about-donors {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.about-donors h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.about-donors p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 20px 0;
    max-width: 800px;
}

.about-donors .learn-more-btn {
    color: var(--sgoa-secondary);
}

.about-donors .learn-more-btn i {
    background: var(--sgoa-secondary);
    color: white;
}

/* Accountability */
.about-accountability {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.about-accountability p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 20px 0;
    max-width: 800px;
}

.about-accountability .learn-more-btn {
    color: var(--sgoa-secondary);
}

.about-accountability .learn-more-btn i {
    background: var(--sgoa-secondary);
    color: white;
}

/* Partners */
.about-partners {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.about-partners > p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 24px 0;
    max-width: 800px;
}

.about-partners > .learn-more-btn {
    color: var(--sgoa-secondary);
}

.about-partners > .learn-more-btn i {
    background: var(--sgoa-secondary);
    color: white;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 40px;
    margin-top: 40px;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 16px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
}

.partner-placeholder {
    background: #f0f0f0;
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Footer images */
.about-footer-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.about-footer-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* ===== WHO WE ARE PAGE (ECW-style) ===== */
.about-page-banner {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.about-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-banner-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.about-banner-overlay {
    position: relative;
    z-index: 1;
    padding: 28px 1.5rem 28px;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.about-banner-breadcrumb {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 6px;
}

.about-banner-overlay::before {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--sgoa-secondary);
    margin-bottom: 12px;
}

.about-banner-title {
    font-family: var(--title-font);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Intro block */
.about-intro {
    padding: 56px 1.5rem;
}

.about-intro .auto-container {
    max-width: 900px;
}

.about-intro-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 1.25rem 0;
}

.about-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 1rem 0;
}

.about-intro p:last-of-type {
    margin-bottom: 0;
}
.about-intro img { max-width: 100%; height: auto; border-radius: 4px; }
.about-intro iframe { max-width: 100%; }

/* Mission & Vision cards */
.about-mission-vision {
    padding: 0 0 4rem;
}

.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
}

.about-mv-card {
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-mv-card-image {
    width: 100%;
    overflow: hidden;
}

.about-mv-card-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.about-mv-card-content {
    padding: 32px 36px 40px;
}

.about-mv-orange .about-mv-card-content {
    background: var(--sgoa-secondary);
}

.about-mv-teal .about-mv-card-content {
    background: var(--sgoa-primary);
}

.about-mv-card-content h2 {
    font-family: var(--title-font);
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px 0;
}

.about-mv-card-content p,
.about-mv-card-content .rich-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.95);
    margin: 0 0 12px 0;
}
.about-mv-card-content .rich-content p:last-child { margin-bottom: 0; }
.about-mv-card-content .rich-content img { max-width: 100%; height: auto; border-radius: 4px; }
.about-mv-card-content .rich-content iframe { max-width: 100%; }

/* History */
.about-history {
    padding: 4rem 1.5rem;
}

.about-history-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-history-text h2 {
    font-family: var(--title-font);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.about-history-text p,
.about-history-text .rich-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 24px 0;
}
.about-history-text .rich-content p:last-child { margin-bottom: 0; }
.about-history-text .rich-content img { max-width: 100%; height: auto; border-radius: 4px; }
.about-history-text .rich-content iframe { max-width: 100%; }

.about-history-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
}

.about-history-plus {
    font-size: 1rem;
    color: var(--border-light);
    font-weight: 300;
}

.about-history-image {
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-history-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Additional Resources */
.about-resources {
    background: var(--bg-subtle);
    padding: 56px 1.5rem;
}

.about-resources-title {
    font-family: var(--title-font);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 28px 0;
}

.about-resources-carousel-outer {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.about-resources-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    background: #fff;
    color: var(--text-muted);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.about-resources-btn:hover {
    background: var(--sgoa-primary);
    color: #fff;
}

.about-resources-prev { left: -12px; }
.about-resources-next { right: -12px; }

.about-resources-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
}

.about-resources-track::-webkit-scrollbar {
    display: none;
}

.about-resource-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-resource-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.about-resource-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-resource-card-body {
    padding: 20px 24px 24px;
    flex: 1;
}

.about-resource-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.about-resource-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0 0 16px 0;
}

.about-resource-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--sgoa-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.about-resource-link:hover {
    gap: 12px;
}

.about-resource-link i {
    font-size: 0.7rem;
}

/* Explore Further */
.about-explore {
    padding: 56px 1.5rem;
}

.about-explore-title {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--sgoa-secondary);
    display: inline-block;
}

.about-explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-explore-card {
    position: relative;
    display: block;
    min-height: 280px;
    overflow: hidden;
    text-decoration: none;
}

.about-explore-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

.about-explore-card:hover .about-explore-card-bg {
    transform: scale(1.05);
}

.about-explore-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
}

.about-explore-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 24px;
    font-family: var(--title-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

/* ===== OUR STRATEGY PAGE ===== */
.strategy-page .about-intro .auto-container { max-width: 100%; }

/* Strategic plan block: text left, orange card right */
.strategy-plan-block {
    padding: 48px 1.5rem 56px;
}

.strategy-plan-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-plan-text h2 {
    font-family: var(--title-font);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.strategy-plan-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 1rem 0;
}

.strategy-plan-text p:last-child { margin-bottom: 0; }

.strategy-plan-card {
    background: var(--sgoa-secondary);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(240, 89, 42, 0.2);
}

.strategy-plan-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.strategy-plan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.strategy-plan-card-body {
    padding: 24px 28px 28px;
}

.strategy-plan-card-body h3 {
    font-family: var(--title-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
}

.strategy-plan-card-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    margin: 0 0 12px 0;
    letter-spacing: 0.04em;
}

.strategy-plan-card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin: 0 0 20px 0;
}

.strategy-plan-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: none;
    transition: gap 0.2s;
}

.strategy-plan-card-link:hover { gap: 12px; }

.strategy-plan-card-link i { font-size: 0.7rem; }

/* Strategic objectives */
.strategy-objectives {
    padding: 48px 1.5rem;
    background: var(--bg-subtle);
}

.strategy-objectives-title {
    font-family: var(--title-font);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0 0 28px 0;
    max-width: 900px;
}

.strategy-objectives-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 900px;
}

.strategy-objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.strategy-objectives-list li:last-child { margin-bottom: 0; }

.strategy-obj-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
}

.strategy-obj-icon-lightbulb { background: var(--sgoa-secondary); }

.strategy-obj-icon-chart { background: var(--sgoa-primary); }

.strategy-objectives-list strong { color: var(--text-dark); }

/* Strategy pillars (text + image) */
.strategy-pillars {
    padding: 56px 1.5rem;
}

.strategy-pillars-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-pillars-content h2 {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.strategy-pillars-content > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 24px 0;
}

.strategy-pillars-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.strategy-pillars-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.strategy-pillars-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--sgoa-secondary);
    border-radius: 50%;
}

.strategy-pillars-list li strong { color: var(--text-dark); }

.strategy-pillars-image {
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.strategy-pillars-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* Video section */
.strategy-video {
    padding: 48px 1.5rem;
    background: var(--bg-subtle);
}

.strategy-video-title {
    font-family: var(--title-font);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 24px 0;
}

.strategy-video-placeholder {
    position: relative;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a1a;
}

.strategy-video-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.85;
}

.strategy-video-play {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
    text-decoration: none;
    transition: transform 0.2s;
    background: rgba(0,0,0,0.3);
}

.strategy-video-play:hover {
    background: rgba(0,0,0,0.4);
    transform: scale(1.05);
}

/* To Deliver Our Strategy */
.strategy-deliver {
    padding: 56px 1.5rem;
}

.strategy-deliver-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-deliver-content h2 {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 24px 0;
}

.strategy-deliver-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.strategy-deliver-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.strategy-deliver-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--sgoa-primary);
    border-radius: 50%;
}

.strategy-deliver-list li strong { color: var(--text-dark); }

.strategy-deliver-image {
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.strategy-deliver-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Case for Investment */
.strategy-investment {
    padding: 56px 1.5rem;
    background: var(--bg-subtle);
}

.strategy-investment-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-investment-text h2 {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.strategy-investment-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 20px 0;
}

.strategy-investment-card {
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}

.strategy-investment-card-bar {
    background: var(--sgoa-secondary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 24px;
}

.strategy-investment-card-body {
    padding: 24px;
    background: var(--sgoa-primary-light);
    border: 1px solid rgba(1, 117, 139, 0.15);
}

.strategy-investment-card-title {
    font-family: var(--title-font);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.strategy-investment-card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0 0 20px 0;
}

.strategy-investment-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--sgoa-secondary);
    text-decoration: none;
    transition: gap 0.2s;
}

.strategy-investment-card-btn:hover { gap: 12px; }

.strategy-investment-card-btn i { font-size: 0.7rem; }

/* Strategy page responsive */
@media (max-width: 1024px) {
    .strategy-plan-inner,
    .strategy-pillars-inner,
    .strategy-deliver-inner,
    .strategy-investment-inner {
        grid-template-columns: 1fr;
    }
    .strategy-plan-card { order: -1; }
    .strategy-pillars-image img { height: 280px; }
    .strategy-deliver-image { order: -1; }
    .strategy-deliver-image img { height: 260px; }
}

@media (max-width: 768px) {
    .strategy-plan-card-image { height: 140px; }
    .strategy-pillars-image img { height: 240px; }
    .strategy-video-play { font-size: 3rem; }
}

/* ===== OUR DONORS PAGE ===== */
.donors-page { padding-bottom: 4rem; }

.donors-banner {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.donors-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.donors-banner-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.donors-banner-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px 24px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 8px;
    margin: 0 1.5rem;
    max-width: 480px;
}

.donors-banner-title {
    font-family: var(--title-font);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.donors-banner-line {
    display: block;
    width: 60px;
    height: 2px;
    background: #fff;
    margin: 14px auto 0;
}

.donors-content {
    padding: 64px 1.5rem 48px;
}

.donors-content .auto-container {
    max-width: 900px;
    margin: 0 auto;
}

.donors-heading {
    font-family: var(--title-font);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.donors-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

.donors-bottom {
    padding: 0 1.5rem 2rem;
    min-height: 200px;
}

.donors-bottom .auto-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== FUNDING WINDOWS PAGE ===== */
.funding-windows-page { margin-top: 120px; }
.funding-windows-page .about-page-banner { min-height: 380px; }

.funding-intro {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 1.5rem 48px;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 768px) {
    .funding-intro { grid-template-columns: 1fr; }
}
.funding-intro-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 1rem 0;
}
.funding-intro-visual {
    text-align: center;
}
.funding-intro-chart {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--border-light) 0%, var(--bg-subtle) 50%);
    border: 3px solid var(--sgoa-primary);
}
.funding-intro .theme-btn { margin-top: 0.5rem; }

.funding-programs {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem 48px;
}
.funding-program-block {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-light);
}
.funding-program-block:last-of-type { border-bottom: none; }
.funding-program-block.no-image { grid-template-columns: 1fr; }
@media (max-width: 768px) {
    .funding-program-block { grid-template-columns: 1fr; }
    .funding-program-block .funding-program-image { order: -1; }
}
.funding-program-block h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}
.funding-program-block p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 1.25rem 0;
}
.funding-program-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}
.funding-program-block .theme-btn { margin-top: 0.25rem; }

.funding-news {
    padding: 48px 1.5rem 64px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-subtle);
}
.sub-page-content .funding-news {
    padding-top: 0;
    border-top: none;
    background: transparent;
}
.news-section.pt-0 { padding-top: 0 !important; }
.funding-news-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}
.funding-news-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.funding-news-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}
.funding-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .funding-news-grid { grid-template-columns: 1fr; }
}
.funding-news-card {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    border-radius: 6px;
}
.funding-news-card .image-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.funding-news-card .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.funding-news-card .content-box { padding: 1.25rem; }
.funding-news-card .post-date { padding: 0 1.25rem; margin-top: -2rem; position: relative; z-index: 1; }
.funding-news-card .post-date .date {
    display: inline-block;
    background: var(--sgoa-primary);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
}
.funding-news-card .title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
}
.funding-news-card .title a {
    color: var(--text-dark);
    text-decoration: none;
}
.funding-news-card .title a:hover { color: var(--sgoa-primary); }
.funding-news-card .text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0 0 1rem 0;
}
.funding-news-card .read-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sgoa-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.funding-news-card .read-more:hover { color: var(--sgoa-primary-hover); }

/* ===== FOCUS AREA DETAIL PAGES (Education, WASH, Health, Livelihood, Food Security) ===== */
.focus-detail-page { margin-top: 90px; }
.focus-detail-page .about-page-banner { min-height: 380px; }
.focus-detail-intro {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 48px 1.5rem 40px;
    text-align: center;
}
.focus-detail-intro h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.45;
    margin: 0 0 1rem 0;
}
.focus-detail-intro .focus-detail-subheading {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.focus-detail-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem 48px;
}
.focus-detail-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
}
.focus-detail-section:last-of-type { border-bottom: none; }
.focus-detail-section h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem 0;
}
.focus-detail-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 1rem 0;
}
.focus-detail-section p:last-child { margin-bottom: 0; }
.focus-detail-section ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}
.focus-detail-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #444;
}
.focus-detail-section--image-right .focus-detail-section-image { order: 2; }
.focus-detail-section--image-right .focus-detail-section-text { order: 1; }
.focus-detail-section--image-left .focus-detail-section-image { order: 1; }
.focus-detail-section--image-left .focus-detail-section-text { order: 2; }
.focus-detail-section-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.focus-detail-section-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}
.focus-detail-page .sub-page-nav {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 24px 1.5rem 48px;
}
@media (max-width: 900px) {
    .focus-detail-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .focus-detail-section--image-right .focus-detail-section-image,
    .focus-detail-section--image-left .focus-detail-section-image { order: 1; }
    .focus-detail-section--image-right .focus-detail-section-text,
    .focus-detail-section--image-left .focus-detail-section-text { order: 2; }
}
@media (max-width: 768px) {
    .focus-detail-page .about-page-banner { min-height: 300px; }
}

/* ===== ANNUAL REPORTS PAGE (report detail + PDF download) ===== */
.annual-reports-page { margin-top: 90px; }
.annual-reports-page .about-page-banner { min-height: 380px; }
.annual-reports-intro {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 1.5rem 32px;
}
.annual-reports-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}
.annual-reports-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem 64px;
}
.report-entry {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-light);
}
.report-entry:first-child { padding-top: 0; }
.report-entry:last-child { border-bottom: none; }
.report-entry-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}
.report-entry-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--text-dark);
    margin-top: 0.75rem;
}
.report-entry-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 1.5rem 0;
}
.report-entry-meta span + span::before {
    content: " | ";
    color: var(--border-light);
}
.report-entry-meta a {
    color: var(--sgoa-primary);
    text-decoration: none;
}
.report-entry-meta a:hover { text-decoration: underline; }
.report-entry-meta .report-lang-link {
    color: var(--sgoa-primary);
    text-decoration: none;
}
.report-entry-meta .report-lang-link:hover { text-decoration: underline; }
.report-entry-body {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}
.report-entry-cover {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    aspect-ratio: 1;
    max-width: 320px;
    background: var(--bg-subtle);
}
.report-entry-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.report-entry-summary p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 1rem 0;
}
.report-entry-summary p:last-of-type { margin-bottom: 1.5rem; }
.report-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--sgoa-primary);
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}
.report-download-btn:hover {
    background: var(--sgoa-primary-hover);
    color: #fff;
}
.report-download-btn i { font-size: 1.1rem; }
@media (max-width: 900px) {
    .report-entry-body { grid-template-columns: 1fr; }
    .report-entry-cover { max-width: 100%; }
}
@media (max-width: 768px) {
    .annual-reports-page .about-page-banner { min-height: 300px; }
}

/* ===== KNOWLEDGE & RESOURCES PAGE — Unique Bento Design ===== */
.knowledge-resources-page {
    margin-top: 90px;
    background: #f5f2ed;
    font-family: var(--text-font);
}

/* Hero — Editorial split with diagonal accent */
.kr-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.kr-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.kr-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 95, 109, 0.94) 0%, rgba(1, 117, 139, 0.85) 50%, rgba(240, 89, 42, 0.3) 100%);
}
.kr-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    pointer-events: none;
    z-index: 1;
}
.kr-hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top right, transparent 49.5%, #f5f2ed 50%);
    z-index: 2;
}
.kr-hero-content {
    position: relative;
    z-index: 3;
    padding: 0 1.5rem 56px;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}
.kr-hero-breadcrumb {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.kr-hero-title {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.kr-hero-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.92);
    margin: 0;
    font-weight: 500;
    max-width: 480px;
}

/* Intro — Warm blockquote style */
.kr-intro {
    background: #fff;
    padding: 64px 1.5rem 56px;
    border-bottom: 1px solid #e8e4dd;
}
.kr-intro-wrap {
    max-width: 680px;
    margin: 0 auto;
}
.kr-intro-block {
    border-left: 5px solid var(--sgoa-secondary);
    padding-left: 1.75rem;
}
.kr-intro-block p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #3d3d3d;
    margin: 0 0 1rem 0;
}
.kr-intro-block p:last-child { margin-bottom: 0; }
.kr-intro-block strong { color: #1a1a1a; }
.kr-intro-block a {
    color: var(--sgoa-primary);
    font-weight: 600;
    text-decoration: underline;
}
.kr-intro-block a:hover { color: var(--sgoa-primary-hover); }

/* Content */
.kr-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 64px 1.5rem 80px;
}

/* Section head */
.kr-head {
    margin-bottom: 2.5rem;
}
.kr-head-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sgoa-secondary);
    margin-bottom: 0.5rem;
}
.kr-head-title {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

/* Bento grid */
.kr-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}
.kr-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.kr-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    z-index: 1;
    transition: width 0.3s ease;
}
.kr-card[data-accent="teal"]::before { background: var(--sgoa-primary); }
.kr-card[data-accent="orange"]::before { background: var(--sgoa-secondary); }
.kr-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    transform: translateY(-6px);
}
.kr-card:hover::before { width: 6px; }
.kr-card-featured {
    grid-column: 1 / -1;
}
.kr-card-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 260px;
}
.kr-card:not(.kr-card-featured) .kr-card-inner,
.kr-card-no-image .kr-card-inner {
    grid-template-columns: 1fr;
    min-height: auto;
}
.kr-card-media {
    overflow: hidden;
    background: #e8e4dd;
}
.kr-card-featured .kr-card-media {
    min-height: 260px;
}
.kr-card:not(.kr-card-featured) .kr-card-media {
    aspect-ratio: 16 / 10;
}
.kr-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.kr-card:hover .kr-card-media img { transform: scale(1.06); }
.kr-card-text {
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.kr-card:not(.kr-card-featured) .kr-card-text { padding: 1.5rem 1.75rem; }
.kr-card-title {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.35;
}
.kr-card:not(.kr-card-featured) .kr-card-title { font-size: 1.15rem; }
.kr-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
    flex: 1;
}
.kr-card-desc p { margin: 0 0 0.5rem 0; }
.kr-card-desc p:last-child { margin-bottom: 0; }
.kr-card-actions {
    padding-top: 0.75rem;
    margin-top: auto;
    border-top: 1px solid #f0ebe5;
}
.kr-card-link-sep {
    color: #c4beb2;
    margin: 0 0.35rem;
    font-weight: 400;
}
.kr-card-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s ease;
}
.kr-card[data-accent="teal"] .kr-card-actions a {
    background: rgba(1, 117, 139, 0.08);
    color: var(--sgoa-primary);
}
.kr-card[data-accent="teal"] .kr-card-actions a:hover {
    background: var(--sgoa-primary);
    color: #fff;
}
.kr-card[data-accent="orange"] .kr-card-actions a {
    background: rgba(240, 89, 42, 0.08);
    color: var(--sgoa-secondary);
}
.kr-card[data-accent="orange"] .kr-card-actions a:hover {
    background: var(--sgoa-secondary);
    color: #fff;
}

/* Empty */
.kr-empty {
    text-align: center;
    padding: 6rem 2rem;
    background: #fff;
    border-radius: 4px;
    border: 2px dashed #d4cfc4;
}
.kr-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #f5f2ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(1, 117, 139, 0.4);
    font-size: 2rem;
}
.kr-empty p {
    margin: 0;
    font-size: 1.1rem;
    color: #5c5c5c;
    line-height: 1.7;
}
.kr-empty a {
    color: var(--sgoa-primary);
    font-weight: 600;
    text-decoration: underline;
}
.kr-empty a:hover { color: var(--sgoa-primary-hover); }

/* Nav */
.kr-nav {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 1.5rem 64px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.kr-nav-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    background: var(--sgoa-secondary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.25s ease;
}
.kr-nav-primary:hover {
    background: var(--sgoa-secondary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 89, 42, 0.35);
}
.kr-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5c5c5c;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}
.kr-nav-back:hover { color: var(--sgoa-primary); }

@media (max-width: 900px) {
    .kr-card-inner { grid-template-columns: 1fr !important; }
    .kr-card-featured .kr-card-media { min-height: 220px; }
}
@media (max-width: 768px) {
    .knowledge-resources-page { margin-top: 80px; }
    .kr-hero { min-height: 320px; }
    .kr-hero-shape { height: 80px; }
    .kr-bento { grid-template-columns: 1fr; }
    .kr-nav { flex-direction: column; align-items: stretch; padding: 32px 1.5rem 48px; }
}

/* ===== EVALUATIONS PAGE ===== */
.evaluations-page { margin-top: 90px; }
.evaluations-page .about-page-banner { min-height: 380px; }
.evaluations-intro-row {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 1.5rem 32px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}
.evaluations-intro-text h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0 0 1rem 0;
}
.evaluations-intro-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 1rem 0;
}
.evaluations-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sgoa-primary);
    text-decoration: none;
}
.evaluations-read-more:hover { color: var(--sgoa-primary-hover); }
.evaluations-policy-box {
    background: var(--sgoa-primary);
    color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(1, 117, 139, 0.25);
}
.evaluations-policy-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #fff;
}
.evaluations-policy-box .policy-cover {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: rgba(255,255,255,0.15);
}
.evaluations-policy-box .policy-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.evaluations-policy-box .policy-date {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-bottom: 1rem;
}
.evaluations-policy-box .policy-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    color: var(--sgoa-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.evaluations-policy-box .policy-download:hover {
    background: rgba(255,255,255,0.9);
    color: var(--sgoa-primary-hover);
}
.evaluations-types-section {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem 48px;
}
.evaluations-types-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.35rem 0;
}
.evaluations-types-section .evaluations-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 0 0 1.5rem 0;
}
.evaluation-type-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
}
.evaluation-type-item:last-child { border-bottom: none; }
.evaluation-type-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--sgoa-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.evaluation-type-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.35rem 0;
}
.evaluation-type-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin: 0 0 0.5rem 0;
}
.evaluation-type-body .eval-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sgoa-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.evaluation-type-body .eval-read-more:hover { color: var(--sgoa-primary-hover); }
.eval-read-more-details {
    margin-top: 0.5rem;
}
.eval-read-more-details summary {
    list-style: none;
    cursor: pointer;
    display: inline-block;
}
.eval-read-more-details summary::-webkit-details-marker { display: none; }
.eval-read-more-details summary.evaluations-read-more,
.eval-read-more-details summary.eval-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sgoa-primary);
    text-decoration: none;
}
.eval-read-more-details summary:hover { color: var(--sgoa-primary-hover); }
.eval-read-more-text {
    margin: 0.75rem 0 0 0;
    padding: 1rem 0 0 0;
    border-top: 1px solid var(--border-light);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
}
.evaluations-framework {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
}
.evaluations-framework p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}
.evaluations-additional {
    background: var(--bg-subtle);
    padding: 48px 1.5rem 64px;
    margin-top: 24px;
}
.evaluations-additional-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}
.evaluations-additional h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}
.evaluations-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.evaluations-carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: #fff;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.evaluations-carousel-btn:hover:not(:disabled) {
    border-color: var(--sgoa-primary);
    color: var(--sgoa-primary);
    background: var(--sgoa-primary-light);
}
.evaluations-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.evaluations-carousel-track {
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 8px 0;
}
.evaluations-carousel-track::-webkit-scrollbar { display: none; }
.evaluation-card {
    flex: 0 0 320px;
    min-width: 320px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding: 1.25rem;
}
.evaluation-card-thumb {
    width: 100px;
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-subtle);
}
.evaluation-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.evaluation-card-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
}
.evaluation-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0 0 0.75rem 0;
}
.evaluation-card-meta span + span::before { content: " | "; }
.evaluation-card-body .eval-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sgoa-primary);
    text-decoration: none;
}
.evaluation-card-body .eval-learn-more:hover { color: var(--sgoa-primary-hover); }
.evaluations-page .sub-page-nav {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 24px 1.5rem 48px;
}
@media (max-width: 900px) {
    .evaluations-intro-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .evaluations-page .about-page-banner { min-height: 300px; }
    .evaluation-type-item { grid-template-columns: 1fr; }
    .evaluation-type-icon { margin-bottom: 0; }
    .evaluation-card { min-width: 280px; }
}

/* ===== RESULTS DASHBOARD PAGE ===== */
.dashboard-page { margin-top: 120px; }
.dashboard-page .about-page-banner-title-only {
    min-height: auto;
    background: var(--sgoa-primary);
    align-items: center;
}
.dashboard-page .about-page-banner-title-only .about-banner-overlay {
    padding: 24px 1.5rem;
}
.dashboard-content { padding: 40px 1.5rem 64px; }
.dashboard-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}
.dashboard-section:last-child { border-bottom: none; }
.dashboard-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dashboard-section-title-icon {
    font-size: 1rem;
    color: var(--sgoa-primary);
}
.dashboard-cards-row {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.dashboard-cards-row-sm { grid-template-columns: 1fr; max-width: 400px; }
@media (max-width: 768px) {
    .dashboard-cards-row { grid-template-columns: 1fr; }
}
.dashboard-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.dashboard-card-hero {
    background: var(--sgoa-primary);
    color: #fff;
    padding: 2rem;
}
.dashboard-hero-afg .dashboard-hero-label {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
}
.dashboard-hero-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-bottom: 1rem;
}
.dashboard-hero-icons i {
    font-size: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.dashboard-hero-icons.i-animated i { opacity: 1; transform: scale(1); }
.dashboard-hero-value {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem 0;
    letter-spacing: -0.02em;
}
.dashboard-hero-bar-wrap { margin-top: 0.5rem; }
.dashboard-hero-bar {
    display: flex;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(0,0,0,0.1);
}
.dashboard-hero-bar-girls {
    width: 0;
    background: #6b4c9a;
    border-radius: 5px 0 0 5px;
    transition: width 0.8s ease-out;
}
.dashboard-hero-bar-boys {
    width: 0;
    min-width: 0;
    background: #e6b800;
    border-radius: 0 5px 5px 0;
    transition: width 0.8s ease-out 0.15s;
}
.dashboard-hero-icons.i-animated i:nth-child(1) { transition-delay: 0.05s; }
.dashboard-hero-icons.i-animated i:nth-child(2) { transition-delay: 0.12s; }
.dashboard-hero-icons.i-animated i:nth-child(3) { transition-delay: 0.19s; }
.dashboard-hero-icons.i-animated i:nth-child(4) { transition-delay: 0.26s; }
.dashboard-hero-icons.i-animated i:nth-child(5) { transition-delay: 0.33s; }
.dashboard-hero-icons.i-animated i:nth-child(6) { transition-delay: 0.4s; }
.dashboard-hero-bar-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 600;
}
.dashboard-hero-bar-label-girls { display: flex; align-items: center; gap: 4px; }
.dashboard-hero-arrow { font-size: 0.65rem; color: #fff; }
.dashboard-card-icon {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2em;
}
.dashboard-card-value { font-size: 2.5rem; font-weight: 700; margin: 0.25rem 0; }
.dashboard-card-label { font-size: 0.95rem; opacity: 0.95; }
.dashboard-card-bar {
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    margin-top: 1rem;
    overflow: hidden;
}
.dashboard-card-bar-fill { display: block; height: 100%; background: #fff; border-radius: 3px; transition: width 0.5s ease; }
.dashboard-card-bar-label { font-size: 0.8rem; margin-top: 4px; opacity: 0.9; }
.dashboard-card-sm { text-align: center; }
.dashboard-card-sm-icon { font-size: 2rem; color: var(--sgoa-primary); margin-bottom: 0.5rem; }
.dashboard-card-value-sm { font-size: 2rem; font-weight: 700; color: var(--text-dark); }
.dashboard-card-label-sm { font-size: 0.85rem; color: var(--text-muted); }
.dashboard-card-resources .dashboard-card-value { font-size: 1.75rem; color: var(--sgoa-primary); }
.dashboard-card-sub { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; }

.dashboard-chart-row { margin: 1.5rem 0; }
.dashboard-chart-box {
    background: #fff;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 1rem;
}
.dashboard-chart-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}
.dashboard-chart-wrap { height: 220px; position: relative; }
.dashboard-chart-donut { height: 200px; max-width: 280px; margin: 0 auto; }
.dashboard-chart-legend { font-size: 0.8rem; color: var(--text-muted); margin: 1rem 0 0 0; }
.dashboard-chart-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sgoa-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}
.dashboard-chart-link:hover { color: var(--sgoa-primary-hover); }
.dashboard-chart-link i { font-size: 0.8rem; }
.dashboard-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 768px) { .dashboard-grid-2 { grid-template-columns: 1fr; } }

.dashboard-progress-block { margin: 1.5rem 0; }
.dashboard-progress-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.dashboard-progress-label { min-width: 120px; font-size: 0.9rem; color: var(--text-dark); }
.dashboard-progress-bar-wrap {
    flex: 1;
    height: 24px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}
.dashboard-progress-bar { height: 100%; border-radius: 4px; transition: width 0.6s ease; }
.dashboard-progress-bar-teal { background: var(--sgoa-primary); }
.dashboard-progress-bar-green { background: #2d8a6e; }
.dashboard-progress-value { font-size: 0.85rem; color: var(--text-muted); white-space: nowrap; }

.dashboard-explore-btn { margin-top: 1rem; margin-right: 2.5rem; }

.dashboard-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 1rem;
}
.dashboard-tab {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.dashboard-tab:hover { color: var(--sgoa-primary); }
.dashboard-tab.active { color: var(--sgoa-primary); border-bottom-color: var(--sgoa-secondary); }
.dashboard-map-intro { font-size: 0.95rem; color: var(--text-muted); margin: 0 0 1rem 0; line-height: 1.6; }
.dashboard-map-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.dashboard-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.dashboard-filter-btn:hover { background: var(--sgoa-primary-light); border-color: var(--sgoa-primary); }
.dashboard-filter-btn.active { background: var(--sgoa-primary); color: #fff; border-color: var(--sgoa-primary); }
.dashboard-country-select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.9rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background: #fff;
    color: var(--text-dark);
}
.dashboard-map-viz {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.dashboard-map-legend {
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-shrink: 0;
}
.dashboard-map-legend-item {
    display: inline-block;
    width: 16px;
    height: 12px;
    margin: 0 4px 0 8px;
    vertical-align: middle;
    border-radius: 2px;
}
.dashboard-map-img-wrap {
    flex: 1;
    max-height: 320px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--bg-subtle);
}
.dashboard-map-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dashboard-timeline {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.dashboard-timeline-slider { flex: 1; max-width: 200px; }

/* ===== SGOA TEAM PAGE ===== */
.team-page { padding-bottom: 4rem; }

.team-intro {
    padding: 56px 1.5rem 48px;
}

.team-intro .auto-container {
    max-width: 800px;
    margin: 0 auto;
}

.team-heading {
    font-family: var(--title-font);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.team-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.team-intro p,
.team-intro-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

.team-intro-text p:first-child {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.team-grid-section {
    padding: 48px 1.5rem 64px;
    background: var(--bg-subtle);
}

.team-grid-title,
.team-section-title {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 32px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
}

.team-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.team-card-icon {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sgoa-primary-light);
    color: var(--sgoa-primary);
}

.team-card-icon i {
    font-size: clamp(4rem, 12vw, 6rem);
}

.team-card-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--border-light);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card-body {
    padding: 24px;
}

.team-card-name,
.team-card-body h3 {
    font-family: var(--title-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.team-card-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sgoa-primary);
    margin: 0 0 16px 0;
}

.team-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.team-card-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sgoa-secondary);
    text-decoration: none;
}

.team-card-links a:hover {
    text-decoration: underline;
}

.team-card-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.team-grid-section-alt {
    background: #fff;
}

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* ===== OUR PARTNERS PAGE ===== */
.partners-page { padding-bottom: 4rem; }

.partners-intro {
    padding: 48px 1.5rem 40px;
}

.partners-intro .auto-container {
    max-width: 800px;
    margin: 0 auto;
}

.partners-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

.partners-grid-section {
    padding: 0 1.5rem 64px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    transition: box-shadow 0.2s;
}

.partner-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.partner-card-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    padding: 24px;
}

.partner-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card-image-placeholder {
    color: var(--sgoa-primary);
}

.partner-card-image-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
}

.partner-card-body {
    padding: 24px;
}

.partner-card-title {
    font-family: var(--title-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.partner-card-details {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 16px 0;
}

.partner-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sgoa-secondary);
    text-decoration: none;
}

.partner-card-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .partners-grid { grid-template-columns: 1fr; }
}

/* About governance inner (for who-we-are page) */
.about-governance-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
    padding: 60px 1.5rem;
}

/* About page responsive */
@media (max-width: 1024px) {
    .about-cards { grid-template-columns: 1fr; }
    .about-governance { grid-template-columns: 1fr; }
    .about-governance-inner { grid-template-columns: 1fr; }
    .partners-logos { grid-template-columns: repeat(3, 1fr); }
    .about-mv-grid { grid-template-columns: 1fr; }
    .about-history-inner { grid-template-columns: 1fr; }
    .about-history-image { order: -1; }
    .about-history-image img { height: 280px; }
    .about-explore-grid { grid-template-columns: 1fr; }
    .about-page-banner { min-height: 300px; }
}

@media (max-width: 768px) {
    .partners-logos { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .about-footer-images { grid-template-columns: 1fr; }
    .about-footer-images img { height: 200px; }
    .about-resources-prev { left: 4px; }
    .about-resources-next { right: 4px; }
    .about-resource-card { flex: 0 0 260px; }
    .about-explore-card { min-height: 220px; }
    .about-explore-card-title { font-size: 1.1rem; padding: 16px; }
}

/* ===== SUB PAGES (Board, Executive, Leadership) ===== */
.sub-page { margin-top: 90px; }

.sub-page-banner {
    background: var(--sgoa-primary);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 160px;
}

.sub-page-banner h1 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    text-align: left;
}

.sub-page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 64px;
}

.sub-page-intro {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 48px 0;
    text-align: center;
}

/* ===== INFORMATION FOR GRANTEES ===== */
.grantees-content {
    padding: 3rem 1.5rem 5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}
.grantees-intro {
    margin-bottom: 3.5rem;
}
.grantees-intro .grantees-intro-note {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 1rem 0 0 0;
    line-height: 1.75;
    max-width: 800px;
}
.grantees-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-light);
}
.grantees-section:last-child { border-bottom: none; }
.grantees-section-alt {
    background: var(--bg-subtle);
    margin: 0 -1.5rem;
    padding: 2.5rem 1.5rem;
}
.grantees-section-header {
    margin-bottom: 1.5rem !important;
}
.grantees-section-header .sub-title {
    color: var(--sgoa-primary);
}
.grantees-block {
    margin-bottom: 2.5rem;
    padding: 1.75rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
}
.grantees-section-alt .grantees-block {
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.grantees-block:last-child { margin-bottom: 0; }
.grantees-block-with-image {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
}
.grantees-block-with-contact {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 768px) {
    .grantees-block-with-image,
    .grantees-block-with-contact { grid-template-columns: 1fr; }
    .grantees-block-image { order: -1; }
    .grantees-contact-box { order: -1; }
    .grantees-section-alt { margin: 0 -1rem; padding: 2rem 1rem; }
}
.grantees-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-family: var(--title-font);
    letter-spacing: -0.01em;
}
.grantees-block-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.grantees-block-content p { margin: 0 0 1rem 0; }
.grantees-block-content a { color: var(--sgoa-primary); text-decoration: underline; }
.grantees-block-content a:hover { color: var(--sgoa-primary-hover); }
.grantees-resources {
    margin: 1.25rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
}
.grantees-resources strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.grantees-resources ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.grantees-resources li {
    margin: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}
.grantees-resources li::before {
    content: '\f1c1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--sgoa-primary);
    font-size: 0.75rem;
}
.grantees-resources a {
    color: var(--sgoa-primary);
    text-decoration: none;
}
.grantees-resources a:hover { text-decoration: underline; }
.grantees-download-btn {
    margin-top: 0.5rem;
}
.grantees-download-btn .btn-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.grantees-block-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.grantees-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grantees-contact-box {
    background: #fff;
    color: var(--text-dark);
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--sgoa-primary);
}
.grantees-contact-title {
    font-size: 0.95rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
    color: var(--text-muted);
}
.grantees-contact-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 0.5rem 0;
    color: var(--sgoa-primary);
}
.grantees-contact-email {
    color: var(--sgoa-primary);
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 500;
}
.grantees-contact-email:hover { color: var(--sgoa-primary-hover); }

.grantees-back-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.information-grantees-page .sub-page-content {
    padding: 80px 32px 120px;
}
.information-grantees-page .sub-page-intro {
    margin: 48px 0 64px 0;
    padding: 0 24px;
}
.information-grantees-page .sub-page-nav {
    padding-top: 48px;
    margin-top: 32px;
}

.visibility-guidance-download {
    margin: 32px 24px 40px;
    padding: 24px;
    background: #f0f9fb;
    border: 1px solid rgba(1, 117, 139, 0.2);
    border-radius: 12px;
}
.visibility-guidance-download .btn-download-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: #01758b;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}
.visibility-guidance-download .btn-download-pdf:hover {
    background: #0891b2;
}
.visibility-guidance-download .download-hint {
    margin: 12px 0 0;
    font-size: 0.9rem;
    color: #64748b;
}

.sub-page-content .content-image {
    max-width: 600px;
    margin: 0 auto 32px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 2px solid rgba(1, 117, 139, 0.2);
}

.sub-page-content .content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.team-member {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.team-member-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-icon {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #999;
}

.team-member-icon i {
    font-size: 4rem;
}

.team-member h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    padding: 20px 20px 4px;
}

.team-member .team-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sgoa-primary);
    margin: 0;
    padding: 0 20px;
}

.team-member p:last-of-type {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    padding: 12px 20px 24px;
}

.team-member-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    padding: 12px 20px 24px;
}

.team-member-desc p {
    margin: 0 0 0.5em;
}

.team-member-desc p:last-child {
    margin-bottom: 0;
}

.sub-page-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.sub-page-nav .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sgoa-primary);
    font-weight: 600;
    text-decoration: none;
}

.sub-page-nav .back-link:hover {
    text-decoration: underline;
}

/* ===== ACCOUNTABILITY PAGE (ECW-style: banner + sections + callouts + bottom cards) ===== */
.accountability-page { margin-top: 120px; }
.accountability-page .about-page-banner { min-height: 380px; }

.accountability-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 48px 1.5rem 32px;
}

.accountability-section {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
}
.accountability-section:last-of-type { border-bottom: none; }

.accountability-section-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 900px) {
    .accountability-section-inner.has-aside {
        grid-template-columns: 1fr 280px;
    }
}

.accountability-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.accountability-section p,
.accountability-section .accountability-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 1rem 0;
}
.accountability-section p:last-child,
.accountability-section .accountability-text p:last-child { margin-bottom: 0; }

.accountability-section ul {
    margin: 0.5rem 0 1rem 0;
    padding-left: 1.5rem;
    line-height: 1.7;
    color: var(--text-muted);
}
.accountability-section ul li { margin-bottom: 0.35rem; }

.accountability-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.25rem 0 0.5rem 0;
}

.accountability-callout {
    background: var(--sgoa-secondary);
    color: #fff;
    padding: 1.25rem 1.25rem;
    border-radius: 4px;
}
.accountability-callout h3,
.accountability-callout .callout-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: #fff;
}
.accountability-callout p { margin: 0; color: rgba(255,255,255,0.95); font-size: 0.9rem; }
.accountability-callout a {
    color: #fff;
    text-decoration: underline;
}
.accountability-callout a:hover { color: rgba(255,255,255,0.9); }

.accountability-aside-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.accountability-bottom {
    padding: 48px 1.5rem 64px;
    border-top: 1px solid var(--border-light);
}
.accountability-bottom-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}
.accountability-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.accountability-card {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
}
.accountability-card-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
    border-radius: 4px;
}
.accountability-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}
.accountability-card:hover .accountability-card-title { color: var(--sgoa-primary); }
@media (max-width: 768px) {
    .accountability-cards { grid-template-columns: 1fr; }
    .accountability-section-inner.has-aside { grid-template-columns: 1fr; }
    .accountability-section-inner.has-aside .accountability-aside { order: -1; }
}

/* ===== SGOA LOGO AND BRAND GUIDELINES PAGE ===== */
.brand-guidelines-page { margin-top: 120px; }
.brand-guidelines-page .about-page-banner { min-height: 380px; }

.brand-guidelines-intro {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 1.5rem 32px;
}
.brand-guidelines-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    max-width: 800px;
}

.brand-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem 48px;
}
@media (max-width: 768px) {
    .brand-cards { grid-template-columns: 1fr; }
}

.brand-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.brand-card-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}
.brand-card-box {
    padding: 1.5rem 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.brand-card-box.yellow {
    background: #f5d547;
    color: var(--text-dark);
}
.brand-card-box.teal {
    background: var(--sgoa-primary);
    color: #fff;
}
.brand-card-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
}
.brand-card-box.teal h3 { color: #fff; }
.brand-card-box p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    flex: 1;
}
.brand-card-box.yellow p { color: var(--text-dark); }
.brand-card-box.teal p { color: rgba(255,255,255,0.95); }
.brand-card-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.2s ease, background 0.2s ease;
    align-self: flex-start;
}
.brand-card-box.yellow .brand-card-download {
    background: var(--sgoa-primary);
    color: #fff;
}
.brand-card-box.yellow .brand-card-download:hover {
    background: var(--sgoa-primary-hover);
    color: #fff;
}
.brand-card-box.teal .brand-card-download {
    background: #015f6d;
    color: #fff;
}
.brand-card-box.teal .brand-card-download:hover {
    background: #014a55;
    color: #fff;
}

.brand-logo-section {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 48px 1.5rem 64px;
    border-top: 1px solid var(--border-light);
}
.brand-logo-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}
.brand-logo-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 1rem 0;
}
.brand-logo-section .logo-download-text {
    margin-bottom: 1rem;
}
.brand-logo-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: var(--sgoa-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
}
.brand-logo-download:hover {
    background: var(--sgoa-secondary-hover);
    color: #fff;
}

/* Logo bundle: multiple downloads from images/logos */
.brand-logo-bundle {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.brand-logo-bundle .brand-logo-download { margin-right: 0; }
.brand-logo-bundle .brand-logo-download.secondary {
    background: var(--sgoa-primary);
}
.brand-logo-bundle .brand-logo-download.secondary:hover {
    background: var(--sgoa-primary-hover);
}

/* Brand guidelines long-form (ECW PDF-style sections) */
.brand-doc {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem 48px;
    border-top: 1px solid var(--border-light);
}
.brand-doc-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-light);
}
.brand-doc-section:last-child { border-bottom: none; }
.brand-doc-h2 {
    font-family: var(--title-font);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--sgoa-primary);
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.02em;
}
.brand-doc-h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.5rem 0 0.5rem 0;
}
.brand-doc p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 1rem 0;
}
.brand-doc ul {
    margin: 0.5rem 0 1rem 0;
    padding-left: 1.5rem;
    line-height: 1.7;
    color: var(--text-muted);
}
.brand-doc ul li { margin-bottom: 0.35rem; }
.brand-doc .boilerplate-box {
    background: var(--bg-subtle);
    border-left: 4px solid var(--sgoa-primary);
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}
.brand-doc .colour-swatch {
    display: inline-block;
    width: 60px;
    height: 40px;
    border-radius: 4px;
    margin-right: 12px;
    vertical-align: middle;
    border: 1px solid rgba(0,0,0,0.1);
}
.brand-doc .colour-row { margin-bottom: 0.75rem; font-size: 0.95rem; color: var(--text-dark); }
.brand-doc .dos-donts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.brand-doc .dos-donts strong { display: block; margin-bottom: 0.25rem; color: var(--sgoa-secondary); }
.brand-logo-inline-download { display: inline-block; }
.brand-logo-inline-download:hover { opacity: 0.9; }
.brand-logo-download-hint { font-size: 0.875rem; color: var(--sgoa-primary); margin-top: 0.25rem; display: inline-block; }

/* Focus area detail pages */
.focus-h2 {
    font-size: 1.35rem;
    color: var(--sgoa-primary);
    margin: 28px 0 12px 0;
    font-weight: 700;
}
.focus-list {
    margin: 0 0 20px 0;
    padding-left: 24px;
    line-height: 1.75;
    color: #444;
}
.focus-list li { margin-bottom: 8px; }
.focus-area-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin: 32px 0;
}
.focus-area-card {
    display: block;
    padding: 24px;
    background: #f8f9fa;
    border-left: 4px solid var(--sgoa-primary);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s ease;
}
.focus-area-card:hover {
    background: rgba(1, 117, 139, 0.08);
    border-left-color: var(--sgoa-secondary);
    color: var(--sgoa-secondary);
}
.focus-area-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: inherit;
}
.focus-area-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}
.focus-area-card .card-arrow {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--sgoa-primary);
}
.focus-area-card:hover .card-arrow { color: var(--sgoa-secondary); }

.sub-page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== NEWS ARTICLE PAGE ===== */
.news-article-page .news-article-hero {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: var(--bg-subtle);
}

.news-article-page .news-article-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.news-article-page .news-article-hero-date {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    background: var(--sgoa-primary);
    color: #fff;
    text-align: center;
    padding: 12px 18px;
    min-width: 60px;
    border-radius: 4px;
}
.news-article-page .news-article-hero-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.news-article-page .news-article-hero-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.95;
}

.news-article-page .news-article-body-wrap {
    background: #fff;
}

.news-article-page .news-article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 64px;
}

.news-article-page .news-meta-top {
    font-size: 0.9rem;
    color: var(--sgoa-secondary);
    font-weight: 600;
    margin-bottom: 16px;
}

.news-article-page .news-article-body h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.news-article-page .news-article-body p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 20px 0;
}
.news-article-page .news-article-excerpt {
    font-size: 1.15rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
    margin-bottom: 28px !important;
}
.news-article-page .news-article-body .rich-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}
.news-article-page .news-article-body .rich-content p { margin-bottom: 1.25em; }
.news-article-page .news-article-body .rich-content h2,
.news-article-page .news-article-body .rich-content h3 {
    margin: 2em 0 0.75em 0;
    color: var(--headings-color);
}

.news-article-page .news-article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sgoa-primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: 32px;
}

.news-article-page .news-article-back:hover {
    color: var(--sgoa-secondary);
}

/* Related news on single article page */
.news-related-section {
    padding: 48px 1.5rem 64px;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-light);
}
.news-related-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}
.news-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.news-related-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease;
}
.news-related-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.news-related-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.news-related-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.news-related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-related-card-content {
    padding: 1.25rem;
}
.news-related-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}
.news-related-card-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
    color: var(--text-dark);
}
.news-related-card-content h3:hover { color: var(--sgoa-primary); }
.news-related-card-content p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #555;
    margin: 0 0 0.75rem 0;
}
.news-related-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sgoa-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.news-related-card:hover .news-related-link { color: var(--sgoa-primary-hover); }

/* ===== SUNDUS-STYLE NEWS GRID (news.php) ===== */
.news-grid-cat-nav-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px 24px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 28px;
}
.news-grid-cat-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
    align-items: flex-end;
    padding-bottom: 0;
    border-bottom: none;
}
.news-grid-cat-nav a {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    padding: 14px 0 12px;
    margin-bottom: -1px;
    border-bottom: 3px solid transparent;
}
.news-grid-cat-nav a:hover { color: var(--text-dark); }
.news-grid-cat-nav a.active { color: var(--text-dark); font-weight: 600; border-bottom-color: var(--sgoa-primary); }
.news-grid-more-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    padding: 14px 0 12px;
    margin-bottom: -1px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.news-grid-more-link:hover { color: var(--text-dark); }

/* Lead story (big image + title + excerpt) */
.news-grid-lead {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 28px;
}
.news-grid-lead .lead-img {
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
}
.news-grid-lead .lead-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}
.news-grid-lead:hover .lead-title { color: var(--sgoa-primary); }
.news-grid-lead .lead-excerpt {
    font-size: 1.0625rem;
    line-height: 1.5;
    color: #333;
    margin: 0 0 8px 0;
}
.news-grid-lead .lead-meta { font-size: 0.8125rem; color: var(--text-muted); }

/* Cards grid */
.news-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
}
.news-grid-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
.news-grid-card .card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}
.news-grid-card .card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-grid-card:hover .card-title { color: var(--sgoa-primary); }
.news-grid-card .card-excerpt {
    font-size: 0.9375rem;
    line-height: 1.45;
    color: #333;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-grid-card .card-meta { font-size: 0.8125rem; color: var(--text-muted); }
@media (max-width: 992px) {
    .news-grid-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .news-grid-cards { grid-template-columns: 1fr; }
    .news-grid-lead .lead-title { font-size: 1.5rem; }
    .news-grid-cat-nav { gap: 0 12px; }
}

/* ===== SUNDUS-STYLE BLOG DETAILS (news-single.php) ===== */
.blog-details__cat-nav-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px 24px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 28px;
}
.blog-details__categories-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
    align-items: flex-end;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}
.blog-details__categories-top a {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    padding: 14px 0 12px;
    margin-bottom: -1px;
    border-bottom: 3px solid transparent;
}
.blog-details__categories-top a:hover { color: var(--text-dark); }
.blog-details__categories-top a.active { color: var(--text-dark); font-weight: 600; border-bottom-color: var(--sgoa-primary); }
.blog-details__more-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    padding: 14px 0 12px;
    margin-bottom: -1px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.blog-details__more-link:hover { color: var(--text-dark); }

.news-article-page .blog-details__full {
    max-width: 820px;
    margin: 0 auto;
}
.news-article-page .blog-details__img {
    position: relative;
    margin-bottom: 24px;
    width: 100%;
    overflow: hidden;
}
.news-article-page .blog-details__img img {
    width: 100%;
    display: block;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}
.news-article-page .blog-details__date {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    background: var(--sgoa-primary);
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    min-width: 56px;
    border-radius: 4px;
}
.news-article-page .blog-details__date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.news-article-page .blog-details__date .month { font-size: 0.75rem; text-transform: uppercase; }
.list-unstyled { list-style: none; padding: 0; margin: 0; }
.news-article-page .blog-details__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.news-article-page .blog-details__meta a { color: var(--sgoa-primary); text-decoration: none; }
.news-article-page .blog-details__meta a:hover { color: var(--sgoa-secondary); }
.news-article-page .blog-details__recent {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}
.news-article-page .blog-details__recent-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.news-article-page .blog-details__recent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.news-article-page .blog-details__recent-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
.news-article-page .blog-details__recent-card .recent-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
    border-radius: 4px;
}
.news-article-page .blog-details__recent-card .recent-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-article-page .blog-details__recent-card:hover .recent-card-title { color: var(--sgoa-primary); }
.news-article-page .blog-details__social-list {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.news-article-page .blog-details__social-list a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.news-article-page .blog-details__social-list a:hover {
    color: var(--sgoa-primary);
    border-color: var(--sgoa-primary);
    background: rgba(1, 117, 139, 0.06);
}
@media (max-width: 992px) {
    .news-article-page .blog-details__recent-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .news-article-page .blog-details__recent-grid { grid-template-columns: 1fr; }
    .blog-details__categories-top { gap: 0 12px; }
}

/* ===== CONTACT PAGE ===== */
/* Contact page banner - matches Results Dashboard style */
.contact-page { margin-top: 90px; }
.contact-page-banner {
    min-height: 200px;
    background: var(--sgoa-primary);
    align-items: flex-start;
}
.contact-page-banner .about-banner-overlay {
    padding: 28px 1.5rem 40px;
}

/* News page banner - matches Contact/Dashboard style */
.news-page { margin-top: 90px; }
.news-page-banner {
    min-height: 200px;
    background: var(--sgoa-primary);
    align-items: flex-start;
}
.news-page-banner .about-banner-overlay {
    padding: 28px 1.5rem 40px;
}
.news-page-banner-has-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(1,117,139,0.4) 50%, transparent 100%);
    pointer-events: none;
}
.news-page-banner-has-image .about-banner-overlay {
    position: relative;
    z-index: 1;
}

.contact-page-content {
    padding: 48px 24px 64px;
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.contact-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.contact-info {
    padding: 32px;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.contact-pashto {
    font-size: 0.95rem;
    color: var(--sgoa-primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 14px 0;
    font-size: 1rem;
    color: #444;
}

.contact-details i {
    color: var(--sgoa-secondary);
    margin-top: 4px;
    min-width: 20px;
}

.contact-details a {
    color: var(--sgoa-primary);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--sgoa-secondary);
}

/* ===== COMPLAINT & FEEDBACK + FRAUD + PSEA REPORTING (Premium Design) ===== */
.complaint-feedback-body,
.fraud-reporting-body,
.psea-reporting-body { background: #fafbfc; }
.complaint-feedback-page,
.fraud-reporting-page,
.psea-reporting-page { margin-top: 90px; }

/* Reveal */
.complaint-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--reveal-delay, 0) * 0.1s);
}
.complaint-reveal.complaint-revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .complaint-reveal { transition: none; }
    .complaint-reveal.complaint-revealed { opacity: 1; transform: none; }
}

/* Hero */
.complaint-feedback-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px 80px;
    overflow: hidden;
}
.complaint-hero-bg {
    position: absolute;
    inset: 0;
}
.complaint-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #01758b 0%, #015f6d 35%, #014a55 70%, #013d46 100%);
}
.fraud-hero .complaint-hero-gradient {
    background: linear-gradient(160deg, #014a55 0%, #013d46 35%, #0f172a 70%, #0c1322 100%);
}
.psea-hero .complaint-hero-gradient {
    background: linear-gradient(160deg, #5b21b6 0%, #4c1d95 35%, #3730a3 70%, #312e81 100%);
}
.complaint-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, #fff 1.5px, transparent 0);
    background-size: 28px 28px;
}
.complaint-hero-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.complaint-hero-content {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.complaint-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}
.complaint-breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}
.complaint-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.complaint-breadcrumb-sep { opacity: 0.6; }
.complaint-hero-badge {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.complaint-hero-badge i { font-size: 2.25rem; color: #fff; }
.complaint-hero-title {
    font-family: var(--title-font);
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}
.complaint-hero-tagline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    margin: 0 0 32px 0;
}
.complaint-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}
.complaint-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}
.complaint-pill i { font-size: 0.8rem; opacity: 0.95; }

/* Wave */
.complaint-wave-wrap {
    margin-top: -1px;
    height: 56px;
    line-height: 0;
}
.complaint-wave-svg { width: 100%; height: 100%; display: block; }

/* Content */
.complaint-feedback-content {
    max-width: 1160px;
    margin: 0 auto;
    padding: 64px 24px 80px;
    background: #fff;
}
.complaint-intro-block {
    padding-left: 24px;
    border-left: 4px solid var(--sgoa-primary);
    margin-bottom: 52px;
}
.complaint-intro-text {
    font-size: 1.125rem;
    line-height: 1.85;
    color: #444;
    max-width: 680px;
}
.complaint-intro-text p { margin: 0 0 1rem 0; }
.complaint-intro-text p:last-child { margin-bottom: 0; }
.complaint-intro-text a { color: var(--sgoa-primary); text-decoration: underline; }
.complaint-intro-text a:hover { color: var(--sgoa-primary-hover); }
.complaint-intro-text ul { margin: 0.5rem 0 1rem 0; padding-left: 1.5rem; }
.complaint-intro-text li { margin-bottom: 0.4rem; }
.complaint-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    padding: 18px 32px;
    background: var(--sgoa-primary);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(1, 117, 139, 0.35);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.complaint-cta-primary:hover {
    background: var(--sgoa-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(1, 117, 139, 0.4);
}
.complaint-cta-primary:focus-visible {
    outline: 2px solid var(--sgoa-secondary);
    outline-offset: 3px;
}

/* Grid */
.complaint-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: start;
}
.complaint-grid-single { grid-template-columns: 1fr; max-width: 480px; }
@media (max-width: 920px) {
    .complaint-grid { grid-template-columns: 1fr; }
    .complaint-channels { order: -1; }
    .complaint-grid-single { max-width: none; }
}

/* Media */
.complaint-media-frame {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.complaint-media-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1,117,139,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.complaint-media-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.complaint-media-frame:hover img { transform: scale(1.04); }

/* Channels */
.complaint-channels { position: sticky; top: 110px; }
@media (max-width: 920px) { .complaint-channels { position: static; } }
.complaint-channels-box {
    padding: 32px;
    background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
    border-radius: 20px;
    border: 1px solid #e8ecef;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.complaint-channels-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 28px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.complaint-channels-heading::before {
    content: '';
    width: 5px;
    height: 28px;
    background: linear-gradient(180deg, var(--sgoa-primary) 0%, var(--sgoa-primary-hover) 100%);
    border-radius: 3px;
}
.complaint-channel-cards { display: flex; flex-direction: column; gap: 20px; }
.complaint-channel-card {
    display: block;
    padding: 26px;
    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.complaint-channel-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--sgoa-primary);
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform 0.3s ease;
}
.complaint-channel-card:hover {
    border-color: rgba(1,117,139,0.25);
    box-shadow: 0 10px 36px rgba(1,117,139,0.12);
}
.complaint-channel-card:hover::before { transform: scaleY(1); }
a.complaint-channel-card:hover { transform: translateX(6px); }
.complaint-channel-card-inperson::before {
    transform: scaleY(1);
    background: var(--sgoa-secondary);
}
.complaint-channel-card-inperson { cursor: default; }
.complaint-channel-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--sgoa-primary-light) 0%, rgba(1,117,139,0.1) 100%);
    color: var(--sgoa-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.complaint-channel-icon i { font-size: 1.2rem; }
.complaint-channel-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}
.complaint-channel-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 12px 0;
    line-height: 1.5;
}
.complaint-channel-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sgoa-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s ease;
}
.complaint-channel-cta i { font-size: 0.7rem; transition: transform 0.25s ease; }
a.complaint-channel-card:hover .complaint-channel-cta { color: var(--sgoa-primary-hover); }
a.complaint-channel-card:hover .complaint-channel-cta i { transform: translateX(4px); }

/* Assurance */
.complaint-assurance {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, var(--sgoa-primary-light) 0%, rgba(1,117,139,0.05) 100%);
    border: 1px solid rgba(1,117,139,0.2);
    border-radius: 14px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.complaint-assurance i {
    color: var(--sgoa-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.complaint-assurance p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Process steps */
.complaint-process {
    margin-top: 64px;
    padding: 48px 40px;
    background: linear-gradient(135deg, #f8fafb 0%, #f0f4f6 100%);
    border-radius: 20px;
    border: 1px solid #e8ecef;
}
.complaint-process-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 32px 0;
    text-align: center;
}
.complaint-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 700px) {
    .complaint-process-steps { grid-template-columns: 1fr; }
}
.complaint-step {
    text-align: center;
}
.complaint-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    background: var(--sgoa-primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}
.complaint-step p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Nav */
.complaint-nav {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #e8ecef;
}
.complaint-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: transparent;
    color: var(--sgoa-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--sgoa-primary);
    border-radius: 10px;
    transition: all 0.25s ease;
}
.complaint-back-btn:hover {
    background: var(--sgoa-primary);
    color: #fff;
    text-decoration: none;
}
.complaint-back-btn:focus-visible {
    outline: 2px solid var(--sgoa-secondary);
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .complaint-feedback-hero { min-height: 320px; padding: 48px 20px 56px; }
    .complaint-trust-pills { gap: 10px 16px; }
    .complaint-pill { padding: 8px 14px; font-size: 0.85rem; }
    .complaint-intro-block { padding-left: 18px; margin-bottom: 40px; }
    .complaint-process { padding: 36px 24px; }
}

/* ===== SITE FOOTER (standard NGO footer with social) ===== */
.site-footer {
    background: var(--sgoa-primary);
    color: var(--text-light);
    margin-top: 4rem;
}
/* Override global p/h4 colors so footer text is visible on teal background */
.site-footer p,
.site-footer h4,
.site-footer .footer-column h4 {
    color: rgba(255, 255, 255, 0.9);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
    gap: 2rem 2.5rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}
.footer-brand:focus { outline: 2px solid rgba(255,255,255,0.6); outline-offset: 4px; }

.footer-brand img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.footer-brand .logo-text {
    color: rgba(255, 255, 255, 0.85);
}

.footer-pashto {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    max-width: 320px;
}

/* Standard social icons (worldwide convention: Facebook, X/Twitter, LinkedIn, YouTube, Instagram) */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social-icon:hover {
    background: var(--sgoa-primary);
    color: white;
    transform: translateY(-2px);
}
.footer-social-icon:focus {
    outline: 2px solid rgba(255,255,255,0.6);
    outline-offset: 2px;
}

.footer-address,
.footer-contact {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0 0 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-address i,
.footer-contact i {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    min-width: 18px;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-complaints {
    font-size: 0.85rem;
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 20px 0;
    opacity: 0.95;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-support {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-support:hover {
    opacity: 0.95;
}

.footer-support i {
    font-size: 1.1rem;
    color: var(--sgoa-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom p + p {
    margin-top: 8px;
    opacity: 0.85;
}

.footer-bottom a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 2.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 1.25rem 24px;
    }

    .footer-brand {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .footer-brand img {
        height: 36px;
    }

    .footer-pashto {
        text-align: center;
        font-size: 0.9rem;
    }

    .footer-tagline {
        max-width: 100%;
        text-align: center;
        font-size: 0.8125rem;
        line-height: 1.55;
    }

    .footer-social {
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .footer-social-icon {
        width: 38px;
        height: 38px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        text-align: center;
        margin-bottom: 14px;
        font-size: 0.75rem;
    }

    /* Stack links vertically on mobile for better readability and touch targets */
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .footer-column li {
        margin-bottom: 0;
        width: 100%;
    }

    .footer-column li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 12px;
        min-height: 44px;
        font-size: 0.9rem;
    }

    .footer-address,
    .footer-contact {
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .footer-address {
        padding: 0 0.5rem;
        overflow-wrap: break-word;
    }

    .footer-contact a {
        overflow-wrap: break-word;
    }

    .footer-support {
        justify-content: center;
    }

    .footer-bottom {
        padding: 1rem 1.25rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
        overflow-wrap: break-word;
    }
}

/* ===== RESOURCE LIBRARY PAGE ===== */
.resource-library-page { margin-top: 0; }
.resource-library-page .about-page-banner { min-height: 380px; }
.resource-library-intro {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 32px 1.5rem 40px;
    text-align: center;
}
.resource-library-intro p {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Resources */
.featured-resources {
    padding: 0 1.5rem 48px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.featured-resources h2 {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 24px 0;
}
.featured-resources-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.featured-resources-track::-webkit-scrollbar { height: 8px; }
.featured-resources-track::-webkit-scrollbar-track { background: var(--bg-subtle); }
.featured-resources-track::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
.resource-card-featured {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.resource-card-featured:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.resource-card-featured .thumb {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.resource-card-featured .body { padding: 20px; }
.resource-card-featured .body h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.resource-card-featured .body h3 a { color: var(--text-dark); text-decoration: none; }
.resource-card-featured .body h3 a:hover { color: var(--sgoa-primary); }
.resource-card-featured .meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.resource-card-featured .btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--sgoa-secondary);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.resource-card-featured .btn-learn:hover { background: var(--sgoa-secondary-hover); }

/* All Resources + Filter */
.resource-library-main {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem 64px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}
.resource-list-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 16px;
    margin-bottom: 24px;
}
.resource-list-header h2 {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
}
.resource-list-pagination-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.resource-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.resource-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}
.resource-card:last-child { border-bottom: none; }
.resource-card .thumb-wrap {
    width: 140px;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-subtle);
}
.resource-card .thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.resource-card .content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px 0;
}
.resource-card .content h3 a { color: var(--text-dark); text-decoration: none; }
.resource-card .content h3 a:hover { color: var(--sgoa-primary); }
.resource-card .content .excerpt {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.resource-card .content .meta { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 12px; }
.resource-card .content .btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--sgoa-secondary);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s;
}
.resource-card .content .btn-learn:hover { background: var(--sgoa-secondary-hover); }

/* Filter sidebar */
.resource-filter-sidebar {
    background: var(--bg-subtle);
    padding: 24px;
    border: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
}
.resource-filter-sidebar h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--text-dark);
}
.resource-filter-sidebar .filter-group { margin-bottom: 20px; }
.resource-filter-sidebar .filter-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.resource-filter-sidebar input[type="text"],
.resource-filter-sidebar select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 0.9375rem;
}
.resource-filter-sidebar input[type="text"]:focus,
.resource-filter-sidebar select:focus {
    outline: none;
    border-color: var(--sgoa-primary);
}
.resource-filter-sidebar .btn-search {
    width: 100%;
    padding: 12px;
    background: var(--sgoa-secondary);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.resource-filter-sidebar .btn-search:hover { background: var(--sgoa-secondary-hover); }
.resource-filter-sidebar .search-wrap { position: relative; }
.resource-filter-sidebar .search-wrap input { padding-left: 36px; }
.resource-filter-sidebar .search-wrap .icon-search {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

@media (max-width: 992px) {
    .resource-library-main { grid-template-columns: 1fr; }
    .resource-filter-sidebar { position: static; }
}
@media (max-width: 768px) {
    .resource-card { grid-template-columns: 1fr; }
    .resource-card .thumb-wrap { width: 100%; max-width: 200px; }
    .resource-library-page .about-page-banner { min-height: 300px; }
}

/* ===== PRESS RELEASES - BBC-style layout ===== */
.press-releases-page {
    margin-top: 100px;
    padding-top: 8px;
    background: #fff;
    min-height: 100vh;
}
.press-releases-page .pr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.press-releases-page .pr-header {
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #e5e7eb;
}
.press-releases-page .pr-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}
.press-releases-page .pr-header .pr-intro {
    font-size: 0.9375rem;
    color: #64748b;
    margin-top: 8px;
}
.press-releases-page .pr-header .pr-intro p {
    margin: 0 0 4px 0;
    color: inherit;
}
.press-releases-page .pr-content {
    padding: 24px 24px 48px;
}
.press-releases-page .pr-top-section {
    display: grid;
    grid-template-columns: 1fr 1.8fr 340px;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    align-items: start;
}
@media (max-width: 1100px) {
    .press-releases-page .pr-top-section {
        grid-template-columns: 1fr 1fr;
    }
    .press-releases-page .pr-main-text { grid-column: 1; grid-row: 1; }
    .press-releases-page .pr-secondary { grid-column: 2; grid-row: 1; }
    .press-releases-page .pr-main-image {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}
@media (max-width: 768px) {
    .press-releases-page .pr-top-section {
        grid-template-columns: 1fr;
    }
    .press-releases-page .pr-main-text { grid-row: 1; }
    .press-releases-page .pr-main-image { grid-column: 1; grid-row: 2; }
    .press-releases-page .pr-secondary { grid-row: 3; }
}
.press-releases-page .pr-main-text {
    min-width: 0;
}
.press-releases-page .pr-main-headline {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 12px 0;
}
.press-releases-page .pr-main-headline a {
    color: #1a1a1a;
    text-decoration: none;
}
.press-releases-page .pr-main-headline a:hover {
    color: var(--sgoa-primary);
}
.press-releases-page .pr-main-excerpt {
    font-size: 1rem;
    line-height: 1.65;
    color: #374151;
    margin: 0 0 8px 0;
    max-width: 100%;
}
.press-releases-page .pr-main-meta {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
}
.press-releases-page .pr-main-image {
    min-width: 0;
}
.press-releases-page .pr-main-image a {
    display: block;
    overflow: hidden;
}
.press-releases-page .pr-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 2/1;
}
.press-releases-page .pr-secondary {
    border-left: 1px solid #e5e7eb;
    padding-left: 24px;
}
@media (max-width: 992px) {
    .press-releases-page .pr-secondary {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e5e7eb;
        padding-top: 24px;
    }
}
.press-releases-page .pr-secondary-image {
    margin-bottom: 14px;
    overflow: hidden;
}
.press-releases-page .pr-secondary-image a {
    display: block;
}
.press-releases-page .pr-secondary-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}
.press-releases-page .pr-secondary-headline {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px 0;
}
.press-releases-page .pr-secondary-headline a {
    color: #1a1a1a;
    text-decoration: none;
}
.press-releases-page .pr-secondary-headline a:hover {
    color: var(--sgoa-primary);
}
.press-releases-page .pr-secondary-excerpt {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #374151;
    margin: 0 0 10px 0;
}
.press-releases-page .pr-secondary-meta {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
}
.press-releases-page .pr-bottom-section {
    margin-top: 0;
}
.press-releases-page .pr-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.press-releases-page .pr-bottom-grid.pr-has-text-cards {
    grid-template-columns: repeat(3, 1fr) 280px;
}
@media (max-width: 992px) {
    .press-releases-page .pr-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .press-releases-page .pr-bottom-grid {
        grid-template-columns: 1fr;
    }
}
.press-releases-page .pr-card {
    padding: 20px;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.press-releases-page .pr-bottom-grid:not(.pr-has-text-cards) .pr-card:nth-child(3n) {
    border-right: none;
}
.press-releases-page .pr-bottom-grid.pr-has-text-cards .pr-card:nth-child(3n) {
    border-right: 1px solid #e5e7eb;
}
.press-releases-page .pr-bottom-grid .pr-text-cards {
    grid-column: 4;
    grid-row: 1 / -1;
    display: flex;
    flex-direction: column;
    border-right: none;
}
.press-releases-page .pr-bottom-grid .pr-text-cards .pr-card {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    flex: 1;
}
.press-releases-page .pr-bottom-grid .pr-text-cards .pr-card:last-child {
    border-bottom: none;
}
@media (max-width: 992px) {
    .press-releases-page .pr-bottom-grid .pr-text-cards {
        grid-column: 1 / -1;
        grid-row: auto;
        flex-direction: row;
        border-top: 1px solid #e5e7eb;
    }
    .press-releases-page .pr-bottom-grid .pr-text-cards .pr-card {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid #e5e7eb;
    }
    .press-releases-page .pr-bottom-grid .pr-text-cards .pr-card:last-child {
        border-right: none;
    }
    .press-releases-page .pr-card:nth-child(3n) {
        border-right: 1px solid #e5e7eb;
    }
    .press-releases-page .pr-card:nth-child(2n) {
        border-right: none;
    }
}
@media (max-width: 576px) {
    .press-releases-page .pr-bottom-grid .pr-text-cards {
        flex-direction: column;
    }
    .press-releases-page .pr-bottom-grid .pr-text-cards .pr-card {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    .press-releases-page .pr-card {
        border-right: none;
    }
}
.press-releases-page .pr-card-img {
    margin: -20px -20px 14px -20px;
    overflow: hidden;
}
.press-releases-page .pr-card-img a {
    display: block;
}
.press-releases-page .pr-card-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
}
.press-releases-page .pr-card-headline {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px 0;
}
.press-releases-page .pr-card-headline a {
    color: #1a1a1a;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.press-releases-page .pr-card-headline a:hover {
    color: var(--sgoa-primary);
}
.press-releases-page .pr-card-content .pr-card-excerpt {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #374151;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.press-releases-page .pr-card-text .pr-card-excerpt {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #374151;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.press-releases-page .pr-card-meta {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
}

/* ===== COMPREHENSIVE RESPONSIVE STYLES ===== */
/* Base: fluid typography and containers */
:root {
    --responsive-padding: 1rem;
}
@media (max-width: 768px) {
    :root { --responsive-padding: 1rem; --section-padding: 3rem 1rem; }
    .container, .auto-container { padding-left: 1rem; padding-right: 1rem; }
    h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
}
@media (max-width: 480px) {
    :root { --responsive-padding: 0.75rem; --section-padding: 2.5rem 0.75rem; }
    .container, .auto-container { padding-left: 0.75rem; padding-right: 0.75rem; }
}

/* Header utility: compact on small screens */
@media (max-width: 768px) {
    .header-utility { padding: 0.4rem 0; }
    .header-utility-inner { padding: 0 1rem; flex-wrap: wrap; gap: 0.5rem; }
    .header-social { gap: 0.25rem; }
    .header-social-icon { width: 28px; height: 28px; font-size: 0.75rem; }
    .header-search-form { min-width: 120px; max-width: 160px; }
    .header-search-input { padding: 0.35rem 0.5rem; font-size: 0.8125rem; }
    .header-search-submit { width: 34px; height: 30px; }
}
@media (max-width: 480px) {
    .header-utility-inner { justify-content: center; }
    .header-search-wrap { order: 3; width: 100%; }
    .header-search-form { max-width: 100%; }
}

/* Logo: smaller on mobile */
@media (max-width: 768px) {
    .logo img { height: 44px; }
    .logo-text { font-size: 1.25rem; }
    .header-inner { min-height: 60px; padding: 0 1rem; }
}

/* Hero slider: smaller on mobile */
@media (max-width: 768px) {
    .hero-slider { margin-top: 100px; height: 55vh; min-height: 320px; }
    .slide-content { padding: 24px 16px 32px; max-width: 100%; }
    .slide-content h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
    .slide-lead { font-size: 0.95rem; margin-bottom: 20px; }
    .slider-dots { bottom: 20px; gap: 8px; }
    .dot { width: 10px; height: 10px; }
}
@media (max-width: 480px) {
    .hero-slider { height: 50vh; min-height: 280px; margin-top: 90px; }
    .slider-nav { width: 36px; height: 36px; font-size: 0.875rem; }
    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }
}

/* Who we are: already has 1fr grid at 768 */
@media (max-width: 480px) {
    .who-we-are-text {
        min-height: auto;
        max-height: none;
    }
    .who-we-are-image {
        min-height: 240px;
        max-height: 240px;
    }
    .who-we-are-image img {
        min-height: 240px;
        max-height: 240px;
    }
}

/* Focus areas: smaller cards on mobile */
@media (max-width: 768px) {
    .focus-area-card-block { flex: 0 0 240px; min-width: 240px; }
    .focus-areas-btn-prev { left: 0; }
    .focus-areas-btn-next { right: 0; }
}
@media (max-width: 480px) {
    .focus-area-card-block { flex: 0 0 220px; min-width: 220px; }
    .focus-area-card-image { height: 160px; }
    .focus-area-card-content { padding: 16px 18px; }
    .focus-area-card-content h3 { font-size: 1rem; }
}

/* News section: mobile */
@media (max-width: 768px) {
    .news-section-row.row { flex-direction: column; align-items: stretch; margin-bottom: 24px; }
    .news-section .sec-title { margin-bottom: 16px; }
    .news-section .top-btn { justify-content: center; margin-bottom: 16px; }
    .news-one-row-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
    .news-one-row-card { flex: 1 1 100%; max-width: 100%; }
}
@media (max-width: 480px) {
    .news-section .news-block .content-box { padding: 16px 18px; }
    .news-section .news-block .content-box .title { font-size: 1rem; }
}

/* Gallery: smaller on mobile */
@media (max-width: 480px) {
    .gallery-carousel-outer { padding: 0 36px; }
    .gallery-slide { flex: 0 0 260px; width: 260px; height: 195px; }
    .gallery-btn { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* Map: responsive height */
@media (max-width: 768px) {
    .sgoa-map { height: 320px; }
    .map-wrapper { padding: 12px; }
    .map-provinces-list { font-size: 0.875rem; }
}
@media (max-width: 480px) {
    .sgoa-map { height: 260px; }
}

/* Newsletter CTA */
@media (max-width: 480px) {
    .newsletter-banner.call-to-action-cta { min-height: auto; padding: 2rem 1rem; }
    .newsletter-banner .sec-title .title { font-size: 1.25rem; }
    .newsletter-banner .btn-box .theme-btn { padding: 12px 24px; font-size: 0.8125rem; }
}

/* Contact page */
@media (max-width: 768px) {
    .contact-page-content { padding: 32px 1rem 48px; }
    .contact-info { padding: 24px; }
    .contact-info h2 { font-size: 1.25rem; }
    .contact-details p { font-size: 0.9rem; }
}
@media (max-width: 480px) {
    .contact-info { padding: 18px; }
    .contact-details { display: flex; flex-direction: column; gap: 0.5rem; }
}

/* Results dashboard */
@media (max-width: 768px) {
    .dashboard-cards-row { grid-template-columns: 1fr; gap: 1rem; }
    .dashboard-card { padding: 1.25rem; }
    .dashboard-hero-value { font-size: 2rem; }
    .dashboard-card-value { font-size: 1.5rem; }
    .dashboard-map-viz { flex-direction: column; }
    .dashboard-map-img-wrap { max-height: 240px; }
    .dashboard-tabs { flex-wrap: wrap; }
    .dashboard-tab { padding: 0.4rem 0.75rem; font-size: 0.8125rem; }
}
@media (max-width: 480px) {
    .dashboard-hero-value { font-size: 1.75rem; }
    .dashboard-card-value { font-size: 1.25rem; }
    .dashboard-progress-row { flex-wrap: wrap; }
    .dashboard-progress-label { min-width: 100%; }
}

/* About page banners */
@media (max-width: 768px) {
    .about-page-banner { min-height: 200px; }
    .about-banner-overlay { padding: 24px 1rem 32px; }
    .about-banner-title { font-size: 1.5rem; }
    .about-banner-breadcrumb { font-size: 0.8rem; }
}
@media (max-width: 480px) {
    .about-page-banner { min-height: 160px; }
    .about-banner-title { font-size: 1.25rem; }
}

/* Sub-pages: margin-top for fixed header */
@media (max-width: 768px) {
    .contact-page, .news-page, .dashboard-page { margin-top: 80px; }
}

/* Tables: horizontal scroll on mobile */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 768px) {
    table { min-width: 400px; }
}

/* Rich content: responsive images */
.rich-content img,
.content-box img {
    max-width: 100%;
    height: auto;
}

/* Page template / generic content */
@media (max-width: 768px) {
    .page-sections-nav .container { flex-direction: column; align-items: flex-start; }
}

/* Footer: smaller on very small screens */
@media (max-width: 480px) {
    .site-footer { margin-top: 2rem; }
    .footer-inner { padding: 24px 1rem 20px; gap: 20px; }
    .footer-brand img { height: 32px; }
    .footer-pashto { font-size: 0.85rem; }
    .footer-tagline { font-size: 0.75rem; }
    .footer-social-icon { width: 36px; height: 36px; }
    .footer-column h4 { margin-bottom: 10px; font-size: 0.7rem; }
    .footer-column li a { padding: 8px 10px; min-height: 40px; font-size: 0.85rem; }
    .footer-address, .footer-contact { font-size: 0.8rem; }
    .footer-bottom { padding: 0.875rem 1rem; }
    .footer-bottom p { font-size: 0.75rem; }
}

/* Forms: full width on mobile */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="search"],
    textarea,
    select {
        width: 100%;
        max-width: 100%;
    }
}

/* Buttons: touch-friendly */
@media (max-width: 768px) {
    .btn, .theme-btn { padding: 12px 24px; font-size: 0.875rem; }
    .btn-style-one { padding: 12px 24px; }
}

/* Prevent horizontal overflow */
html,
body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.btn-donate {
    background: linear-gradient(135deg, #f0592a, #f0592a);
    color: var(--white) !important;
    padding: 15px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(230, 131, 11, 0.4);
    transition: var(--transition);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 148, 29, 0.5);
}

