﻿:root {
    --sws-green: #0b6b4a;
    --sws-green-dark: #064e3b;
    --sws-green-deep: #033626;
    --sws-green-soft: #eaf6f1;
    --sws-gold: #d6a100;
    --sws-gold-soft: #fff6d9;
    --sws-gray: #f6f8f7;
    --sws-text: #17231f;
    --sws-muted: #66756f;
    --sws-border: #dde8e3;
    --sws-white: #ffffff;
    --sws-shadow: 0 20px 60px rgba(6, 78, 59, .12);
    --sws-shadow-hover: 0 28px 80px rgba(6, 78, 59, .2);
    --sws-radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--sws-text);
    background: var(--sws-white);
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: var(--sws-green);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--sws-gold);
}

img {
    max-width: 100%;
    height: auto;
}

.hero-media img,
.project-image img,
.program-image img,
.about-media img,
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 16px;
    color: var(--sws-green-dark);
    line-height: 1.08;
    letter-spacing: -.02em;
}

h1 {
    font-size: clamp(2.7rem, 5vw, 5.8rem);
}

h2 {
    font-size: clamp(2rem, 3.2vw, 3.45rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0 0 18px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    z-index: 99;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--sws-white);
}

.sws-container {
    width: min(1600px, calc(100% - 48px));
    margin: 0 auto;
}

.sws-topbar {
    color: rgba(255, 255, 255, .92);
    background: linear-gradient(90deg, var(--sws-green-deep), var(--sws-green-dark));
    font-size: .86rem;
}

.sws-topbar a {
    color: var(--sws-white);
}

.sws-topbar-inner,
.sws-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.sws-topbar-inner {
    min-height: 34px;
}

.sws-topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sws-language-switcher,
.sws-language-switcher ul {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sws-language-switcher li {
    margin: 0;
    list-style: none;
}

.sws-language-switcher a,
.sws-language-switcher span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 4px 10px;
    color: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
}

.sws-language-switcher .current-lang a,
.sws-language-switcher a:hover,
.sws-language-switcher a:focus {
    color: var(--sws-green-deep);
    background: var(--sws-gold);
    border-color: var(--sws-gold);
}

.sws-topbar-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.sws-topbar-link {
    font-weight: 800;
}

.sws-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(221, 232, 227, .9);
    box-shadow: 0 10px 30px rgba(6, 78, 59, .06);
    backdrop-filter: blur(14px);
}

.sws-header-inner {
    min-height: 82px;
}

.sws-brand {
    flex: 0 0 auto;
}

.sws-brand-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--sws-green-dark);
}

.sws-brand-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--sws-white);
    background: linear-gradient(135deg, var(--sws-green), var(--sws-green-dark));
    border-radius: 18px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(6, 78, 59, .22);
}

.sws-brand strong,
.sws-brand small {
    display: block;
}

.sws-brand strong {
    font-size: 1.05rem;
}

.sws-brand small {
    color: var(--sws-muted);
    font-size: .8rem;
}

.sws-primary-nav {
    min-width: 0;
}

.sws-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sws-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--sws-text);
    font-size: .92rem;
    font-weight: 800;
    border-radius: 999px;
    white-space: nowrap;
}

.sws-menu a:hover,
.sws-menu .current-menu-item > a {
    color: var(--sws-green-dark);
    background: var(--sws-green-soft);
}

.sws-menu > li:last-child > a {
    color: var(--sws-white);
    background: var(--sws-green-dark);
    box-shadow: 0 12px 24px rgba(6, 78, 59, .18);
}

.sws-menu > li:last-child > a:hover {
    color: var(--sws-green-dark);
    background: var(--sws-gold);
}

.sws-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--sws-white);
    border: 1px solid var(--sws-border);
    border-radius: 14px;
}

.sws-menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--sws-green-dark);
}

.sws-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 10%, rgba(214, 161, 0, .18), transparent 34%),
        linear-gradient(135deg, #f8fbf9 0%, #edf7f2 45%, #ffffff 100%);
}

.sws-slider {
    position: relative;
}

.sws-slider-track {
    display: flex;
    transition: transform .55s ease;
}

.sws-slide {
    min-width: 100%;
    min-height: clamp(620px, 76vh, 720px);
    display: flex;
    align-items: center;
    padding: 54px 0 72px;
}

.sws-slide-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
    align-items: center;
    gap: clamp(34px, 5vw, 76px);
}

.sws-slide-content {
    position: relative;
    z-index: 2;
    max-width: 710px;
}

.sws-slide h1 {
    color: var(--sws-green-dark);
    text-transform: uppercase;
}

.sws-slide p,
.sws-slide-text {
    max-width: 650px;
    color: #34423d;
    font-size: clamp(1.05rem, 1.3vw, 1.28rem);
}

.hero-media {
    position: relative;
    height: clamp(420px, 56vh, 610px);
    overflow: hidden;
    background: linear-gradient(135deg, var(--sws-green), var(--sws-gold));
    border-radius: 34px;
    box-shadow: var(--sws-shadow);
    isolation: isolate;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 78, 59, .18), rgba(6, 78, 59, .02));
    pointer-events: none;
}

.sws-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--sws-gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sws-eyebrow::before,
.sws-eyebrow::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: currentColor;
}

.sws-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    color: var(--sws-white);
    background: var(--sws-green-dark);
    border: 2px solid var(--sws-green-dark);
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 30px rgba(6, 78, 59, .18);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.sws-button:hover,
.sws-button:focus {
    color: var(--sws-white);
    background: var(--sws-green);
    border-color: var(--sws-green);
    transform: translateY(-2px);
    box-shadow: var(--sws-shadow-hover);
}

.sws-button-gold {
    color: var(--sws-green-dark);
    background: var(--sws-gold);
    border-color: var(--sws-gold);
}

.sws-button-gold:hover,
.sws-button-gold:focus {
    color: var(--sws-white);
    background: var(--sws-gold);
    border-color: var(--sws-gold);
}

.sws-button-outline {
    color: var(--sws-white);
    background: transparent;
    border-color: rgba(255, 255, 255, .7);
}

.sws-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    color: var(--sws-green-dark);
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(6, 78, 59, .18);
    transform: translateY(-50%);
}

.sws-slider-prev {
    left: 22px;
}

.sws-slider-next {
    right: 22px;
}

.sws-slider-dots {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    z-index: 6;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.sws-slider-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(6, 78, 59, .35);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.sws-slider-dots button.is-active {
    width: 34px;
    background: var(--sws-green-dark);
    border-radius: 999px;
}

.sws-section {
    padding: 96px 0;
}

.sws-section-soft {
    background: var(--sws-gray);
}

.sws-section-heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.sws-card-grid,
.sws-project-grid,
.sws-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.sws-program-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.sws-card {
    min-height: 100%;
    padding: 26px;
    background: var(--sws-white);
    border: 1px solid rgba(221, 232, 227, .8);
    border-radius: var(--sws-radius);
    box-shadow: 0 16px 42px rgba(6, 78, 59, .08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sws-card:hover {
    border-color: rgba(11, 107, 74, .22);
    box-shadow: var(--sws-shadow-hover);
    transform: translateY(-6px);
}

.program-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.program-image {
    height: 150px;
    overflow: hidden;
    background: var(--sws-green-soft);
    border-radius: 18px;
    margin-bottom: 18px;
}

.sws-card-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: -45px 0 16px 14px;
    color: var(--sws-white);
    background: linear-gradient(135deg, var(--sws-green), var(--sws-green-dark));
    border: 4px solid var(--sws-white);
    border-radius: 18px;
    font-size: 1.45rem;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(6, 78, 59, .2);
}

.program-card h3,
.program-card p {
    padding: 0 8px;
}

.program-card p,
.project-card p,
.news-card p {
    color: var(--sws-muted);
    font-size: .96rem;
}

.sws-card-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding: 8px 8px 4px;
    color: var(--sws-green-dark);
    font-weight: 900;
}

.project-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.project-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--sws-green-soft);
}

.project-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.sws-status-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    padding: 8px 14px;
    color: var(--sws-white);
    background: var(--sws-green-dark);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.sws-category-pill {
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 6px 12px;
    color: var(--sws-green-dark);
    background: var(--sws-green-soft);
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.sws-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.sws-filter-buttons button {
    padding: 10px 17px;
    color: var(--sws-green-dark);
    background: var(--sws-white);
    border: 1px solid var(--sws-border);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
}

.sws-filter-buttons button.is-active {
    color: var(--sws-white);
    background: var(--sws-green-dark);
    border-color: var(--sws-green-dark);
}

.sws-project-card.is-hidden {
    display: none;
}

.sws-about-band {
    color: var(--sws-white);
    background:
        radial-gradient(circle at 15% 10%, rgba(214, 161, 0, .14), transparent 28%),
        linear-gradient(135deg, var(--sws-green-deep), var(--sws-green-dark));
}

.sws-about-band h2,
.sws-about-band h3,
.sws-about-band p {
    color: var(--sws-white);
}

.sws-about-modern {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.about-media {
    height: 560px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.sws-about-copy {
    max-width: 760px;
}

.sws-focus-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.sws-focus-list span {
    padding: 13px 14px;
    color: rgba(255, 255, 255, .94);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    font-weight: 800;
}

.sws-about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.sws-about-stats div {
    padding: 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
}

.sws-about-stats strong {
    display: block;
    color: var(--sws-gold);
    font-size: 2rem;
    line-height: 1;
}

.sws-about-stats span {
    color: rgba(255, 255, 255, .82);
    font-size: .88rem;
    font-weight: 800;
}

.sws-cta {
    padding: 0;
    background: var(--sws-green-dark);
    background-position: center;
    background-size: cover;
}

.sws-cta-inner {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: var(--sws-white);
}

.sws-cta h2,
.sws-cta p {
    color: var(--sws-white);
}

.sws-cta h2 {
    max-width: 820px;
}

.news-card {
    overflow: hidden;
    padding: 0;
}

.news-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: var(--sws-green-soft);
}

.news-card h3,
.news-card p,
.news-card .sws-card-link {
    margin-right: 24px;
    margin-left: 24px;
}

.news-card h3 {
    margin-top: 24px;
}

.news-card .sws-card-link {
    margin-bottom: 24px;
}

.sws-date-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: grid;
    place-items: center;
    min-width: 64px;
    min-height: 58px;
    padding: 8px;
    color: var(--sws-green-dark);
    background: var(--sws-white);
    border-radius: 16px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.sws-page-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
    padding: 82px 0;
    background: linear-gradient(135deg, var(--sws-green-dark), var(--sws-green));
    background-position: center;
    background-size: cover;
}

.sws-page-hero h1 {
    color: var(--sws-white);
}

.sws-content {
    max-width: 940px;
}

.sws-content ul {
    padding-left: 22px;
}

.section-image {
    min-height: 320px;
    margin: 32px 0 26px;
    background: var(--sws-green-soft);
    background-position: center;
    background-size: cover;
    border-radius: var(--sws-radius);
    box-shadow: var(--sws-shadow);
}

.sws-contact-placeholder,
.sws-donation-grid div {
    padding: 22px;
    background: var(--sws-gray);
    border: 1px solid var(--sws-border);
    border-radius: 20px;
}

.sws-donation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
    font-weight: 800;
}

.sws-footer {
    color: rgba(255, 255, 255, .84);
    background: var(--sws-green-deep);
}

.sws-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 70px 0;
}

.sws-footer h2,
.sws-footer h3,
.sws-footer a {
    color: var(--sws-white);
}

.sws-footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sws-footer-menu a {
    display: inline-block;
    padding: 4px 0;
}

.sws-footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.sws-footer-bottom p {
    margin: 0;
}

