* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Quicksand", sans-serif;
    color: black;
    overflow-x: hidden;
    background: #FFF9F2;
}
.page {
    min-height: 100vh;
    background: white;
    animation: pageReveal 1.2s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes pageReveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}.top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;

    display: flex;
    align-items: center;
    padding: 0 35px;
    gap: 35px;

    /* Plus opaque */
    background: rgba(255, 249, 242, 0.97);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(23, 50, 77, 0.09);

    box-shadow:
        0 8px 25px rgba(23, 50, 77, 0.08);

    z-index: 100000;

    animation:
        navReveal .9s
        cubic-bezier(.22, 1, .36, 1)
        .1s both;
}

@keyframes navReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    transition:
        transform .3s ease;
}
.brand:hover {
    transform:
        translateY(-2px);
}
.fox {
    width: 55px;
    height: 55px;
    object-fit: cover;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}
.brand:hover .fox {
    transform:
        rotate(-4deg)
        scale(1.04);
  
}
.brand-name {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #17324D;
}
.index-1,
.about-1,
.faq-1,
.story-1,
.involve-1,
.donate-1 {
    position: absolute;
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
    color: #17324D;
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition:
        transform .3s ease,
        color .25s ease,
        opacity .25s ease;
}
.index-1 {
    margin-left: 365px;
}
.about-1 {
    margin-left: 515px;
}
.faq-1 {
    margin-left: 565px;
}
.story-1 {
    margin-left: 610px;
}
.involve-1 {
    margin-left: 665px;
}
.donate-1 {
    margin-left: 790px;
}
.index-1,
.involve-1 {
    cursor: pointer;
}
.index-1.open .triangle,
.involve-1.open .triangle {
    transform:
        rotate(180deg);
}
.triangle {
    display: inline-block;
    margin-left: 5px;
    font-size: 19px;
    transform-origin: center;
    transition:
        transform .35s ease;
}
.index-1:hover,
.about-1:hover,
.faq-1:hover,
.story-1:hover,
.involve-1:hover,
.donate-1:hover {
    color: #39A6A3;
    transform:
        translateY(-2px);
}
.donate-1 {
    border:
        3px solid #17324D;
    border-radius: 35px;
    padding:
        9px 21px;
}
.donate-1:hover {
    color: #39A6A3;
    border-color:
        #39A6A3;
}
.explore-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background:
        rgba(255, 249, 242, 0.82);
    backdrop-filter:
        blur(123px);
    -webkit-backdrop-filter:
        blur(123px);
    border-top:
        1px solid rgba(23, 50, 77, 0.07);
    border-bottom:
        1px solid rgba(23, 50, 77, 0.07);
    box-shadow:
        0 15px 40px rgba(23, 50, 77, .08);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform:
        translateY(-100%);
    pointer-events: none;
    transition:
        transform .5s cubic-bezier(.22, 1, .36, 1),
        opacity .35s ease,
        visibility .5s ease;
}
.explore-menu.open {
    opacity: 1;
    visibility: visible;
    transform:
        translateY(0);
    pointer-events: auto;
}
.explore-menu-content {
    width: 100%;
    height: 100%;
    padding:
        45px 8%;
    overflow-y: auto;
}
.explore-menu-header {
    margin-bottom: 35px;
}
.explore-menu-header h2 {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #17324D;
    letter-spacing: -1.5px;
}
.explore-menu-header p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #526A7A;
}
.explore-menu-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.explore-item {
    padding: 25px;
    background:
        rgba(255, 249, 242, .45);
    border:
        1px solid rgba(23, 50, 77, .07);
    border-radius: 16px;
    backdrop-filter:
        blur(10px);
    -webkit-backdrop-filter:
        blur(10px);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}
.explore-item:hover {
    transform:
        translateY(-5px);
    background:
        rgba(255, 249, 242, .65);
    box-shadow:
        0 10px 30px rgba(23, 50, 77, .08);
}
.explore-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #17324D;
}
.explore-item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #526A7A;
}







.explore-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background:
        rgba(255, 249, 242, 0.82);
    backdrop-filter:
        blur(12px);
    -webkit-backdrop-filter:
        blur(12px);
    border-top:
        1px solid rgba(23, 50, 77, 0.07);
    border-bottom:
        1px solid rgba(23, 50, 77, 0.07);
    box-shadow:
        0 15px 40px rgba(23, 50, 77, .08);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform:
        translateY(-100%);
    pointer-events: none;
    transition:
        transform .5s cubic-bezier(.22, 1, .36, 1),
        opacity .35s ease,
        visibility .5s ease;
}
.explore-menu.open {
    opacity: 1;
    visibility: visible;
    transform:
        translateY(0);
    pointer-events: auto;
}
.explore-menu-content {
    width: 100%;
    height: 100%;
    padding:
        45px 8%;
    overflow-y: auto;
}
.explore-menu-header {
    margin-bottom: 35px;
}
.explore-menu-header h2 {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #17324D;
    letter-spacing: -1.5px;
}
.explore-menu-header p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #526A7A;
}
.explore-menu-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.explore-item {
    padding: 25px;
    background:
        rgba(255, 249, 242, .45);
    border:
        1px solid rgba(23, 50, 77, .07);
    border-radius: 16px;
    backdrop-filter:
        blur(10px);
    -webkit-backdrop-filter:
        blur(10px);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}
