/* =========================================================
   BCRLS — GET INVOLVED PAGE
   Complete Page Styles
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.involved-page {
    width: 100%;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(119, 194, 165, 0.16),
            transparent 30%
        ),
        #f5faf7;

    color: #17382d;

    overflow-x: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.involved-page .site-header {
    width: 100%;

    position: relative;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(24, 105, 77, 0.08);

    backdrop-filter: blur(14px);
}


.involved-page .header-container {
    width: min(
        calc(100% - 48px),
        1180px
    );

    min-height: 78px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.involved-page .site-logo {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    width: auto;

    max-width: 330px;

    min-width: 0;

    flex-shrink: 0;

    color: inherit;

    text-decoration: none;
}


.involved-page .site-logo img {
    display: block;

    width: 52px !important;

    height: 52px !important;

    min-width: 52px !important;

    min-height: 52px !important;

    max-width: 52px !important;

    max-height: 52px !important;

    flex: 0 0 52px;

    object-fit: contain;

    object-position: center;

    margin: 0 !important;
}


.involved-page .site-logo div {
    min-width: 0;
}


.involved-page .site-logo strong {
    display: block;

    margin: 0;

    color: #176e50;

    font-size: 18px;

    line-height: 1.1;

    font-weight: 700;
}


.involved-page .site-logo small {
    display: block;

    margin-top: 4px;

    color: #6f817a;

    font-size: 8px;

    line-height: 1.3;

    letter-spacing: 0.02em;

    white-space: nowrap;
}


/* =========================================================
   NAVIGATION
========================================================= */

.involved-page .main-nav {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 27px;

    min-width: 0;
}