@media (max-width: 1200px) {
    .sws-header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
    }

    .sws-primary-nav,
    .sws-menu {
        width: 100%;
    }

    .sws-menu {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .sws-slide-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sws-program-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .sws-menu-toggle {
        display: block;
        position: absolute;
        right: 24px;
        top: 18px;
    }

    .sws-header-inner {
        position: relative;
        align-items: stretch;
    }

    .sws-primary-nav {
        display: none;
    }

    .sws-primary-nav.is-open {
        display: block;
    }

    .sws-menu {
        display: block;
        padding: 14px 0 4px;
        overflow: visible;
    }

    .sws-menu a {
        border-radius: 12px;
    }

    .sws-slide {
        min-height: auto;
        padding: 52px 0 76px;
    }

    .sws-slide-grid,
    .sws-about-modern {
        grid-template-columns: 1fr;
    }

    .hero-media {
        height: 390px;
        order: 2;
    }

    .sws-slide-content {
        order: 1;
    }

    .sws-card-grid,
    .sws-project-grid,
    .sws-news-grid,
    .sws-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sws-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-media {
        height: 420px;
    }

    .sws-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }
}

/* swstheme5: organized editorial NGO layout */
.sws-theme5-main {
    background:
        radial-gradient(circle at top left, rgba(214, 161, 0, .08), transparent 34rem),
        linear-gradient(180deg, #f7faf8 0%, #ffffff 34rem);
}

.sws-theme5-main .sws-container {
    max-width: 1500px;
}

.sws-theme5-program-band,
.sws-theme5-projects,
.sws-theme5-about,
.sws-theme5-focus,
.sws-theme5-news {
    padding: 86px 0;
}

.sws-theme5-band-head,
.sws-theme5-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.sws-theme5-band-head {
    align-items: center;
    max-width: 900px;
}

.sws-theme5-band-head h2,
.sws-theme5-section-head h2,
.sws-theme5-about-copy h2,
.sws-theme5-focus h2,
.sws-theme5-cta h2 {
    margin: 8px 0 0;
    color: var(--sws-green-deep);
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -.02em;
}

.sws-theme5-band-head p {
    margin: 0;
    max-width: 420px;
    color: var(--sws-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.sws-theme5-section-head a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: var(--sws-green-deep);
    font-weight: 800;
    background: #ffffff;
    border: 1px solid rgba(6, 78, 59, .14);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(6, 78, 59, .07);
}

.sws-theme5-program-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.sws-theme5-program {
    position: relative;
    display: flex;
    min-height: 390px;
    padding: 18px;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(6, 78, 59, .1);
    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(6, 78, 59, .08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sws-theme5-program:hover {
    transform: translateY(-7px);
    border-color: rgba(214, 161, 0, .35);
    box-shadow: 0 28px 70px rgba(6, 78, 59, .14);
}

.sws-theme5-program-number {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    background: rgba(6, 78, 59, .92);
    border: 3px solid #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(6, 78, 59, .2);
}

.sws-theme5-program-image {
    height: 170px;
    margin-bottom: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(6, 78, 59, .14), rgba(214, 161, 0, .16));
    border-radius: 20px;
}

.sws-theme5-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.sws-theme5-program h3 {
    margin: 0 0 10px;
    color: var(--sws-green-deep);
    font-size: 1.35rem;
    line-height: 1.15;
}

.sws-theme5-program p {
    margin: 0 0 22px;
    color: var(--sws-text);
    line-height: 1.62;
}

.sws-theme5-program a {
    margin-top: auto;
    color: var(--sws-green-deep);
    font-weight: 900;
}

.sws-theme5-projects {
    background: #eef7f2;
}

.sws-theme5-projects .sws-project-grid {
    gap: 24px;
}

.sws-theme5-projects .sws-project-card {
    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(6, 78, 59, .08);
}

.sws-theme5-projects .sws-project-card .project-image,
.sws-theme5-projects .sws-project-card .project-image img {
    height: 255px;
}

.sws-theme5-about {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(3, 46, 32, .97), rgba(8, 97, 70, .95)),
        radial-gradient(circle at top right, rgba(214, 161, 0, .24), transparent 28rem);
}

.sws-theme5-about-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 52px;
    align-items: center;
}

.sws-theme5-about-media {
    min-height: 520px;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, .12);
    border-radius: 34px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, .22);
}

.sws-theme5-about-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
}

.sws-theme5-about .sws-eyebrow,
.sws-theme5-cta .sws-eyebrow {
    color: var(--sws-gold);
}

.sws-theme5-about-copy h2,
.sws-theme5-cta h2 {
    color: #ffffff;
}

.sws-theme5-about-copy p {
    max-width: 760px;
    color: rgba(255, 255, 255, .88);
    font-size: 1.08rem;
    line-height: 1.85;
}

.sws-theme5-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.sws-theme5-impact-grid div {
    padding: 22px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    backdrop-filter: blur(8px);
}

.sws-theme5-impact-grid strong {
    display: block;
    color: var(--sws-gold);
    font-size: 2.4rem;
    line-height: 1;
}

.sws-theme5-impact-grid span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .82);
    font-weight: 800;
}

.sws-theme5-focus {
    background: #ffffff;
}

.sws-theme5-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 34px;
    align-items: center;
    padding: 46px;
    background: linear-gradient(135deg, #f9fcfa, #eef7f2);
    border: 1px solid rgba(6, 78, 59, .1);
    border-radius: 34px;
    box-shadow: 0 24px 70px rgba(6, 78, 59, .08);
}

.sws-theme5-focus ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sws-theme5-focus li {
    padding: 22px 22px 22px 58px;
    color: var(--sws-green-deep);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.35;
    background: #ffffff;
    border: 1px solid rgba(6, 78, 59, .1);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(6, 78, 59, .06);
}

.sws-theme5-focus li::before {
    content: "";
    position: absolute;
}

.sws-theme5-focus li {
    position: relative;
}

.sws-theme5-focus li::after {
    content: "\2713";
    position: absolute;
    top: 21px;
    left: 20px;
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: .85rem;
    background: var(--sws-green-dark);
    border-radius: 50%;
}

.sws-theme5-cta {
    margin: 0;
    padding: 82px 0;
    color: #ffffff;
    background-size: cover;
    background-position: center;
}

.sws-theme5-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 48px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 34px;
    backdrop-filter: blur(8px);
}

.sws-theme5-cta p {
    max-width: 680px;
    color: rgba(255, 255, 255, .86);
    font-size: 1.08rem;
    line-height: 1.7;
}

.sws-theme5-news {
    background: #f7faf8;
}

.sws-theme5-news .news-card {
    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(6, 78, 59, .08);
}

.sws-theme5-news .news-image {
    height: 245px;
    border-radius: 22px 22px 0 0;
}

@media (max-width: 1200px) {
    .sws-theme5-program-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .sws-theme5-program-band,
    .sws-theme5-projects,
    .sws-theme5-about,
    .sws-theme5-focus,
    .sws-theme5-news {
        padding: 58px 0;
    }

    .sws-theme5-band-head,
    .sws-theme5-section-head,
    .sws-theme5-cta-inner {
        display: block;
    }

    .sws-theme5-band-head p,
    .sws-theme5-section-head a {
        margin-top: 18px;
    }

    .sws-theme5-program-grid,
    .sws-theme5-about-grid,
    .sws-theme5-focus-grid {
        grid-template-columns: 1fr;
    }

    .sws-theme5-program {
        min-height: 0;
    }

    .sws-theme5-program-image {
        height: 220px;
    }

    .sws-theme5-about-media,
    .sws-theme5-about-media img {
        min-height: 360px;
    }

    .sws-theme5-focus-grid,
    .sws-theme5-cta-inner {
        padding: 28px;
        border-radius: 26px;
    }
}

@media (max-width: 640px) {
    .sws-theme5-program-grid,
    .sws-theme5-impact-grid,
    .sws-theme5-focus ul {
        grid-template-columns: 1fr;
    }

    .sws-theme5-program-image,
    .sws-theme5-news .news-image {
        height: 190px;
    }
}

@media (max-width: 640px) {
    .sws-container {
        width: min(100% - 28px, 1600px);
    }

    .sws-topbar-inner,
    .sws-topbar-contact,
    .sws-topbar-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 8px 0;
    }

    .sws-language-switcher,
    .sws-language-switcher ul {
        flex-wrap: wrap;
    }

    .sws-brand small {
        display: none;
    }

    .hero-media {
        height: 300px;
        border-radius: 22px;
    }

    .sws-slider-arrow {
        display: none;
    }

    .sws-section {
        padding: 68px 0;
    }

    .sws-card-grid,
    .sws-project-grid,
    .sws-news-grid,
    .sws-program-grid,
    .sws-footer-grid,
    .sws-focus-list,
    .sws-about-stats,
    .sws-donation-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 230px;
    }

    .about-media {
        height: 320px;
    }

    .sws-cta-inner {
        min-height: 360px;
    }
}

/* Final header polish: official logo, roomier navigation, and dropdown menus. */
.sws-header-inner {
    min-height: 94px;
    gap: 34px;
}

.sws-brand-logo {
    display: inline-flex;
    align-items: center;
    max-width: 330px;
}

.sws-brand-logo img {
    display: block;
    width: min(330px, 28vw);
    height: auto;
    max-height: 74px;
    object-fit: contain;
}

.sws-primary-nav {
    flex: 1 1 auto;
}

.sws-menu {
    gap: clamp(18px, 2.2vw, 34px);
    overflow: visible;
}

.sws-menu > li {
    position: relative;
}

.sws-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
    font-size: .95rem;
    line-height: 1;
}

.sws-submenu-caret {
    color: var(--sws-gold);
    font-size: .76rem;
}

.sws-menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 80;
    min-width: 230px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: var(--sws-white);
    border: 1px solid rgba(221, 232, 227, .95);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(6, 78, 59, .18);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease;
}

.sws-menu .sub-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: var(--sws-white);
    border-top: 1px solid rgba(221, 232, 227, .95);
    border-left: 1px solid rgba(221, 232, 227, .95);
    transform: translateX(-50%) rotate(45deg);
}

.sws-menu li:hover > .sub-menu,
.sws-menu li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.sws-menu .sub-menu a {
    display: block;
    padding: 11px 12px;
    color: var(--sws-text);
    border-radius: 10px;
    font-size: .9rem;
    line-height: 1.25;
    white-space: nowrap;
}

.sws-menu .sub-menu a:hover,
.sws-menu .sub-menu a:focus {
    color: var(--sws-green-dark);
    background: var(--sws-green-soft);
    box-shadow: none;
}

.sws-menu > li.sws-menu-donate > a {
    padding: 13px 22px;
    color: var(--sws-green-deep);
    background: var(--sws-gold);
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(214, 161, 0, .22);
}

.sws-menu > li.sws-menu-donate > a:hover,
.sws-menu > li.sws-menu-donate > a:focus {
    color: var(--sws-white);
    background: var(--sws-green-dark);
    box-shadow: 0 14px 32px rgba(6, 78, 59, .18);
}

@media (max-width: 1200px) {
    .sws-brand-logo img {
        width: min(300px, 46vw);
    }

    .sws-menu {
        gap: 18px;
    }
}

@media (max-width: 900px) {
    .sws-header-inner {
        gap: 16px;
    }

    .sws-brand-logo img {
        width: min(280px, calc(100vw - 110px));
        max-height: 68px;
    }

    .sws-menu {
        display: block;
        overflow: visible;
    }

    .sws-menu > li > a {
        display: flex;
        justify-content: space-between;
        padding: 13px 12px;
        border-radius: 12px;
    }

    .sws-menu .sub-menu {
        position: static;
        min-width: 0;
        padding: 0 0 6px 16px;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .sws-menu .sub-menu::before {
        display: none;
    }

    .sws-menu .sub-menu a {
        white-space: normal;
    }
}

/* Screenshot-inspired homepage polish */
.sws-topbar {
    font-size: .82rem;
}

.sws-topbar-inner {
    min-height: 32px;
}

.sws-topbar-link {
    padding: 6px 16px;
    color: var(--sws-green-deep) !important;
    background: var(--sws-gold);
    border-radius: 8px;
    text-transform: uppercase;
}

.sws-site-header {
    position: relative;
    top: auto;
    box-shadow: 0 8px 24px rgba(6, 78, 59, .08);
}

.sws-header-inner {
    min-height: 86px;
}

.sws-brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 8px;
}

