/* =========================================================
   /assets/sdg/css/sdg.css
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --sdg-green: #2f7d1c;
    --sdg-green-dark: #246315;
    --sdg-green-light: #eaf5e7;

    --sdg-blue: #06345f;
    --sdg-blue-dark: #03294b;
    --sdg-blue-light: #eaf2f9;

    --sdg-gold: #d9a400;

    --sdg-white: #ffffff;
    --sdg-black: #111111;

    --sdg-text: #333333;
    --sdg-text-light: #666666;

    --sdg-border: #e2e2e2;

    --sdg-background: #ffffff;
    --sdg-light-background: #f6f8f6;

    --sdg-container: 1200px;

    --sdg-shadow:
        0 5px 25px rgba(0, 0, 0, 0.08);

    --sdg-transition:
        all 0.25s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: var(--sdg-background);
    color: var(--sdg-text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body.sdg-menu-open {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}


ul,
ol {
    margin: 0;
    padding: 0;
}


p {
    margin-top: 0;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.sdg-container {
    width: 100%;
    max-width: var(--sdg-container);

    margin-left: auto;
    margin-right: auto;

    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   TOP INFORMATION BAR
========================================================= */

.sdg-top-bar {
    width: 100%;
    min-height: 38px;

    background: var(--sdg-blue);
    color: var(--sdg-white);

    font-size: 13px;
}


.sdg-top-bar .sdg-container {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.sdg-top-left {
    white-space: nowrap;
}


.sdg-top-right {
    display: flex;
    align-items: center;

    gap: 22px;
}


.sdg-top-right a {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    transition: var(--sdg-transition);
}


.sdg-top-right a:hover {
    color: var(--sdg-gold);
}


/* =========================================================
   MAIN HEADER
   DESKTOP + MOBILE NAVIGATION
========================================================= */

.sdg-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: var(--sdg-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.sdg-header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* =========================================================
   SDG BRAND
========================================================= */

.sdg-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 0 0 auto;
}

.sdg-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
    flex-shrink: 0;
}

.sdg-brand-text {
    min-width: 0;
}

.sdg-brand-title {
    margin: 0;
    color: var(--sdg-green);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.3px;
}

.sdg-brand-subtitle {
    margin-top: 5px;
    color: var(--sdg-text-light);
    font-size: 13px;
    line-height: 1.3;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.sdg-desktop-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    margin-left: auto;
    min-width: 0;
}

.sdg-desktop-menu-group {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.sdg-desktop-menu-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: var(--sdg-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

button.sdg-desktop-menu-item {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
}

.sdg-desktop-menu-item:hover,
.sdg-desktop-menu-item:focus-visible,
.sdg-desktop-menu-group.open > .sdg-desktop-menu-item {
    color: var(--sdg-white);
    background: var(--sdg-green);
    border-color: var(--sdg-green);
    outline: none;
}

.sdg-desktop-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: transform 0.2s ease;
}

.sdg-desktop-menu-group.open > .sdg-desktop-menu-item .sdg-desktop-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.sdg-desktop-submenu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    z-index: 5000;
    width: 270px;
    max-height: calc(100vh - 115px);
    overflow-y: auto;
    padding: 8px;
    background: var(--sdg-white);
    border: 1px solid var(--sdg-border);
    border-radius: 9px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);

    transition:
        opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease;
}

.sdg-desktop-menu-group:hover > .sdg-desktop-submenu,
.sdg-desktop-menu-group:focus-within > .sdg-desktop-submenu,
.sdg-desktop-menu-group.open > .sdg-desktop-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.sdg-desktop-submenu a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 7px 10px;
    border-radius: 6px;
    color: var(--sdg-blue);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    white-space: normal;
    text-decoration: none;
    transition:
        background 0.18s ease,
        color 0.18s ease;
}

.sdg-desktop-submenu a:hover,
.sdg-desktop-submenu a:focus-visible {
    color: var(--sdg-white);
    background: var(--sdg-green);
    outline: none;
}

.sdg-desktop-submenu a i {
    width: 18px;
    min-width: 18px;
    text-align: center;
}


/* =========================================================
   SDG EVENTS / 17 GOALS DROPDOWN
========================================================= */

.sdg-desktop-events-submenu {
    width: 640px;
    max-width: min(640px, calc(100vw - 30px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px;
}

.sdg-desktop-events-submenu .sdg-submenu-highlight {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    color: var(--sdg-white);
    background: var(--sdg-blue);
    font-weight: 700;
}

.sdg-desktop-events-submenu .sdg-submenu-highlight:hover,
.sdg-desktop-events-submenu .sdg-submenu-highlight:focus-visible {
    color: var(--sdg-white);
    background: var(--sdg-green);
}

.sdg-desktop-goal-number,
.sdg-goal-menu-number {
    width: 27px;
    height: 27px;
    min-width: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--sdg-green-light);
    color: var(--sdg-green);
    font-size: 10px;
    font-weight: 800;
}

.sdg-desktop-events-submenu a:hover .sdg-desktop-goal-number,
.sdg-desktop-events-submenu a:focus-visible .sdg-desktop-goal-number {
    background: rgba(255, 255, 255, 0.18);
    color: var(--sdg-white);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.sdg-mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 8px;
    border: 0;
    border-radius: 9px;
    background: var(--sdg-green);
    color: var(--sdg-white);
    flex: 0 0 46px;
}

.sdg-mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--sdg-white);
    border-radius: 2px;
}


/* =========================================================
   MOBILE MENU OVERLAY
========================================================= */

.sdg-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.sdg-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   MOBILE DRAWER
========================================================= */

.sdg-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2100;
    width: min(88vw, 370px);
    background: var(--sdg-white);
    transform: translateX(-105%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.18);
}

.sdg-mobile-drawer.active {
    transform: translateX(0);
}


/* =========================================================
   DRAWER HEADER
========================================================= */

.sdg-drawer-header {
    position: sticky;
    top: 0;
    z-index: 5;
    min-height: 82px;
    padding: 14px 15px;
    background: var(--sdg-green);
    color: var(--sdg-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sdg-drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.sdg-drawer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.sdg-drawer-brand strong {
    display: block;
    font-size: 16px;
    line-height: 1.2;
}

.sdg-drawer-brand span {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.25;
    opacity: 0.85;
}

.sdg-drawer-close {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--sdg-white);
    font-size: 22px;
    flex: 0 0 42px;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.sdg-mobile-navigation {
    padding: 5px 0 25px;
}

.sdg-mobile-menu-group {
    width: 100%;
}

.sdg-mobile-menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 8px 17px;
    border: 0;
    border-bottom: 1px solid var(--sdg-border);
    color: var(--sdg-blue);
    background: var(--sdg-white);
    text-align: left;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sdg-mobile-menu-item:hover,
.sdg-mobile-menu-item:active,
.sdg-mobile-menu-item:focus-visible {
    background: var(--sdg-light-background);
    outline: none;
}

.sdg-menu-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sdg-green-light);
    color: var(--sdg-green);
    font-size: 17px;
    flex: 0 0 40px;
}