.involved-page .main-nav a,
.involved-page .nav-dropdown-toggle {
    font-family:
        "DM Sans",
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    color: #536d64;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.involved-page .main-nav a:hover,
.involved-page .nav-dropdown-toggle:hover,
.involved-page .main-nav a.active,
.involved-page .nav-dropdown-toggle.active {
    color: #187355;
}


.involved-page .nav-link {
    border: 0;

    background: transparent;

    cursor: pointer;
}


/* =========================================================
   NAV DROPDOWN
========================================================= */

.involved-page .nav-dropdown {
    position: relative;
}


.involved-page .nav-dropdown-toggle {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.involved-page .nav-dropdown-toggle i {
    font-size: 9px;

    transition:
        transform 0.25s ease;
}


.involved-page .nav-dropdown:hover
.nav-dropdown-toggle i {
    transform: rotate(180deg);
}


.involved-page .dropdown-menu {
    position: absolute;

    top: calc(100% + 18px);

    left: 50%;

    min-width: 225px;

    padding: 10px;

    display: flex;

    flex-direction: column;

    gap: 2px;

    background: #ffffff;

    border:
        1px solid
        rgba(24, 105, 77, 0.10);

    border-radius: 16px;

    box-shadow:
        0 20px 50px
        rgba(34, 91, 70, 0.13);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translate(-50%, -8px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    z-index: 3000;
}


.involved-page .dropdown-menu::before {
    content: "";

    position: absolute;

    top: -7px;

    left: 50%;

    width: 14px;

    height: 14px;

    background: #ffffff;

    border-left:
        1px solid
        rgba(24, 105, 77, 0.10);

    border-top:
        1px solid
        rgba(24, 105, 77, 0.10);

    transform:
        translateX(-50%)
        rotate(45deg);
}


.involved-page .nav-dropdown:hover
.dropdown-menu,
.involved-page .nav-dropdown.open
.dropdown-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translate(-50%, 0);
}


.involved-page .dropdown-menu a {
    display: flex;

    align-items: center;

    min-height: 40px;

    padding: 10px 13px;

    border-radius: 10px;

    color: #536d64;

    font-size: 12px;

    font-weight: 500;
}


.involved-page .dropdown-menu a:hover,
.involved-page .dropdown-menu a.active {
    background: #edf7f2;

    color: #187355;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.involved-page .menu-toggle {
    display: none;

    width: 43px;

    height: 43px;

    padding: 0;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border:
        1px solid
        rgba(24, 105, 77, 0.12);

    border-radius: 12px;

    background: #ffffff;

    cursor: pointer;

    z-index: 2200;
}


.involved-page .menu-toggle span {
    display: block;

    width: 18px;

    height: 2px;

    border-radius: 2px;

    background: #197052;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.involved-page .menu-toggle.active
span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.involved-page .menu-toggle.active
span:nth-child(2) {
    opacity: 0;
}


.involved-page .menu-toggle.active
span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   OVERLAY
========================================================= */

.involved-page ~ .menu-overlay,
.menu-overlay {
    position: fixed;

    inset: 0;

    background:
        rgba(15, 46, 36, 0.32);

    backdrop-filter: blur(4px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;

    z-index: 1900;
}


.menu-overlay.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   HERO
========================================================= */

.involved-hero {
    position: relative;

    padding:
        145px 24px 85px;

    overflow: hidden;
}


.involved-hero::before {
    content: "";

    position: absolute;

    width: 470px;

    height: 470px;

    right: -190px;

    top: 10px;

    border-radius: 50%;

    background:
        rgba(112, 186, 157, 0.11);

    pointer-events: none;
}


.involved-hero::after {
    content: "";

    position: absolute;

    width: 230px;

    height: 230px;

    left: -130px;

    bottom: -120px;

    border-radius: 50%;

    background:
        rgba(112, 186, 157, 0.08);

    pointer-events: none;
}


.involved-hero-inner {
    width: min(
        100%,
        1180px
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, 0.85fr);

    gap: 70px;

    align-items: center;

    position: relative;

    z-index: 2;
}


.involved-hero-inner > * {
    min-width: 0;

    max-width: 100%;
}


/* =========================================================
   HERO TEXT
========================================================= */

.involved-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        8px 14px;

    margin-bottom: 24px;

    border:
        1px solid
        rgba(28, 113, 82, 0.15);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.78);

    color: #197052;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.involved-label span {
    width: 7px;

    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #76b89b;
}


.involved-hero h1 {
    max-width: 760px;

    margin: 0 0 24px;

    color: #17382d;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(48px, 6vw, 76px);

    line-height: 0.99;

    letter-spacing: -0.035em;
}


.involved-hero h1 span {
    color: #237a59;
}


.involved-hero-text {
    max-width: 670px;

    margin: 0;

    color: #667d74;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.involved-visual {
    width: 100%;

    min-width: 0;

    min-height: 370px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    position: relative;
}


/* =========================================================
   HERO CARD
========================================================= */

.involved-visual-card {
    width: min(
        100%,
        390px
    );

    min-height: 335px;

    padding: 38px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #ffffff;

    border:
        1px solid
        rgba(24, 105, 77, 0.10);

    border-radius: 30px;

    box-shadow:
        0 25px 70px
        rgba(34, 91, 70, 0.11);

    transform: rotate(2deg);

    position: relative;

    overflow: hidden;
}


.involved-visual-card::before {
    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -80px;

    top: -80px;

    border-radius: 50%;

    background:
        rgba(112, 186, 157, 0.10);
}


.involved-visual-card > div {
    position: relative;

    z-index: 2;
}


.visual-icon {
    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: #e4f3ed;

    color: #167253;

    font-size: 26px;
}


.involved-visual-card h3 {
    margin:
        32px 0 10px;

    color: #17382d;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 30px;

    line-height: 1.15;
}


.involved-visual-card p {
    margin: 0;

    color: #71857e;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.involved-content {
    width: min(
        calc(100% - 48px),
        1180px
    );

    margin: 0 auto;

    padding:
        0 0 100px;
}


/* =========================================================
   SECTION INTRO
========================================================= */

.section-intro {
    max-width: 760px;

    margin-bottom: 45px;
}


.eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #217a59;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.section-intro h2 {
    margin:
        0 0 16px;

    color: #17382d;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 42px;

    line-height: 1.15;

    letter-spacing: -0.02em;
}


.section-intro p {
    margin: 0;

    color: #6a8078;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   OPPORTUNITIES GRID
========================================================= */

.opportunities-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;

    margin-bottom: 90px;
}


/* =========================================================
   OPPORTUNITY CARD
========================================================= */

.opportunity-card {
    min-width: 0;

    min-height: 270px;

    padding: 32px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border:
        1px solid
        rgba(24, 105, 77, 0.10);

    border-radius: 24px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.opportunity-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(24, 105, 77, 0.18);

    box-shadow:
        0 20px 50px
        rgba(34, 91, 70, 0.10);
}


.opportunity-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}