.sws-menu {
    gap: 16px;
}

.sws-menu a {
    padding: 8px 0;
    border-radius: 0;
}

.sws-menu a:hover,
.sws-menu .current-menu-item > a {
    color: var(--sws-green-dark);
    background: transparent;
    box-shadow: inset 0 -2px 0 var(--sws-gold);
}

.sws-menu > li:last-child > a {
    padding: 10px 18px;
    color: var(--sws-green-deep);
    background: var(--sws-gold);
    border-radius: 8px;
    box-shadow: none;
}

.sws-hero {
    background: var(--sws-green-deep);
}

.sws-slide {
    min-height: clamp(620px, 72vh, 700px);
    padding: 84px 0 98px;
    background-position: center right;
    background-size: cover;
}

.sws-slide-content {
    max-width: 640px;
}

.sws-slide h1 {
    color: var(--sws-white);
    font-size: clamp(3.2rem, 5.3vw, 6.1rem);
    text-transform: none;
}

.sws-slide h1 span {
    display: block;
    color: var(--sws-gold);
}

.sws-slide p,
.sws-slide-text {
    max-width: 560px;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(1.02rem, 1.25vw, 1.18rem);
}

.sws-slide .sws-eyebrow::before,
.sws-slide .sws-eyebrow::after {
    display: none;
}

.sws-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}

.sws-slider-arrow {
    width: 54px;
    height: 54px;
    color: var(--sws-white);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .86);
    box-shadow: none;
}

.sws-slider-dots {
    bottom: 34px;
}

.sws-slider-dots button {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .75);
}

.sws-slider-dots button.is-active {
    width: 12px;
    background: var(--sws-white);
}

.sws-section {
    padding: 76px 0;
}

.sws-section-heading {
    max-width: 720px;
    margin: 0 0 34px;
    text-align: left;
}

.sws-section-heading .sws-eyebrow::before,
.sws-section-heading .sws-eyebrow::after {
    display: none;
}

.sws-program-grid {
    gap: 18px;
}

.program-card {
    padding: 12px 12px 24px;
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(6, 78, 59, .09);
}

.program-image {
    height: 138px;
    margin-bottom: 16px;
    border-radius: 12px;
}

.sws-card-icon {
    width: 62px;
    height: 62px;
    margin: -48px 0 16px 14px;
    border-radius: 50%;
    font-size: 0;
}

.sws-card-icon::before {
    color: var(--sws-white);
    font-size: 1.55rem;
    line-height: 1;
}

.program-card:nth-child(1) .sws-card-icon::before {
    content: "\2665";
}

.program-card:nth-child(2) .sws-card-icon::before {
    content: "\25C9";
}

.program-card:nth-child(3) .sws-card-icon::before {
    content: "\25C6";
}

.program-card:nth-child(4) .sws-card-icon::before {
    content: "\25A3";
}

.program-card:nth-child(5) .sws-card-icon::before {
    content: "+";
}

.program-card h3,
.program-card p,
.program-card .sws-card-link {
    padding-right: 12px;
    padding-left: 12px;
}

.sws-section-soft .sws-section-heading {
    max-width: none;
}

.sws-project-filter {
    position: relative;
}

.sws-filter-buttons {
    justify-content: flex-end;
    margin-top: -74px;
}

.sws-project-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.project-card {
    border-radius: 12px;
}

.project-image {
    height: 150px;
}

.project-card-body {
    padding: 18px;
}

.project-card h3 {
    font-size: 1.05rem;
}

.project-card p {
    font-size: .9rem;
    line-height: 1.55;
}

.sws-status-badge {
    left: 12px;
    bottom: 10px;
    padding: 5px 10px;
    font-size: .68rem;
}

.sws-category-pill {
    margin-top: 4px;
    margin-bottom: 12px;
    padding: 5px 11px;
    background: #dff3eb;
    font-size: .66rem;
}

.sws-about-area {
    padding-top: 42px;
    background: var(--sws-white);
}

.sws-about-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .95fr) minmax(360px, 1.25fr);
    gap: 32px;
    align-items: stretch;
}

.sws-about-area .sws-about-copy {
    max-width: none;
}

.sws-about-area .sws-about-copy h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.65rem);
}

.sws-about-feature {
    display: grid;
    grid-template-columns: 1fr .9fr;
    overflow: hidden;
    min-height: 330px;
    background: var(--sws-green-dark);
    border-radius: 18px;
    box-shadow: var(--sws-shadow);
}

.sws-about-feature .about-media {
    height: 100%;
    min-height: 330px;
    border-radius: 0;
    box-shadow: none;
}

.sws-about-feature .sws-focus-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 24px;
}

.sws-about-feature .sws-focus-list span {
    padding: 0;
    color: var(--sws-white);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: .9rem;
}

.sws-cta-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 330px;
    padding: 42px;
    color: var(--sws-white);
    background-color: var(--sws-green-dark);
    background-position: center;
    background-size: cover;
    border-radius: 18px;
    box-shadow: var(--sws-shadow);
}

.sws-cta-card h2,
.sws-cta-card p {
    color: var(--sws-white);
}

.sws-cta-card h2 {
    max-width: 520px;
    font-size: clamp(1.9rem, 2.6vw, 3rem);
}

.sws-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.news-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 14px;
    border-radius: 12px;
}

.news-image {
    height: 126px;
    border-radius: 10px;
}

.news-card h3,
.news-card p,
.news-card .sws-card-link {
    margin-right: 0;
    margin-left: 0;
}

.news-card h3 {
    margin-top: 4px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.news-card p {
    margin-bottom: 8px;
    font-size: .88rem;
    line-height: 1.5;
}

.news-card .sws-card-link {
    margin-bottom: 0;
    padding: 0;
    font-size: .86rem;
}

.sws-date-badge {
    left: 8px;
    bottom: 8px;
    min-width: 52px;
    min-height: 48px;
    border-radius: 10px;
    font-size: .76rem;
}

@media (max-width: 1300px) {
    .sws-menu {
        gap: 10px;
    }

    .sws-project-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sws-about-cta-grid {
        grid-template-columns: 1fr;
    }

    .sws-about-feature {
        grid-template-columns: .9fr 1fr;
    }
}

@media (max-width: 900px) {
    .sws-site-header {
        position: sticky;
    }

    .sws-menu a {
        padding: 10px 12px;
    }

    .sws-slide {
        min-height: 620px;
        background-position: center;
    }

    .sws-filter-buttons {
        justify-content: flex-start;
        margin-top: 0;
    }

    .sws-project-grid,
    .sws-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-card {
        grid-template-columns: 1fr;
    }

    .news-image {
        height: 210px;
    }
}

@media (max-width: 640px) {
    .sws-topbar-link {
        display: inline-flex;
    }

    .sws-slide {
        min-height: 620px;
        padding: 64px 0 96px;
    }

    .sws-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .sws-program-grid,
    .sws-project-grid,
    .sws-news-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 230px;
    }

    .sws-about-feature {
        grid-template-columns: 1fr;
    }

    .sws-cta-card {
        padding: 30px;
    }
}

/* Restore the preferred previous homepage direction shown in the latest screenshots. */
.sws-site-header {
    position: sticky;
    top: 0;
}

.sws-hero {
    background:
        radial-gradient(circle at 80% 10%, rgba(214, 161, 0, .18), transparent 34%),
        linear-gradient(135deg, #f8fbf9 0%, #edf7f2 45%, #ffffff 100%);
}

.sws-slide {
    min-height: clamp(620px, 76vh, 720px);
    padding: 54px 0 72px;
    background-image: none !important;
}

.sws-slide-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
    align-items: center;
    gap: clamp(34px, 5vw, 76px);
}

.sws-slide h1 {
    color: var(--sws-green-dark);
    text-transform: uppercase;
}

.sws-slide p,
.sws-slide-text {
    max-width: 650px;
    color: #34423d;
}