.sdg-menu-text {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.sdg-menu-arrow {
    margin-left: 8px;
    color: #9aa2aa;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.sdg-mobile-menu-group.open > .sdg-mobile-submenu-toggle .sdg-menu-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   MOBILE SUBMENUS
========================================================= */

.sdg-mobile-submenu {
    display: none;
    width: 100%;
    background: #f8faf8;
    border-bottom: 1px solid var(--sdg-border);
}

.sdg-mobile-menu-group.open > .sdg-mobile-submenu {
    display: block;
}

.sdg-mobile-submenu .sdg-mobile-menu-item {
    min-height: 50px;
    padding-left: 28px;
    background: #f8faf8;
    font-size: 14px;
}

.sdg-mobile-submenu .sdg-mobile-menu-item:hover,
.sdg-mobile-submenu .sdg-mobile-menu-item:focus-visible {
    background: #edf5eb;
}

.sdg-mobile-submenu .sdg-menu-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    margin-right: 10px;
    font-size: 13px;
}

.sdg-mobile-submenu .sdg-goal-menu-number {
    flex: 0 0 28px;
}


/* =========================================================
   SDG PROFESSIONAL HERO SLIDER
========================================================= */


.sdg-hero-section {

    width: 100%;

    padding: 10px 0 0;

    background: #f5f7f5;
}


/* =========================================================
   HERO SLIDER
========================================================= */

.sdg-hero-slider {

    position: relative;

    width: 100%;

    height: 267px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    border: 0;

    border-radius: 0;

    background: transparent;

    box-shadow: none;
}


/* =========================================================
   SLIDE
========================================================= */

.sdg-hero-slide {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 267px;

    margin: 0;
    padding: 0;

    display: grid;

    grid-template-columns: 50% 50%;

    overflow: hidden;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.55s ease;
}


.sdg-hero-slide.active {

    opacity: 1;

    visibility: visible;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.sdg-hero-image {

    position: relative;

    width: 100%;

    height: 267px;

    min-width: 0;

    margin: 0;
    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #f1f3f1;

    border: 0;
}


.sdg-hero-image img {

    display: block;

    width: 100%;

    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: contain;

    object-position: center;
}


/* =========================================================
   TEXT AREA
   PLAIN TEXT - NOT A CARD
========================================================= */

.sdg-hero-content {

    position: relative;

    width: 100%;

    height: 267px;

    min-width: 0;

    margin: 0;
    padding: 15px 45px 35px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    background: transparent;

    border: 0;

    border-radius: 0;

    box-shadow: none;
}


/* No decorative vertical border */

.sdg-hero-content::before {

    content: none;

    display: none;
}


/* =========================================================
   LABEL
========================================================= */

.sdg-hero-label {

    display: inline-flex;

    align-items: center;

    min-height: 22px;

    padding: 3px 10px;

    margin: 0;

    border: 0;

    border-radius: 20px;

    background:
        var(--sdg-green-light);

    color:
        var(--sdg-green-dark);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   TITLE
========================================================= */

.sdg-hero-content h1 {

    max-width: 500px;

    margin: 7px 0;

    padding: 0;

    color:
        var(--sdg-blue);

    font-size:
        clamp(25px, 2.5vw, 36px);

    font-weight: 800;

    line-height: 1.05;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.sdg-hero-content p {

    max-width: 500px;

    margin: 0 0 12px;

    padding: 0;

    color:
        var(--sdg-text-light);

    font-size: 13px;

    line-height: 1.45;
}


/* =========================================================
   BUTTON
========================================================= */

.sdg-hero-button {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin: 0;

    padding: 8px 14px;

    border: 0;

    border-radius: 6px;

    background:
        var(--sdg-green);

    color:
        #ffffff;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 3px 9px rgba(47, 125, 28, 0.18);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.sdg-hero-button:hover {

    transform:
        translateY(-2px);

    background:
        var(--sdg-green-dark);
}


/* =========================================================
   ARROWS
========================================================= */

.sdg-hero-arrow {

    position: absolute;

    top: 50%;

    z-index: 30;

    width: 36px;

    height: 36px;

    margin: 0;

    padding: 0;

    border: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transform:
        translateY(-50%);

    background:
        rgba(3, 41, 75, 0.82);

    color:
        #ffffff;

    font-size: 12px;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.14);
}


.sdg-hero-prev {

    left: 12px;
}


.sdg-hero-next {

    right: 12px;
}


/* =========================================================
   DOTS
========================================================= */

.sdg-hero-dots {

    position: absolute;

    left: 50%;

    bottom: 8px;

    z-index: 40;

    display: flex;

    align-items: center;

    gap: 5px;

    margin: 0;

    padding: 5px 10px;

    border: 0;

    border-radius: 25px;

    transform:
        translateX(-50%);

    background:
        rgba(255, 255, 255, 0.92);

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.10);
}


.sdg-hero-dot {

    width: 7px;

    height: 7px;

    margin: 0;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        #aeb7b0;
}


.sdg-hero-dot.active {

    width: 21px;

    border-radius: 8px;

    background:
        var(--sdg-green);
}

/* =========================================================
   SDG QUICK NAVIGATION
   COMPACT STRIP BELOW HERO SLIDER
========================================================= */

.sdg-quick-nav-section {

    width: 100%;

    padding:
        10px 0;

    background:
        #ffffff;

    border-bottom:
        1px solid #e6ebe6;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.035);

    position: relative;

    z-index: 5;
}


.sdg-quick-nav-container {

    width: 100%;

    max-width:
        1400px;

    margin:
        0 auto;

    padding:
        0 25px;

    display: flex;

    align-items: stretch;

    justify-content: center;

    gap: 0;
}


/* =========================================================
   QUICK NAV ITEM
========================================================= */

.sdg-quick-item {

    min-width: 0;

    flex:
        1 1 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        8px 12px;

    color:
        var(--sdg-text);

    text-decoration: none;

    border-right:
        1px solid #e5e9e5;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.sdg-quick-item:first-child {

    border-left:
        1px solid #e5e9e5;
}


.sdg-quick-item:hover {

    background:
        #f5f9f4;

    color:
        var(--sdg-green-dark);

    transform:
        translateY(-1px);
}


/* =========================================================
   ICON
========================================================= */

.sdg-quick-icon {

    width:
        34px;

    height:
        34px;

    flex:
        0 0 34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        9px;

    background:
        var(--sdg-green-light);

    color:
        var(--sdg-green);

    font-size:
        14px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.sdg-quick-item:hover .sdg-quick-icon {

    background:
        var(--sdg-green);

    color:
        #ffffff;
}


/* =========================================================
   TEXT
========================================================= */

.sdg-quick-text {

    min-width:
        0;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;
}


.sdg-quick-text strong {

    display:
        block;

    white-space:
        nowrap;

    overflow:
        hidden;

    text-overflow:
        ellipsis;

    color:
        var(--sdg-blue);

    font-size:
        11px;

    font-weight:
        700;

    line-height:
        1.25;
}


.sdg-quick-text small {

    display:
        block;

    margin-top:
        2px;

    white-space:
        nowrap;

    overflow:
        hidden;

    text-overflow:
        ellipsis;

    color:
        var(--sdg-text-light);

    font-size:
        8px;

    line-height:
        1.2;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .sdg-quick-nav-container {

        padding:
            0 15px;
    }


    .sdg-quick-item {

        padding:
            7px 8px;

        gap:
            6px;
    }


    .sdg-quick-icon {

        width:
            30px;

        height:
            30px;

        flex-basis:
            30px;

        font-size:
            12px;
    }


    .sdg-quick-text strong {

        font-size:
            9px;
    }


    .sdg-quick-text small {

        font-size:
            7px;
    }

}


/* =========================================================
   MOBILE
   HORIZONTAL APP-LIKE SCROLLING
========================================================= */

@media (max-width: 767px) {

    .sdg-quick-nav-section {

        padding:
            7px 0;

        background:
            #ffffff;

        box-shadow:
            0 2px 10px rgba(0, 0, 0, 0.06);
    }


    .sdg-quick-nav-container {

        max-width:
            none;

        padding:
            0 10px;

        justify-content:
            flex-start;

        gap:
            7px;

        overflow-x:
            auto;

        overflow-y:
            hidden;

        /*
         * Smooth mobile horizontal scrolling.
         */
        scroll-behavior:
            smooth;

        /*
         * Hide scrollbar while retaining scrolling.
         */
        scrollbar-width:
            none;

        -webkit-overflow-scrolling:
            touch;
    }


    .sdg-quick-nav-container::-webkit-scrollbar {

        display:
            none;
    }


    .sdg-quick-item {

        flex:
            0 0 auto;

        min-width:
            82px;

        max-width:
            100px;

        padding:
            6px 7px;

        display:
            flex;

        flex-direction:
            column;

        justify-content:
            center;

        gap:
            4px;

        border:
            1px solid #e3e9e3;

        border-radius:
            9px;

        background:
            #ffffff;

        text-align:
            center;

        box-shadow:
            0 2px 7px rgba(0, 0, 0, 0.035);
    }


    .sdg-quick-item:first-child {

        border-left:
            1px solid #e3e9e3;
    }


    .sdg-quick-item:hover {

        transform:
            none;

        background:
            #f8fbf7;
    }


    .sdg-quick-icon {

        width:
            29px;

        height:
            29px;

        flex:
            0 0 29px;

        margin:
            0 auto;

        border-radius:
            8px;

        font-size:
            12px;
    }


    .sdg-quick-text {

        width:
            100%;

        align-items:
            center;
    }


    .sdg-quick-text strong {

        width:
            100%;

        font-size:
            8px;

        line-height:
            1.2;

        text-align:
            center;
    }


    .sdg-quick-text small {

        display:
            none;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .sdg-quick-nav-container {

        padding:
            0 8px;

        gap:
            6px;
    }


    .sdg-quick-item {

        min-width:
            76px;

        max-width:
            82px;

        padding:
            5px 5px;
    }


    .sdg-quick-icon {

        width:
            27px;

        height:
            27px;

        flex-basis:
            27px;

        font-size:
            11px;
    }


    .sdg-quick-text strong {

        font-size:
            7.5px;
    }

}
/* =========================================================
   THREE FOUNDATIONS OF SUSTAINABLE DEVELOPMENT
========================================================= */

.sdg-foundations-section {

    background:
        #f7faf6;
}


/* =========================================================
   THREE COLUMN GRID
========================================================= */

.sdg-foundations-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        20px;

    width:
        100%;
}


/* =========================================================
   FOUNDATION CARD
========================================================= */

.sdg-foundation-card {

    position:
        relative;

    min-height:
        390px;

    display:
        flex;

    flex-direction:
        column;

    overflow:
        hidden;

    padding:
        35px 30px 25px;

    background:
        #ffffff;

    border:
        1px solid #dfe7dc;

    border-radius:
        18px;

    text-decoration:
        none;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.sdg-foundation-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   TOP ICON
========================================================= */

.sdg-foundation-icon {

    width:
        92px;

    height:
        92px;

    flex:
        0 0 92px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        22px;

    border-radius:
        50%;

    font-size:
        40px;

    color:
        #ffffff;

    transition:
        transform 0.3s ease;
}


.sdg-foundation-card:hover
.sdg-foundation-icon {

    transform:
        scale(1.06);
}


/* =========================================================
   PEOPLE
========================================================= */

.sdg-foundation-people {

    border-color:
        #c8dcf3;
}


.sdg-foundation-people
.sdg-foundation-icon {

    background:
        #1674bf;
}


.sdg-foundation-people
.sdg-foundation-content h3 {

    color:
        #1674bf;
}


/* =========================================================
   PLANET
========================================================= */

.sdg-foundation-planet {

    border-color:
        #c6dfc4;
}


.sdg-foundation-planet
.sdg-foundation-icon {

    background:
        #23802b;
}


.sdg-foundation-planet
.sdg-foundation-content h3 {

    color:
        #237329;
}


/* =========================================================
   PROSPERITY
========================================================= */

.sdg-foundation-prosperity {

    border-color:
        #f2d3b3;
}


.sdg-foundation-prosperity
.sdg-foundation-icon {

    background:
        #f28a16;
}


.sdg-foundation-prosperity
.sdg-foundation-content h3 {

    color:
        #ed7b08;
}


/* =========================================================
   CONTENT
========================================================= */

.sdg-foundation-content {

    position:
        relative;

    z-index:
        2;
}


.sdg-foundation-content h3 {

    margin:
        0 0 14px;

    font-size:
        25px;

    font-weight:
        800;

    letter-spacing:
        0.3px;

    line-height:
        1.2;
}


.sdg-foundation-content p {

    max-width:
        310px;

    margin:
        0;

    color:
        #333333;

    font-size:
        14px;

    line-height:
        1.65;
}


/* =========================================================
   DECORATIVE ICONS
========================================================= */

.sdg-foundation-decoration {

    position:
        absolute;

    left:
        0;

    right:
        0;

    bottom:
        0;

    height:
        125px;

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        center;

    gap:
        20px;

    padding-bottom:
        25px;

    opacity:
        0.12;

    pointer-events:
        none;

    font-size:
        80px;
}


.sdg-foundation-people
.sdg-foundation-decoration {

    color:
        #1674bf;
}


.sdg-foundation-planet
.sdg-foundation-decoration {

    color:
        #23802b;
}


.sdg-foundation-prosperity
.sdg-foundation-decoration {

    color:
        #f28a16;
}


/* =========================================================
   LINK
========================================================= */

.sdg-foundation-link {

    position:
        relative;

    z-index:
        3;

    margin-top:
        auto;

    padding-top:
        18px;

    color:
        var(--sdg-green);

    font-size:
        11px;

    font-weight:
        800;
}


/* =========================================================
   LEARN MORE
========================================================= */

.sdg-foundations-action {

    display:
        flex;

    justify-content:
        center;

    margin-top:
        25px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .sdg-foundations-grid {

        gap:
            14px;
    }


    .sdg-foundation-card {

        min-height:
            350px;

        padding:
            27px 20px 22px;
    }


    .sdg-foundation-icon {

        width:
            75px;

        height:
            75px;

        flex-basis:
            75px;

        font-size:
            31px;

        margin-bottom:
            18px;
    }


    .sdg-foundation-content h3 {

        font-size:
            21px;
    }


    .sdg-foundation-content p {

        font-size:
            12px;

        line-height:
            1.55;
    }


    .sdg-foundation-decoration {

        font-size:
            65px;

        height:
            105px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sdg-foundations-grid {

        grid-template-columns:
            1fr;

        gap:
            13px;
    }


    .sdg-foundation-card {

        min-height:
            0;

        padding:
            22px 20px 20px;

        border-radius:
            15px;
    }


    .sdg-foundation-icon {

        width:
            65px;

        height:
            65px;

        flex-basis:
            65px;

        margin-bottom:
            14px;

        font-size:
            27px;
    }


    .sdg-foundation-content h3 {

        margin-bottom:
            8px;

        font-size:
            20px;
    }


    .sdg-foundation-content p {

        max-width:
            none;

        font-size:
            13px;

        line-height:
            1.5;
    }


    .sdg-foundation-decoration {

        height:
            80px;

        padding-bottom:
            15px;

        font-size:
            48px;

        gap:
            12px;

        opacity:
            0.09;
    }


    .sdg-foundation-link {

        padding-top:
            13px;

        font-size:
            10px;
    }


    .sdg-foundations-action {

        margin-top:
            18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .sdg-foundation-card {

        padding:
            18px 16px;
    }


    .sdg-foundation-icon {

        width:
            58px;

        height:
            58px;

        flex-basis:
            58px;

        font-size:
            24px;
    }


    .sdg-foundation-content h3 {

        font-size:
            18px;
    }


    .sdg-foundation-content p {

        font-size:
            12px;
    }

}
/* =========================================================
   THE 17 SUSTAINABLE DEVELOPMENT GOALS
========================================================= */

.sdg-goals-section {

    background:
        #ffffff;
}


/* =========================================================
   GOALS GRID
   DESKTOP = 6 COLUMNS
========================================================= */

.sdg-goals-grid {

    display:
        grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap:
        18px;

    width:
        100%;
}


/* =========================================================
   GOAL CARD
========================================================= */

.sdg-goal-card {

    position:
        relative;

    display:
        block;

    width:
        100%;

    aspect-ratio:
        1 / 1;

    overflow:
        hidden;

    border-radius:
        10px;

    background:
        #f5f5f5;

    text-decoration:
        none;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   GOAL IMAGE
========================================================= */

.sdg-goal-card img {

    display:
        block;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center;

    transition:
        transform 0.3s ease;
}


/* =========================================================
   DESKTOP HOVER
========================================================= */

.sdg-goal-card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 9px 22px rgba(0, 0, 0, 0.14);
}


.sdg-goal-card:hover img {

    transform:
        scale(1.035);
}


/* =========================================================
   EXPLORE ALL SDGs CARD
========================================================= */

.sdg-goal-all {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    padding:
        15px;

    background:
        var(--sdg-green);

    color:
        #ffffff;

    text-align:
        center;
}


.sdg-goal-all:hover {

    background:
        var(--sdg-green-dark);

    color:
        #ffffff;
}


.sdg-goal-all-icon {

    width:
        52px;

    height:
        52px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        2px solid rgba(255, 255, 255, 0.8);

    border-radius:
        50%;

    font-size:
        20px;
}


.sdg-goal-all strong {

    font-size:
        13px;

    line-height:
        1.3;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .sdg-goals-grid {

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap:
            14px;
    }


    .sdg-goal-card {

        border-radius:
            8px;
    }


    .sdg-goal-all strong {

        font-size:
            11px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 700px) {

    .sdg-goals-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap:
            11px;
    }


    .sdg-goal-card {

        border-radius:
            7px;
    }


    .sdg-goal-all-icon {

        width:
            42px;

        height:
            42px;

        font-size:
            16px;
    }


    .sdg-goal-all strong {

        font-size:
            10px;
    }

}


/* =========================================================
   MOBILE
   2 COLUMNS
========================================================= */

@media (max-width: 767px) {

    .sdg-goals-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            10px;
    }


    .sdg-goal-card {

        border-radius:
            8px;

        box-shadow:
            0 2px 8px rgba(0, 0, 0, 0.08);
    }


    /*
     * Disable desktop lift effect on touch devices.
     */

    .sdg-goal-card:hover {

        transform:
            none;

        box-shadow:
            0 2px 8px rgba(0, 0, 0, 0.08);
    }


    .sdg-goal-card:hover img {

        transform:
            none;
    }


    .sdg-goal-all {

        gap:
            8px;

        padding:
            12px;
    }


    .sdg-goal-all-icon {

        width:
            40px;

        height:
            40px;

        font-size:
            15px;
    }


    .sdg-goal-all strong {

        font-size:
            10px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .sdg-goals-grid {

        gap:
            8px;
    }


    .sdg-goal-card {

        border-radius:
            6px;
    }


    .sdg-goal-all {

        gap:
            6px;

        padding:
            9px;
    }


    .sdg-goal-all-icon {

        width:
            34px;

        height:
            34px;

        font-size:
            13px;
    }


    .sdg-goal-all strong {

        font-size:
            9px;
    }

}


/* =========================================================
   QUICK HIGHLIGHTS
========================================================= */

.sdg-quick-highlights {
    padding:
        10px 0 5px;

    background:
        #f5f7f5;
}


.sdg-quick-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;
}


.sdg-quick-card {
    min-height: 76px;

    padding:
        10px 14px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;

    gap: 11px;

    border:
        1px solid #e2e8e2;

    border-radius: 10px;

    background:
        #ffffff;

    box-shadow:
        0 3px 13px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.sdg-quick-card:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 7px 20px rgba(0, 0, 0, 0.08);
}


.sdg-quick-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background:
        var(--sdg-green-light);

    color:
        var(--sdg-green);

    font-size: 17px;
}


.sdg-quick-content {
    min-width: 0;

    padding-right: 20px;
}


.sdg-quick-content span {
    display: block;

    color:
        var(--sdg-green);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.sdg-quick-content strong {
    display: block;

    margin-top: 2px;

    color:
        var(--sdg-blue);

    font-size: 15px;

    line-height: 1.2;
}


.sdg-quick-content small {
    display: block;

    margin-top: 2px;

    color:
        #777777;

    font-size: 10px;

    line-height: 1.3;
}


.sdg-quick-arrow {
    position: absolute;

    right: 13px;

    color:
        #a4ada6;

    font-size: 10px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.sdg-section {
    padding:
        65px 0;
}


.sdg-light-section {
    background:
        var(--sdg-light-background);
}


.sdg-section-heading {
    margin-bottom:
        35px;
}


.sdg-section-heading.center {
    text-align:
        center;
}


.sdg-section-label {
    display:
        inline-block;

    color:
        var(--sdg-green);

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;
}


.sdg-section-heading h2 {
    margin:
        6px 0 10px;

    color:
        var(--sdg-green-dark);

    font-size:
        clamp(27px, 3vw, 39px);

    font-weight:
        700;

    line-height:
        1.2;
}


.sdg-heading-line {
    width:
        60px;

    height:
        4px;

    background:
        var(--sdg-gold);
}


.sdg-section-heading.center
.sdg-heading-line {
    margin-left:
        auto;

    margin-right:
        auto;
}



/* =========================================================
   SDG ABOUT SECTION
   DESKTOP : 70% CONTENT + 30% IMAGE
   MOBILE  : FULL WIDTH STACKED LAYOUT
========================================================= */

.sdg-about-section {
    background: var(--sdg-white);
}

.sdg-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    gap: 35px;
    align-items: center;
    width: 100%;
}

.sdg-about-content {
    width: 100%;
    min-width: 0;
    padding-right: 15px;
}

.sdg-about-content h3 {
    margin: 0 0 14px;
    color: var(--sdg-green-dark);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.sdg-about-content p {
    margin: 0 0 13px;
    color: var(--sdg-text-light);
    font-size: 15px;
    line-height: 1.65;
}

.sdg-about-content .sdg-lead {
    margin: 0 0 17px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.sdg-about-content .sdg-primary-button {
    margin-top: 7px;
}

.sdg-about-visual {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sdg-about-image-link {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid #e2e8e2;
    border-radius: 22px;
    background: #f3f6f3;
    box-shadow: 0 9px 25px rgba(0, 0, 0, 0.09);
}

.sdg-about-image-link img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    transition: transform 0.45s ease;
}

.sdg-about-image-link:hover img {
    transform: scale(1.035);
}

@media (max-width: 900px) {
    .sdg-about-grid {
        grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
        gap: 25px;
    }

    .sdg-about-content {
        padding-right: 5px;
    }

    .sdg-about-content h3 {
        font-size: 24px;
    }

    .sdg-about-content .sdg-lead {
        font-size: 15px;
        line-height: 1.55;
    }

    .sdg-about-content p {
        font-size: 13px;
        line-height: 1.55;
    }

    .sdg-about-image-link {
        border-radius: 18px;
    }
}

@media (max-width: 767px) {
    .sdg-about-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 22px;
    }

    .sdg-about-content {
        order: 1;
        width: 100%;
        min-width: 0;
        padding: 0;
        text-align: left;
    }

    .sdg-about-content h3 {
        margin: 0 0 10px;
        font-size: 23px;
        line-height: 1.2;
    }

    .sdg-about-content .sdg-lead {
        margin: 0 0 13px;
        font-size: 15px;
        line-height: 1.55;
    }

    .sdg-about-content p {
        margin: 0 0 11px;
        font-size: 13px;
        line-height: 1.55;
    }

    .sdg-about-content .sdg-primary-button {
        margin-top: 4px;
    }

    .sdg-about-visual {
        order: 2;
        width: 100%;
        min-width: 0;
        display: block;
    }

    .sdg-about-image-link {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1 / 1;
        margin: 0;
        border-radius: 18px;
    }

    .sdg-about-image-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 400px) {
    .sdg-about-grid {
        gap: 19px;
    }

    .sdg-about-content h3 {
        font-size: 21px;
    }

    .sdg-about-content .sdg-lead {
        font-size: 14px;
        line-height: 1.5;
    }

    .sdg-about-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .sdg-about-image-link {
        border-radius: 15px;
    }
}


/* =========================================================
   INTRODUCTION
========================================================= */

.sdg-intro-grid {
    display:
        grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(280px, 0.75fr);

    gap:
        45px;

    align-items:
        center;
}


.sdg-intro-content p {
    font-size:
        15px;
}


.sdg-intro-content .sdg-lead {
    margin-bottom:
        16px;

    color:
        #444444;

    font-size:
        18px;

    line-height:
        1.65;
}


.sdg-primary-button {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        8px;

    padding:
        10px 17px;

    border-radius:
        6px;

    background:
        var(--sdg-green);

    color:
        var(--sdg-white);

    font-size:
        13px;

    font-weight:
        700;

    transition:
        var(--sdg-transition);
}


.sdg-primary-button:hover {
    background:
        var(--sdg-green-dark);
}


/* =========================================================
   INTRO HIGHLIGHT
========================================================= */

.sdg-intro-highlight {
    padding:
        30px 25px;

    text-align:
        center;

    background:
        var(--sdg-white);

    border:
        1px solid var(--sdg-border);

    border-radius:
        14px;

    box-shadow:
        var(--sdg-shadow);
}


.sdg-highlight-icon {
    width:
        65px;

    height:
        65px;

    margin:
        0 auto 16px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        var(--sdg-green-light);

    color:
        var(--sdg-green);

    font-size:
        27px;
}


.sdg-intro-highlight h3 {
    margin:
        0 0 8px;

    color:
        var(--sdg-green-dark);

    font-size:
        20px;

    line-height:
        1.3;
}


.sdg-intro-highlight p {
    margin:
        0;

    color:
        var(--sdg-text-light);

    font-size:
        14px;
}


/* =========================================================
   HOME IMAGE CARDS
========================================================= */

.sdg-home-image-card {
    width:
        100%;

    overflow:
        hidden;

    border:
        1px solid #e1e7e1;

    border-radius:
        14px;

    background:
        #ffffff;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.07);
}


.sdg-home-image-link {
    display:
        block;

    width:
        100%;

    overflow:
        hidden;

    background:
        #ffffff;
}


.sdg-home-feature-image {
    width:
        100%;

    height:
        auto;

    display:
        block;

    object-fit:
        contain;

    transition:
        transform 0.45s ease;
}


.sdg-home-image-link:hover
.sdg-home-feature-image {
    transform:
        scale(1.015);
}


.sdg-home-image-caption {
    min-height:
        72px;

    padding:
        13px 18px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    background:
        #f3f8f1;

    border-top:
        1px solid #dfe8dd;
}


.sdg-home-image-caption > div {
    min-width:
        0;
}


.sdg-home-image-caption strong {
    display:
        block;

    color:
        var(--sdg-green-dark);

    font-size:
        17px;

    line-height:
        1.3;
}


.sdg-home-image-caption span {
    display:
        block;

    margin-top:
        3px;

    color:
        var(--sdg-text-light);

    font-size:
        12px;

    line-height:
        1.4;
}


.sdg-home-image-caption
.sdg-primary-button {
    margin-top:
        0;

    flex-shrink:
        0;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.sdg-feature-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        20px;
}


.sdg-feature-card {
    position:
        relative;

    display:
        block;

    padding:
        25px;

    background:
        var(--sdg-white);

    border:
        1px solid var(--sdg-border);

    border-radius:
        12px;

    box-shadow:
        0 3px 18px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.sdg-feature-card:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(47, 125, 28, 0.30);

    box-shadow:
        var(--sdg-shadow);
}


.sdg-feature-icon {
    width:
        55px;

    height:
        55px;

    margin-bottom:
        16px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        11px;

    background:
        var(--sdg-green-light);

    color:
        var(--sdg-green);

    font-size:
        22px;
}


.sdg-feature-card h3 {
    margin:
        0 0 8px;

    color:
        var(--sdg-green-dark);

    font-size:
        19px;

    line-height:
        1.3;
}


.sdg-feature-card p {
    margin:
        0 0 16px;

    color:
        var(--sdg-text-light);

    font-size:
        14px;

    line-height:
        1.55;
}


.sdg-feature-card span {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        6px;

    color:
        var(--sdg-green);

    font-size:
        13px;

    font-weight:
        700;
}


.sdg-feature-card span i {
    transition:
        transform 0.2s ease;
}


.sdg-feature-card:hover
span i {
    transform:
        translateX(4px);
}


/* =========================================================
   MESSAGE / CTA
========================================================= */

.sdg-message-section {
    padding:
        50px 0;

    background:
        var(--sdg-green);

    color:
        var(--sdg-white);
}


.sdg-message-content {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;
}


.sdg-message-content span {
    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        1.5px;

    opacity:
        0.82;
}


.sdg-message-content h2 {
    margin:
        5px 0;

    font-size:
        31px;

    line-height:
        1.2;
}


.sdg-message-content p {
    margin:
        0;

    font-size:
        15px;

    opacity:
        0.88;
}


.sdg-message-button {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    padding:
        11px 18px;

    border-radius:
        6px;

    background:
        var(--sdg-white);

    color:
        var(--sdg-green);

    font-size:
        13px;

    font-weight:
        700;

    white-space:
        nowrap;

    transition:
        var(--sdg-transition);
}


.sdg-message-button:hover {
    background:
        var(--sdg-gold);

    color:
        var(--sdg-black);
}


/* =========================================================
   FOOTER
========================================================= */

.sdg-footer {
    padding:
        55px 0 0;

    background:
        #082b19;

    color:
        var(--sdg-white);
}


.sdg-footer-grid {
    display:
        grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1.2fr;

    gap:
        35px;
}


.sdg-footer-column h3 {
    margin:
        0 0 15px;

    color:
        var(--sdg-white);

    font-size:
        17px;

    line-height:
        1.3;
}


.sdg-footer-column p {
    margin-bottom:
        9px;

    color:
        #b9c9bf;

    font-size:
        13px;
}


.sdg-footer-column a {
    display:
        block;

    margin-bottom:
        8px;

    color:
        #b9c9bf;

    font-size:
        13px;

    transition:
        var(--sdg-transition);
}


.sdg-footer-column a:hover {
    color:
        var(--sdg-white);
}


.sdg-footer-column p i {
    width:
        20px;

    color:
        var(--sdg-gold);
}


.sdg-social-links {
    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        15px;
}


.sdg-social-links a {
    width:
        36px;

    height:
        36px;

    margin:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        8px;

    background:
        rgba(255, 255, 255, 0.08);

    color:
        var(--sdg-white);
}


.sdg-social-links a:hover {
    background:
        var(--sdg-green);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.sdg-footer-bottom {
    margin-top:
        45px;

    padding:
        18px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);

    color:
        #9fb0a5;

    font-size:
        12px;

    text-align:
        center;
}


/* =========================================================
   MOBILE BOTTOM APP NAVIGATION
========================================================= */

.sdg-mobile-bottom-nav {
    display:
        none;
}


/* =========================================================
   NAVIGATION RESPONSIVE OVERRIDES
========================================================= */

@media (max-width: 1250px) {

    .sdg-header-inner {
        gap: 12px;
    }

    .sdg-brand-title {
        font-size: 20px;
    }

    .sdg-desktop-menu-item {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 13px;
    }

    .sdg-desktop-events-submenu {
        width: 590px;
        max-width: calc(100vw - 25px);
    }

}


@media (max-width: 900px) {

    .sdg-desktop-navigation {
        display: none;
    }

    .sdg-mobile-menu-button {
        display: block;
    }

    .sdg-header-inner {
        min-height: 66px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .sdg-brand {
        gap: 9px;
        max-width: calc(100% - 60px);
    }

    .sdg-logo {
        width: 45px;
        height: 45px;
    }

    .sdg-brand-title {
        font-size: 16px;
    }

    .sdg-brand-subtitle {
        margin-top: 2px;
        font-size: 10px;
    }

}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1100px) {

    .sdg-desktop-menu-item {
        padding-left:
            7px;

        padding-right:
            7px;

        font-size:
            13px;
    }


    .sdg-brand-title {
        font-size:
            20px;
    }


    .sdg-feature-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .sdg-footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .sdg-hero-content {
        padding:
            16px 32px 30px;
    }


    .sdg-hero-content h1 {
        font-size:
            clamp(23px, 3vw, 32px);
    }


    .sdg-hero-content p {
        font-size:
            12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    body {
        padding-bottom:
            68px;
    }


    .sdg-container {
        padding-left:
            15px;

        padding-right:
            15px;
    }


    /* =====================================================
       TOP BAR
    ====================================================== */

    .sdg-top-bar {
        display:
            none;
    }


    /* =====================================================
       HEADER
    ====================================================== */

    .sdg-header-inner {
        min-height:
            66px;

        padding-top:
            8px;

        padding-bottom:
            8px;
    }


    .sdg-brand {
        gap:
            9px;

        max-width:
            calc(100% - 60px);
    }


    .sdg-logo {
        width:
            45px;

        height:
            45px;
    }


    .sdg-brand-title {
        font-size:
            16px;
    }


    .sdg-brand-subtitle {
        margin-top:
            2px;

        font-size:
            10px;
    }


    .sdg-desktop-navigation {
        display:
            none;
    }


    .sdg-mobile-menu-button {
        display:
            block;
    }


    /* =====================================================
       MOBILE HERO
    ====================================================== */

    .sdg-hero-section {
        padding:
            8px 0 0;

        background:
            #f3f5f3;
    }


    .sdg-hero-slider {
        height:
            auto;

        min-height:
            0;

        overflow:
            hidden;

        border-radius:
            12px;

        box-shadow:
            0 4px 18px rgba(0, 0, 0, 0.08);

        background:
            transparent;
    }


    .sdg-hero-slide {
        position:
            absolute;

        inset:
            0;

        width:
            100%;

        height:
            auto;

        display:
            flex;

        flex-direction:
            column;

        background:
            #ffffff;

        border-radius:
            12px;

        overflow:
            hidden;
    }


    .sdg-hero-slide.active {
        position:
            relative;

        inset:
            auto;
    }


    /* =====================================================
       MOBILE IMAGE
    ====================================================== */

    .sdg-hero-image {
        width:
            100%;

        height:
            auto;

        aspect-ratio:
            1750 / 750;

        min-height:
            0;

        flex-shrink:
            0;

        background:
            #f1f3f1;
    }


    .sdg-hero-image img {
        width:
            100%;

        height:
            100%;

        object-fit:
            contain;

        object-position:
            center;
    }


    /* =====================================================
       MOBILE TEXT
       STILL PLAIN - NO CARD
    ====================================================== */

    .sdg-hero-content {
        position:
            relative;

        width:
            100%;

        height:
            auto;

        min-height:
            190px;

        padding:
            16px 18px 45px;

        justify-content:
            flex-start;

        background:
            transparent;

        border:
            none;

        box-shadow:
            none;

        border-radius:
            0;
    }


    .sdg-hero-content::before {
        display:
            none;
    }


    .sdg-hero-label {
        min-height:
            22px;

        padding:
            3px 9px;

        font-size:
            9px;
    }


    .sdg-hero-content h1 {
        margin:
            8px 0 7px;

        font-size:
            23px;

        line-height:
            1.12;
    }


    .sdg-hero-content p {
        margin-bottom:
            12px;

        font-size:
            12px;

        line-height:
            1.5;
    }


    .sdg-hero-button {
        padding:
            8px 12px;

        font-size:
            11px;
    }


    /* =====================================================
       MOBILE HERO ARROWS
    ====================================================== */

    .sdg-hero-arrow {
        top:
            27%;

        width:
            33px;

        height:
            33px;

        background:
            rgba(3, 41, 75, 0.72);

        font-size:
            10px;
    }


    .sdg-hero-prev {
        left:
            7px;
    }


    .sdg-hero-next {
        right:
            7px;
    }


    /* =====================================================
       MOBILE DOTS
    ====================================================== */

    .sdg-hero-dots {
        bottom:
            10px;

        gap:
            4px;

        padding:
            5px 8px;
    }


    .sdg-hero-dot {
        width:
            5px;

        height:
            5px;
    }


    .sdg-hero-dot.active {
        width:
            16px;
    }


    /* =====================================================
       QUICK HIGHLIGHTS
    ====================================================== */

    .sdg-quick-highlights {
        padding:
            9px 0 3px;
    }


    .sdg-quick-grid {
        display:
            flex;

        gap:
            9px;

        overflow-x:
            auto;

        padding:
            2px 1px 7px;

        scrollbar-width:
            none;

        scroll-snap-type:
            x mandatory;
    }


    .sdg-quick-grid::-webkit-scrollbar {
        display:
            none;
    }


    .sdg-quick-card {
        min-width:
            82%;

        min-height:
            78px;

        padding:
            12px;

        scroll-snap-align:
            start;
    }


    .sdg-quick-icon {
        width:
            39px;

        height:
            39px;

        font-size:
            15px;
    }


    .sdg-quick-content strong {
        font-size:
            14px;
    }


    .sdg-quick-content small {
        font-size:
            10px;
    }


    /* =====================================================
       GENERAL SECTIONS
    ====================================================== */

    .sdg-section {
        padding:
            42px 0;
    }


    .sdg-section-heading {
        margin-bottom:
            25px;
    }


    .sdg-section-heading h2 {
        font-size:
            26px;
    }


    /* =====================================================
       OLD INTRODUCTION COMPATIBILITY
       The homepage now uses .sdg-about-grid.
    ====================================================== */

    .sdg-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sdg-intro-content .sdg-lead {
        font-size: 16px;
    }

    .sdg-intro-content p {
        font-size: 14px;
    }

    .sdg-intro-highlight {
        padding: 25px 20px;
    }


    /* =====================================================
       HOME IMAGE CARDS
    ====================================================== */

    .sdg-home-image-card {
        border-radius:
            10px;
    }


    .sdg-home-image-caption {
        min-height:
            auto;

        padding:
            13px;

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            10px;
    }


    .sdg-home-image-caption strong {
        font-size:
            15px;
    }


    .sdg-home-image-caption span {
        font-size:
            11px;
    }


    .sdg-home-image-caption
    .sdg-primary-button {
        padding:
            8px 12px;

        font-size:
            11px;
    }


    /* =====================================================
       FEATURE GRID
    ====================================================== */

    .sdg-feature-grid {
        grid-template-columns:
            1fr;

        gap:
            14px;
    }


    .sdg-feature-card {
        padding:
            20px;
    }


    .sdg-feature-card h3 {
        font-size:
            18px;
    }


    .sdg-feature-card p {
        font-size:
            13px;
    }


    /* =====================================================
       MESSAGE
    ====================================================== */

    .sdg-message-content {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            20px;
    }


    .sdg-message-content h2 {
        font-size:
            26px;
    }


    .sdg-message-content p {
        font-size:
            14px;
    }


    .sdg-message-button {
        white-space:
            normal;

        font-size:
            12px;
    }


    /* =====================================================
       FOOTER
    ====================================================== */

    .sdg-footer {
        padding-top:
            42px;
    }


    .sdg-footer-grid {
        grid-template-columns:
            1fr;

        gap:
            24px;
    }


    .sdg-footer-bottom {
        margin-top:
            28px;

        padding-bottom:
            85px;
    }


    /* =====================================================
       MOBILE APP BOTTOM NAVIGATION
    ====================================================== */

    .sdg-mobile-bottom-nav {
        position:
            fixed;

        left:
            0;

        right:
            0;

        bottom:
            0;

        z-index:
            1500;

        width:
            100%;

        height:
            68px;

        display:
            grid;

        grid-template-columns:
            repeat(5, 1fr);

        background:
            var(--sdg-white);

        border-top:
            1px solid var(--sdg-border);

        box-shadow:
            0 -5px 20px rgba(0, 0, 0, 0.10);
    }


    .sdg-bottom-nav-item,
    .sdg-bottom-menu-button {
        min-width:
            0;

        height:
            68px;

        padding:
            4px 2px;

        border:
            0;

        background:
            transparent;

        color:
            #687384;

        display:
            flex;

        flex-direction:
            column;

        align-items:
            center;

        justify-content:
            center;

        gap:
            3px;

        font-size:
            10px;

        line-height:
            1.1;
    }


    .sdg-bottom-nav-item i {
        font-size:
            18px;
    }


    .sdg-bottom-nav-item.active {
        color:
            var(--sdg-green);

        font-weight:
            700;
    }


    /* =====================================================
       CENTRAL MENU BUTTON
    ====================================================== */

    .sdg-bottom-menu-button {
        cursor:
            pointer;
    }


    .sdg-bottom-menu-circle {
        width:
            43px;

        height:
            43px;

        margin-top:
            -21px;

        margin-bottom:
            1px;

        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

        border:
            4px solid var(--sdg-white);

        border-radius:
            50%;

        background:
            var(--sdg-green);

        color:
            var(--sdg-white);

        box-shadow:
            0 3px 12px rgba(0, 0, 0, 0.18);

        font-size:
            17px;
    }


    .sdg-bottom-menu-button > span:last-child {
        color:
            #687384;

        font-size:
            10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .sdg-brand-title {
        font-size:
            14px;
    }


    .sdg-brand-subtitle {
        display:
            none;
    }


    .sdg-hero-content {
        min-height:
            185px;

        padding:
            14px 16px 43px;
    }


    .sdg-hero-content h1 {
        font-size:
            21px;
    }


    .sdg-hero-content p {
        font-size:
            11px;

        line-height:
            1.45;
    }


    .sdg-hero-button {
        padding:
            7px 10px;

        font-size:
            10px;
    }


    .sdg-feature-card {
        padding:
            18px;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 350px) {

    .sdg-bottom-nav-item,
    .sdg-bottom-menu-button {
        font-size:
            9px;
    }


    .sdg-bottom-nav-item i {
        font-size:
            16px;
    }


    .sdg-bottom-menu-circle {
        width:
            40px;

        height:
            40px;

        font-size:
            15px;
    }


    .sdg-hero-content {
        min-height:
            180px;

        padding:
            13px 14px 42px;
    }


    .sdg-hero-content h1 {
        font-size:
            20px;
    }


    .sdg-hero-content p {
        font-size:
            10.5px;
    }

}
.sdg-feature-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: var(--sdg-green-light);
    color: var(--sdg-green);

    font-size: 24px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.sdg-feature-card:hover .sdg-feature-icon {
    background: var(--sdg-green);
    color: #ffffff;
    transform: translateY(-2px);
}


.sdg-feature-card span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.sdg-feature-card span i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.sdg-feature-card:hover span i {
    transform: translateX(4px);
}
/* =========================================================
   LATEST UPDATES
========================================================= */

.sdg-home-updates {
    background: #f7faf6;
}


.sdg-updates-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    width: 100%;
}


/* =========================================================
   UPDATE CARD
========================================================= */

.sdg-update-card {

    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 0;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e1e8e1;

    border-radius: 14px;

    text-decoration: none;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.sdg-update-card:hover {

    transform:
        translateY(-3px);

    border-color:
        var(--sdg-green);

    box-shadow:
        0 9px 24px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   UPDATE ICON
========================================================= */

.sdg-update-icon {

    width: 52px;

    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        var(--sdg-green-light);

    color:
        var(--sdg-green);

    font-size: 21px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.sdg-update-card:hover
.sdg-update-icon {

    background:
        var(--sdg-green);

    color:
        #ffffff;
}


/* =========================================================
   CONTENT
========================================================= */

.sdg-update-content {

    min-width: 0;

    flex: 1;
}


.sdg-update-content > span {

    display: block;

    margin-bottom: 3px;

    color:
        var(--sdg-green);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.sdg-update-content h3 {

    margin:
        0 0 5px;

    color:
        var(--sdg-blue);

    font-size: 17px;

    font-weight: 700;

    line-height: 1.25;
}


.sdg-update-content p {

    margin: 0;

    color:
        var(--sdg-text-light);

    font-size: 12px;

    line-height: 1.45;
}


/* =========================================================
   ARROW
========================================================= */

.sdg-update-arrow {

    width: 30px;

    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        #f0f5ef;

    color:
        var(--sdg-green);

    font-size: 11px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.sdg-update-card:hover
.sdg-update-arrow {

    transform:
        translateX(4px);

    background:
        var(--sdg-green);

    color:
        #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .sdg-updates-grid {

        gap: 12px;
    }


    .sdg-update-card {

        gap: 10px;

        padding: 15px;
    }


    .sdg-update-icon {

        width: 45px;

        height: 45px;

        flex-basis: 45px;

        font-size: 18px;
    }


    .sdg-update-content h3 {

        font-size: 15px;
    }


    .sdg-update-content p {

        font-size: 11px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sdg-updates-grid {

        grid-template-columns:
            1fr;

        gap: 9px;
    }


    .sdg-update-card {

        width: 100%;

        min-height: 72px;

        padding: 12px 13px;

        gap: 11px;

        border-radius: 11px;
    }


    .sdg-update-icon {

        width: 42px;

        height: 42px;

        flex-basis: 42px;

        border-radius: 10px;

        font-size: 17px;
    }


    .sdg-update-content > span {

        font-size: 7px;

        margin-bottom: 2px;
    }


    .sdg-update-content h3 {

        margin-bottom: 2px;

        font-size: 14px;
    }


    .sdg-update-content p {

        font-size: 10px;

        line-height: 1.35;
    }


    .sdg-update-arrow {

        width: 27px;

        height: 27px;

        flex-basis: 27px;

        font-size: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .sdg-update-card {

        min-height: 66px;

        padding: 10px;

        gap: 9px;
    }


    .sdg-update-icon {

        width: 38px;

        height: 38px;

        flex-basis: 38px;

        font-size: 15px;
    }


    .sdg-update-content h3 {

        font-size: 13px;
    }


    .sdg-update-content p {

        font-size: 9px;
    }


    .sdg-update-arrow {

        width: 24px;

        height: 24px;

        flex-basis: 24px;

        font-size: 9px;
    }

}
/* =========================================================
   CONTACT PAGE
========================================================= */

.sdg-contact-section {

    background:
        #f7faf6;
}


/* =========================================================
   CONTACT INTRO
========================================================= */

.sdg-contact-intro {

    max-width:
        650px;

    margin:
        12px auto 0;

    color:
        var(--sdg-text-light);

    font-size:
        14px;

    line-height:
        1.6;
}


/* =========================================================
   CONTACT GRID
========================================================= */

.sdg-contact-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        20px;

    margin-top:
        35px;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.sdg-contact-card {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        16px;

    min-width:
        0;

    padding:
        25px 22px;

    background:
        #ffffff;

    border:
        1px solid #e0e8df;

    border-radius:
        15px;

    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.sdg-contact-card:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 9px 25px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   CONTACT ICON
========================================================= */

.sdg-contact-icon {

    width:
        48px;

    height:
        48px;

    flex:
        0 0 48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        12px;

    background:
        var(--sdg-green-light);

    color:
        var(--sdg-green);

    font-size:
        19px;
}


/* =========================================================
   CONTACT CONTENT
========================================================= */

.sdg-contact-content {

    min-width:
        0;

    flex:
        1;
}


.sdg-contact-label {

    display:
        block;

    margin-bottom:
        4px;

    color:
        var(--sdg-green);

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        1px;

    text-transform:
        uppercase;
}


.sdg-contact-content h2 {

    margin:
        0 0 9px;

    color:
        var(--sdg-blue);

    font-size:
        17px;

    font-weight:
        700;

    line-height:
        1.3;
}


.sdg-contact-content p {

    margin:
        0;

    color:
        var(--sdg-text-light);

    font-size:
        12px;

    line-height:
        1.6;
}


/* =========================================================
   CONTACT LINKS
========================================================= */

.sdg-contact-details {

    display:
        flex;

    flex-direction:
        column;

    gap:
        7px;
}


.sdg-contact-details a {

    color:
        var(--sdg-blue);

    font-size:
        13px;

    font-weight:
        600;

    text-decoration:
        none;
}


.sdg-contact-details a:hover {

    color:
        var(--sdg-green);

    text-decoration:
        underline;
}


/* =========================================================
   COLLEGE WEBSITE LINK
========================================================= */

.sdg-contact-link {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    margin-top:
        12px;

    color:
        var(--sdg-green);

    font-size:
        11px;

    font-weight:
        700;

    text-decoration:
        none;
}


.sdg-contact-link:hover {

    color:
        var(--sdg-green-dark);
}


.sdg-contact-link i {

    font-size:
        9px;
}


/* =========================================================
   LOCATION BAR
========================================================= */

.sdg-contact-location {

    display:
        flex;

    align-items:
        center;

    gap:
        16px;

    margin-top:
        20px;

    padding:
        18px 20px;

    background:
        #ffffff;

    border:
        1px solid #e0e8df;

    border-radius:
        14px;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.04);
}


.sdg-contact-location-icon {

    width:
        44px;

    height:
        44px;

    flex:
        0 0 44px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        var(--sdg-green-light);

    color:
        var(--sdg-green);

    font-size:
        17px;
}


.sdg-contact-location > div:nth-child(2) {

    min-width:
        0;

    flex:
        1;
}


.sdg-contact-location span {

    display:
        block;

    margin-bottom:
        3px;

    color:
        var(--sdg-blue);

    font-size:
        13px;

    font-weight:
        700;
}


.sdg-contact-location p {

    margin:
        0;

    color:
        var(--sdg-text-light);

    font-size:
        11px;

    line-height:
        1.5;
}


/* =========================================================
   MAP BUTTON
========================================================= */

.sdg-contact-map-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        7px;

    flex:
        0 0 auto;

    padding:
        10px 14px;

    border-radius:
        8px;

    background:
        var(--sdg-green);

    color:
        #ffffff;

    font-size:
        10px;

    font-weight:
        700;

    text-decoration:
        none;

    white-space:
        nowrap;

    transition:
        background 0.2s ease;
}


.sdg-contact-map-button:hover {

    background:
        var(--sdg-green-dark);

    color:
        #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .sdg-contact-grid {

        gap:
            12px;
    }


    .sdg-contact-card {

        gap:
            11px;

        padding:
            19px 15px;
    }


    .sdg-contact-icon {

        width:
            42px;

        height:
            42px;

        flex-basis:
            42px;

        font-size:
            17px;
    }


    .sdg-contact-content h2 {

        font-size:
            15px;
    }


    .sdg-contact-content p {

        font-size:
            11px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sdg-contact-intro {

        padding:
            0 10px;

        font-size:
            12px;
    }


    .sdg-contact-grid {

        grid-template-columns:
            1fr;

        gap:
            9px;

        margin-top:
            25px;
    }


    .sdg-contact-card {

        width:
            100%;

        padding:
            14px;

        gap:
            11px;

        border-radius:
            11px;
    }


    .sdg-contact-card:hover {

        transform:
            none;
    }


    .sdg-contact-icon {

        width:
            40px;

        height:
            40px;

        flex-basis:
            40px;

        border-radius:
            9px;

        font-size:
            16px;
    }


    .sdg-contact-label {

        font-size:
            7px;
    }


    .sdg-contact-content h2 {

        margin-bottom:
            5px;

        font-size:
            14px;
    }


    .sdg-contact-content p {

        font-size:
            10px;

        line-height:
            1.5;
    }


    .sdg-contact-details {

        gap:
            5px;
    }


    .sdg-contact-details a {

        font-size:
            12px;
    }


    .sdg-contact-link {

        margin-top:
            8px;

        font-size:
            9px;
    }


    /* =====================================================
       LOCATION ON MOBILE
    ====================================================== */

    .sdg-contact-location {

        align-items:
            flex-start;

        flex-wrap:
            wrap;

        gap:
            11px;

        margin-top:
            12px;

        padding:
            13px;

        border-radius:
            11px;
    }


    .sdg-contact-location-icon {

        width:
            38px;

        height:
            38px;

        flex-basis:
            38px;

        font-size:
            15px;
    }


    .sdg-contact-location > div:nth-child(2) {

        flex:
            1;

        padding-top:
            2px;
    }


    .sdg-contact-location span {

        font-size:
            11px;
    }


    .sdg-contact-location p {

        font-size:
            9px;
    }


    .sdg-contact-map-button {

        width:
            100%;

        padding:
            9px;

        font-size:
            9px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .sdg-contact-card {

        padding:
            12px;
    }


    .sdg-contact-icon {

        width:
            36px;

        height:
            36px;

        flex-basis:
            36px;

        font-size:
            14px;
    }


    .sdg-contact-content h2 {

        font-size:
            13px;
    }


    .sdg-contact-details a {

        font-size:
            11px;
    }

}
/* =========================================================
   ABOUT SDG PAGE
========================================================= */

.sdg-about-page {
    background: #ffffff;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.sdg-about-page-content {

    max-width: 1000px;

    margin: 35px auto 0;
}


.sdg-about-page-content p {

    margin: 0 0 18px;

    color: var(--sdg-text-light);

    font-size: 15px;

    line-height: 1.75;
}


.sdg-about-page-content .sdg-about-lead {

    color: #333333;

    font-size: 18px;

    line-height: 1.7;

    font-weight: 500;
}


/* =========================================================
   MISSION HIGHLIGHT
========================================================= */

.sdg-about-highlight {

    display: flex;

    align-items: center;

    gap: 20px;

    max-width: 1000px;

    margin: 35px auto;

    padding: 25px 28px;

    background: #f5faf4;

    border-left: 4px solid var(--sdg-green);

    border-radius: 12px;
}


.sdg-about-highlight-icon {

    width: 58px;

    height: 58px;

    flex: 0 0 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--sdg-green);

    color: #ffffff;

    font-size: 23px;
}


.sdg-about-highlight-label {

    display: block;

    margin-bottom: 3px;

    color: var(--sdg-green);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.sdg-about-highlight h2 {

    margin: 0 0 7px;

    color: var(--sdg-blue);

    font-size: 21px;
}


.sdg-about-highlight p {

    margin: 0;

    color: var(--sdg-text-light);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   TWO COLUMN ABOUT SECTION
========================================================= */

.sdg-about-two-column {

    display: grid;

    grid-template-columns:
        1.6fr 1fr;

    gap: 30px;

    align-items: stretch;

    margin-top: 45px;
}


.sdg-about-text-block {

    padding-right: 15px;
}


.sdg-about-label {

    display: block;

    margin-bottom: 6px;

    color: var(--sdg-green);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.sdg-about-text-block h2 {

    margin: 0 0 15px;

    color: var(--sdg-blue);

    font-size: 27px;

    line-height: 1.25;
}


.sdg-about-text-block p {

    margin: 0 0 15px;

    color: var(--sdg-text-light);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   INITIATIVE CARD
========================================================= */

.sdg-about-initiative-card {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 30px;

    background: #f7faf6;

    border: 1px solid #e0e8df;

    border-radius: 16px;
}


.sdg-about-initiative-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 16px;

    border-radius: 50%;

    background: var(--sdg-green-light);

    color: var(--sdg-green);

    font-size: 24px;
}


.sdg-about-initiative-card h3 {

    margin: 0 0 10px;

    color: var(--sdg-blue);

    font-size: 20px;
}


.sdg-about-initiative-card p {

    margin: 0;

    color: var(--sdg-text-light);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   WHAT ARE SDGs
========================================================= */

.sdg-about-sdgs-section {

    margin-top: 55px;

    padding-top: 45px;

    border-top: 1px solid #e5ebe5;
}


.sdg-about-section-heading {

    margin-bottom: 22px;
}


.sdg-about-section-heading.center {

    text-align: center;
}


.sdg-about-section-heading h2 {

    margin: 0;

    color: var(--sdg-blue);

    font-size: 28px;
}


.sdg-about-section-heading > p {

    max-width: 800px;

    margin: 10px auto 0;

    color: var(--sdg-text-light);

    font-size: 13px;

    line-height: 1.65;
}


.sdg-about-sdgs-content {

    max-width: 1000px;

    margin: 0 auto;
}


.sdg-about-sdgs-content p {

    margin: 0 0 17px;

    color: var(--sdg-text-light);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   SDG PRINCIPLES
========================================================= */

.sdg-about-principles {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    margin-top: 30px;
}


.sdg-about-principle {

    padding: 22px 20px;

    background: #f8faf8;

    border: 1px solid #e3e9e3;

    border-radius: 13px;

    text-align: center;
}


.sdg-about-principle > i {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 12px;

    border-radius: 50%;

    background: var(--sdg-green-light);

    color: var(--sdg-green);

    font-size: 18px;
}


.sdg-about-principle h3 {

    margin: 0 0 7px;

    color: var(--sdg-blue);

    font-size: 15px;
}


.sdg-about-principle p {

    margin: 0;

    color: var(--sdg-text-light);

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   SDG CORE TEAM
========================================================= */

.sdg-core-team-section {

    margin-top: 55px;

    padding-top: 45px;

    border-top: 1px solid #e5ebe5;
}


.sdg-core-team-note {

    max-width: 850px;

    margin: 25px auto 0;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px 25px;

    background: #f5faf4;

    border: 1px solid #dfe9de;

    border-radius: 14px;
}


.sdg-core-team-icon {

    width: 52px;

    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--sdg-green);

    color: #ffffff;

    font-size: 20px;
}


.sdg-core-team-note h3 {

    margin: 0 0 5px;

    color: var(--sdg-blue);

    font-size: 17px;
}


.sdg-core-team-note p {

    margin: 0;

    color: var(--sdg-text-light);

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   BOTTOM NAVIGATION
   SDG DEAN + SDG TEAM
========================================================= */

.sdg-about-navigation {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin-top: 45px;

    padding-top: 35px;

    border-top: 1px solid #e5ebe5;
}


.sdg-about-navigation-card {

    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 0;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #dfe7df;

    border-radius: 14px;

    text-decoration: none;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.sdg-about-navigation-card:hover {

    transform:
        translateY(-3px);

    border-color:
        var(--sdg-green);

    box-shadow:
        0 9px 24px rgba(0, 0, 0, 0.09);
}


.sdg-about-navigation-icon {

    width: 52px;

    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--sdg-green-light);

    color: var(--sdg-green);

    font-size: 21px;
}


.sdg-about-navigation-content {

    min-width: 0;

    flex: 1;
}


.sdg-about-navigation-content > span {

    display: block;

    margin-bottom: 3px;

    color: var(--sdg-green);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.sdg-about-navigation-content h3 {

    margin: 0 0 4px;

    color: var(--sdg-blue);

    font-size: 18px;
}


.sdg-about-navigation-content p {

    margin: 0;

    color: var(--sdg-text-light);

    font-size: 11px;

    line-height: 1.45;
}


.sdg-about-navigation-arrow {

    width: 30px;

    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f0f5ef;

    color: var(--sdg-green);

    font-size: 11px;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


.sdg-about-navigation-card:hover
.sdg-about-navigation-arrow {

    transform:
        translateX(4px);

    background:
        var(--sdg-green);

    color:
        #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .sdg-about-page-content {

        margin-top:
            28px;
    }


    .sdg-about-page-content p {

        font-size:
            13px;
    }


    .sdg-about-page-content
    .sdg-about-lead {

        font-size:
            16px;
    }


    .sdg-about-two-column {

        gap:
            20px;
    }


    .sdg-about-text-block h2 {

        font-size:
            23px;
    }


    .sdg-about-principles {

        gap:
            10px;
    }


    .sdg-about-navigation {

        gap:
            12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sdg-about-page-content {

        margin-top:
            22px;
    }


    .sdg-about-page-content p {

        margin-bottom:
            13px;

        font-size:
            12px;

        line-height:
            1.6;
    }


    .sdg-about-page-content
    .sdg-about-lead {

        font-size:
            14px;

        line-height:
            1.6;
    }


    /* =====================================================
       MISSION
    ====================================================== */

    .sdg-about-highlight {

        align-items:
            flex-start;

        gap:
            12px;

        margin:
            25px 0;

        padding:
            17px;

        border-left-width:
            3px;

        border-radius:
            10px;
    }


    .sdg-about-highlight-icon {

        width:
            42px;

        height:
            42px;

        flex-basis:
            42px;

        font-size:
            17px;
    }


    .sdg-about-highlight-label {

        font-size:
            7px;
    }


    .sdg-about-highlight h2 {

        font-size:
            17px;
    }


    .sdg-about-highlight p {

        font-size:
            10px;

        line-height:
            1.5;
    }


    /* =====================================================
       TWO COLUMN → ONE COLUMN
    ====================================================== */

    .sdg-about-two-column {

        grid-template-columns:
            1fr;

        gap:
            15px;

        margin-top:
            30px;
    }


    .sdg-about-text-block {

        padding-right:
            0;
    }


    .sdg-about-text-block h2 {

        font-size:
            21px;
    }


    .sdg-about-text-block p {

        font-size:
            11px;

        line-height:
            1.6;
    }


    .sdg-about-initiative-card {

        padding:
            20px;

        border-radius:
            12px;
    }


    .sdg-about-initiative-icon {

        width:
            45px;

        height:
            45px;

        margin-bottom:
            12px;

        font-size:
            18px;
    }


    .sdg-about-initiative-card h3 {

        font-size:
            17px;
    }


    .sdg-about-initiative-card p {

        font-size:
            10px;
    }


    /* =====================================================
       WHAT ARE SDGs
    ====================================================== */

    .sdg-about-sdgs-section {

        margin-top:
            38px;

        padding-top:
            32px;
    }


    .sdg-about-section-heading h2 {

        font-size:
            22px;
    }


    .sdg-about-section-heading > p {

        font-size:
            11px;
    }


    .sdg-about-sdgs-content p {

        font-size:
            11px;

        line-height:
            1.6;
    }


    /* =====================================================
       PRINCIPLES
    ====================================================== */

    .sdg-about-principles {

        grid-template-columns:
            1fr;

        gap:
            9px;

        margin-top:
            20px;
    }


    .sdg-about-principle {

        display:
            grid;

        grid-template-columns:
            40px 1fr;

        grid-template-rows:
            auto auto;

        column-gap:
            12px;

        align-items:
            center;

        padding:
            13px;

        text-align:
            left;
    }


    .sdg-about-principle > i {

        grid-row:
            1 / 3;

        width:
            40px;

        height:
            40px;

        margin:
            0;

        font-size:
            16px;
    }


    .sdg-about-principle h3 {

        margin:
            0 0 3px;

        font-size:
            13px;
    }


    .sdg-about-principle p {

        font-size:
            9px;

        line-height:
            1.4;
    }


    /* =====================================================
       CORE TEAM
    ====================================================== */

    .sdg-core-team-section {

        margin-top:
            38px;

        padding-top:
            32px;
    }


    .sdg-core-team-note {

        align-items:
            flex-start;

        gap:
            11px;

        margin-top:
            18px;

        padding:
            15px;

        border-radius:
            10px;
    }


    .sdg-core-team-icon {

        width:
            40px;

        height:
            40px;

        flex-basis:
            40px;

        font-size:
            15px;
    }


    .sdg-core-team-note h3 {

        font-size:
            13px;
    }


    .sdg-core-team-note p {

        font-size:
            9px;

        line-height:
            1.45;
    }


    /* =====================================================
       DEAN + TEAM NAVIGATION
    ====================================================== */

    .sdg-about-navigation {

        grid-template-columns:
            1fr;

        gap:
            9px;

        margin-top:
            30px;

        padding-top:
            25px;
    }


    .sdg-about-navigation-card {

        gap:
            10px;

        padding:
            13px;

        border-radius:
            10px;
    }


    .sdg-about-navigation-card:hover {

        transform:
            none;
    }


    .sdg-about-navigation-icon {

        width:
            40px;

        height:
            40px;

        flex-basis:
            40px;

        border-radius:
            9px;

        font-size:
            16px;
    }


    .sdg-about-navigation-content > span {

        font-size:
            7px;
    }


    .sdg-about-navigation-content h3 {

        margin-bottom:
            2px;

        font-size:
            14px;
    }


    .sdg-about-navigation-content p {

        font-size:
            9px;

        line-height:
            1.4;
    }


    .sdg-about-navigation-arrow {

        width:
            26px;

        height:
            26px;

        flex-basis:
            26px;

        font-size:
            9px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .sdg-about-page-content
    .sdg-about-lead {

        font-size:
            13px;
    }


    .sdg-about-highlight h2 {

        font-size:
            16px;
    }


    .sdg-about-text-block h2 {

        font-size:
            19px;
    }


    .sdg-about-navigation-card {

        padding:
            11px;
    }


    .sdg-about-navigation-icon {

        width:
            36px;

        height:
            36px;

        flex-basis:
            36px;

        font-size:
            14px;
    }

}
/* =========================================================
   SDG DEAN PAGE
   DESKTOP : 50% IMAGE + 50% CONTENT
   MOBILE  : IMAGE ABOVE CONTENT
========================================================= */

.sdg-dean-section {
    background: #ffffff;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.sdg-dean-section .sdg-section-heading {
    margin-bottom: 0;
}


/* =========================================================
   DEAN PROFILE
========================================================= */

.sdg-dean-profile {

    display: grid;

    grid-template-columns: 50% 50%;

    width: 100%;

    margin-top: 30px;

    background: #ffffff;

    border: 1px solid #e1e8e1;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   IMAGE
========================================================= */

.sdg-dean-image {

    width: 100%;

    height: 100%;

    min-height: 420px;

    overflow: hidden;

    background: #f2f5f2;
}


.sdg-dean-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    max-width: 100%;

    transition: transform 0.4s ease;
}


.sdg-dean-profile:hover
.sdg-dean-image img {

    transform: scale(1.02);
}

/* =========================================================
   CONTENT
========================================================= */

.sdg-dean-content {

    width: 100%;

    min-width: 0;

    padding: 35px 38px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    box-sizing: border-box;
}


.sdg-dean-label {

    display: block;

    margin-bottom: 6px;

    color: var(--sdg-green);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.sdg-dean-content h2 {

    margin: 0 0 4px;

    color: var(--sdg-blue);

    font-size: 20px;

    font-weight: 800;

    line-height: 1.15;
}


.sdg-dean-content h3 {

    margin: 0;

    color: var(--sdg-green-dark);

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;
}


.sdg-dean-line {

    width: 50px;

    height: 3px;

    margin: 13px 0 16px;

    background: var(--sdg-green);

    border-radius: 3px;
}


.sdg-dean-content p {

    margin: 0 0 11px;

    color: var(--sdg-text-light);

    font-size: 12px;

    line-height: 1.6;
}


.sdg-dean-content .sdg-dean-intro {

    color: #444444;

    font-size: 14px;

    line-height: 1.6;

    font-weight: 500;
}



/* =========================================================
   GREEN/GOLD LINE
========================================================= */

.sdg-dean-line {

    width: 55px;

    height: 3px;

    margin: 14px 0 17px;

    background: var(--sdg-green);

    border-radius: 3px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.sdg-dean-content p {

    margin: 0 0 12px;

    color: var(--sdg-text-light);

    font-size: 13px;

    line-height: 1.65;
}


.sdg-dean-content .sdg-dean-intro {

    color: #3f3f3f;

    font-size: 15px;

    line-height: 1.65;

    font-weight: 500;
}


/* =========================================================
   LEADERSHIP HIGHLIGHTS
========================================================= */

.sdg-dean-highlights {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 9px;

    margin-top: 9px;
}


.sdg-dean-highlight {

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px;

    background: var(--sdg-green-light);

    border: 1px solid #dce9d9;

    border-radius: 9px;
}


.sdg-dean-highlight-icon {

    width: 32px;

    height: 32px;

    flex: 0 0 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: var(--sdg-green);

    color: #ffffff;

    font-size: 13px;
}


.sdg-dean-highlight strong {

    display: block;

    color: var(--sdg-blue);

    font-size: 10px;

    line-height: 1.3;
}


.sdg-dean-highlight span {

    display: block;

    margin-top: 2px;

    color: var(--sdg-text-light);

    font-size: 8px;

    line-height: 1.3;
}


/* =========================================================
   LEADERSHIP MESSAGE
========================================================= */

.sdg-dean-message {

    max-width: 1000px;

    margin: 28px auto 0;

    padding: 20px 24px;

    display: flex;

    align-items: center;

    gap: 16px;

    background: #f5faf4;

    border-left: 4px solid var(--sdg-green);

    border-radius: 11px;
}


.sdg-dean-message-icon {

    width: 48px;

    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--sdg-green);

    color: #ffffff;

    font-size: 18px;
}


.sdg-dean-message span {

    display: block;

    margin-bottom: 3px;

    color: var(--sdg-green);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.sdg-dean-message h2 {

    margin: 0 0 4px;

    color: var(--sdg-blue);

    font-size: 19px;
}


.sdg-dean-message p {

    margin: 0;

    color: var(--sdg-text-light);

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   BACK BUTTON
========================================================= */

.sdg-dean-back {

    margin-top: 24px;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .sdg-dean-profile {

        grid-template-columns: 50% 50%;

        margin-top: 25px;
    }


    .sdg-dean-image {

        min-height: 360px;
    }


    .sdg-dean-content {

        padding: 25px 24px;
    }


    .sdg-dean-content h2 {

        font-size: 25px;
    }


    .sdg-dean-content h3 {

        font-size: 14px;
    }


    .sdg-dean-content p {

        font-size: 10px;

        line-height: 1.5;
    }


    .sdg-dean-content .sdg-dean-intro {

        font-size: 12px;
    }


    .sdg-dean-highlight {

        padding: 7px 8px;
    }


    .sdg-dean-highlight-icon {

        width: 28px;

        height: 28px;

        flex-basis: 28px;
    }


    .sdg-dean-highlight strong {

        font-size: 9px;
    }


    .sdg-dean-highlight span {

        font-size: 7px;
    }

}


/* =========================================================
   MOBILE
   IMAGE AND CONTENT STACK
========================================================= */

@media (max-width: 767px) {

    .sdg-dean-profile {

        display: flex;

        flex-direction: column;

        width: 100%;

        margin-top: 22px;

        border-radius: 12px;

        overflow: hidden;
    }


    /* -----------------------------------------------------
       IMAGE
    ----------------------------------------------------- */

    .sdg-dean-image {

        display: block;

        width: 100%;

        height: auto;

        min-height: 0;

        aspect-ratio: 16 / 9;

        overflow: hidden;

        order: 1;
    }


    .sdg-dean-image img {

        display: block;

        width: 100%;

        height: 100%;

        max-width: 100%;

        object-fit: cover;

        object-position: center;

        transform: none !important;
    }


    /* -----------------------------------------------------
       CONTENT
    ----------------------------------------------------- */

    .sdg-dean-content {

        display: block;

        width: 100%;

        min-width: 0;

        padding: 20px 16px;

        box-sizing: border-box;

        order: 2;
    }


    .sdg-dean-label {

        font-size: 7px;
    }


    .sdg-dean-content h2 {

        font-size: 21px;

        line-height: 1.2;
    }


    .sdg-dean-content h3 {

        font-size: 13px;
    }


    .sdg-dean-line {

        width: 40px;

        height: 3px;

        margin: 10px 0 12px;
    }


    .sdg-dean-content .sdg-dean-intro {

        font-size: 12px;

        line-height: 1.55;
    }


    .sdg-dean-content p {

        font-size: 10px;

        line-height: 1.55;

        margin-bottom: 9px;
    }


    /* -----------------------------------------------------
       HIGHLIGHTS
    ----------------------------------------------------- */

    .sdg-dean-highlights {

        display: grid;

        grid-template-columns: 1fr;

        gap: 6px;

        margin-top: 8px;
    }


    .sdg-dean-highlight {

        width: 100%;

        min-width: 0;

        padding: 8px;

        box-sizing: border-box;

        border-radius: 8px;
    }


    .sdg-dean-highlight-icon {

        width: 30px;

        height: 30px;

        flex-basis: 30px;

        font-size: 12px;
    }


    .sdg-dean-highlight strong {

        font-size: 9px;
    }


    .sdg-dean-highlight span {

        font-size: 7px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .sdg-dean-content {

        padding: 18px 13px;
    }


    .sdg-dean-content h2 {

        font-size: 19px;
    }


    .sdg-dean-content h3 {

        font-size: 12px;
    }


    .sdg-dean-content .sdg-dean-intro {

        font-size: 11px;
    }


    .sdg-dean-content p {

        font-size: 9px;
    }

}
/* =========================================================
   SDG MEMBERS
========================================================= */

.sdg-members-section {
    background: #ffffff;
}


/* =========================================================
   INTRO
========================================================= */

.sdg-members-intro {

    max-width: 850px;

    margin: 12px auto 0;

    color: var(--sdg-text-light);

    font-size: 13px;

    line-height: 1.65;

    text-align: center;
}


/* =========================================================
   MEMBERS GRID
   DESKTOP = 5 COLUMNS
========================================================= */

.sdg-members-grid {

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 18px;

    margin-top: 35px;
}


/* =========================================================
   MEMBER CARD
========================================================= */

.sdg-member-card {

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e0e8df;

    border-radius: 13px;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.sdg-member-card:hover {

    transform:
        translateY(-4px);

    border-color:
        var(--sdg-green);

    box-shadow:
        0 9px 24px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   MEMBER IMAGE
========================================================= */

.sdg-member-image {
    width: 100%;
    aspect-ratio: 3 / 5;
    overflow: hidden;
    background: #f3f6f3;
}


.sdg-member-image img {

    display: block;

    width: 100%;

    height: 100%;

    max-width: 100%;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   MEMBER CONTENT
========================================================= */

.sdg-member-content {

    min-height: 78px;

    padding:
        11px 8px 12px;

    text-align: center;
}


.sdg-member-role {

    display: block;

    margin-bottom: 4px;

    color:
        var(--sdg-green);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .8px;

    line-height: 1.2;
}


.sdg-member-content h3 {

    margin:
        0 0 4px;

    color:
        var(--sdg-blue);

    font-size: 12px;

    font-weight: 700;

    line-height: 1.3;
}


.sdg-member-content p {

    margin: 0;

    color:
        var(--sdg-text-light);

    font-size: 9px;

    line-height: 1.3;
}


/* =========================================================
   TEAM SUMMARY
========================================================= */

.sdg-members-summary {

    max-width: 900px;

    margin: 35px auto 0;

    padding:
        20px 24px;

    display: flex;

    align-items: center;

    gap: 16px;

    background:
        #f5faf4;

    border-left:
        4px solid var(--sdg-green);

    border-radius:
        11px;
}


.sdg-members-summary-icon {

    width: 48px;

    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        var(--sdg-green);

    color:
        #ffffff;

    font-size: 18px;
}


.sdg-members-summary span {

    display: block;

    margin-bottom: 3px;

    color:
        var(--sdg-green);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.sdg-members-summary h2 {

    margin:
        0 0 4px;

    color:
        var(--sdg-blue);

    font-size: 18px;
}


.sdg-members-summary p {

    margin: 0;

    color:
        var(--sdg-text-light);

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   BACK BUTTON
========================================================= */

.sdg-members-back {

    margin-top: 25px;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .sdg-members-grid {

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap: 14px;
    }

}


@media (max-width: 900px) {

    .sdg-members-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sdg-members-intro {

        font-size: 11px;

        line-height: 1.55;
    }


    .sdg-members-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;

        margin-top: 25px;
    }


    .sdg-member-card {

        border-radius: 10px;
    }


    .sdg-member-card:hover {

        transform: none;

        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.05);
    }


    .sdg-member-content {

        min-height: 67px;

        padding:
            8px 5px 9px;
    }


    .sdg-member-role {

        font-size: 6px;

        margin-bottom: 3px;
    }


    .sdg-member-content h3 {

        font-size: 10px;

        line-height: 1.25;
    }


    .sdg-member-content p {

        font-size: 8px;
    }


    /* =====================================================
       SUMMARY
    ====================================================== */

    .sdg-members-summary {

        align-items: flex-start;

        gap: 10px;

        margin-top: 22px;

        padding: 14px;

        border-left-width: 3px;

        border-radius: 9px;
    }


    .sdg-members-summary-icon {

        width: 38px;

        height: 38px;

        flex-basis: 38px;

        font-size: 14px;
    }


    .sdg-members-summary span {

        font-size: 7px;
    }


    .sdg-members-summary h2 {

        font-size: 15px;
    }


    .sdg-members-summary p {

        font-size: 9px;

        line-height: 1.45;
    }


    .sdg-members-back {

        margin-top: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .sdg-members-grid {

        gap: 7px;
    }


    .sdg-member-content {

        min-height: 62px;

        padding:
            7px 4px 8px;
    }


    .sdg-member-content h3 {

        font-size: 9px;
    }


    .sdg-member-content p {

        font-size: 7px;
    }

}

/* =========================================================
   FINAL SDG NAVIGATION SAFETY OVERRIDES
========================================================= */

@media (max-width: 900px) {

    .sdg-desktop-navigation {
        display: none !important;
    }

    .sdg-mobile-menu-button {
        display: block !important;
    }

    .sdg-desktop-submenu {
        display: none !important;
    }

    .sdg-header {
        z-index: 1000;
    }

    .sdg-mobile-drawer {
        z-index: 2100;
    }

    .sdg-menu-overlay {
        z-index: 2000;
    }

}


@media (min-width: 901px) {

    .sdg-mobile-menu-button {
        display: none !important;
    }

    .sdg-mobile-drawer,
    .sdg-menu-overlay {
        display: none;
    }

}


@media (max-width: 480px) {

    .sdg-mobile-drawer {
        width: 88vw;
    }

    .sdg-mobile-menu-item {
        min-height: 54px;
        padding-left: 13px;
        padding-right: 13px;
    }

    .sdg-menu-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        margin-right: 10px;
    }

}
/* =========================================================
   SDG THREE FOUNDATION FRAMEWORK
   PEOPLE / PLANET / PROSPERITY
   ========================================================= */


/* =========================================================
   FOUNDATION PAGE
   ========================================================= */

.sdg-foundation-page {
    width: 100%;
    padding: 45px 20px 70px;
    box-sizing: border-box;
    background: #ffffff;
}

.sdg-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.sdg-section-heading {
    width: 100%;
    margin-bottom: 35px;
}

.sdg-section-heading.center {
    text-align: center;
}

.sdg-section-label {
    display: inline-block;
    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #1d7d35;
}

.sdg-section-heading h1 {
    margin: 0;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;

    color: #062f55;
}

.sdg-heading-line {
    width: 75px;
    height: 4px;

    margin: 16px auto 20px;

    background: #25833b;
    border-radius: 5px;
}

.sdg-foundation-intro {
    max-width: 850px;
    margin: 0 auto;

    font-size: 18px;
    line-height: 1.75;

    color: #4c5965;
}


/* =========================================================
   FOUNDATION HERO
   ========================================================= */

.sdg-foundation-hero {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 230px;

    margin: 0 0 45px;

    padding: 35px 45px;

    box-sizing: border-box;

    border-radius: 22px;

    position: relative;
    overflow: hidden;
}


/* PEOPLE */

.sdg-people-hero {
    background:
        linear-gradient(
            135deg,
            #eef7ff 0%,
            #ffffff 65%
        );

    border: 1px solid #d5e8f8;
}


/* PLANET */

.sdg-planet-hero {
    background:
        linear-gradient(
            135deg,
            #eef9f0 0%,
            #ffffff 65%
        );

    border: 1px solid #d8ebda;
}


/* PROSPERITY */

.sdg-prosperity-hero {
    background:
        linear-gradient(
            135deg,
            #fff7e8 0%,
            #ffffff 65%
        );

    border: 1px solid #f2dfbd;
}


/* =========================================================
   HERO ICON
   ========================================================= */

.sdg-foundation-hero-icon {
    width: 145px;
    height: 145px;

    flex: 0 0 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 40px;

    border-radius: 50%;

    font-size: 58px;

    color: #ffffff;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.12);
}


/* PEOPLE ICON */

.sdg-people-hero
.sdg-foundation-hero-icon {
    background: #1976c5;
}


/* PLANET ICON */

.sdg-planet-hero
.sdg-foundation-hero-icon {
    background: #41994d;
}


/* PROSPERITY ICON */

.sdg-prosperity-hero
.sdg-foundation-hero-icon {
    background: #f3911b;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.sdg-foundation-hero-content {
    flex: 1;
}

.sdg-foundation-hero-content span {
    display: inline-block;

    margin-bottom: 5px;

    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    color: #687680;
}

.sdg-foundation-hero-content h2 {
    margin: 0 0 10px;

    font-size: 38px;
    line-height: 1.15;

    font-weight: 800;
    text-transform: uppercase;

    color: #062f55;
}

.sdg-foundation-hero-content p {
    max-width: 750px;

    margin: 0;

    font-size: 19px;
    line-height: 1.7;

    color: #26343d;
}


/* =========================================================
   GENERAL FOUNDATION CONTENT
   ========================================================= */

.sdg-foundation-content {
    max-width: 1050px;

    margin: 0 auto 50px;

    padding: 0 10px;
}

.sdg-foundation-content h2 {
    margin: 0 0 18px;

    font-size: 30px;
    line-height: 1.25;

    color: #062f55;
}

.sdg-foundation-content p {
    margin: 0 0 16px;

    font-size: 17px;
    line-height: 1.8;

    color: #4a5660;
}


/* =========================================================
   FOUNDATION GOALS
   ========================================================= */

.sdg-foundation-goals {
    width: 100%;
    margin: 0 0 50px;
}

.sdg-foundation-goals > h2 {
    margin: 0 0 25px;

    text-align: center;

    font-size: 30px;
    font-weight: 800;

    color: #062f55;
}


/* =========================================================
   GOAL GRID
   ========================================================= */

.sdg-foundation-goal-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    width: 100%;
}


/* =========================================================
   FOUNDATION GOAL CARD
   ========================================================= */

.sdg-foundation-goal-card {
    display: flex;
    align-items: flex-start;

    min-height: 145px;

    padding: 22px;

    box-sizing: border-box;

    text-decoration: none !important;

    background: #ffffff;

    border: 1px solid #dfe6eb;

    border-radius: 15px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.sdg-foundation-goal-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.10);

    border-color: #8bb8d8;
}


/* =========================================================
   GOAL NUMBER
   ========================================================= */

.sdg-goal-number {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 18px;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 800;

    color: #ffffff;

    background: #06345c;
}


/* =========================================================
   GOAL CARD CONTENT
   ========================================================= */

.sdg-foundation-goal-card h3 {
    margin: 0 0 7px;

    font-size: 20px;
    line-height: 1.3;

    font-weight: 750;

    color: #173b57;
}

.sdg-foundation-goal-card p {
    margin: 0;

    font-size: 15px;
    line-height: 1.55;

    color: #66737c;
}


/* =========================================================
   FOUNDATION MESSAGE
   ========================================================= */

.sdg-foundation-message {
    display: flex;
    align-items: flex-start;

    width: 100%;

    margin-top: 20px;

    padding: 28px 32px;

    box-sizing: border-box;

    border-radius: 16px;

    background: #f4f8fb;

    border-left: 5px solid #1d7d35;
}

.sdg-foundation-message > i {
    flex: 0 0 48px;

    margin-right: 20px;

    font-size: 38px;

    color: #25833b;
}

.sdg-foundation-message h3 {
    margin: 0 0 8px;

    font-size: 23px;

    color: #062f55;
}

.sdg-foundation-message p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: #53616a;
}


/* =========================================================
   THREE FOUNDATION MAIN PAGE
   ========================================================= */

.sdg-foundations-page {
    background: #ffffff;
}


/* =========================================================
   INTRODUCTION BOX
   ========================================================= */

.sdg-framework-introduction {
    max-width: 1050px;

    margin: 0 auto 45px;

    padding: 30px 35px;

    box-sizing: border-box;

    background: #f7fafc;

    border: 1px solid #e1e8ed;

    border-radius: 16px;
}

.sdg-framework-introduction h2 {
    margin: 0 0 16px;

    font-size: 28px;

    color: #062f55;
}

.sdg-framework-introduction p {
    margin: 0 0 14px;

    font-size: 17px;
    line-height: 1.8;

    color: #4d5a63;
}

.sdg-framework-introduction p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   THREE MAIN CARDS
   ========================================================= */

.sdg-foundation-three-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    width: 100%;

    margin: 0 auto 55px;
}


/* =========================================================
   MAIN FOUNDATION CARD
   ========================================================= */

.sdg-foundation-main-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 550px;

    padding: 30px 30px 28px;

    box-sizing: border-box;

    text-decoration: none !important;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.sdg-foundation-main-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.13);
}


/* =========================================================
   MAIN CARD TOP BORDER
   ========================================================= */

.sdg-people-card {
    border: 1px solid #d5e8f8;
    border-top: 6px solid #1976c5;
}

.sdg-planet-card {
    border: 1px solid #d8ebda;
    border-top: 6px solid #41994d;
}

.sdg-prosperity-card {
    border: 1px solid #f2dfbd;
    border-top: 6px solid #f3911b;
}


/* =========================================================
   MAIN CARD ICON
   ========================================================= */

.sdg-foundation-main-icon {
    width: 95px;
    height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    font-size: 42px;

    color: #ffffff;
}

.sdg-people-card
.sdg-foundation-main-icon {
    background: #1976c5;
}

.sdg-planet-card
.sdg-foundation-main-icon {
    background: #41994d;
}

.sdg-prosperity-card
.sdg-foundation-main-icon {
    background: #f3911b;
}


/* =========================================================
   MAIN CARD COUNT
   ========================================================= */

.sdg-foundation-count {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: #687680;
}


/* =========================================================
   MAIN CARD TITLE
   ========================================================= */

.sdg-foundation-main-card h2 {
    margin: 0 0 12px;

    font-size: 31px;
    line-height: 1.15;

    font-weight: 800;

    letter-spacing: 0.5px;
}

.sdg-people-card h2 {
    color: #1976c5;
}

.sdg-planet-card h2 {
    color: #27803b;
}

.sdg-prosperity-card h2 {
    color: #ed8610;
}


/* =========================================================
   CARD LINE
   ========================================================= */

.sdg-foundation-card-line {
    width: 100%;
    height: 2px;

    margin-bottom: 18px;

    background: #d9e3e9;
}


/* =========================================================
   MAIN CARD DESCRIPTION
   ========================================================= */

.sdg-foundation-main-card > p {
    margin: 0 0 20px;

    font-size: 16px;
    line-height: 1.65;

    color: #3e4a52;
}


/* =========================================================
   GOAL LIST
   ========================================================= */

.sdg-foundation-goal-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 5px;
}

.sdg-foundation-goal-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 57px;
    min-height: 30px;

    padding: 5px 10px;

    box-sizing: border-box;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 700;

    color: #ffffff;
}


/* PEOPLE */

.sdg-people-card
.sdg-foundation-goal-list span {
    background: #1976c5;
}


/* PLANET */

.sdg-planet-card
.sdg-foundation-goal-list span {
    background: #41994d;
}


/* PROSPERITY */

.sdg-prosperity-card
.sdg-foundation-goal-list span {
    background: #f3911b;
}


/* =========================================================
   EXPLORE LINK
   ========================================================= */

.sdg-foundation-link {
    display: block;

    margin-top: auto;
    padding-top: 28px;

    font-size: 16px;
    font-weight: 800;
}

.sdg-people-card
.sdg-foundation-link {
    color: #1976c5;
}

.sdg-planet-card
.sdg-foundation-link {
    color: #27803b;
}

.sdg-prosperity-card
.sdg-foundation-link {
    color: #ed8610;
}


/* =========================================================
   FRAMEWORK EXPLANATION
   ========================================================= */

.sdg-framework-explanation {
    display: flex;
    align-items: flex-start;

    max-width: 1050px;

    margin: 0 auto 50px;

    padding: 30px 35px;

    box-sizing: border-box;

    background: #f7fafc;

    border-radius: 18px;

    border: 1px solid #dfe7ed;
}

.sdg-framework-icon {
    width: 65px;
    height: 65px;

    flex: 0 0 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 25px;

    border-radius: 50%;

    background: #06345c;

    color: #ffffff;

    font-size: 28px;
}

.sdg-framework-explanation h2 {
    margin: 0 0 12px;

    font-size: 27px;

    color: #062f55;
}

.sdg-framework-explanation p {
    margin: 0 0 12px;

    font-size: 16px;
    line-height: 1.75;

    color: #53616a;
}

.sdg-framework-explanation p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FRAMEWORK SUMMARY
   ========================================================= */

.sdg-framework-summary {
    text-align: center;

    margin: 0 auto 40px;
}

.sdg-framework-summary h2 {
    margin: 0 0 10px;

    font-size: 30px;

    color: #062f55;
}

.sdg-framework-summary > p {
    max-width: 750px;

    margin: 0 auto 28px;

    font-size: 17px;
    line-height: 1.7;

    color: #59666f;
}


/* =========================================================
   STAT GRID
   ========================================================= */

.sdg-framework-stat-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    max-width: 950px;

    margin: 0 auto;
}

.sdg-framework-stat-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 125px;

    padding: 20px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #dfe7ed;

    border-radius: 14px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.05);
}

.sdg-framework-stat-grid strong {
    display: block;

    margin-bottom: 5px;

    font-size: 38px;
    line-height: 1;

    color: #06345c;
}

.sdg-framework-stat-grid span {
    font-size: 14px;
    line-height: 1.4;

    color: #687680;
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.sdg-framework-action {
    text-align: center;

    margin-top: 35px;
}

.sdg-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 12px 25px;

    box-sizing: border-box;

    border-radius: 8px;

    text-decoration: none !important;

    font-size: 16px;
    font-weight: 700;

    color: #ffffff !important;

    background: #06345c;

    box-shadow:
        0 5px 15px rgba(6, 52, 92, 0.18);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.sdg-primary-button i {
    margin-right: 9px;
}

.sdg-primary-button:hover {
    color: #ffffff !important;

    background: #0a4778;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(6, 52, 92, 0.25);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sdg-foundation-page {
        padding: 35px 18px 55px;
    }


    .sdg-section-heading h1 {
        font-size: 36px;
    }


    .sdg-foundation-three-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }


    .sdg-foundation-three-grid
    .sdg-prosperity-card {
        grid-column: 1 / -1;

        max-width: 520px;

        width: 100%;

        margin: 0 auto;
    }


    .sdg-foundation-hero {
        padding: 30px;
    }


    .sdg-foundation-hero-icon {
        width: 120px;
        height: 120px;

        flex-basis: 120px;

        font-size: 48px;

        margin-right: 30px;
    }


    .sdg-foundation-hero-content h2 {
        font-size: 32px;
    }


    .sdg-framework-stat-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sdg-foundation-page {
        padding: 28px 12px 45px;
    }


    .sdg-section-heading {
        margin-bottom: 25px;
    }


    .sdg-section-heading h1 {
        font-size: 30px;
    }


    .sdg-section-label {
        font-size: 12px;
    }


    .sdg-heading-line {
        width: 60px;
        height: 3px;

        margin: 12px auto 15px;
    }


    .sdg-foundation-intro {
        font-size: 16px;
        line-height: 1.65;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .sdg-foundation-hero {
        flex-direction: column;

        text-align: center;

        min-height: auto;

        padding: 30px 20px;

        margin-bottom: 32px;
    }


    .sdg-foundation-hero-icon {
        width: 105px;
        height: 105px;

        flex-basis: 105px;

        margin: 0 0 18px;

        font-size: 42px;
    }


    .sdg-foundation-hero-content {
        width: 100%;
    }


    .sdg-foundation-hero-content h2 {
        font-size: 30px;
    }


    .sdg-foundation-hero-content p {
        font-size: 16px;
        line-height: 1.6;
    }


    /* -----------------------------------------------------
       CONTENT
    ----------------------------------------------------- */

    .sdg-foundation-content {
        margin-bottom: 35px;
    }


    .sdg-foundation-content h2 {
        font-size: 25px;
    }


    .sdg-foundation-content p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* -----------------------------------------------------
       GOAL GRID
    ----------------------------------------------------- */

    .sdg-foundation-goal-grid {
        grid-template-columns:
            1fr;

        gap: 14px;
    }


    .sdg-foundation-goals > h2 {
        font-size: 25px;
    }


    .sdg-foundation-goal-card {
        min-height: auto;

        padding: 18px;
    }


    .sdg-goal-number {
        width: 52px;
        height: 52px;

        flex-basis: 52px;

        margin-right: 14px;

        font-size: 16px;
    }


    .sdg-foundation-goal-card h3 {
        font-size: 17px;
    }


    .sdg-foundation-goal-card p {
        font-size: 14px;
    }


    /* -----------------------------------------------------
       MESSAGE
    ----------------------------------------------------- */

    .sdg-foundation-message {
        padding: 22px 18px;
    }


    .sdg-foundation-message > i {
        flex-basis: 38px;

        margin-right: 14px;

        font-size: 30px;
    }


    .sdg-foundation-message h3 {
        font-size: 20px;
    }


    .sdg-foundation-message p {
        font-size: 14px;
        line-height: 1.65;
    }


    /* -----------------------------------------------------
       THREE FOUNDATION CARDS
    ----------------------------------------------------- */

    .sdg-foundation-three-grid {
        grid-template-columns:
            1fr;

        gap: 18px;
    }


    .sdg-foundation-three-grid
    .sdg-prosperity-card {
        grid-column: auto;

        max-width: none;
    }


    .sdg-foundation-main-card {
        min-height: auto;

        padding: 25px 22px;
    }


    .sdg-foundation-main-icon {
        width: 82px;
        height: 82px;

        margin-bottom: 16px;

        font-size: 36px;
    }


    .sdg-foundation-main-card h2 {
        font-size: 27px;
    }


    .sdg-foundation-main-card > p {
        font-size: 15px;
    }


    /* -----------------------------------------------------
       FRAMEWORK INTRODUCTION
    ----------------------------------------------------- */

    .sdg-framework-introduction {
        padding: 23px 20px;

        margin-bottom: 30px;
    }


    .sdg-framework-introduction h2 {
        font-size: 24px;
    }


    .sdg-framework-introduction p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* -----------------------------------------------------
       FRAMEWORK EXPLANATION
    ----------------------------------------------------- */

    .sdg-framework-explanation {
        flex-direction: column;

        padding: 24px 20px;
    }


    .sdg-framework-icon {
        width: 55px;
        height: 55px;

        flex-basis: 55px;

        margin: 0 0 18px;

        font-size: 24px;
    }


    .sdg-framework-explanation h2 {
        font-size: 23px;
    }


    .sdg-framework-explanation p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* -----------------------------------------------------
       STATS
    ----------------------------------------------------- */

    .sdg-framework-stat-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    .sdg-framework-stat-grid > div {
        min-height: 105px;

        padding: 15px 10px;
    }


    .sdg-framework-stat-grid strong {
        font-size: 31px;
    }


    .sdg-framework-stat-grid span {
        font-size: 12px;
    }


    .sdg-primary-button {
        width: 100%;

        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .sdg-foundation-page {
        padding-left: 8px;
        padding-right: 8px;
    }


    .sdg-section-heading h1 {
        font-size: 27px;
    }


    .sdg-foundation-hero {
        padding: 25px 16px;
    }


    .sdg-foundation-hero-icon {
        width: 92px;
        height: 92px;

        flex-basis: 92px;

        font-size: 36px;
    }


    .sdg-foundation-hero-content h2 {
        font-size: 27px;
    }


    .sdg-foundation-hero-content p {
        font-size: 15px;
    }


    .sdg-foundation-goal-card {
        padding: 16px;
    }


    .sdg-goal-number {
        width: 46px;
        height: 46px;

        flex-basis: 46px;

        margin-right: 12px;

        font-size: 14px;
    }


    .sdg-foundation-goal-card h3 {
        font-size: 16px;
    }


    .sdg-foundation-goal-card p {
        font-size: 13px;
    }


    .sdg-foundation-main-card {
        padding: 22px 18px;
    }


    .sdg-foundation-main-card h2 {
        font-size: 25px;
    }


    .sdg-foundation-goal-list {
        gap: 6px;
    }


    .sdg-foundation-goal-list span {
        min-width: 51px;

        font-size: 11px;
    }


    .sdg-framework-stat-grid {
        grid-template-columns:
            1fr 1fr;
    }

}
/* =========================================================
   SDG FOUNDATION REFERENCE IMAGE
   FULLY CENTERED - DESKTOP / TABLET / MOBILE
========================================================= */

.sdg-foundation-image-wrapper {
    width: 100% !important;
    max-width: 1200px !important;

    margin: 0 auto 25px auto !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;

    float: none !important;
}


/* =========================================================
   IMAGE
========================================================= */

.sdg-foundation-image {
    display: block !important;

    width: 90% !important;
    max-width: 1100px !important;

    height: auto !important;

    margin: 0 auto !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    object-fit: contain !important;

    float: none !important;

    border: 0 !important;

    border-radius: 10px !important;

    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.sdg-foundation-image-caption {
    width: 100% !important;

    margin: 12px auto 35px auto !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;

    float: none !important;
}


.sdg-foundation-image-caption strong {
    display: block !important;

    margin: 0 0 5px 0 !important;

    font-size: 17px;

    line-height: 1.4;

    color: #06345c;
}


.sdg-foundation-image-caption span {
    display: block !important;

    margin: 0 !important;

    font-size: 14px;

    line-height: 1.5;

    color: #687680;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sdg-foundation-image-wrapper {
        width: 100% !important;

        max-width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;

        padding: 0 10px !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;
    }


    .sdg-foundation-image {
        display: block !important;

        width: 95% !important;

        max-width: 100% !important;

        height: auto !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sdg-foundation-image-wrapper {
        width: 100% !important;

        max-width: 100% !important;

        margin: 0 auto 18px auto !important;

        padding: 0 5px !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        text-align: center !important;
    }


    .sdg-foundation-image {
        display: block !important;

        width: 100% !important;

        max-width: 100% !important;

        height: auto !important;

        margin: 0 auto !important;

        padding: 0 !important;

        object-fit: contain !important;

        border-radius: 7px !important;
    }


    .sdg-foundation-image-caption {
        width: 100% !important;

        margin: 10px auto 28px auto !important;

        padding: 0 8px !important;

        text-align: center !important;

        align-items: center !important;
    }


    .sdg-foundation-image-caption strong {
        font-size: 15px;

        line-height: 1.4;
    }


    .sdg-foundation-image-caption span {
        font-size: 12px;

        line-height: 1.5;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .sdg-foundation-image-wrapper {
        width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;

        padding: 0 !important;
    }


    .sdg-foundation-image {
        width: 100% !important;

        max-width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;

        border-radius: 5px !important;
    }


    .sdg-foundation-image-caption {
        margin-top: 8px !important;
        margin-bottom: 24px !important;

        padding-left: 5px !important;
        padding-right: 5px !important;
    }

}
/* =========================================================
   SDG PEOPLE PAGE
========================================================= */

.sdg-people-page {
    width: 100%;
}


/* =========================================================
   PEOPLE INTRODUCTION
========================================================= */

.sdg-people-introduction {
    display: flex;
    align-items: center;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto 45px auto;
    padding: 25px 30px;

    box-sizing: border-box;

    background: #f5f9fc;

    border-left: 5px solid #1976c5;

    border-radius: 10px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.05);
}


.sdg-people-introduction-icon {
    flex: 0 0 65px;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 22px;

    border-radius: 50%;

    background: #e4f1fb;

    color: #1976c5;

    font-size: 28px;
}


.sdg-people-introduction h2 {
    margin: 0 0 8px 0;

    font-size: 24px;

    line-height: 1.3;

    color: #06345c;
}


.sdg-people-introduction p {
    margin: 0;

    font-size: 16px;

    line-height: 1.75;

    color: #58656d;
}


/* =========================================================
   PEOPLE GOAL CARD
========================================================= */

.sdg-people-goal-card {
    display: grid;

    grid-template-columns: 38% 62%;

    width: 100%;
    max-width: 1150px;

    margin: 0 auto 40px auto;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5eaee;

    border-radius: 12px;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   GOAL IMAGE
========================================================= */

.sdg-people-goal-image {
    min-height: 320px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #f5f7f8;
}


.sdg-people-goal-image img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 320px;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.35s ease;
}


.sdg-people-goal-card:hover
.sdg-people-goal-image img {
    transform: scale(1.025);
}


/* =========================================================
   GOAL CONTENT
========================================================= */

.sdg-people-goal-content {
    padding: 30px 35px;

    box-sizing: border-box;
}


/* =========================================================
   GOAL HEADING
========================================================= */

.sdg-people-goal-heading {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}


.sdg-people-goal-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-width: 65px;
    min-height: 42px;

    padding: 7px 12px;

    box-sizing: border-box;

    border-radius: 7px;

    background: #06345c;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;
}


.sdg-people-goal-heading h2 {
    margin: 0;

    font-size: 27px;

    line-height: 1.25;

    color: #06345c;
}


/* =========================================================
   CONTENT HEADINGS
========================================================= */

.sdg-people-goal-content h3 {
    margin: 20px 0 10px 0;

    font-size: 17px;

    line-height: 1.4;

    color: #1976c5;
}


/* =========================================================
   LIST
========================================================= */

.sdg-people-goal-content ul {
    margin: 0 0 12px 0;

    padding-left: 21px;
}


.sdg-people-goal-content li {
    margin-bottom: 8px;

    font-size: 14px;

    line-height: 1.65;

    color: #56636b;
}


.sdg-focus-list {
    list-style: none;

    padding-left: 0 !important;
}


.sdg-focus-list li {
    position: relative;

    padding-left: 22px;
}


.sdg-focus-list li::before {
    content: "▸";

    position: absolute;

    left: 0;
    top: 0;

    color: #1976c5;

    font-weight: 700;
}


/* =========================================================
   EVENT LINK
========================================================= */

.sdg-people-event-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 12px;

    padding: 10px 17px;

    border-radius: 6px;

    background: #06345c;

    color: #ffffff !important;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.sdg-people-event-link:hover {
    background: #1976c5;

    transform: translateY(-2px);

    color: #ffffff !important;
}


/* =========================================================
   PEOPLE MESSAGE
========================================================= */

.sdg-people-page .sdg-foundation-message {
    display: flex;

    align-items: flex-start;

    max-width: 1100px;

    margin: 50px auto 40px auto;

    padding: 28px 30px;

    box-sizing: border-box;

    background: #f5f9fc;

    border-radius: 10px;

    border: 1px solid #e0e9ef;
}


.sdg-people-page .sdg-foundation-message > i {
    flex: 0 0 48px;

    margin-right: 20px;

    font-size: 30px;

    color: #1976c5;
}


.sdg-people-page .sdg-foundation-message h3 {
    margin: 0 0 8px 0;

    color: #06345c;

    font-size: 21px;
}


.sdg-people-page .sdg-foundation-message p {
    margin: 0;

    color: #58656d;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   FOUNDATION NAVIGATION
========================================================= */

.sdg-foundation-navigation{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;

    width:100%;
    max-width:900px;

    margin:40px auto 20px;
    padding:0;
}

.sdg-foundation-nav-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:220px;
    height:54px;
    padding:0 24px;

    border-radius:8px;
    border:2px solid #0b3b69;

    background:#ffffff;
    color:#0b3b69 !important;

    font-size:16px;
    font-weight:700;
    text-decoration:none !important;

    transition:all .25s ease;
}

.sdg-foundation-nav-button i{
    font-size:18px;
}

.sdg-foundation-nav-button:hover{
    background:#0b3b69;
    color:#ffffff !important;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(11,59,105,.18);
}


/* ================= MOBILE ================= */

@media (max-width:768px){

    .sdg-foundation-navigation{
        flex-direction:column;
        gap:12px;
    }

    .sdg-foundation-nav-button{
        width:100%;
        max-width:320px;
        min-width:unset;
    }

}


    /* -----------------------------------------
       GOAL CARD
    ----------------------------------------- */

    .sdg-people-goal-card {
        display: flex;

        flex-direction: column;

        width: 100%;

        margin-bottom: 25px;

        border-radius: 9px;
    }


    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .sdg-people-goal-image {
        width: 100%;

        min-height: auto;

        height: auto;

        display: flex;

        align-items: center;
        justify-content: center;
    }


    .sdg-people-goal-image img {
        display: block;

        width: 100%;

        height: auto;

        min-height: 0;

        max-height: none;

        object-fit: contain;

        object-position: center;

        transform: none !important;
    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .sdg-people-goal-content {
        width: 100%;

        padding: 22px 20px;
    }


    .sdg-people-goal-heading {
        align-items: flex-start;

        gap: 10px;

        margin-bottom: 15px;
    }


    .sdg-people-goal-number {
        min-width: 55px;

        min-height: 38px;

        padding: 6px 9px;

        font-size: 13px;
    }


    .sdg-people-goal-heading h2 {
        font-size: 21px;

        line-height: 1.3;
    }


    .sdg-people-goal-content h3 {
        margin-top: 17px;

        font-size: 16px;
    }


    .sdg-people-goal-content li {
        font-size: 13px;

        line-height: 1.6;
    }


    .sdg-people-event-link {
        font-size: 12px;

        padding: 9px 13px;
    }


    /* -----------------------------------------
       MESSAGE
    ----------------------------------------- */

    .sdg-people-page .sdg-foundation-message {
        display: block;

        margin-top: 30px;

        padding: 22px 20px;

        text-align: center;
    }


    .sdg-people-page
    .sdg-foundation-message > i {
        display: block;

        margin: 0 auto 12px auto;
    }


    .sdg-people-page .sdg-foundation-message h3 {
        font-size: 19px;
    }


    .sdg-people-page .sdg-foundation-message p {
        font-size: 13px;

        line-height: 1.65;
    }


    /* -----------------------------------------
       NAVIGATION
    ----------------------------------------- */

    .sdg-people-page .sdg-foundation-navigation {
        grid-template-columns: 1fr;

        gap: 10px;

        width: 100%;
    }


    .sdg-people-page
    .sdg-foundation-nav-button {
        min-height: 48px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .sdg-people-goal-content {
        padding: 18px 16px;
    }


    .sdg-people-goal-heading h2 {
        font-size: 19px;
    }


    .sdg-people-goal-content h3 {
        font-size: 15px;
    }


    .sdg-people-goal-content li {
        font-size: 12.5px;
    }

}
/* =========================================================
   SDG PLANET PAGE
========================================================= */

.sdg-planet-page {
    width: 100%;
}


/* =========================================================
   PLANET INTRODUCTION
========================================================= */

.sdg-planet-introduction {
    display: flex;
    align-items: center;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto 45px auto;

    padding: 25px 30px;

    box-sizing: border-box;

    background: #f5f9fc;

    border-left: 5px solid #1976c5;

    border-radius: 10px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.05);
}


.sdg-planet-introduction-icon {
    flex: 0 0 65px;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 22px;

    border-radius: 50%;

    background: #e4f1fb;

    color: #1976c5;

    font-size: 28px;
}


.sdg-planet-introduction h2 {
    margin: 0 0 8px 0;

    font-size: 24px;

    line-height: 1.3;

    color: #06345c;
}


.sdg-planet-introduction p {
    margin: 0;

    font-size: 16px;

    line-height: 1.75;

    color: #58656d;
}


/* =========================================================
   PLANET GOAL CARD
========================================================= */

.sdg-planet-goal-card {
    display: grid;

    grid-template-columns: 38% 62%;

    width: 100%;
    max-width: 1150px;

    margin: 0 auto 40px auto;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5eaee;

    border-radius: 12px;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   GOAL IMAGE
========================================================= */

.sdg-planet-goal-image {
    min-height: 320px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #f5f7f8;
}


.sdg-planet-goal-image img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 320px;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.35s ease;
}


.sdg-planet-goal-card:hover
.sdg-planet-goal-image img {
    transform: scale(1.025);
}


/* =========================================================
   GOAL CONTENT
========================================================= */

.sdg-planet-goal-content {
    padding: 30px 35px;

    box-sizing: border-box;
}


/* =========================================================
   GOAL HEADING
========================================================= */

.sdg-planet-goal-heading {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}


.sdg-planet-goal-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-width: 65px;
    min-height: 42px;

    padding: 7px 12px;

    box-sizing: border-box;

    border-radius: 7px;

    background: #06345c;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;
}


.sdg-planet-goal-heading h2 {
    margin: 0;

    font-size: 27px;

    line-height: 1.25;

    color: #06345c;
}


/* =========================================================
   CONTENT HEADINGS
========================================================= */

.sdg-planet-goal-content h3 {
    margin: 20px 0 10px 0;

    font-size: 17px;

    line-height: 1.4;

    color: #1976c5;
}


/* =========================================================
   GENERAL LIST
========================================================= */

.sdg-planet-goal-content ul {
    margin: 0 0 12px 0;

    padding-left: 21px;
}


.sdg-planet-goal-content li {
    margin-bottom: 8px;

    font-size: 14px;

    line-height: 1.65;

    color: #56636b;
}


/* =========================================================
   FOCUS AREAS
========================================================= */

.sdg-planet-goal-content .sdg-focus-list {
    list-style: none;

    padding-left: 0;
}


.sdg-planet-goal-content .sdg-focus-list li {
    position: relative;

    padding-left: 22px;
}


.sdg-planet-goal-content .sdg-focus-list li::before {
    content: "▸";

    position: absolute;

    left: 0;
    top: 0;

    color: #1976c5;

    font-weight: 700;
}


/* =========================================================
   EVENT LINK
========================================================= */

.sdg-planet-event-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 12px;

    padding: 10px 17px;

    border-radius: 6px;

    background: #06345c;

    color: #ffffff !important;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.sdg-planet-event-link:hover {
    background: #1976c5;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =========================================================
   PLANET MESSAGE
========================================================= */

.sdg-planet-page .sdg-foundation-message {
    display: flex;

    align-items: flex-start;

    max-width: 1100px;

    margin: 50px auto 40px auto;

    padding: 28px 30px;

    box-sizing: border-box;

    background: #f5f9fc;

    border-radius: 10px;

    border: 1px solid #e0e9ef;
}


.sdg-planet-page
.sdg-foundation-message > i {
    flex: 0 0 48px;

    margin-right: 20px;

    font-size: 30px;

    color: #1976c5;
}


.sdg-planet-page
.sdg-foundation-message h3 {
    margin: 0 0 8px 0;

    color: #06345c;

    font-size: 21px;
}


.sdg-planet-page
.sdg-foundation-message p {
    margin: 0;

    color: #58656d;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   FOUNDATION NAVIGATION
========================================================= */

.sdg-planet-page
.sdg-foundation-navigation {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;

    max-width: 1050px;

    margin: 0 auto 30px auto;
}


.sdg-planet-page
.sdg-foundation-nav-button {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 10px 15px;

    box-sizing: border-box;

    border-radius: 7px;

    background: #f2f6f9;

    color: #06345c !important;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.sdg-planet-page
.sdg-foundation-nav-button i {
    margin-right: 8px;
}


.sdg-planet-page
.sdg-foundation-nav-button:hover {
    background: #e3eef6;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sdg-planet-goal-card {
        grid-template-columns: 40% 60%;
    }


    .sdg-planet-goal-image,
    .sdg-planet-goal-image img {
        min-height: 300px;
    }


    .sdg-planet-goal-content {
        padding: 25px;
    }


    .sdg-planet-goal-heading h2 {
        font-size: 23px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sdg-planet-introduction {
        display: block;

        padding: 22px 20px;

        margin-bottom: 30px;
    }


    .sdg-planet-introduction-icon {
        margin: 0 auto 15px auto;
    }


    .sdg-planet-introduction h2 {
        text-align: center;

        font-size: 21px;
    }


    .sdg-planet-introduction p {
        text-align: center;

        font-size: 14px;
    }


    /* -----------------------------------------
       GOAL CARD
    ----------------------------------------- */

    .sdg-planet-goal-card {
        display: flex;

        flex-direction: column;

        width: 100%;

        margin-bottom: 25px;

        border-radius: 9px;
    }


    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .sdg-planet-goal-image {
        width: 100%;

        min-height: auto;

        height: auto;

        display: flex;

        align-items: center;
        justify-content: center;
    }


    .sdg-planet-goal-image img {
        display: block;

        width: 100%;

        height: auto;

        min-height: 0;

        max-height: none;

        object-fit: contain;

        object-position: center;

        transform: none !important;
    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .sdg-planet-goal-content {
        width: 100%;

        padding: 22px 20px;
    }


    .sdg-planet-goal-heading {
        align-items: flex-start;

        gap: 10px;

        margin-bottom: 15px;
    }


    .sdg-planet-goal-number {
        min-width: 55px;

        min-height: 38px;

        padding: 6px 9px;

        font-size: 13px;
    }


    .sdg-planet-goal-heading h2 {
        font-size: 21px;

        line-height: 1.3;
    }


    .sdg-planet-goal-content h3 {
        margin-top: 17px;

        font-size: 16px;
    }


    .sdg-planet-goal-content li {
        font-size: 13px;

        line-height: 1.6;
    }


    .sdg-planet-event-link {
        font-size: 12px;

        padding: 9px 13px;
    }


    /* -----------------------------------------
       MESSAGE
    ----------------------------------------- */

    .sdg-planet-page
    .sdg-foundation-message {
        display: block;

        margin-top: 30px;

        padding: 22px 20px;

        text-align: center;
    }


    .sdg-planet-page
    .sdg-foundation-message > i {
        display: block;

        margin: 0 auto 12px auto;
    }


    .sdg-planet-page
    .sdg-foundation-message h3 {
        font-size: 19px;
    }


    .sdg-planet-page
    .sdg-foundation-message p {
        font-size: 13px;

        line-height: 1.65;
    }


    /* -----------------------------------------
       NAVIGATION
    ----------------------------------------- */

    .sdg-planet-page
    .sdg-foundation-navigation {
        grid-template-columns: 1fr;

        gap: 10px;

        width: 100%;
    }


    .sdg-planet-page
    .sdg-foundation-nav-button {
        min-height: 48px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .sdg-planet-goal-content {
        padding: 18px 16px;
    }


    .sdg-planet-goal-heading h2 {
        font-size: 19px;
    }


    .sdg-planet-goal-content h3 {
        font-size: 15px;
    }


    .sdg-planet-goal-content li {
        font-size: 12.5px;
    }

}

/* =========================================================
   THREE FOUNDATION GOAL IMAGES
   PEOPLE / PLANET / PROSPERITY
========================================================= */

.sdg-people-goal-image,
.sdg-planet-goal-image,
.sdg-prosperity-goal-image {
    min-height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #f5f7f8;

    padding: 25px;

    box-sizing: border-box;
}


/* =========================================================
   SMALL CENTERED SDG IMAGE
========================================================= */

.sdg-people-goal-image img,
.sdg-planet-goal-image img,
.sdg-prosperity-goal-image img {
    display: block;

    width: 100%;
    max-width: 280px;

    height: auto;
    min-height: 0;

    object-fit: contain;
    object-position: center;

    margin: 0 auto;

    transform: none;

    transition: none;
}


/* =========================================================
   DO NOT ENLARGE IMAGE ON HOVER
========================================================= */

.sdg-people-goal-card:hover
.sdg-people-goal-image img,

.sdg-planet-goal-card:hover
.sdg-planet-goal-image img,

.sdg-prosperity-goal-card:hover
.sdg-prosperity-goal-image img {
    transform: none;
}

/* =========================================================
   MOBILE - THREE FOUNDATIONS
========================================================= */

@media (max-width: 767px) {

    .sdg-people-goal-image,
    .sdg-planet-goal-image,
    .sdg-prosperity-goal-image {
        width: 100%;

        min-height: 0;

        height: auto;

        padding: 15px;

        display: flex;

        align-items: center;
        justify-content: center;
    }


    .sdg-people-goal-image img,
    .sdg-planet-goal-image img,
    .sdg-prosperity-goal-image img {
        width: 100%;

        max-width: 220px;

        height: auto;

        min-height: 0;

        object-fit: contain;

        object-position: center;

        margin: 0 auto;

        transform: none !important;
    }

}
/* =========================================================
   SDG PROSPERITY PAGE
========================================================= */

.sdg-prosperity-page {
    width: 100%;
}


/* =========================================================
   PROSPERITY INTRODUCTION
========================================================= */

.sdg-prosperity-introduction {
    display: flex;
    align-items: center;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto 45px auto;

    padding: 25px 30px;

    box-sizing: border-box;

    background: #f5f9fc;

    border-left: 5px solid #1976c5;

    border-radius: 10px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.05);
}


.sdg-prosperity-introduction-icon {
    flex: 0 0 65px;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 22px;

    border-radius: 50%;

    background: #e4f1fb;

    color: #1976c5;

    font-size: 28px;
}


.sdg-prosperity-introduction h2 {
    margin: 0 0 8px 0;

    font-size: 24px;

    line-height: 1.3;

    color: #06345c;
}


.sdg-prosperity-introduction p {
    margin: 0;

    font-size: 16px;

    line-height: 1.75;

    color: #58656d;
}


/* =========================================================
   PROSPERITY GOAL CARD
========================================================= */

.sdg-prosperity-goal-card {
    display: grid;

    grid-template-columns: 38% 62%;

    width: 100%;
    max-width: 1150px;

    margin: 0 auto 40px auto;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5eaee;

    border-radius: 12px;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   PROSPERITY GOAL IMAGE
   SMALL + CENTERED
========================================================= */

.sdg-prosperity-goal-image {
    min-height: 320px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #f5f7f8;

    padding: 25px;

    box-sizing: border-box;
}


.sdg-prosperity-goal-image img {
    display: block;

    width: 100%;

    max-width: 280px;

    height: auto;

    min-height: 0;

    object-fit: contain;

    object-position: center;

    margin: 0 auto;

    transform: none;

    transition: none;
}


/* =========================================================
   NO IMAGE ENLARGEMENT ON HOVER
========================================================= */

.sdg-prosperity-goal-card:hover
.sdg-prosperity-goal-image img {
    transform: none;
}


/* =========================================================
   GOAL CONTENT
========================================================= */

.sdg-prosperity-goal-content {
    padding: 30px 35px;

    box-sizing: border-box;
}


/* =========================================================
   GOAL HEADING
========================================================= */

.sdg-prosperity-goal-heading {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}


.sdg-prosperity-goal-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-width: 65px;

    min-height: 42px;

    padding: 7px 12px;

    box-sizing: border-box;

    border-radius: 7px;

    background: #06345c;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;
}


.sdg-prosperity-goal-heading h2 {
    margin: 0;

    font-size: 27px;

    line-height: 1.25;

    color: #06345c;
}


/* =========================================================
   CONTENT HEADINGS
========================================================= */

.sdg-prosperity-goal-content h3 {
    margin: 20px 0 10px 0;

    font-size: 17px;

    line-height: 1.4;

    color: #1976c5;
}


/* =========================================================
   GENERAL LIST
========================================================= */

.sdg-prosperity-goal-content ul {
    margin: 0 0 12px 0;

    padding-left: 21px;
}


.sdg-prosperity-goal-content li {
    margin-bottom: 8px;

    font-size: 14px;

    line-height: 1.65;

    color: #56636b;
}


/* =========================================================
   FOCUS AREAS
========================================================= */

.sdg-prosperity-goal-content .sdg-focus-list {
    list-style: none;

    padding-left: 0;
}


.sdg-prosperity-goal-content
.sdg-focus-list li {
    position: relative;

    padding-left: 22px;
}


.sdg-prosperity-goal-content
.sdg-focus-list li::before {
    content: "▸";

    position: absolute;

    left: 0;
    top: 0;

    color: #1976c5;

    font-weight: 700;
}


/* =========================================================
   EVENT LINK
========================================================= */

.sdg-prosperity-event-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 12px;

    padding: 10px 17px;

    border-radius: 6px;

    background: #06345c;

    color: #ffffff !important;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.sdg-prosperity-event-link:hover {
    background: #1976c5;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =========================================================
   PROSPERITY MESSAGE
========================================================= */

.sdg-prosperity-page
.sdg-foundation-message {
    display: flex;

    align-items: flex-start;

    max-width: 1100px;

    margin: 50px auto 40px auto;

    padding: 28px 30px;

    box-sizing: border-box;

    background: #f5f9fc;

    border-radius: 10px;

    border: 1px solid #e0e9ef;
}


.sdg-prosperity-page
.sdg-foundation-message > i {
    flex: 0 0 48px;

    margin-right: 20px;

    font-size: 30px;

    color: #1976c5;
}


.sdg-prosperity-page
.sdg-foundation-message h3 {
    margin: 0 0 8px 0;

    color: #06345c;

    font-size: 21px;
}


.sdg-prosperity-page
.sdg-foundation-message p {
    margin: 0;

    color: #58656d;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   FOUNDATION NAVIGATION
========================================================= */

.sdg-prosperity-page
.sdg-foundation-navigation {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;

    max-width: 1050px;

    margin: 0 auto 30px auto;
}


.sdg-prosperity-page
.sdg-foundation-nav-button {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 10px 15px;

    box-sizing: border-box;

    border-radius: 7px;

    background: #f2f6f9;

    color: #06345c !important;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.sdg-prosperity-page
.sdg-foundation-nav-button i {
    margin-right: 8px;
}


.sdg-prosperity-page
.sdg-foundation-nav-button:hover {
    background: #e3eef6;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sdg-prosperity-goal-card {
        grid-template-columns: 40% 60%;
    }


    .sdg-prosperity-goal-image {
        min-height: 300px;
    }


    .sdg-prosperity-goal-content {
        padding: 25px;
    }


    .sdg-prosperity-goal-heading h2 {
        font-size: 23px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------
       INTRODUCTION
    ----------------------------------------- */

    .sdg-prosperity-introduction {
        display: block;

        padding: 22px 20px;

        margin-bottom: 30px;
    }


    .sdg-prosperity-introduction-icon {
        margin: 0 auto 15px auto;
    }


    .sdg-prosperity-introduction h2 {
        text-align: center;

        font-size: 21px;
    }


    .sdg-prosperity-introduction p {
        text-align: center;

        font-size: 14px;
    }


    /* -----------------------------------------
       GOAL CARD
    ----------------------------------------- */

    .sdg-prosperity-goal-card {
        display: flex;

        flex-direction: column;

        width: 100%;

        margin-bottom: 25px;

        border-radius: 9px;
    }


    /* -----------------------------------------
       SMALL CENTERED IMAGE
    ----------------------------------------- */

    .sdg-prosperity-goal-image {
        width: 100%;

        min-height: 0;

        height: auto;

        padding: 15px;

        display: flex;

        align-items: center;
        justify-content: center;
    }


    .sdg-prosperity-goal-image img {
        display: block;

        width: 100%;

        max-width: 220px;

        height: auto;

        min-height: 0;

        object-fit: contain;

        object-position: center;

        margin: 0 auto;

        transform: none !important;
    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .sdg-prosperity-goal-content {
        width: 100%;

        padding: 22px 20px;
    }


    .sdg-prosperity-goal-heading {
        align-items: flex-start;

        gap: 10px;

        margin-bottom: 15px;
    }


    .sdg-prosperity-goal-number {
        min-width: 55px;

        min-height: 38px;

        padding: 6px 9px;

        font-size: 13px;
    }


    .sdg-prosperity-goal-heading h2 {
        font-size: 21px;

        line-height: 1.3;
    }


    .sdg-prosperity-goal-content h3 {
        margin-top: 17px;

        font-size: 16px;
    }


    .sdg-prosperity-goal-content li {
        font-size: 13px;

        line-height: 1.6;
    }


    .sdg-prosperity-event-link {
        font-size: 12px;

        padding: 9px 13px;
    }


    /* -----------------------------------------
       MESSAGE
    ----------------------------------------- */

    .sdg-prosperity-page
    .sdg-foundation-message {
        display: block;

        margin-top: 30px;

        padding: 22px 20px;

        text-align: center;
    }


    .sdg-prosperity-page
    .sdg-foundation-message > i {
        display: block;

        margin: 0 auto 12px auto;
    }


    .sdg-prosperity-page
    .sdg-foundation-message h3 {
        font-size: 19px;
    }


    .sdg-prosperity-page
    .sdg-foundation-message p {
        font-size: 13px;

        line-height: 1.65;
    }


    /* -----------------------------------------
       NAVIGATION
    ----------------------------------------- */

    .sdg-prosperity-page
    .sdg-foundation-navigation {
        grid-template-columns: 1fr;

        gap: 10px;

        width: 100%;
    }


    .sdg-prosperity-page
    .sdg-foundation-nav-button {
        min-height: 48px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .sdg-prosperity-goal-content {
        padding: 18px 16px;
    }


    .sdg-prosperity-goal-heading h2 {
        font-size: 19px;
    }


    .sdg-prosperity-goal-content h3 {
        font-size: 15px;
    }


    .sdg-prosperity-goal-content li {
        font-size: 12.5px;
    }


    .sdg-prosperity-goal-image img {
        max-width: 180px;
    }

}

/* =========================================================
   FINAL SDG FOUNDATION OVERRIDES
   PEOPLE / PLANET / PROSPERITY
   =========================================================
   
   PURPOSE:
   - Keep all three foundation images small
   - Keep all three images centered
   - Prevent image cropping
   - Prevent image enlargement on hover
   - Keep desktop layout similar to Planet/Prosperity
   - Keep mobile layout clean
   - Keep foundation navigation consistent
========================================================= */


/* =========================================================
   FOUNDATION GOAL CARDS
   DESKTOP
========================================================= */

.sdg-people-page .sdg-people-goal-card,
.sdg-planet-page .sdg-planet-goal-card,
.sdg-prosperity-page .sdg-prosperity-goal-card {

    display: grid;

    grid-template-columns:
        38% 62%;

    width: 100%;
    max-width: 1150px;

    margin:
        0 auto 40px auto;

    overflow: hidden;

    background:
        #ffffff;

    border:
        1px solid #e5eaee;

    border-radius:
        12px;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.07);

    box-sizing:
        border-box;
}


/* =========================================================
   IMAGE CONTAINER
   ALL THREE FOUNDATIONS
========================================================= */

.sdg-people-page .sdg-people-goal-image,
.sdg-planet-page .sdg-planet-goal-image,
.sdg-prosperity-page .sdg-prosperity-goal-image {

    min-height:
        320px;

    height:
        auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    overflow:
        hidden;

    background:
        #f5f7f8;

    padding:
        25px;

    box-sizing:
        border-box;

    margin:
        0;
}


/* =========================================================
   SMALL CENTERED IMAGE
   IMPORTANT:
   - DO NOT use height:100%
   - DO NOT use min-height on image
   - DO NOT use object-fit:cover
========================================================= */

.sdg-people-page .sdg-people-goal-image img,
.sdg-planet-page .sdg-planet-goal-image img,
.sdg-prosperity-page .sdg-prosperity-goal-image img {

    display:
        block !important;

    width:
        100% !important;

    max-width:
        280px !important;

    height:
        auto !important;

    min-height:
        0 !important;

    max-height:
        none !important;

    object-fit:
        contain !important;

    object-position:
        center center !important;

    margin:
        0 auto !important;

    padding:
        0 !important;

    float:
        none !important;

    transform:
        none !important;

    transition:
        none !important;

    border:
        0 !important;
}


/* =========================================================
   NEVER ENLARGE SDG IMAGE ON HOVER
========================================================= */

.sdg-people-page .sdg-people-goal-card:hover
.sdg-people-goal-image img,

.sdg-planet-page .sdg-planet-goal-card:hover
.sdg-planet-goal-image img,

.sdg-prosperity-page .sdg-prosperity-goal-card:hover
.sdg-prosperity-goal-image img {

    transform:
        none !important;

}


/* =========================================================
   GOAL CONTENT
========================================================= */

.sdg-people-page .sdg-people-goal-content,
.sdg-planet-page .sdg-planet-goal-content,
.sdg-prosperity-page .sdg-prosperity-goal-content {

    width:
        100%;

    padding:
        30px 35px;

    box-sizing:
        border-box;
}


/* =========================================================
   GOAL HEADING
========================================================= */

.sdg-people-page .sdg-people-goal-heading,
.sdg-planet-page .sdg-planet-goal-heading,
.sdg-prosperity-page .sdg-prosperity-goal-heading {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    margin-bottom:
        20px;
}


/* =========================================================
   GOAL NUMBER
========================================================= */

.sdg-people-page .sdg-people-goal-number,
.sdg-planet-page .sdg-planet-goal-number,
.sdg-prosperity-page .sdg-prosperity-goal-number {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    flex:
        0 0 auto;

    min-width:
        65px;

    min-height:
        42px;

    padding:
        7px 12px;

    box-sizing:
        border-box;

    border-radius:
        7px;

    background:
        #06345c;

    color:
        #ffffff;

    font-size:
        15px;

    font-weight:
        700;

    white-space:
        nowrap;
}


/* =========================================================
   GOAL TITLE
========================================================= */

.sdg-people-page .sdg-people-goal-heading h2,
.sdg-planet-page .sdg-planet-goal-heading h2,
.sdg-prosperity-page .sdg-prosperity-goal-heading h2 {

    margin:
        0;

    font-size:
        27px;

    line-height:
        1.25;

    color:
        #06345c;
}


/* =========================================================
   FOUNDATION NAVIGATION
   DESKTOP
========================================================= */

.sdg-people-page .sdg-foundation-navigation,
.sdg-planet-page .sdg-foundation-navigation,
.sdg-prosperity-page .sdg-foundation-navigation {

    display:
        grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        15px;

    width:
        100%;

    max-width:
        1050px;

    margin:
        0 auto 30px auto;

    padding:
        0;

    box-sizing:
        border-box;
}


/* =========================================================
   FOUNDATION NAVIGATION BUTTON
========================================================= */

.sdg-people-page .sdg-foundation-nav-button,
.sdg-planet-page .sdg-foundation-nav-button,
.sdg-prosperity-page .sdg-foundation-nav-button {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        100%;

    min-width:
        0;

    min-height:
        52px;

    height:
        auto;

    padding:
        10px 15px;

    box-sizing:
        border-box;

    border:
        0;

    border-radius:
        7px;

    background:
        #f2f6f9;

    color:
        #06345c !important;

    font-size:
        14px;

    font-weight:
        700;

    line-height:
        1.3;

    text-decoration:
        none !important;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   NAVIGATION ICON
========================================================= */

.sdg-people-page .sdg-foundation-nav-button i,
.sdg-planet-page .sdg-foundation-nav-button i,
.sdg-prosperity-page .sdg-foundation-nav-button i {

    margin-right:
        8px;

    font-size:
        16px;
}


/* =========================================================
   NAVIGATION HOVER
========================================================= */

.sdg-people-page .sdg-foundation-nav-button:hover,
.sdg-planet-page .sdg-foundation-nav-button:hover,
.sdg-prosperity-page .sdg-foundation-nav-button:hover {

    background:
        #e3eef6;

    color:
        #06345c !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    /* -----------------------------------------
       GOAL CARD
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-card,
    .sdg-planet-page .sdg-planet-goal-card,
    .sdg-prosperity-page .sdg-prosperity-goal-card {

        grid-template-columns:
            40% 60%;
    }


    /* -----------------------------------------
       IMAGE AREA
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-image,
    .sdg-planet-page .sdg-planet-goal-image,
    .sdg-prosperity-page .sdg-prosperity-goal-image {

        min-height:
            300px;

        padding:
            22px;
    }


    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-image img,
    .sdg-planet-page .sdg-planet-goal-image img,
    .sdg-prosperity-page .sdg-prosperity-goal-image img {

        max-width:
            250px !important;
    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-content,
    .sdg-planet-page .sdg-planet-goal-content,
    .sdg-prosperity-page .sdg-prosperity-goal-content {

        padding:
            25px;
    }


    /* -----------------------------------------
       TITLE
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-heading h2,
    .sdg-planet-page .sdg-planet-goal-heading h2,
    .sdg-prosperity-page .sdg-prosperity-goal-heading h2 {

        font-size:
            23px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------
       GOAL CARD
       STACK IMAGE ABOVE CONTENT
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-card,
    .sdg-planet-page .sdg-planet-goal-card,
    .sdg-prosperity-page .sdg-prosperity-goal-card {

        display:
            flex;

        flex-direction:
            column;

        width:
            100%;

        margin-bottom:
            25px;

        border-radius:
            9px;
    }


    /* -----------------------------------------
       IMAGE AREA
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-image,
    .sdg-planet-page .sdg-planet-goal-image,
    .sdg-prosperity-page .sdg-prosperity-goal-image {

        width:
            100%;

        min-height:
            0;

        height:
            auto;

        padding:
            15px;

        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

        box-sizing:
            border-box;
    }


    /* -----------------------------------------
       SMALL CENTERED MOBILE IMAGE
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-image img,
    .sdg-planet-page .sdg-planet-goal-image img,
    .sdg-prosperity-page .sdg-prosperity-goal-image img {

        display:
            block !important;

        width:
            100% !important;

        max-width:
            220px !important;

        height:
            auto !important;

        min-height:
            0 !important;

        max-height:
            none !important;

        object-fit:
            contain !important;

        object-position:
            center center !important;

        margin:
            0 auto !important;

        transform:
            none !important;
    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-content,
    .sdg-planet-page .sdg-planet-goal-content,
    .sdg-prosperity-page .sdg-prosperity-goal-content {

        width:
            100%;

        padding:
            22px 20px;

        box-sizing:
            border-box;
    }


    /* -----------------------------------------
       HEADING
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-heading,
    .sdg-planet-page .sdg-planet-goal-heading,
    .sdg-prosperity-page .sdg-prosperity-goal-heading {

        align-items:
            flex-start;

        gap:
            10px;

        margin-bottom:
            15px;
    }


    /* -----------------------------------------
       NUMBER
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-number,
    .sdg-planet-page .sdg-planet-goal-number,
    .sdg-prosperity-page .sdg-prosperity-goal-number {

        min-width:
            55px;

        min-height:
            38px;

        padding:
            6px 9px;

        font-size:
            13px;
    }


    /* -----------------------------------------
       TITLE
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-heading h2,
    .sdg-planet-page .sdg-planet-goal-heading h2,
    .sdg-prosperity-page .sdg-prosperity-goal-heading h2 {

        font-size:
            21px;

        line-height:
            1.3;
    }


    /* -----------------------------------------
       CONTENT HEADINGS
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-content h3,
    .sdg-planet-page .sdg-planet-goal-content h3,
    .sdg-prosperity-page .sdg-prosperity-goal-content h3 {

        margin-top:
            17px;

        font-size:
            16px;
    }


    /* -----------------------------------------
       LIST
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-content li,
    .sdg-planet-page .sdg-planet-goal-content li,
    .sdg-prosperity-page .sdg-prosperity-goal-content li {

        font-size:
            13px;

        line-height:
            1.6;
    }


    /* -----------------------------------------
       FOUNDATION NAVIGATION
       MOBILE = ONE COLUMN
    ----------------------------------------- */

    .sdg-people-page .sdg-foundation-navigation,
    .sdg-planet-page .sdg-foundation-navigation,
    .sdg-prosperity-page .sdg-foundation-navigation {

        display:
            grid !important;

        grid-template-columns:
            1fr;

        gap:
            10px;

        width:
            100%;

        max-width:
            none;

        margin:
            25px auto 25px auto;
    }


    /* -----------------------------------------
       MOBILE NAV BUTTON
    ----------------------------------------- */

    .sdg-people-page .sdg-foundation-nav-button,
    .sdg-planet-page .sdg-foundation-nav-button,
    .sdg-prosperity-page .sdg-foundation-nav-button {

        width:
            100%;

        min-width:
            0;

        max-width:
            none;

        min-height:
            48px;

        padding:
            10px 15px;

        font-size:
            13px;
    }


    /* -----------------------------------------
       MESSAGE
    ----------------------------------------- */

    .sdg-people-page .sdg-foundation-message,
    .sdg-planet-page .sdg-foundation-message,
    .sdg-prosperity-page .sdg-foundation-message {

        display:
            block;

        margin-top:
            30px;

        padding:
            22px 20px;

        text-align:
            center;
    }


    .sdg-people-page .sdg-foundation-message > i,
    .sdg-planet-page .sdg-foundation-message > i,
    .sdg-prosperity-page .sdg-foundation-message > i {

        display:
            block;

        margin:
            0 auto 12px auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-image,
    .sdg-planet-page .sdg-planet-goal-image,
    .sdg-prosperity-page .sdg-prosperity-goal-image {

        padding:
            12px;
    }


    .sdg-people-page .sdg-people-goal-image img,
    .sdg-planet-page .sdg-planet-goal-image img,
    .sdg-prosperity-page .sdg-prosperity-goal-image img {

        max-width:
            190px !important;

        width:
            100% !important;

        height:
            auto !important;

        min-height:
            0 !important;

        object-fit:
            contain !important;

        object-position:
            center center !important;
    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-content,
    .sdg-planet-page .sdg-planet-goal-content,
    .sdg-prosperity-page .sdg-prosperity-goal-content {

        padding:
            18px 16px;
    }


    /* -----------------------------------------
       TITLE
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-heading h2,
    .sdg-planet-page .sdg-planet-goal-heading h2,
    .sdg-prosperity-page .sdg-prosperity-goal-heading h2 {

        font-size:
            19px;
    }


    /* -----------------------------------------
       HEADINGS
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-content h3,
    .sdg-planet-page .sdg-planet-goal-content h3,
    .sdg-prosperity-page .sdg-prosperity-goal-content h3 {

        font-size:
            15px;
    }


    /* -----------------------------------------
       LIST
    ----------------------------------------- */

    .sdg-people-page .sdg-people-goal-content li,
    .sdg-planet-page .sdg-planet-goal-content li,
    .sdg-prosperity-page .sdg-prosperity-goal-content li {

        font-size:
            12.5px;
    }

}

/* =========================================================
   EVENTS DROPDOWN - FULL LEFT TO RIGHT
========================================================= */

.sdg-events-menu-group {
    position: static !important;
}


/* ---------------------------------------------------------
   FULL WIDTH EVENTS DROPDOWN
--------------------------------------------------------- */

.sdg-desktop-events-submenu {
    position: fixed !important;

    left: 0 !important;
    right: 0 !important;

    top: 103px !important;

    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;

    margin: 0 !important;

    padding: 18px 24px 22px 24px !important;

    box-sizing: border-box !important;

    z-index: 99999 !important;

    overflow: visible !important;
}


/* ---------------------------------------------------------
   ALL SDG EVENTS
--------------------------------------------------------- */

.sdg-desktop-events-submenu
.sdg-submenu-highlight {

    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    box-sizing: border-box !important;

    margin: 0 0 16px 0 !important;

    padding: 14px 18px !important;

    background: #0b3b69 !important;

    color: #ffffff !important;

    border-radius: 8px !important;

    font-size: 18px !important;

    font-weight: 700 !important;

    text-decoration: none !important;
}


.sdg-submenu-highlight i {
    margin-right: 12px !important;
}


/* ---------------------------------------------------------
   GOAL GRID
   5 COLUMNS - FULL WIDTH
--------------------------------------------------------- */

.sdg-events-goal-grid {

    display: grid !important;

    grid-template-columns:
        repeat(5, minmax(0, 1fr)) !important;

    width: 100% !important;

    max-width: none !important;

    margin: 0 !important;

    padding: 0 !important;

    gap: 8px 24px !important;

    box-sizing: border-box !important;
}


/* ---------------------------------------------------------
   EACH GOAL
--------------------------------------------------------- */

.sdg-events-goal-grid
.sdg-event-goal-link {

    display: flex !important;

    align-items: center !important;

    justify-content: flex-start !important;

    width: 100% !important;

    min-width: 0 !important;

    height: 52px !important;

    margin: 0 !important;

    padding: 2px 0 !important;

    gap: 10px !important;

    box-sizing: border-box !important;

    overflow: hidden !important;

    white-space: nowrap !important;

    text-decoration: none !important;

    color: #0b3b69 !important;
}


/* ---------------------------------------------------------
   NUMBER
--------------------------------------------------------- */

.sdg-events-goal-grid
.sdg-event-number {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex: 0 0 64px !important;

    width: 64px !important;

    min-width: 64px !important;

    height: 48px !important;

    border-radius: 9px !important;

    background: #eaf4e6 !important;

    color: #218721 !important;

    font-size: 17px !important;

    font-weight: 700 !important;

    line-height: 1 !important;

    white-space: nowrap !important;
}


/* ---------------------------------------------------------
   DESKTOP
   SHOW ONLY:
   SDG 01
   SDG 02
   ...
   SDG 17
--------------------------------------------------------- */

.sdg-events-goal-grid
.desktop-goal-title {

    display: inline-block !important;

    width: auto !important;

    max-width: none !important;

    margin: 0 !important;

    padding: 0 !important;

    color: #0b3b69 !important;

    font-size: 17px !important;

    font-weight: 600 !important;

    line-height: 1.2 !important;

    white-space: nowrap !important;

    overflow: visible !important;

    text-overflow: clip !important;
}


/* ---------------------------------------------------------
   MOBILE TITLE HIDDEN ON DESKTOP
--------------------------------------------------------- */

.sdg-events-goal-grid
.mobile-goal-title {

    display: none !important;
}


/* ---------------------------------------------------------
   REMOVE OLD POSITIONING
--------------------------------------------------------- */

.sdg-events-goal-grid > a {

    position: static !important;

    float: none !important;

    transform: none !important;

    left: auto !important;

    right: auto !important;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (min-width: 769px) and (max-width: 1200px) {

    .sdg-desktop-events-submenu {

        top: 103px !important;

        left: 0 !important;
        right: 0 !important;

        width: 100vw !important;
        max-width: 100vw !important;

        padding-left: 18px !important;
        padding-right: 18px !important;
    }


    .sdg-events-goal-grid {

        grid-template-columns:
            repeat(5, minmax(0, 1fr)) !important;

        column-gap: 14px !important;

    }


    .sdg-events-goal-grid
    .sdg-event-number {

        flex-basis: 54px !important;

        width: 54px !important;

        min-width: 54px !important;

    }


    .sdg-events-goal-grid
    .desktop-goal-title {

        font-size: 15px !important;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .sdg-desktop-events-submenu {

        display: none !important;

    }


    .desktop-goal-title {

        display: none !important;

    }


    .mobile-goal-title {

        display: inline-block !important;

        flex: 1 1 auto !important;

        min-width: 0 !important;

        color: #0b3b69 !important;

        font-size: 14px !important;

        font-weight: 600 !important;

        line-height: 1.3 !important;

        white-space: normal !important;

    }

}

/* =========================================================
   ALL SDG GOALS PAGE
========================================================= */

.sdg-all-goals-page{
    width:100%;
    padding:45px 0 70px;
}


.sdg-all-goals-page .sdg-container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}


/* =========================================================
   GOALS LIST
========================================================= */

.sdg-all-goals-list{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:40px;

    margin-top:40px;
}


/* =========================================================
   FULL GOAL CARD
========================================================= */

.sdg-full-goal-card{
    width:100%;

    background:#ffffff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 6px 25px rgba(0,0,0,.09);

    transition:all .3s ease;
}


.sdg-full-goal-card:hover{
    transform:translateY(-3px);

    box-shadow:0 12px 35px rgba(0,0,0,.13);
}


/* =========================================================
   WIDE BANNER
========================================================= */

.sdg-full-goal-banner{
    width:100%;

    overflow:hidden;

    background:#eeeeee;
}


.sdg-full-goal-banner img{
    display:block;

    width:100%;
    height:auto;

    max-width:100%;

    object-fit:cover;

    object-position:center;
}


/* =========================================================
   GOAL BODY
========================================================= */

.sdg-full-goal-body{
    display:flex;

    align-items:center;

    gap:30px;

    padding:30px 35px;
}


/* =========================================================
   GOAL ICON
========================================================= */

.sdg-full-goal-image-wrap{
    flex:0 0 150px;

    display:flex;

    align-items:center;
    justify-content:center;
}


.sdg-full-goal-image{
    display:block;

    width:140px;
    height:140px;

    max-width:100%;

    object-fit:contain;
}


/* =========================================================
   GOAL TEXT
========================================================= */

.sdg-full-goal-text{
    flex:1;
    min-width:0;
}


.sdg-full-goal-number{
    display:inline-block;

    margin-bottom:8px;

    font-size:14px;
    font-weight:800;

    letter-spacing:.8px;

    color:#0b3b69;
}


.sdg-full-goal-text h2{
    margin:0 0 12px;

    color:#222;

    font-size:27px;
    font-weight:700;

    line-height:1.3;
}


.sdg-full-goal-text p{
    margin:0 0 20px;

    color:#666;

    font-size:16px;

    line-height:1.75;
}


/* =========================================================
   BUTTON
========================================================= */

.sdg-full-goal-button{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    min-height:44px;

    padding:10px 20px;

    border-radius:6px;

    background:#0b3b69;

    color:#ffffff !important;

    font-size:14px;
    font-weight:700;

    text-decoration:none !important;

    transition:all .25s ease;
}


.sdg-full-goal-button:hover{
    background:#082e52;

    transform:translateY(-2px);

    box-shadow:0 7px 18px rgba(11,59,105,.22);
}


.sdg-full-goal-button i{
    font-size:13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:991px){

    .sdg-all-goals-page .sdg-container{
        max-width:100%;

        padding-left:18px;
        padding-right:18px;
    }


    .sdg-full-goal-body{
        padding:25px;
        gap:25px;
    }


    .sdg-full-goal-image-wrap{
        flex-basis:120px;
    }


    .sdg-full-goal-image{
        width:115px;
        height:115px;
    }


    .sdg-full-goal-text h2{
        font-size:24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px){

    .sdg-all-goals-page{
        padding:30px 0 50px;
    }


    .sdg-all-goals-page .sdg-container{
        padding-left:12px;
        padding-right:12px;
    }


    .sdg-all-goals-list{
        gap:25px;

        margin-top:25px;
    }


    .sdg-full-goal-card{
        border-radius:8px;
    }


    /* Banner */

    .sdg-full-goal-banner img{
        width:100%;
        height:auto;
    }


    /* Body */

    .sdg-full-goal-body{
        flex-direction:column;

        text-align:center;

        gap:18px;

        padding:22px 16px;
    }


    .sdg-full-goal-image-wrap{
        flex:0 0 auto;
    }


    .sdg-full-goal-image{
        width:105px;
        height:105px;
    }


    .sdg-full-goal-number{
        font-size:13px;
    }


    .sdg-full-goal-text h2{
        font-size:21px;
    }


    .sdg-full-goal-text p{
        font-size:15px;

        line-height:1.65;
    }


    .sdg-full-goal-button{
        width:100%;

        max-width:300px;
    }

}