.opportunity-icon {
    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background: #eaf6f0;

    color: #187355;

    font-size: 21px;
}


.opportunity-number {
    color: #a0b4ac;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 26px;
}


.opportunity-card h3 {
    margin:
        0 0 10px;

    color: #24473b;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px;

    line-height: 1.2;
}


.opportunity-card p {
    margin:
        0 0 24px;

    color: #71857e;

    font-size: 14px;

    line-height: 1.75;
}


.opportunity-link {
    width: fit-content;

    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #187355;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}


.opportunity-link:hover {
    gap: 13px;

    color: #115b42;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-section {
    margin-bottom: 90px;
}


.how-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.how-card {
    min-width: 0;

    padding: 30px;

    background: #ffffff;

    border:
        1px solid
        rgba(24, 105, 77, 0.10);

    border-radius: 22px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.how-card:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 15px 35px
        rgba(34, 91, 70, 0.08);
}


.how-number {
    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #e4f3ed;

    color: #197052;

    font-size: 13px;

    font-weight: 700;
}


.how-card h3 {
    margin:
        0 0 10px;

    color: #294b3f;

    font-size: 18px;
}


.how-card p {
    margin: 0;

    color: #71857e;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.involved-cta {
    position: relative;

    overflow: hidden;

    padding: 55px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 40px;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #e8f5ef,
            #f7fbf9
        );

    border:
        1px solid
        rgba(24, 105, 77, 0.10);

    border-radius: 28px;
}


.involved-cta::before {
    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    right: -120px;

    top: -130px;

    border-radius: 50%;

    background:
        rgba(108, 187, 156, 0.10);

    pointer-events: none;
}


.involved-cta > div {
    position: relative;

    z-index: 2;
}


.involved-cta h2 {
    margin:
        0 0 12px;

    color: #17382d;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 38px;

    line-height: 1.15;
}


.involved-cta p {
    max-width: 680px;

    margin: 0;

    color: #6b8178;

    font-size: 14px;

    line-height: 1.75;
}


.cta-button {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        14px 23px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #176e50,
            #278160
        );

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    box-shadow:
        0 10px 25px
        rgba(23, 110, 80, 0.16);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.cta-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(23, 110, 80, 0.22);
}


/* =========================================================
   FOOTER
========================================================= */

.involved-footer {
    width: min(
        calc(100% - 48px),
        1180px
    );

    margin: 0 auto;

    padding:
        35px 0;

    text-align: center;

    color: #82938d;

    font-size: 12px;

    border-top:
        1px solid
        rgba(24, 105, 77, 0.08);
}


/* =========================================================
   IMPORTANT IMAGE PROTECTION
   Prevents logo from becoming huge
========================================================= */

.involved-page .site-logo img,
.involved-page img[src="../assets/logo.png"] {
    width: 52px !important;

    height: 52px !important;

    min-width: 52px !important;

    min-height: 52px !important;

    max-width: 52px !important;

    max-height: 52px !important;

    object-fit: contain !important;

    object-position: center !important;

    margin: 0 !important;
}


/* =========================================================
   GENERAL IMAGE PROTECTION
========================================================= */