.hero-media {
    display: block;
    height: clamp(420px, 56vh, 610px);
    overflow: hidden;
    background: linear-gradient(135deg, var(--sws-green), var(--sws-gold));
    border-radius: 34px;
    box-shadow: var(--sws-shadow);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sws-section {
    padding: 96px 0;
}

.sws-section-heading {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.sws-section-heading .sws-eyebrow::before,
.sws-section-heading .sws-eyebrow::after,
.sws-eyebrow::before,
.sws-eyebrow::after {
    display: inline-block;
}

.sws-filter-buttons {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 38px;
}

.sws-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.project-card {
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(6, 78, 59, .11);
}

.project-image {
    height: 260px;
}

.project-card-body {
    padding: 28px 30px 32px;
}

.project-card h3 {
    font-size: 1.35rem;
}

.project-card p {
    font-size: 1rem;
    line-height: 1.65;
}

.sws-status-badge {
    left: 22px;
    bottom: 20px;
    padding: 9px 16px;
    font-size: .82rem;
}

.sws-category-pill {
    margin-top: 0;
    margin-bottom: 16px;
    padding: 7px 14px;
    background: var(--sws-green-soft);
    font-size: .76rem;
}

.sws-about-band {
    color: var(--sws-white);
    background:
        radial-gradient(circle at 15% 10%, rgba(214, 161, 0, .14), transparent 28%),
        linear-gradient(135deg, var(--sws-green-deep), var(--sws-green-dark));
}

.sws-about-band h2,
.sws-about-band h3,
.sws-about-band p {
    color: var(--sws-white);
}

.sws-about-modern {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.about-media {
    height: 560px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.sws-focus-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.sws-focus-list span {
    padding: 18px 20px;
    color: rgba(255, 255, 255, .94);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    font-weight: 800;
}

.sws-about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.sws-cta {
    display: block;
    padding: 0;
    background: var(--sws-green-dark);
    background-position: center;
    background-size: cover;
}

.sws-cta-inner {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: var(--sws-white);
}

.sws-cta h2,
.sws-cta p {
    color: var(--sws-white);
}

.sws-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.news-card {
    display: block;
    padding: 0;
    overflow: hidden;
    border-radius: 28px;
}

.news-image {
    height: 230px;
    border-radius: 0;
}

.news-card h3,
.news-card p,
.news-card .sws-card-link {
    margin-right: 30px;
    margin-left: 30px;
}

.news-card h3 {
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.news-card p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.news-card .sws-card-link {
    margin-bottom: 30px;
    padding: 8px 8px 4px;
}

.sws-date-badge {
    left: 18px;
    bottom: 18px;
    min-width: 64px;
    min-height: 58px;
    border-radius: 16px;
    font-size: .9rem;
}

@media (max-width: 1200px) {
    .sws-project-grid,
    .sws-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .sws-slide-grid,
    .sws-about-modern {
        grid-template-columns: 1fr;
    }

    .hero-media {
        height: 390px;
    }
}

@media (max-width: 640px) {
    .sws-project-grid,
    .sws-news-grid,
    .sws-focus-list,
    .sws-about-stats {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 230px;
    }

    .about-media {
        height: 320px;
    }

    .sws-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        min-height: 360px;
    }
}

/* Modern split NGO hero slider */
.sws-hero-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: #003f2b;
}

.sws-hero-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sws-hero-slider .sws-slider-track {
    display: flex;
}

.sws-hero-slide {
    position: relative;
    min-width: 100%;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(90deg, #003f2b 0%, #065f46 52%, transparent 52%);
    isolation: isolate;
}

.sws-hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 820px;
    padding: 76px 48px 92px 90px;
    color: var(--sws-white);
}

.sws-hero-kicker {
    margin-bottom: 18px;
    color: var(--sws-gold);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
}

.sws-hero-title {
    margin: 0;
    color: var(--sws-white);
    font-size: clamp(4rem, 5.2vw, 5.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.035em;
    text-transform: none;
}

.sws-hero-title span,
.sws-hero-title strong {
    display: block;
}

.sws-hero-title strong {
    color: var(--sws-gold);
    font-weight: 900;
}

.sws-hero-underline {
    display: flex;
    align-items: center;
    width: 190px;
    margin: 24px 0 22px;
}

.sws-hero-underline::before,
.sws-hero-underline::after {
    content: "";
    flex: 1;
    height: 3px;
    background: var(--sws-gold);
    border-radius: 999px;
}

.sws-hero-underline span {
    position: relative;
    width: 26px;
    height: 22px;
    margin: 0 10px;
}

.sws-hero-underline span::before,
.sws-hero-underline span::after {
    content: "";
    position: absolute;
    top: 4px;
    width: 13px;
    height: 18px;
    background: var(--sws-gold);
    border-radius: 13px 13px 0 0;
}

.sws-hero-underline span::before {
    left: 5px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.sws-hero-underline span::after {
    right: 5px;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.sws-hero-description {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .94);
    font-size: clamp(1.12rem, 1.35vw, 1.25rem);
    line-height: 1.7;
}

.sws-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.sws-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 58px;
    padding: 18px 30px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: 900;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.sws-hero-button:hover,
.sws-hero-button:focus {
    color: var(--sws-white);
    transform: translateY(-2px);
}

.sws-hero-button-gold {
    color: var(--sws-white);
    background: var(--sws-gold);
    border-color: var(--sws-gold);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.sws-hero-button-outline {
    color: var(--sws-white);
    background: transparent;
    border-color: rgba(255, 255, 255, .82);
}

.sws-hero-button-outline:hover,
.sws-hero-button-outline:focus {
    background: rgba(255, 255, 255, .1);
}

.sws-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(720px, 100%);
    margin-top: 34px;
    overflow: hidden;
    color: var(--sws-white);
    background: rgba(0, 46, 31, .48);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}

.sws-hero-stats div {
    min-width: 0;
    padding: 18px 16px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.sws-hero-stats div:last-child {
    border-right: 0;
}

.sws-hero-stats span {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    color: #003f2b;
    background: var(--sws-gold);
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 900;
}

.sws-hero-stats strong,
.sws-hero-stats small {
    display: block;
}

.sws-hero-stats strong {
    color: var(--sws-white);
    font-size: 1.45rem;
    line-height: 1;
}

.sws-hero-stats small {
    margin-top: 6px;
    color: rgba(255, 255, 255, .78);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.3;
}

.sws-hero-media {
    position: relative;
    z-index: 1;
    min-height: 680px;
    overflow: hidden;
    background: #0b6b4a;
}

.sws-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 63, 43, .18), rgba(0, 0, 0, .04));
    pointer-events: none;
}

.sws-hero-media img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sws-hero-photo-orbit {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.sws-hero-photo-orbit span {
    position: absolute;
    display: block;
    overflow: hidden;
    background: rgba(214, 161, 0, .16);
    border: 5px solid rgba(255, 255, 255, .88);
    border-radius: 50%;
    box-shadow: 0 26px 60px rgba(0, 0, 0, .24);
    backdrop-filter: blur(2px);
}

.sws-hero-photo-orbit span::before {
    content: "";
    position: absolute;
    inset: -32px;
    background-image: var(--sws-orbit-image);
    background-position: center;
    background-size: cover;
    opacity: .96;
}

.sws-hero-curve {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 48%;
    width: 540px;
    height: 860px;
    border: 7px solid var(--sws-gold);
    border-left: 0;
    border-radius: 0 540px 540px 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sws-curve-badge {
    position: absolute;
    left: 92%;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    color: var(--sws-white);
    background: var(--sws-gold);
    border: 5px solid rgba(255, 255, 255, .96);
    border-radius: 50%;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .24);
    transform: translate(-50%, -50%);
}

.sws-curve-badge svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.sws-curve-badge-heart {
    top: 21%;
}

.sws-curve-badge-education {
    top: 50%;
}

.sws-curve-badge-water {
    top: 79%;
}

.sws-hero-brush {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 5;
    height: 74px;
    background:
        radial-gradient(85px 30px at 5% 76px, var(--sws-white) 99%, transparent 100%),
        radial-gradient(140px 48px at 22% 70px, var(--sws-white) 99%, transparent 100%),
        radial-gradient(160px 58px at 45% 78px, var(--sws-white) 99%, transparent 100%),
        radial-gradient(180px 58px at 70% 70px, var(--sws-white) 99%, transparent 100%),
        radial-gradient(120px 40px at 92% 75px, var(--sws-white) 99%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, transparent 32%, var(--sws-white) 33%, var(--sws-white) 100%);
    pointer-events: none;
}

.sws-hero-slider .sws-hero-arrow {
    top: 50%;
    z-index: 8;
    width: 54px;
    height: 54px;
    color: var(--sws-white);
    background: rgba(0, 38, 26, .34);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.sws-hero-slider .sws-hero-arrow:hover,
.sws-hero-slider .sws-hero-arrow:focus {
    background: rgba(214, 161, 0, .9);
}

.sws-hero-slider .sws-slider-prev {
    left: 26px;
}

.sws-hero-slider .sws-slider-next {
    right: 26px;
}

.sws-hero-slider .sws-hero-dots {
    bottom: 86px;
    z-index: 9;
}

.sws-hero-slider .sws-hero-dots button {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
}

.sws-hero-slider .sws-hero-dots button.is-active {
    width: 12px;
    background: var(--sws-gold);
    border-color: var(--sws-gold);
}

.sws-hero-variant-1 {
    background: linear-gradient(90deg, #003f2b 0%, #065f46 52%, transparent 52%);
}

.sws-hero-variant-1 .sws-hero-title {
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

.sws-hero-variant-1 .sws-hero-media {
    clip-path: circle(76% at 64% 50%);
}

.sws-hero-variant-1 .sws-hero-photo-orbit span:nth-child(1) {
    right: 9%;
    top: 12%;
    width: 150px;
    height: 150px;
}

.sws-hero-variant-1 .sws-hero-photo-orbit span:nth-child(2) {
    right: 58%;
    bottom: 13%;
    width: 118px;
    height: 118px;
}

.sws-hero-variant-1 .sws-hero-photo-orbit span:nth-child(3) {
    right: 26%;
    bottom: 8%;
    width: 76px;
    height: 76px;
}

.sws-hero-variant-2 {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    background: radial-gradient(circle at 25% 30%, rgba(214, 161, 0, .18), transparent 30%), linear-gradient(115deg, #052f26 0%, #08704f 56%, transparent 56%);
}

.sws-hero-variant-2 .sws-hero-title {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    letter-spacing: -.045em;
}

.sws-hero-variant-2 .sws-hero-title strong {
    font-style: normal;
}

.sws-hero-variant-2 .sws-hero-media {
    clip-path: ellipse(68% 82% at 62% 50%);
}

.sws-hero-variant-2 .sws-hero-curve {
    border-color: #f0bd2b;
    transform: translate(-45%, -50%) rotate(-4deg);
}

.sws-hero-variant-2 .sws-hero-photo-orbit span:nth-child(1) {
    left: 8%;
    top: 10%;
    width: 138px;
    height: 138px;
}

.sws-hero-variant-2 .sws-hero-photo-orbit span:nth-child(2) {
    right: 12%;
    top: 44%;
    width: 104px;
    height: 104px;
}

.sws-hero-variant-2 .sws-hero-photo-orbit span:nth-child(3) {
    left: 28%;
    bottom: 9%;
    width: 86px;
    height: 86px;
}

.sws-hero-variant-3 {
    background: linear-gradient(90deg, #002c24 0%, #04563e 46%, rgba(4, 86, 62, .24) 46%, transparent 100%);
}

.sws-hero-variant-3 .sws-hero-content {
    padding-left: 120px;
}

.sws-hero-variant-3 .sws-hero-title {
    font-family: "Trebuchet MS", Inter, Arial, sans-serif;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.sws-hero-variant-3 .sws-hero-media {
    clip-path: circle(54% at 52% 50%);
    margin: 54px 70px 72px 0;
    min-height: 550px;
    border: 10px solid rgba(214, 161, 0, .92);
    border-radius: 50%;
}

.sws-hero-variant-3 .sws-hero-media img {
    min-height: 550px;
}

.sws-hero-variant-3 .sws-hero-curve {
    width: 430px;
    border-style: dashed;
}

.sws-hero-variant-3 .sws-hero-photo-orbit span:nth-child(1) {
    right: 8%;
    top: 8%;
    width: 116px;
    height: 116px;
}

.sws-hero-variant-3 .sws-hero-photo-orbit span:nth-child(2) {
    left: 4%;
    top: 44%;
    width: 96px;
    height: 96px;
}

.sws-hero-variant-3 .sws-hero-photo-orbit span:nth-child(3) {
    right: 18%;
    bottom: 8%;
    width: 132px;
    height: 132px;
}

.sws-hero-variant-4 {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    background: linear-gradient(90deg, #062b22 0%, #0b6b4a 50%, rgba(214, 161, 0, .12) 50%, transparent 100%);
}

.sws-hero-variant-4 .sws-hero-title {
    font-family: "Arial Black", Inter, Arial, sans-serif;
    letter-spacing: -.055em;
}

.sws-hero-variant-4 .sws-hero-media {
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 8% 100%, 0 52%);
}

.sws-hero-variant-4 .sws-hero-curve {
    height: 760px;
    border-width: 10px;
    transform: translate(-50%, -50%) rotate(5deg);
}

.sws-hero-variant-4 .sws-hero-photo-orbit span:nth-child(1) {
    right: 15%;
    top: 13%;
    width: 100px;
    height: 100px;
}

.sws-hero-variant-4 .sws-hero-photo-orbit span:nth-child(2) {
    left: 9%;
    bottom: 18%;
    width: 158px;
    height: 158px;
}

.sws-hero-variant-4 .sws-hero-photo-orbit span:nth-child(3) {
    right: 7%;
    bottom: 13%;
    width: 92px;
    height: 92px;
}

.sws-hero-variant-5 {
    background: radial-gradient(circle at 16% 78%, rgba(214, 161, 0, .22), transparent 26%), linear-gradient(90deg, #003827 0%, #075f45 52%, transparent 52%);
}

.sws-hero-variant-5 .sws-hero-title {
    font-family: "Segoe UI Semibold", Inter, Arial, sans-serif;
    letter-spacing: -.015em;
}

.sws-hero-variant-5 .sws-hero-media {
    clip-path: ellipse(62% 70% at 58% 50%);
}

.sws-hero-variant-5 .sws-hero-curve {
    width: 600px;
    border-color: #e3ad17;
}

.sws-hero-variant-5 .sws-hero-photo-orbit span:nth-child(1) {
    left: 13%;
    top: 14%;
    width: 92px;
    height: 92px;
}

.sws-hero-variant-5 .sws-hero-photo-orbit span:nth-child(2) {
    right: 10%;
    top: 24%;
    width: 160px;
    height: 160px;
}

.sws-hero-variant-5 .sws-hero-photo-orbit span:nth-child(3) {
    left: 20%;
    bottom: 9%;
    width: 116px;
    height: 116px;
}

.sws-hero-slide .sws-hero-media {
    --sws-orbit-image: linear-gradient(135deg, #0b6b4a, #d6a100);
}

@media (max-width: 1280px) {
    .sws-hero-content {
        padding-left: 70px;
    }

    .sws-hero-title {
        font-size: clamp(3.3rem, 5vw, 4.8rem);
    }

    .sws-hero-curve {
        width: 430px;
        height: 760px;
    }
}

@media (max-width: 980px) {
    .sws-hero-slide {
        grid-template-columns: 1fr;
        min-height: auto;
        background: linear-gradient(180deg, rgba(0, 63, 43, .96), rgba(6, 95, 70, .92));
    }

    .sws-hero-content {
        max-width: none;
        padding: 70px 28px 36px;
    }

    .sws-hero-media {
        min-height: 360px;
        order: 2;
    }

    .sws-hero-media img {
        min-height: 360px;
    }

    .sws-hero-curve,
    .sws-curve-badge {
        display: none;
    }

    .sws-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sws-hero-stats div:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .sws-hero-content {
        padding: 54px 20px 30px;
    }

    .sws-hero-title {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .sws-hero-description {
        font-size: 1rem;
    }

    .sws-hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .sws-hero-button {
        width: 100%;
    }

    .sws-hero-stats {
        grid-template-columns: 1fr;
    }

    .sws-hero-stats div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .sws-hero-stats div:last-child {
        border-bottom: 0;
    }

    .sws-hero-slider .sws-hero-arrow {
        display: none;
    }

    .sws-hero-slider .sws-hero-dots {
        bottom: 66px;
    }
}

/* Final header/menu overrides. Keep this block last so earlier homepage styles do not squeeze the menu. */
.sws-site-header .sws-header-inner {
    min-height: 94px;
    gap: 34px;
}

.sws-site-header .sws-brand-logo {
    display: inline-flex;
    align-items: center;
    max-width: 330px;
}

.sws-site-header .sws-brand-logo img {
    display: block;
    width: min(330px, 28vw);
    height: auto;
    max-height: 74px;
    object-fit: contain;
}

.sws-site-header .sws-primary-nav {
    flex: 1 1 auto;
}

.sws-site-header .sws-menu {
    gap: clamp(18px, 2.2vw, 34px);
    overflow: visible;
}

.sws-site-header .sws-menu > li {
    position: relative;
}

.sws-site-header .sws-menu > li.menu-item-has-children {
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.sws-site-header .sws-menu > li.menu-item-has-children::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -12px;
    left: -12px;
    height: 18px;
}

.sws-site-header .sws-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
    font-size: .95rem;
    line-height: 1;
}

.sws-submenu-caret {
    color: var(--sws-gold);
    font-size: .76rem;
}

.sws-site-header .sws-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 80;
    min-width: 230px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: var(--sws-white);
    border: 1px solid rgba(221, 232, 227, .95);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(6, 78, 59, .18);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease;
}

.sws-site-header .sws-menu .sub-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: var(--sws-white);
    border-top: 1px solid rgba(221, 232, 227, .95);
    border-left: 1px solid rgba(221, 232, 227, .95);
    transform: translateX(-50%) rotate(45deg);
}

.sws-site-header .sws-menu li:hover > .sub-menu,
.sws-site-header .sws-menu li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.sws-site-header .sws-menu .sub-menu a {
    display: block;
    padding: 11px 12px;
    color: var(--sws-text);
    border-radius: 10px;
    font-size: .9rem;
    line-height: 1.25;
    white-space: nowrap;
}

.sws-site-header .sws-menu .sub-menu a:hover,
.sws-site-header .sws-menu .sub-menu a:focus {
    color: var(--sws-green-dark);
    background: var(--sws-green-soft);
    box-shadow: none;
}

.sws-site-header .sws-menu > li.sws-menu-donate > a {
    padding: 13px 22px;
    color: var(--sws-green-deep);
    background: var(--sws-gold);
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(214, 161, 0, .22);
}

.sws-site-header .sws-menu > li.sws-menu-donate > a:hover,
.sws-site-header .sws-menu > li.sws-menu-donate > a:focus {
    color: var(--sws-white);
    background: var(--sws-green-dark);
    box-shadow: 0 14px 32px rgba(6, 78, 59, .18);
}

@media (max-width: 1200px) {
    .sws-site-header .sws-brand-logo img {
        width: min(300px, 46vw);
    }

    .sws-site-header .sws-menu {
        gap: 18px;
    }
}

@media (max-width: 900px) {
    .sws-site-header .sws-header-inner {
        gap: 16px;
    }

    .sws-site-header .sws-brand-logo img {
        width: min(280px, calc(100vw - 110px));
        max-height: 68px;
    }

    .sws-site-header .sws-menu {
        display: block;
        overflow: visible;
    }

    .sws-site-header .sws-menu > li > a {
        display: flex;
        justify-content: space-between;
        padding: 13px 12px;
        border-radius: 12px;
    }

    .sws-site-header .sws-menu .sub-menu {
        position: static;
        min-width: 0;
        padding: 0 0 6px 16px;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .sws-site-header .sws-menu .sub-menu::before {
        display: none;
    }

    .sws-site-header .sws-menu .sub-menu a {
        white-space: normal;
    }
}

/* Mobile polish for live /swsnew upload */
@media (max-width: 640px) {
    .sws-container {
        width: min(100% - 32px, 1500px);
    }

    .sws-topbar {
        font-size: .82rem;
    }

    .sws-topbar-inner,
    .sws-topbar-contact,
    .sws-topbar-actions {
        align-items: flex-start !important;
        gap: 8px !important;
        padding: 0;
    }

    .sws-topbar-inner {
        min-height: 0;
        padding: 14px 0 16px !important;
    }

    .sws-topbar-contact span {
        line-height: 1.35;
    }

    .sws-language-switcher a,
    .sws-language-switcher span {
        min-height: 32px;
        padding: 5px 12px;
        font-size: .82rem;
    }

    .sws-topbar-link {
        display: inline-flex;
        min-height: 38px;
        align-items: center;
        padding: 8px 18px !important;
        border-radius: 10px;
        font-size: .82rem;
        line-height: 1;
    }

    .sws-site-header .sws-header-inner {
        min-height: 76px;
        padding: 10px 0;
    }

    .sws-site-header .sws-brand-logo img {
        width: min(245px, calc(100vw - 116px));
        max-height: 58px;
    }

    .sws-menu-toggle {
        top: 18px !important;
        right: 18px !important;
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .sws-theme5-program-band,
    .sws-theme5-projects,
    .sws-theme5-about,
    .sws-theme5-focus,
    .sws-theme5-news {
        padding: 52px 0;
    }

    .sws-theme5-band-head h2,
    .sws-theme5-section-head h2,
    .sws-theme5-about-copy h2,
    .sws-theme5-focus h2,
    .sws-theme5-cta h2 {
        font-size: clamp(2rem, 10vw, 2.75rem);
        line-height: 1.08;
    }

    .sws-theme5-band-head p,
    .sws-theme5-about-copy p,
    .sws-theme5-cta p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .sws-theme5-program {
        border-radius: 24px;
        padding: 16px;
    }

    .sws-theme5-program-image {
        height: 205px;
        border-radius: 20px;
    }

    .sws-theme5-program h3 {
        font-size: 1.45rem;
    }
}

@media (max-width: 430px) {
    .sws-topbar-contact {
        max-width: 280px;
    }

    .sws-site-header .sws-brand-logo img {
        width: min(220px, calc(100vw - 112px));
    }

    .sws-theme5-program-image {
        height: 185px;
    }
}

/* Mobile topbar correction v5.0.2 */
@media (max-width: 700px) {
    .sws-language-switcher,
    .sws-language-switcher-static {
        display: none !important;
    }

    .sws-topbar {
        font-size: 14px !important;
    }

    .sws-topbar-inner {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        align-items: center !important;
        gap: 10px !important;
        min-height: 0 !important;
        padding: 10px 0 !important;
    }

    .sws-topbar-contact {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 3px !important;
        max-width: none !important;
        padding: 0 !important;
        line-height: 1.28 !important;
    }

    .sws-topbar-contact span {
        display: block !important;
        margin: 0 !important;
        white-space: normal !important;
    }

    .sws-topbar-phone a {
        white-space: nowrap !important;
    }

    .sws-phone-separator {
        opacity: .7;
    }

    .sws-topbar-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .sws-topbar-link {
        min-height: 34px !important;
        padding: 8px 12px !important;
        border-radius: 9px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 430px) {
    .sws-topbar-inner {
        grid-template-columns: 1fr !important;
    }

    .sws-topbar-actions {
        justify-content: flex-start !important;
    }

    .sws-topbar-link {
        min-height: 32px !important;
        padding: 7px 14px !important;
    }
}

/* Waqf Apartment Planned Project */
.sws-waqf-page {
    display: grid;
    gap: 42px;
}

.sws-waqf-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: clamp(44px, 7vw, 86px);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(214, 161, 0, .24), transparent 26rem),
        linear-gradient(135deg, #033626, #0b6b4a);
    background-size: cover;
    background-position: center;
    border-radius: 34px;
    box-shadow: 0 34px 90px rgba(6, 78, 59, .18);
}

.sws-waqf-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 44px solid rgba(214, 161, 0, .28);
    border-radius: 50%;
}

.sws-waqf-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.sws-waqf-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    margin-bottom: 22px;
    color: var(--sws-green-deep);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--sws-gold);
    border-radius: 999px;
}

.sws-waqf-hero h2 {
    max-width: 860px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 5.4rem);
    line-height: 1.02;
}

.sws-waqf-hero p {
    max-width: 760px;
    color: rgba(255,255,255,.9);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.72;
}

.sws-waqf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.sws-waqf-outline {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    color: #fff;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 12px;
}

.sws-waqf-outline:hover,
.sws-waqf-outline:focus {
    color: var(--sws-green-deep);
    background: #fff;
}

.sws-waqf-summary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 24px;
    align-items: stretch;
}

.sws-waqf-card,
.sws-waqf-fund-card,
.sws-waqf-details article {
    background: #fff;
    border: 1px solid rgba(6, 78, 59, .1);
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(6, 78, 59, .08);
}

.sws-waqf-card {
    padding: clamp(26px, 4vw, 44px);
}

.sws-waqf-card h2,
.sws-waqf-detail-head h2 {
    color: var(--sws-green-deep);
    font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.sws-waqf-card p {
    max-width: 900px;
    color: var(--sws-text);
    font-size: 1.08rem;
    line-height: 1.75;
}

.sws-waqf-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.sws-waqf-meta div {
    padding: 18px;
    background: #f3faf6;
    border: 1px solid rgba(6, 78, 59, .08);
    border-radius: 18px;
}

.sws-waqf-meta dt {
    margin-bottom: 6px;
    color: var(--sws-muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sws-waqf-meta dd {
    margin: 0;
    color: var(--sws-green-deep);
    font-weight: 900;
}

.sws-waqf-fund-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    color: #fff;
    background:
        linear-gradient(160deg, rgba(3, 54, 38, .98), rgba(11, 107, 74, .94)),
        radial-gradient(circle at top right, rgba(214, 161, 0, .28), transparent 18rem);
}

.sws-waqf-fund-card span {
    color: var(--sws-gold);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sws-waqf-fund-card strong {
    display: block;
    margin: 12px 0;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 1;
}

.sws-waqf-fund-card p {
    color: rgba(255,255,255,.86);
    line-height: 1.7;
}

.sws-waqf-details {
    padding: clamp(34px, 5vw, 54px);
    background: #f4faf7;
    border-radius: 34px;
}

.sws-waqf-detail-head {
    max-width: 950px;
    margin-bottom: 28px;
}

.sws-waqf-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.sws-waqf-details article {
    padding: 28px;
}

.sws-waqf-details h3 {
    color: var(--sws-green-deep);
    font-size: 1.45rem;
}

.sws-waqf-details p,
.sws-waqf-details li {
    color: var(--sws-text);
    line-height: 1.75;
}

.sws-waqf-details ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.sws-waqf-callout {
    color: #fff;
    background: linear-gradient(135deg, #064e3b, #0b6b4a) !important;
}

.sws-waqf-callout h3,
.sws-waqf-callout p {
    color: #fff;
}

@media (max-width: 900px) {
    .sws-waqf-hero {
        min-height: 440px;
        padding: 34px;
        border-radius: 26px;
    }

    .sws-waqf-summary-grid,
    .sws-waqf-detail-grid {
        grid-template-columns: 1fr;
    }

    .sws-waqf-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .sws-waqf-page {
        gap: 28px;
    }

    .sws-waqf-hero {
        min-height: 390px;
        padding: 26px 22px;
        border-radius: 22px;
    }

    .sws-waqf-actions a,
    .sws-waqf-actions .sws-button {
        width: 100%;
    }

    .sws-waqf-card,
    .sws-waqf-fund-card,
    .sws-waqf-details,
    .sws-waqf-details article {
        padding: 22px;
        border-radius: 22px;
    }
}

/* Waqf PDF visuals and homepage preview v5.0.4 */
.sws-waqf-pdf-visual {
    position: relative;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #eef7f2, #dfeee7);
    border-radius: inherit;
}

.sws-waqf-pdf-visual object {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

.sws-waqf-visual-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 8px;
    padding: 24px;
    color: #fff;
    background:
        linear-gradient(160deg, rgba(3, 54, 38, .9), rgba(11, 107, 74, .72)),
        radial-gradient(circle at top right, rgba(214, 161, 0, .34), transparent 14rem);
}

.sws-waqf-visual-fallback span,
.sws-waqf-visual-fallback small {
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sws-waqf-visual-fallback strong {
    max-width: 340px;
    color: #fff;
    font-size: clamp(1.35rem, 3vw, 2.4rem);
    line-height: 1.05;
}

.sws-waqf-pdf-visual-card,
.sws-waqf-pdf-visual-preview {
    min-height: 255px;
    border-radius: 22px;
}

.sws-waqf-hero-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: clamp(24px, 4vw, 54px);
    background:
        radial-gradient(circle at 82% 20%, rgba(214, 161, 0, .24), transparent 26rem),
        linear-gradient(135deg, #033626, #0b6b4a);
}

.sws-waqf-hero-media {
    position: relative;
    z-index: 2;
    min-height: 380px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.sws-waqf-home-preview {
    padding: 86px 0;
    background: #f7faf8;
}

.sws-waqf-home-preview .sws-theme5-section-head p {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--sws-text);
    font-size: 1.06rem;
    line-height: 1.7;
}

.sws-waqf-preview-card {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(6, 78, 59, .1);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(6, 78, 59, .1);
}

.sws-waqf-preview-media {
    min-height: 340px;
    background: #eaf6f1;
}

.sws-waqf-preview-media .sws-waqf-pdf-visual {
    border-radius: 0;
}

.sws-waqf-preview-body {
    padding: clamp(26px, 4vw, 46px);
}

.sws-waqf-preview-body .sws-status-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 18px;
}

.sws-waqf-preview-body h3 {
    color: var(--sws-green-deep);
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.sws-waqf-preview-body p {
    color: var(--sws-text);
    font-size: 1.08rem;
    line-height: 1.75;
}

.project-card .sws-waqf-pdf-visual-card {
    height: 100%;
    border-radius: 0;
}

@media (max-width: 980px) {
    .sws-waqf-hero-v2,
    .sws-waqf-preview-card {
        grid-template-columns: 1fr;
    }

    .sws-waqf-hero-media,
    .sws-waqf-preview-media {
        min-height: 300px;
    }
}

@media (max-width: 560px) {
    .sws-waqf-home-preview {
        padding: 54px 0;
    }

    .sws-waqf-hero-media,
    .sws-waqf-preview-media,
    .sws-waqf-pdf-visual-card,
    .sws-waqf-pdf-visual-preview {
        min-height: 220px;
    }

    .sws-waqf-pdf-visual object {
        display: none;
    }
}

/* Final NGO header polish */
.sws-topbar {
    background: linear-gradient(90deg, #033d2d 0%, #075c43 55%, #064e3b 100%) !important;
    color: #ffffff !important;
    border: 0 !important;
    font-size: 14px;
}

.sws-topbar-inner {
    min-height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.sws-topbar-contact {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 22px !important;
    color: rgba(255, 255, 255, .92) !important;
}

.sws-topbar-contact span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1.4;
}

.sws-topbar a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
}

.sws-topbar-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    background: #d6a100 !important;
    color: #063d2d !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: 12px;
}

.sws-site-header {
    position: relative;
    z-index: 50;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(6, 78, 59, .12) !important;
    box-shadow: 0 14px 36px rgba(6, 78, 59, .08) !important;
}

.sws-site-header .sws-header-inner {
    min-height: 92px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sws-site-header .sws-brand {
    flex: 0 0 auto;
    min-width: 230px;
}

.sws-site-header .sws-brand-logo {
    display: inline-flex !important;
    align-items: center;
    text-decoration: none;
}

.sws-site-header .sws-brand-logo img {
    width: auto !important;
    max-width: 270px !important;
    height: 64px !important;
    object-fit: contain !important;
    display: block;
}

.sws-site-header .sws-primary-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.sws-site-header .sws-menu {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px !important;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sws-site-header .sws-menu > li {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
}

.sws-site-header .sws-menu > li > a {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 12px 13px !important;
    border-radius: 999px;
    color: #073f30 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.sws-site-header .sws-menu > li > a:hover,
.sws-site-header .sws-menu > li > a:focus,
.sws-site-header .sws-menu > li.current-menu-item > a {
    background: #eaf6ef !important;
    color: #064e3b !important;
    outline: none;
}

.sws-site-header .sws-submenu-caret {
    color: #d6a100;
    font-size: 11px;
    line-height: 1;
}

.sws-site-header .sws-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    margin: 0;
    padding: 10px !important;
    list-style: none;
    background: #ffffff !important;
    border: 1px solid rgba(6, 78, 59, .12) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 50px rgba(6, 78, 59, .16) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 999;
}

.sws-site-header .sws-menu .sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 14px;
}

.sws-site-header .sws-menu li:hover > .sub-menu,
.sws-site-header .sws-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.sws-site-header .sws-menu .sub-menu a {
    display: flex !important;
    align-items: center;
    min-height: 40px;
    padding: 10px 12px !important;
    border-radius: 12px;
    color: #064e3b !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    text-decoration: none;
    white-space: nowrap;
}

.sws-site-header .sws-menu .sub-menu a:hover,
.sws-site-header .sws-menu .sub-menu a:focus {
    background: #edf8f2 !important;
    color: #043828 !important;
    outline: none;
}

.sws-site-header .sws-menu > li.sws-menu-donate > a {
    background: #d6a100 !important;
    color: #063d2d !important;
    padding: 13px 18px !important;
    box-shadow: 0 14px 24px rgba(214, 161, 0, .26);
}

.sws-site-header .sws-menu > li.sws-menu-donate > a:hover,
.sws-site-header .sws-menu > li.sws-menu-donate > a:focus {
    background: #e7b61a !important;
    color: #063d2d !important;
    transform: translateY(-1px);
}

.sws-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(6, 78, 59, .14) !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 24px rgba(6, 78, 59, .1);
}

.sws-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: #064e3b !important;
}

@media (max-width: 1180px) {
    .sws-site-header .sws-header-inner {
        gap: 16px;
    }

    .sws-site-header .sws-brand {
        min-width: 190px;
    }

    .sws-site-header .sws-brand-logo img {
        max-width: 230px !important;
        height: 58px !important;
    }

    .sws-site-header .sws-menu > li > a {
        padding: 11px 9px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 980px) {
    .sws-topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-top: 13px;
        padding-bottom: 13px;
    }

    .sws-topbar-contact {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 7px !important;
        width: 100%;
    }

    .sws-topbar-link {
        min-height: 38px;
        padding: 10px 18px !important;
    }

    .sws-site-header .sws-header-inner {
        min-height: 86px;
    }

    .sws-site-header .sws-brand-logo img {
        max-width: 260px !important;
        height: 58px !important;
    }

    .sws-menu-toggle {
        display: inline-flex !important;
    }

    .sws-site-header .sws-primary-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        display: none;
        background: #ffffff;
        border: 1px solid rgba(6, 78, 59, .14);
        border-radius: 22px;
        box-shadow: 0 24px 55px rgba(6, 78, 59, .18);
        padding: 12px;
        z-index: 1000;
    }

    .sws-site-header .sws-primary-nav.is-open {
        display: block !important;
    }

    .sws-site-header .sws-menu {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 4px !important;
        align-items: stretch;
        justify-content: stretch;
    }

    .sws-site-header .sws-menu > li > a {
        width: 100%;
        min-height: 46px;
        justify-content: space-between;
        padding: 13px 14px !important;
        border-radius: 14px;
        background: #f7fbf8;
    }

    .sws-site-header .sws-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        min-width: 0;
        margin: 6px 0 8px 12px;
        padding: 8px !important;
        border-radius: 14px !important;
        box-shadow: none !important;
        background: #f3faf6 !important;
        display: block;
    }

    .sws-site-header .sws-menu .sub-menu::before {
        display: none;
    }

    .sws-site-header .sws-menu .sub-menu a {
        white-space: normal;
    }
}

@media (max-width: 560px) {
    .sws-site-header .sws-brand-logo img {
        max-width: 225px !important;
        height: 52px !important;
    }

    .sws-site-header .sws-header-inner {
        min-height: 78px;
        gap: 10px;
    }

    .sws-menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 13px !important;
    }
}

/* Waqf building project gallery upgrade v5.0.6 */
.sws-waqf-page-pro {
    max-width: 1680px;
    margin: 0 auto;
    padding: clamp(18px, 3vw, 42px);
}

.sws-waqf-hero-pro {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
    min-height: 640px;
    padding: clamp(34px, 5vw, 72px);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 8% 8%, rgba(214, 161, 0, .28), transparent 22rem),
        linear-gradient(135deg, #033626 0%, #064e3b 58%, #0b6b4a 100%);
    border-radius: 34px;
    box-shadow: 0 34px 90px rgba(6, 78, 59, .2);
}

.sws-waqf-hero-copy {
    position: relative;
    z-index: 2;
}

.sws-waqf-hero-copy h2 {
    max-width: 780px;
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(2.65rem, 5.8vw, 6.1rem);
    line-height: .98;
    letter-spacing: -.035em;
}

.sws-waqf-subtitle {
    margin: 0 0 20px !important;
    color: var(--sws-gold) !important;
    font-size: clamp(1.35rem, 2.3vw, 2.35rem) !important;
    font-weight: 900;
    line-height: 1.15 !important;
}

.sws-waqf-hero-copy p:not(.sws-waqf-subtitle) {
    max-width: 720px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.02rem, 1.35vw, 1.22rem);
    line-height: 1.75;
}

.sws-waqf-hero-image,
.sws-waqf-overview-media,
.sws-waqf-gallery-grid article,
.sws-waqf-plan-lightbox,
.sws-waqf-visual {
    position: relative;
    overflow: hidden;
    background: #eaf6f1;
}

.sws-waqf-hero-image {
    min-height: 520px;
    border: 10px solid rgba(255,255,255,.14);
    border-radius: 34px;
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.sws-waqf-hero-image img,
.sws-waqf-overview-media img,
.sws-waqf-gallery-grid img,
.sws-waqf-plan-lightbox img,
.sws-waqf-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.sws-waqf-highlights {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: -18px;
    position: relative;
    z-index: 3;
}

.sws-waqf-fact {
    min-height: 126px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(6, 78, 59, .1);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(6, 78, 59, .1);
}

.sws-waqf-fact strong {
    display: block;
    color: var(--sws-green-deep);
    font-size: clamp(1.7rem, 2.6vw, 2.7rem);
    line-height: 1;
}

.sws-waqf-fact span {
    display: block;
    margin-top: 8px;
    color: var(--sws-text);
    font-weight: 800;
    line-height: 1.35;
}

.sws-waqf-overview,
.sws-waqf-funding-section,
.sws-waqf-support-section {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(26px, 4vw, 56px);
    align-items: center;
    padding: clamp(28px, 4vw, 56px);
    background: #f5faf7;
    border-radius: 34px;
}

.sws-waqf-overview-media {
    min-height: 480px;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(6, 78, 59, .12);
}

.sws-waqf-overview-copy h2,
.sws-waqf-section-head h2,
.sws-waqf-support-section h2 {
    color: var(--sws-green-deep);
    font-size: clamp(2rem, 3.8vw, 4.4rem);
    line-height: 1.03;
}

.sws-waqf-overview-copy p,
.sws-waqf-section-head p,
.sws-waqf-support-section p {
    color: var(--sws-text);
    font-size: 1.08rem;
    line-height: 1.75;
}

.sws-waqf-meta-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sws-waqf-layout-section,
.sws-waqf-gallery-section,
.sws-waqf-impact-section {
    padding: clamp(28px, 4vw, 56px);
    background: #fff;
    border: 1px solid rgba(6, 78, 59, .09);
    border-radius: 34px;
    box-shadow: 0 24px 70px rgba(6, 78, 59, .08);
}

.sws-waqf-section-head {
    max-width: 980px;
    margin-bottom: 26px;
}

.sws-waqf-plan-lightbox {
    display: block;
    min-height: 560px;
    border-radius: 28px;
    border: 1px solid rgba(6, 78, 59, .12);
}

.sws-waqf-plan-lightbox span {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 12px 16px;
    color: #fff;
    font-weight: 900;
    background: rgba(6, 78, 59, .92);
    border-radius: 999px;
}

.sws-waqf-gallery-grid {
    display: grid;
    gap: 22px;
}

.sws-waqf-gallery-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sws-waqf-gallery-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sws-waqf-gallery-grid article {
    min-height: 360px;
    border-radius: 26px;
    box-shadow: 0 20px 60px rgba(6, 78, 59, .1);
}

.sws-waqf-gallery-grid h3 {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    margin: 0;
    padding: 14px 16px;
    color: #fff;
    background: rgba(3, 54, 38, .9);
    border-radius: 16px;
}

.sws-waqf-impact-grid,
.sws-waqf-revenue-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.sws-waqf-impact-grid article {
    padding: 24px;
    min-height: 150px;
    background: #f3faf6;
    border: 1px solid rgba(6, 78, 59, .1);
    border-radius: 22px;
}

.sws-waqf-impact-grid h3 {
    color: var(--sws-green-deep);
    font-size: 1.15rem;
}

.sws-waqf-funding-section {
    color: #fff;
    background: linear-gradient(135deg, #033626, #0b6b4a);
}

.sws-waqf-funding-card strong {
    display: block;
    color: #fff;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 1;
}

.sws-waqf-funding-card p,
.sws-waqf-funding-card small {
    color: rgba(255,255,255,.82);
}

.sws-waqf-progress {
    height: 14px;
    margin: 24px 0 10px;
    overflow: hidden;
    background: rgba(255,255,255,.18);
    border-radius: 999px;
}

.sws-waqf-progress span {
    display: block;
    height: 100%;
    background: var(--sws-gold);
}

.sws-waqf-revenue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sws-waqf-support-section {
    background:
        linear-gradient(120deg, rgba(255,255,255,.96), rgba(245,250,247,.92)),
        radial-gradient(circle at right, rgba(214, 161, 0, .16), transparent 24rem);
    border: 1px solid rgba(6, 78, 59, .1);
}

.sws-waqf-visual {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border-radius: inherit;
}

.sws-waqf-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(3, 54, 38, .82));
}

.sws-waqf-visual-label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
}

.sws-waqf-visual-label span,
.sws-waqf-visual-label small {
    display: block;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.sws-waqf-visual-label strong {
    display: block;
    max-width: 460px;
    color: #fff;
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    line-height: 1.08;
}

.sws-waqf-preview-card-pro {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.sws-waqf-preview-card-pro .sws-waqf-preview-media {
    min-height: 440px;
}

.sws-waqf-preview-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.sws-waqf-preview-facts li {
    padding: 12px 14px;
    color: var(--sws-green-deep);
    font-weight: 900;
    background: #f3faf6;
    border-radius: 14px;
}

.sws-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .86);
}

.sws-lightbox.is-open {
    display: flex;
}

.sws-lightbox img {
    max-width: min(96vw, 1500px);
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
}

.sws-lightbox button {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 1180px) {
    .sws-waqf-hero-pro,
    .sws-waqf-overview,
    .sws-waqf-funding-section,
    .sws-waqf-support-section,
    .sws-waqf-preview-card-pro {
        grid-template-columns: 1fr;
    }

    .sws-waqf-highlights,
    .sws-waqf-impact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .sws-waqf-page-pro {
        padding: 14px;
    }

    .sws-waqf-hero-pro,
    .sws-waqf-overview,
    .sws-waqf-layout-section,
    .sws-waqf-gallery-section,
    .sws-waqf-impact-section,
    .sws-waqf-funding-section,
    .sws-waqf-support-section {
        padding: 22px;
        border-radius: 24px;
    }

    .sws-waqf-hero-image,
    .sws-waqf-overview-media,
    .sws-waqf-plan-lightbox {
        min-height: 260px;
        border-radius: 20px;
    }

    .sws-waqf-highlights,
    .sws-waqf-gallery-grid-3,
    .sws-waqf-gallery-grid-2,
    .sws-waqf-impact-grid,
    .sws-waqf-revenue-grid,
    .sws-waqf-preview-facts,
    .sws-waqf-meta-pro {
        grid-template-columns: 1fr;
    }

    .sws-waqf-gallery-grid article {
        min-height: 260px;
    }
}

/* Project filter links v5.0.9 */
.sws-filter-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    color: var(--sws-green-dark);
    background: var(--sws-white);
    border: 1px solid var(--sws-border);
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(6, 78, 59, .06);
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.sws-filter-buttons a:hover,
.sws-filter-buttons a:focus,
.sws-filter-buttons a.is-active {
    color: var(--sws-white);
    background: var(--sws-green-dark);
    border-color: var(--sws-green-dark);
    transform: translateY(-1px);
}

/* Theme6 program framework visual system */
body {
    background: #f5faf7;
}

.sws-theme6-main .sws-theme5-program-band {
    background:
        radial-gradient(circle at 12% 12%, rgba(214, 161, 0, .14), transparent 26rem),
        linear-gradient(180deg, #f6fbf8 0%, #ffffff 100%);
}

.sws-theme6-framework-preview {
    padding: clamp(64px, 8vw, 116px) 0;
    background:
        linear-gradient(135deg, rgba(3, 54, 38, .98), rgba(6, 78, 59, .92)),
        radial-gradient(circle at 90% 10%, rgba(214, 161, 0, .22), transparent 28rem);
    color: #fff;
}

.sws-theme6-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 32px;
}

.sws-theme6-section-head h2 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.2rem, 4.2vw, 5rem);
    line-height: 1.02;
    letter-spacing: -.035em;
}

.sws-theme6-section-head p {
    max-width: 820px;
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
    line-height: 1.75;
}

.sws-theme6-section-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    color: #053b2b;
    font-weight: 900;
    background: var(--sws-gold);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.sws-theme6-framework-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sws-theme6-framework-mini-grid article {
    min-height: 240px;
    padding: 26px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0,0,0,.16);
    backdrop-filter: blur(14px);
}

.sws-theme6-framework-mini-grid h3 {
    color: #fff;
    font-size: 1.45rem;
}

.sws-theme6-framework-mini-grid p {
    color: rgba(255,255,255,.78);
    line-height: 1.65;
}

.sws-theme6-framework-mini-grid span,
.sws-theme6-sdg-pill {
    display: inline-flex;
    width: fit-content;
    margin-top: 12px;
    padding: 8px 12px;
    color: #053b2b;
    font-size: .8rem;
    font-weight: 900;
    background: #f4c430;
    border-radius: 999px;
}

.sws-theme6-framework-page {
    max-width: 1680px;
    margin: 0 auto;
    padding: clamp(20px, 3vw, 48px);
}

.sws-theme6-framework-hero {
    padding: clamp(40px, 7vw, 90px);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(3, 54, 38, .98), rgba(6, 78, 59, .9)),
        radial-gradient(circle at 84% 20%, rgba(214, 161, 0, .28), transparent 28rem);
    border-radius: 36px;
    box-shadow: 0 34px 90px rgba(6, 78, 59, .18);
}

.sws-theme6-framework-hero h2 {
    max-width: 1050px;
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(2.5rem, 5.8vw, 6.4rem);
    line-height: .98;
    letter-spacing: -.04em;
}

.sws-theme6-framework-hero p {
    max-width: 980px;
    color: rgba(255,255,255,.86);
    font-size: 1.18rem;
    line-height: 1.8;
}

.sws-theme6-framework-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 860px;
    margin-top: 32px;
}