.explore-item:hover {
    transform:
        translateY(-5px);
    background:
        rgba(255, 249, 242, .65);
    box-shadow:
        0 10px 30px rgba(23, 50, 77, .08);
}
.explore-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #17324D;
}
.explore-item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #526A7A;
}

.signin-button {
    border: none;
    border-radius: 20px;
    padding:
        12px 25px;
    background:
        transparent;
    color: #17324D;
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform .3s ease,
        color .25s ease,
        background .25s ease;
}
.signin-button:hover {
    transform:
        translateY(-2px);
    color:
        #39A6A3;
    background:
        rgba(57, 166, 163, .08);
}
.signup-button {
    border: none;
    height: 45px;
    min-width: 100px;
    padding:
        0 22px;
    border-radius: 35px;
    background:
        #17324D;
    color:
        #FFF9F2;
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 18px rgba(23, 50, 77, .13);
    transition:
        transform .3s ease,
        background .25s ease,
        box-shadow .25s ease;
}
.signup-button:hover {
    transform:
        translateY(-3px);
    background:
        #39A6A3;
    box-shadow:
        0 12px 25px rgba(57, 166, 163, .22);
}

.donate-hero {
    min-height: 100vh;
    padding: 135px 7% 80px;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(500px, 560px);
    align-items: center;
    gap: 70px;
    background:
        radial-gradient(circle at 15% 30%, rgba(57, 166, 163, .12), transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(244, 201, 93, .15), transparent 28%),
        white;
}

.donate-intro {
    max-width: 600px;
    margin-top:-600px;
}

.eyebrow,
.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #17324d;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.donate-intro h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight:700;
    margin-bottom: 25px;
}

.donate-intro p {
    max-width: 530px;
    font-size: 19px;
    line-height: 1.7;
}

.donation-card {
    width: 100%;
    padding: 34px;
    border: 1px solid rgba(23, 50, 77, .13);
    border-radius: 24px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 20px 60px rgba(23, 50, 77, .10);
}

.donation-card h2 {
    text-align: center;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.field-label {
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
}

.required {
    color: #b34a5c;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.amount-button,
.custom-amount {
    min-height: 55px;
    border: 1px solid rgba(23, 50, 77, .2);
    border-radius: 10px;
    background: white;
}

.amount-button {
    color: #278f88;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.amount-button:hover,
.amount-button.selected {
    background: #39A6A3;
    border-color: #39A6A3;
    color: white;
}

.custom-amount {
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
}

.custom-amount span {
    color: #278f88;
    font-size: 17px;
    font-weight: 700;
}

.custom-amount input {
    width: 100%;
    height: 40px;
    border: 0;
    outline: 0;
    font-size: 17px;
    color: #17324D;
    background: transparent;
}

select,
textarea {
    width: 100%;
    border: 1px solid rgba(23, 50, 77, .22);
    border-radius: 10px;
    background: white;
    outline: none;
}

select {
    height: 50px;
    padding: 0 12px;
    margin-bottom: 26px;
    font-size: 17px;
    color: #17324D;
}

textarea {
    min-height: 130px;
    padding: 14px;
    resize: vertical;
    font-size: 17px;
    line-height: 1.5;
}

textarea:focus,
select:focus,
.custom-amount:focus-within {
    border-color: #39A6A3;
}

.character-count {
    margin-top: 5px;
    text-align: right;
    font-size: 14px;
    color: #697781;
}

.donation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 28px 0;
}

.check-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.check-option input {
    width: 17px;
    height: 17px;
    accent-color: #39A6A3;
}

.donate-button {
    width: 100%;
    min-height: 56px;
    margin-top: 4px;
    border: 0;
    border-radius: 30px;
    background: #39A6A3;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.donate-button:hover {
    transform: translateY(-2px);
    background: #2d918e;
}

.share-section {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
    color: #6d777d;
    font-size: 15px;
}

.share-section span {
    margin-right: 4px;
}

.share-section a {
    font-weight: 700;
    transition: color .2s ease;
}

.share-section a:hover {
    color: #39A6A3;
}

.mission-section {
    padding: 100px 7%;
    border-top: 1px solid rgba(23, 50, 77, .1);
    background: #F5F9FA;
}

.mission-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 80px;
    align-items: start;
}

.mission-text h2 {
    max-width: 700px;
    margin-bottom: 25px;
    font-size: 40px;
    line-height: 1.15;
}

.mission-text p {
    max-width: 720px;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #4c5d67;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.mission-stat {
    padding-top: 20px;
    border-top: 1px solid rgba(23, 50, 77, .15);
}

.mission-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #39A6A3;
    font-size: 30px;
}