.involved-page img {
    box-sizing: border-box;

    max-width: 100%;

    height: auto;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .involved-page .header-container {
        width:
            calc(100% - 40px);
    }


    .involved-page .main-nav {
        gap: 19px;
    }


    .involved-hero-inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(290px, 0.8fr);

        gap: 45px;
    }


    .involved-hero h1 {
        font-size:
            clamp(45px, 6vw, 64px);
    }


    .involved-content {
        width:
            calc(100% - 40px);
    }

}


/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media (max-width: 850px) {

    .involved-page .header-container {
        min-height: 72px;

        width:
            calc(100% - 32px);
    }


    .involved-page .menu-toggle {
        display: flex;
    }


    .involved-page .main-nav {
        position: fixed;

        top: 0;

        right: 0;

        width:
            min(88vw, 390px);

        height: 100dvh;

        padding:
            90px 20px 30px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        background: #ffffff;

        box-shadow:
            -15px 0 50px
            rgba(23, 68, 52, 0.13);

        overflow-y: auto;

        transform:
            translateX(100%);

        transition:
            transform 0.3s ease;

        z-index: 2000;
    }


    .involved-page .main-nav.active {
        transform:
            translateX(0);
    }


    .involved-page .main-nav > .nav-link,
    .involved-page .nav-dropdown-toggle {
        width: 100%;

        min-height: 52px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding:
            0 12px;

        border-bottom:
            1px solid
            rgba(24, 105, 77, 0.07);

        color: #4f6960;

        font-size: 14px;

        text-align: left;
    }


    .involved-page .nav-dropdown {
        width: 100%;
    }


    .involved-page .nav-dropdown-toggle i {
        transition:
            transform 0.25s ease;
    }


    .involved-page .nav-dropdown.open
    .nav-dropdown-toggle i {
        transform:
            rotate(180deg);
    }


    .involved-page .dropdown-menu {
        position: static;

        width: 100%;

        min-width: 0;

        padding:
            5px 0 8px;

        display: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: none;

        box-shadow: none;

        border: 0;

        border-radius: 0;

        background: #f7fbf9;
    }


    .involved-page .nav-dropdown.open
    .dropdown-menu {
        display: flex;
    }


    .involved-page .dropdown-menu::before {
        display: none;
    }


    .involved-page .dropdown-menu a {
        min-height: 45px;

        padding:
            10px 18px;

        border-radius: 9px;

        font-size: 13px;
    }


    .involved-page .dropdown-menu a:hover,
    .involved-page .dropdown-menu a.active {
        background: #eaf6f0;
    }


    .involved-page .site-logo img,
    .involved-page img[src="../assets/logo.png"] {
        width: 44px !important;

        height: 44px !important;

        min-width: 44px !important;

        min-height: 44px !important;

        max-width: 44px !important;

        max-height: 44px !important;
    }


    .involved-page .site-logo {
        gap: 9px;

        max-width: 245px;
    }


    .involved-page .site-logo strong {
        font-size: 16px;
    }


    .involved-page .site-logo small {
        max-width: 180px;

        overflow: hidden;

        text-overflow: ellipsis;

        font-size: 7px;
    }


    .involved-hero {
        padding:
            115px 20px 70px;
    }


    .involved-hero-inner {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .involved-hero h1 {
        max-width: 700px;

        font-size:
            clamp(45px, 9vw, 62px);
    }


    .involved-visual {
        min-height: auto;

        padding:
            10px 0;
    }


    .involved-visual-card {
        width:
            min(100%, 420px);

        transform:
            rotate(1deg);
    }


    .opportunities-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .how-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .involved-cta {
        grid-template-columns: 1fr;

        gap: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .involved-page .header-container {
        width:
            calc(100% - 28px);

        gap: 12px;
    }


    .involved-page .site-logo {
        max-width: 225px;

        gap: 8px;
    }


    .involved-page .site-logo img,
    .involved-page img[src="../assets/logo.png"] {
        width: 42px !important;

        height: 42px !important;

        min-width: 42px !important;

        min-height: 42px !important;

        max-width: 42px !important;

        max-height: 42px !important;
    }


    .involved-page .site-logo strong {
        font-size: 15px;
    }


    .involved-page .site-logo small {
        max-width: 165px;

        font-size: 6.5px;
    }


    .involved-page .main-nav {
        width: 92vw;

        padding:
            82px 16px 25px;
    }


    .involved-hero {
        padding:
            105px 18px 60px;
    }


    .involved-hero::before {
        width: 300px;

        height: 300px;

        right: -180px;

        top: 40px;
    }


    .involved-label {
        margin-bottom: 18px;

        padding:
            7px 12px;

        font-size: 10px;
    }


    .involved-hero h1 {
        margin-bottom: 18px;

        font-size:
            clamp(40px, 12vw, 52px);

        line-height: 1.03;
    }


    .involved-hero-text {
        font-size: 14px;

        line-height: 1.75;
    }


    .involved-visual {
        min-height: auto;

        padding:
            5px 0 10px;
    }


    .involved-visual-card {
        width: 100%;

        min-height: 285px;

        padding: 27px;

        border-radius: 23px;

        transform: none;
    }


    .visual-icon {
        width: 54px;

        height: 54px;

        border-radius: 15px;

        font-size: 21px;
    }


    .involved-visual-card h3 {
        margin-top: 25px;

        font-size: 26px;
    }


    .involved-visual-card p {
        font-size: 13px;
    }


    .involved-content {
        width:
            calc(100% - 32px);

        padding-bottom: 65px;
    }


    .section-intro {
        margin-bottom: 32px;
    }


    .eyebrow {
        font-size: 10px;
    }


    .section-intro h2 {
        font-size: 32px;

        line-height: 1.18;
    }


    .section-intro p {
        font-size: 14px;

        line-height: 1.75;
    }


    .opportunities-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-bottom: 65px;
    }


    .opportunity-card {
        min-height: 235px;

        padding: 25px;

        border-radius: 20px;
    }


    .opportunity-icon {
        width: 50px;

        height: 50px;

        font-size: 19px;
    }


    .opportunity-number {
        font-size: 23px;
    }


    .opportunity-card h3 {
        font-size: 23px;
    }


    .opportunity-card p {
        font-size: 13px;

        line-height: 1.7;
    }


    .how-section {
        margin-bottom: 65px;
    }


    .how-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .how-card {
        padding: 24px;

        border-radius: 19px;
    }


    .how-card p {
        font-size: 13px;
    }


    .involved-cta {
        padding:
            32px 23px;

        border-radius: 21px;
    }


    .involved-cta h2 {
        font-size: 30px;
    }


    .involved-cta p {
        font-size: 13px;
    }


    .cta-button {
        width: 100%;

        padding:
            14px 18px;
    }


    .involved-footer {
        width:
            calc(100% - 32px);

        padding:
            28px 0;

        font-size: 11px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .involved-page .site-logo {
        max-width: 200px;
    }


    .involved-page .site-logo img,
    .involved-page img[src="../assets/logo.png"] {
        width: 38px !important;

        height: 38px !important;

        min-width: 38px !important;

        min-height: 38px !important;

        max-width: 38px !important;

        max-height: 38px !important;
    }


    .involved-page .site-logo strong {
        font-size: 14px;
    }


    .involved-page .site-logo small {
        display: none;
    }


    .involved-page .menu-toggle {
        width: 40px;

        height: 40px;
    }


    .involved-hero {
        padding-top: 95px;
    }


    .involved-hero h1 {
        font-size: 39px;
    }


    .involved-visual-card {
        min-height: 270px;

        padding: 23px;
    }


    .section-intro h2 {
        font-size: 29px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .involved-page *,
    .involved-page *::before,
    .involved-page *::after {

        animation: none !important;

        transition: none !important;

        scroll-behavior: auto !important;
    }

}