.sws-theme6-framework-stats div {
    padding: 20px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
}

.sws-theme6-framework-stats strong {
    display: block;
    color: var(--sws-gold);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.sws-theme6-framework-stats span {
    color: rgba(255,255,255,.84);
    font-weight: 900;
}

.sws-theme6-framework-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
}

.sws-theme6-framework-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(6, 78, 59, .1);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(6, 78, 59, .09);
}

.sws-theme6-framework-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 900;
    background: var(--sws-green-dark);
    border-radius: 18px;
}

.sws-theme6-framework-card h3 {
    color: var(--sws-green-deep);
    font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.sws-theme6-framework-card h4 {
    margin: 20px 0 8px;
    color: var(--sws-green-dark);
    font-size: .86rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sws-theme6-framework-card p,
.sws-theme6-framework-card li {
    color: var(--sws-text);
    line-height: 1.65;
}

.sws-theme6-framework-card ul {
    padding-left: 19px;
}

.sws-theme6-sdg-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
    gap: 28px;
    align-items: center;
    margin-top: 32px;
    padding: clamp(30px, 5vw, 58px);
    background: #fff;
    border-radius: 34px;
    box-shadow: 0 24px 70px rgba(6, 78, 59, .08);
}

.sws-theme6-sdg-panel h2 {
    color: var(--sws-green-deep);
    font-size: clamp(2rem, 4vw, 4.4rem);
    line-height: 1.03;
}

.sws-theme6-sdg-panel p {
    color: var(--sws-text);
    line-height: 1.75;
}

.sws-theme6-sdg-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sws-theme6-sdg-cloud span {
    padding: 13px 16px;
    color: #fff;
    font-weight: 900;
    background: var(--sws-green-dark);
    border-radius: 999px;
}

@media (max-width: 1100px) {
    .sws-theme6-section-head,
    .sws-theme6-sdg-panel {
        grid-template-columns: 1fr;
    }

    .sws-theme6-framework-mini-grid,
    .sws-theme6-framework-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .sws-theme6-framework-mini-grid,
    .sws-theme6-framework-grid,
    .sws-theme6-framework-stats {
        grid-template-columns: 1fr;
    }

    .sws-theme6-framework-page {
        padding: 14px;
    }

    .sws-theme6-framework-hero,
    .sws-theme6-sdg-panel {
        border-radius: 24px;
        padding: 24px;
    }
}

/* Theme6 guide homepage upgrade v6.0.1 */
.sws-theme6-identity-strip {
    padding: clamp(36px, 5vw, 72px) 0;
    background: linear-gradient(135deg, #f4faf7, #ffffff);
}

.sws-theme6-identity-grid,
.sws-theme6-credibility-grid,
.sws-theme6-trust-grid,
.sws-theme6-partner-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.sws-theme6-identity-grid h1,
.sws-theme6-credibility h2,
.sws-theme6-trust-section h2,
.sws-theme6-partner-cta h2 {
    max-width: 980px;
    margin: 0 0 18px;
    color: var(--sws-green-deep);
    font-size: clamp(2.45rem, 5vw, 5.7rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.sws-theme6-identity-grid p,
.sws-theme6-credibility p,
.sws-theme6-trust-section p,
.sws-theme6-partner-cta p {
    color: var(--sws-text);
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
    line-height: 1.75;
}

.sws-theme6-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.sws-theme6-trust-badges,
.sws-theme6-stat-grid,
.sws-theme6-trust-card-grid {
    display: grid;
    gap: 14px;
}

.sws-theme6-trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sws-theme6-trust-badges span,
.sws-theme6-stat-grid div,
.sws-theme6-trust-card-grid article {
    padding: 22px;
    color: var(--sws-green-deep);
    font-weight: 900;
    background: #fff;
    border: 1px solid rgba(6, 78, 59, .1);
    border-radius: 22px;
    box-shadow: 0 18px 54px rgba(6, 78, 59, .08);
}

.sws-theme6-credibility {
    padding: clamp(56px, 7vw, 96px) 0;
    background: #fff;
}

.sws-theme6-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sws-theme6-stat-grid strong {
    display: block;
    color: var(--sws-green-dark);
    font-size: clamp(2rem, 3.6vw, 4rem);
    line-height: 1;
}

.sws-theme6-stat-grid span {
    display: block;
    margin-top: 8px;
    color: var(--sws-text);
}

.sws-theme6-programs-home {
    padding: clamp(64px, 8vw, 120px) 0;
    background:
        radial-gradient(circle at 88% 12%, rgba(214, 161, 0, .14), transparent 24rem),
        linear-gradient(180deg, #064e3b, #033626);
    color: #fff;
}

.sws-theme6-section-head.light-head h2,
.sws-theme6-section-head.light-head p {
    color: #fff;
}

.sws-theme6-program-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sws-theme6-program-card-grid article {
    min-height: 310px;
    padding: 28px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0,0,0,.16);
    backdrop-filter: blur(14px);
}

.sws-theme6-program-card-grid span {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #073b2b;
    font-weight: 900;
    background: var(--sws-gold);
    border-radius: 18px;
}

.sws-theme6-program-card-grid h3 {
    color: #fff;
    font-size: 1.55rem;
}

.sws-theme6-program-card-grid p {
    color: rgba(255,255,255,.82);
    line-height: 1.7;
}

.sws-theme6-program-card-grid a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--sws-gold);
    font-weight: 900;
}

.sws-theme6-projects-home {
    background: #f4faf7;
}

.sws-theme6-trust-section {
    padding: clamp(64px, 8vw, 116px) 0;
    background: #fff;
}

.sws-theme6-trust-card-grid {
    grid-template-columns: 1fr;
}

.sws-theme6-trust-card-grid h3 {
    color: var(--sws-green-deep);
    margin-bottom: 8px;
}

.sws-theme6-trust-card-grid p {
    font-size: .98rem;
    line-height: 1.55;
}

.sws-theme6-partner-cta {
    padding: clamp(56px, 7vw, 96px) 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(3, 54, 38, .98), rgba(6, 78, 59, .9)),
        radial-gradient(circle at right, rgba(214, 161, 0, .22), transparent 26rem);
}

.sws-theme6-partner-cta h2,
.sws-theme6-partner-cta p {
    color: #fff;
}

.sws-coming-soon {
    padding: clamp(36px, 6vw, 72px);
    background: #fff;
    border: 1px solid rgba(6, 78, 59, .1);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(6, 78, 59, .08);
}

.sws-coming-soon h2 {
    color: var(--sws-green-deep);
    font-size: clamp(2rem, 4vw, 4rem);
}

@media (max-width: 1100px) {
    .sws-theme6-identity-grid,
    .sws-theme6-credibility-grid,
    .sws-theme6-trust-grid,
    .sws-theme6-partner-inner,
    .sws-theme6-program-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .sws-theme6-trust-badges,
    .sws-theme6-stat-grid {
        grid-template-columns: 1fr;
    }

    .sws-theme6-hero-actions .sws-button,
    .sws-theme6-hero-actions a {
        width: 100%;
    }
}

/* Theme6 final upgrade: theme7-inspired header and cards */
.sws-topbar {
    display: none !important;
}

.sws-site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    color: #fff !important;
    background: linear-gradient(90deg, #042d20, #063b2a) !important;
    border-bottom: 0 !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .18) !important;
    backdrop-filter: none !important;
}