.mission-stat span {
    font-size: 16px;
    color: #5c6a72;
}

.supporters-card {
    padding: 25px;
    border: 1px solid rgba(23, 50, 77, .12);
    border-radius: 20px;
    background: white;
    box-shadow: 0 15px 40px rgba(23, 50, 77, .07);
}

.supporters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.supporters-header h3 {
    font-size: 21px;
}

.supporters-header span {
    color: #39A6A3;
    font-size: 24px;
}

.supporter {
    padding: 23px 0;
    border-bottom: 1px solid rgba(23, 50, 77, .1);
}

.supporter:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.supporter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.supporter-top strong {
    font-size: 16px;
}

.supporter-top b {
    color: #39A6A3;
    font-size: 17px;
}

.supporter p {
    margin: 7px 0;
    color: #59666d;
    font-size: 15px;
    line-height: 1.5;
}

.supporter-time {
    color: #8a9499;
    font-size: 14px;
    font-style: italic;
}

.donation-message {
    max-width: 1200px;
    margin: 90px auto;
    padding: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 28px;
    background: #17324D;
    color: white;
}

.donation-message .section-label {
    color: #F4C95D;
}

.donation-message h2 {
    max-width: 700px;
    font-size: 40px;
    line-height: 1.15;
}

.message-button {
    flex-shrink: 0;
    padding: 15px 25px;
    border-radius: 30px;
    background: #39A6A3;
    color: white;
    font-size: 17px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .top {
        gap: 20px;
        padding: 0 25px;
    }

    .brand-name {
        font-size: 26px;
    }

    .index-1,
    .involve-1,
    .about-1,
    .faq-1,
    .story-1,
    .donate-1,
    .signin-button,
    .signup-button {
        font-size: 16px;
    }

    .donate-hero {
        grid-template-columns: 1fr;
        padding: 120px 6% 70px;
    }

    .donate-intro {
        max-width: 750px;
    }

    .donation-card {
        max-width: 650px;
        margin: auto;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .supporters-card {
        max-width: 600px;
    }
}

@media (max-width: 800px) {
    .top {
        height: 70px;
        padding: 0 20px;
    }

    .fox {
        width: 48px;
        height: 48px;
    }

    .brand-name {
        font-size: 24px;
    }

    .about-1,
    .faq-1,
    .story-1,
    .donate-1,
    .signin-button,
    .signup-button {
        display: none;
    }

    .index-1,
    .involve-1 {
        margin-left: auto;
    }

    .involve-1 {
        margin-left: 0;
    }

    .explore-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 35px 20px;
    }

    .explore-menu-list {
        grid-template-columns: 1fr;
    }

    .donate-hero {
        padding: 110px 20px 55px;
        gap: 45px;
    }

    .donate-intro h1 {
        font-size: 44px;
    }

    .donate-intro p {
        font-size: 17px;
    }

    .donation-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .donation-card h2 {
        font-size: 28px;
    }

    .donation-options {
        grid-template-columns: 1fr;
    }

    .mission-section {
        padding: 70px 20px;
    }

    .mission-text h2 {
        font-size: 34px;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .donation-message {
        margin: 60px 20px;
        padding: 35px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .donation-message h2 {
        font-size: 32px;
    }
}

@media (max-width: 520px) {
    .top {
        padding: 0 15px;
    }

    .brand {
        gap: 6px;
    }

    .brand-name {
        font-size: 22px;
    }

    .index-1,
    .involve-1 {
        font-size: 15px;
    }

    .donate-hero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .donate-intro h1 {
        font-size: 40px;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-card h2 {
        font-size: 26px;
    }

    .mission-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mission-text h2 {
        font-size: 32px;
    }

    .supporters-card {
        padding: 20px;
    }

    .donation-message {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 1200px) {
    .index-1 {
        margin-left: 300px;
    }
    .about-1 {
        margin-left: 440px;
    }
    .faq-1 {
        margin-left: 490px;
    }
    .story-1 {
        margin-left: 540px;
    }
    .involve-1 {
        margin-left: 590px;
    }
    .donate-1 {
        margin-left: 705px;
    }
    .stories-container {
        grid-template-columns:
            repeat(3, 1fr);
        gap: 20px;
    }
}
@media (max-width: 900px) {
    .top {
        padding:
            0 20px;
        gap: 15px;
    }
    .brand-name {
        font-size: 24px;
    }
    .fox {
        width: 45px;
        height: 45px;
    }
    .index-1,
    .about-1,
    .faq-1,
    .story-1,
    .involve-1,
    .donate-1 {
        position: static;
        margin-left: 0;
    }
    .stories-container {
        grid-template-columns:
            1fr;
        max-width: 500px;
    }
    .space {
        padding:
            100px 8%;
    }
    .creator {
        margin-left: 8%;
        margin-right: 8%;
    }
}
@media (max-width: 768px) {
    .space .bga-05__terrain,
    .space .bga-05__ridge {
        inset:
            -100%;
    }
    .front_text {
        font-size: 65px;
        word-spacing: 100px;
    }
    .front_text2 {
        font-size: 38px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior:
            auto;
    }
    *,
    *::before,
    *::after {
        animation-duration:
            .01ms !important;
        animation-iteration-count:
            1 !important;
        transition-duration:
            .01ms !important;
    }
    .space .bga-05__terrain,
    .space .bga-05__ridge {
        filter:
            none;
        opacity:
            .4;
    }
}
@media (max-width: 650px) {
    .top {
        height: 65px;
        padding:
            0 15px;
        gap: 8px;
    }
    .fox {
        width: 40px;
        height: 40px;
    }
    .brand-name {
        font-size: 20px;
    }
    .index-1,
    .about-1,
    .faq-1,
    .story-1,
    .involve-1,
    .donate-1 {
        display:
            none;
    }
    .signin-button {
        padding:
            8px 12px;
        font-size:
            13px;
    }
    .signup-button {
        height:
            38px;
        min-width:
            75px;
        padding:
            0 12px;
        font-size:
            12px;
    }
    .space {
        min-height:
            500px;
        margin-top:
            65px;
        padding:
            80px 7%;
        border-radius:
            0 0 20px 20px;
    }
    .front {
        width:
            100%;
        margin-top:
            80px;
    }
    .front_text {
        font-size:
            52px;
        word-spacing:
            normal;
        letter-spacing:
            -2px;
    }
    .front_text2 {
        font-size:
            32px;
        margin-top:
            30px;
    }
    .front2 {
        width:
            100%;
        margin-left:
            0;
        margin-top:
            20px;
    }
    .start-learning-button {
        width:
            calc(100% - 20px);
    }
    .for-parents,
    .for-educator {
        width:
            42%;
        font-size:
            11px;
    }
    .for-parents {
        margin-left:
            0;
    }
    .for-educator {
        margin-left:
            46%;
    }
    .creator {
        height:
            650px;
        margin:
            80px 20px;
        padding:
            35px;
    }
    .testimonial-line {
        display:
            none;
    }
    .testimonial-text {
        position:
            relative;
        top:
            auto;
        left:
            auto;
        margin:
            50px 20px;
    }
    .testimonial-author {
        position:
            relative;
        top:
            auto;
        left:
            auto;
        margin-left:
            20px;
    }
    .How-text {
        font-size:
            32px;
    }
    .How-text2 {
        font-size:
            17px;
        padding:
            0 25px;
    }
    .stories-container {
        margin:
            50px 20px 200px;
        padding:
            0;
        grid-template-columns:
            1fr;
    }
}

/* =====================================================
   DROPDOWN PANELS
   ===================================================== */

.explore-menu-content {
    display: block;
}

.dropdown-panel {
    display: none;
    width: 100%;
}

.dropdown-panel.active {
    display: block;
}

.get-involved-menu {
    display: contents;
}

.explore-menu-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.get-involved-panel .explore-item {
    min-height: 150px;
}

/* =====================================================
   DROPDOWN ITEMS — VERTICAL, NO BACKGROUND, PAGE LINKS
   ===================================================== */

.explore-menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}

.explore-item {
    display: block;
    width: 100%;
    padding: 18px 0;
    margin: 0;
    background: transparent !important;
    border: none;
    border-radius: 0;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #17324D;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform .25s ease,
        color .25s ease;
}

.explore-item:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: translateX(8px);
}

.explore-item h3 {
    margin: 0 0 7px;
    color: #17324D;
    font-size: 20px;
    font-weight: 600;
}

.explore-item p {
    margin: 0;
    max-width: 650px;
    color: #526A7A;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.explore-item:focus-visible {
    outline: 3px solid rgba(57, 166, 163, .35);
    outline-offset: 6px;
    border-radius: 4px;
}

.get-involved-panel .explore-item {
    min-height: 0;
}

@media (max-width: 650px) {
    .explore-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .explore-menu-content {
        padding: 35px 7%;
    }

    .explore-menu-list {
        gap: 0;
    }

    .explore-item {
        padding: 15px 0;
    }
}