.sws-site-header .sws-container {
    width: min(1568px, calc(100% - 64px));
}

.sws-site-header .sws-header-inner {
    min-height: 96px !important;
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 0 !important;
}

.sws-site-header .sws-brand {
    min-width: 230px !important;
}

.sws-site-header .sws-brand-logo img {
    width: auto !important;
    max-width: 245px !important;
    height: 66px !important;
    max-height: 66px !important;
    object-fit: contain !important;
}

.sws-site-header .sws-primary-nav {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: flex-end !important;
}

.sws-site-header .sws-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(10px, 1.2vw, 20px) !important;
    width: auto !important;
    overflow: visible !important;
}

.sws-site-header .sws-menu > li > a {
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    min-height: 48px !important;
    padding: 0 !important;
    color: #fff !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

.sws-site-header .sws-menu > li > a:hover,
.sws-site-header .sws-menu > li > a:focus,
.sws-site-header .sws-menu > li.current-menu-item > a {
    color: #f0bd36 !important;
    background: transparent !important;
}

.sws-site-header .sws-menu > li.current-menu-item > a::after,
.sws-site-header .sws-menu > li > a:hover::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -24px;
    left: 0;
    height: 3px;
    background: #d9a31a;
}

.sws-site-header .sws-menu > li.sws-menu-donate > a {
    min-height: 50px !important;
    padding: 0 24px !important;
    color: #fff !important;
    background: #d9a31a !important;
    border-radius: 6px !important;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .12) !important;
    text-transform: uppercase;
}

.sws-site-header .sws-menu > li.sws-menu-donate > a:hover,
.sws-site-header .sws-menu > li.sws-menu-donate > a:focus {
    color: #063d2d !important;
    background: #f0bd36 !important;
}

.sws-site-header .sws-menu > li.sws-menu-donate > a::after {
    display: none !important;
}

body a.sws-button[href*="/donate/"],
body a.sws-waqf-outline[href*="/donate/"] {
    display: none !important;
}

.sws-site-header a[href*="/donate/"] {
    display: inline-flex !important;
}

.sws-site-header .sws-menu .sub-menu {
    top: calc(100% + 14px) !important;
    min-width: 280px !important;
    padding: 12px !important;
    background: #fff !important;
    border: 1px solid rgba(6, 78, 59, .12) !important;
    border-radius: 14px !important;
    box-shadow: 0 24px 70px rgba(0, 38, 25, .22) !important;
}

.sws-site-header .sws-menu .sub-menu a {
    min-height: 42px !important;
    padding: 10px 12px !important;
    color: #15382d !important;
    border-radius: 9px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.sws-site-header .sws-menu .sub-menu a:hover,
.sws-site-header .sws-menu .sub-menu a:focus {
    color: #064e3b !important;
    background: #edf8f2 !important;
}

.sws-theme6-program-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

.sws-theme6-program-card-grid article {
    min-height: 100% !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: #15382d !important;
    background: #fff !important;
    border: 1px solid rgba(6, 44, 33, .1) !important;
    border-radius: 10px !important;
    box-shadow: 0 18px 44px rgba(0, 38, 25, .16) !important;
    backdrop-filter: none !important;
}

.sws-theme6-program-image {
    position: relative;
    height: 205px;
    overflow: hidden;
    background: #eaf6f1;
}

.sws-theme6-program-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sws-theme6-program-card-grid .sws-theme6-program-image span {
    position: absolute;
    left: 18px;
    bottom: -22px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0;
    color: #fff;
    background: #0b704f;
    border: 4px solid #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}

.sws-theme6-program-card-body {
    padding: 34px 22px 24px;
}

.sws-theme6-program-card-grid h3 {
    color: #062c21 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px !important;
    line-height: 1.1;
}

.sws-theme6-program-card-grid p {
    color: #263f36 !important;
    font-size: 14px;
    line-height: 1.55;
}

.sws-theme6-program-card-grid small {
    display: inline-flex;
    margin: 4px 0 14px;
    padding: 5px 8px;
    color: #805900;
    background: #fff4cd;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.sws-theme6-program-card-grid a {
    display: inline-flex;
    margin-top: 0 !important;
    color: #062c21 !important;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sws-theme6-trust-card-grid {
    gap: 18px !important;
}

.sws-theme6-trust-card-grid article {
    position: relative;
    padding: 28px 28px 30px 76px !important;
    color: #15382d !important;
    background: linear-gradient(180deg, #fff, #f8f5ee) !important;
    border: 1px solid rgba(6, 44, 33, .1) !important;
    border-radius: 12px !important;
    box-shadow: 0 18px 38px rgba(0, 38, 25, .08) !important;
}

.sws-theme6-trust-card-grid article::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 24px;
    width: 34px;
    height: 34px;
    background: #d9a31a;
    border-radius: 10px;
    box-shadow: inset 0 0 0 8px rgba(255,255,255,.38);
}

.sws-theme6-trust-card-grid h3 {
    color: #062c21 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.sws-theme6-trust-card-grid p {
    color: #263f36 !important;
}

.sws-project-grid {
    gap: 20px !important;
}

.sws-project-card.project-card {
    overflow: hidden;
    border-radius: 10px !important;
    box-shadow: 0 18px 42px rgba(0, 38, 25, .1) !important;
}

.sws-project-card .project-image {
    height: 190px !important;
}

.sws-project-card .project-card-body {
    padding: 20px !important;
}

.sws-project-card .sws-category-pill {
    color: #9a6b00 !important;
    background: #fff4cd !important;
    border-radius: 4px !important;
}

.sws-project-card h3 {
    color: #062c21 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px !important;
}

@media (max-width: 1200px) {
    .sws-site-header .sws-header-inner {
        min-height: 86px !important;
    }

    .sws-site-header .sws-brand {
        min-width: 190px !important;
    }

    .sws-site-header .sws-brand-logo img {
        max-width: 220px !important;
        height: 58px !important;
    }

    .sws-site-header .sws-menu {
        gap: 11px !important;
    }

    .sws-site-header .sws-menu > li > a {
        font-size: 15px !important;
    }
}

@media (max-width: 980px) {
    .sws-site-header .sws-container {
        width: min(100% - 34px, 760px);
    }

    .sws-site-header .sws-header-inner {
        position: relative;
        min-height: 78px !important;
        padding: 10px 0 !important;
    }

    .sws-menu-toggle {
        display: block !important;
        position: static !important;
        margin-left: auto;
        background: transparent !important;
        border-color: rgba(255,255,255,.36) !important;
        border-radius: 8px !important;
    }

    .sws-menu-toggle span:not(.screen-reader-text) {
        background: #fff !important;
    }

    .sws-site-header .sws-primary-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: none !important;
        padding: 14px;
        background: #042d20;
        border-radius: 12px;
        box-shadow: 0 22px 60px rgba(0,0,0,.22);
    }

    .sws-site-header .sws-primary-nav.is-open {
        display: block !important;
    }

    .sws-site-header .sws-menu,
    .sws-theme6-program-card-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .sws-site-header .sws-menu > li > a {
        width: 100%;
        min-height: 44px !important;
        padding: 0 10px !important;
        border-radius: 8px !important;
    }

    .sws-site-header .sws-menu > li > a::after {
        display: none !important;
    }

    .sws-site-header .sws-menu .sub-menu {
        position: static !important;
        min-width: 0 !important;
        padding: 4px 0 6px 16px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .sws-site-header .sws-menu .sub-menu::before {
        display: none !important;
    }

    .sws-site-header .sws-menu .sub-menu a {
        color: rgba(255,255,255,.9) !important;
        white-space: normal !important;
    }
}
