/* Auto-generated - do not edit */
/* BASE */
*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    scroll-padding-top: 160px;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--text-base-size, 1.25em);
    font-family: var(--font-primary);
    color: var(--color-contrast-high, #313135);
    background-color: var(--color-bg, #fff);
}

article,
aside,
details,
figcaption,
figure,
footer,
form legend,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: var(--color-primary);
    text-decoration: underline;
}

strong {
    font-weight: 700;
}

img,
svg,
video {
    max-width: 100%;
}

.container {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--component-padding) * 2);
    max-width: 1280px;
}

[data-theme] {
    background-color: var(--color-bg, #fff);
    color: var(--color-contrast-high, #313135);
}

.mega-nav {
    font-family: var(--font-heading);
}

/* ── Clone site utility classes ── */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-stretch {
    align-items: stretch;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.text-sm {
    font-size: var(--text-sm, 0.833em);
}

.text-center {
    text-align: center;
}

.hide {
    display: none;
}

@media (min-width: 64rem) {
    .flex\@md {
        display: flex;
    }

    .hide\@md {
        display: none !important;
    }

    .width-50\@md {
        width: 50%;
    }

    .margin-bottom-0\@md {
        margin-bottom: 0 !important;
    }
}

@media not all and (min-width: 64rem) {
    .display\@md {
        display: none !important;
    }
}

/* ── Margin utilities (from clone site) ── */
.margin-bottom-lg {
    margin-bottom: var(--space-lg);
}

.margin-bottom-xl {
    margin-bottom: var(--space-xl);
}

.margin-bottom-xxl {
    margin-bottom: var(--space-xxl);
}

.margin-top-xl {
    margin-top: var(--space-xl);
}

.margin-y-xl {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.margin-y-xxl {
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-xxl);
}

/* ── Padding utilities (from clone site) ── */
.padding-y-lg {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.padding-y-xl {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.padding-y-xxl {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl);
}

/* ── Responsive overrides (from clone site) ── */
@media (min-width: 64rem) {
    .margin-bottom-xxl\@md {
        margin-bottom: var(--space-xxl);
    }

    .margin-y-xxl\@md {
        margin-top: var(--space-xxl);
        margin-bottom: var(--space-xxl);
    }

    .flex-row\@md {
        flex-direction: row;
    }
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grow {
    flex-grow: 1;
}

.z-index-1 {
    z-index: 1;
}

/* ── Text Component (from clone site) ── */
.text-component h2,
.text-component h3,
.text-component h4 {
    margin-top: calc(var(--space-unit) * 0.75);
}

.text-component p {
    margin-bottom: calc(var(--space-unit) * 0.75);
    line-height: var(--body-line-height, 1.4);
}

.text-component h2 {
    margin-bottom: calc(var(--space-unit) * 0.25);
}

.max-width-lg {
    max-width: var(--max-width-lg) !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 64rem) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Grid system (from clone site — negative-margin gap technique) ── */
.grid {
    --gap-x: 0px;
    display: flex;
    flex-wrap: wrap;
}

.parent.grid {
    flex-direction: row;
}

.col-12 {
    flex-basis: calc(100% - 0.01px);
    max-width: calc(100% - 0.01px);
    flex-grow: 0;
    flex-shrink: 1;
}

@media (min-width: 48rem) {
    .col-8\@sm {
        flex-basis: calc(66.66% - 0.01px - var(--gap-x));
        max-width: calc(66.66% - 0.01px - var(--gap-x));
    }
}

@media (min-width: 64rem) {
    .gap-xl\@md {
        --gap-x: var(--space-xl);
        margin-bottom: calc(var(--gap-x) * -1);
        margin-left: calc(var(--gap-x) * -1);
    }

    .gap-xl\@md>* {
        margin-bottom: var(--gap-x);
        margin-left: var(--gap-x);
    }
}

/* ── Dimensional utilities (from clone site) ── */
.width-100 {
    width: 100%;
}

.height-100 {
    height: 100%;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

::selection {
    background: var(--color-primary);
    color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
    margin: 0;
}

q::before,
q::after {
    display: none;
}

button {
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    background: none transparent;
    color: inherit;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    font: inherit;
    line-height: normal;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

blockquote {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

#svg-- {
    display: none;
}

/* fixed talent community window */
.mfp-wrap {
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed !important;
    top: 0 !important;
}

/* ── Typography — Zing Credit Union ── */
/* Live site: body 20px Karma, headings Lato 700 */
body {
    font-family: var(--font-primary);
    font-size: var(--text-base-size, 1.25em);
    line-height: normal;
    color: var(--color-text-subtle);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-contrast-higher);
}

h1 {
    font-size: var(--font-size-4xl);
    margin-top: 0;
    margin-bottom: 0.25em;
}

h2 {
    font-size: var(--font-size-3xl);
    margin-top: 0.75em;
    margin-bottom: 0.25em;
}

h3 {
    font-size: var(--font-size-2xl);
    margin-top: 0;
    margin-bottom: 0.25em;
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-md);
}

a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: var(--color-primary-dark);
}

small {
    font-size: var(--font-size-sm);
}

/* Auto-generated - do not edit */
/* ── Accordion — matches myzing.com computed styles exactly ── */
.accordion--group .accordion--wrapper {
    border-bottom: 1px solid var(--color-border);
}

.accordion--group .accordion--wrapper>.accordion__header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1em;
    font-weight: 400;
    color: var(--color-text-subtle);
    background: transparent;
    border: none;
    cursor: pointer;
}

.accordion--group .accordion--wrapper>.accordion__header .accordion__title {
    flex-shrink: 0;
    font-family: var(--font-primary);
    font-size: 1em;
    font-weight: 400;
    color: var(--color-text-subtle);
}

.accordion--group .accordion--wrapper>.accordion__header .accordion__icon-arrow {
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-left: var(--space-sm);
    transition: transform 0.3s ease;
}

.accordion--group .accordion--wrapper.current>.accordion__header .accordion__icon-arrow {
    transform: rotate(0deg);
}

.accordion--group .accordion--wrapper:not(.current)>.accordion__header .accordion__icon-arrow {
    transform: rotate(45deg);
}

.accordion--group .accordion--wrapper>.accordion__panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.accordion--group .accordion--wrapper>.accordion__panel>.accordion__panel-inner {
    padding: 0 var(--space-md) var(--space-md);
}

/* ── Button Components — Zing Credit Union ── */
:root {
    --btn-font-size: 1em;
    --btn-padding-x: 1.48em;
    --btn-padding-y: 0.5em;
    --btn-radius: var(--radius-button);
    --btn-line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--btn-font-size);
    line-height: var(--btn-line-height);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
    text-decoration: none;
    text-align: center;
    position: relative;
    -webkit-font-smoothing: antialiased;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0.1px 0.3px 0px, rgba(0, 0, 0, 0.12) 0px 1px 2px 0px;
}

.btn:focus-visible {
    outline: 2px solid rgb(112, 136, 168);
    outline-offset: 2px;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: var(--color-primary);
    text-decoration: underline;
    box-shadow: rgba(0, 0, 0, 0.024) 0px 0.3px 0.4px 0px, rgba(0, 0, 0, 0.05) 0px 0.9px 1.5px 0px, rgba(0, 0, 0, 0.1) 0px 3.5px 6px 0px;
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-contrast-higher);
    border: none;
    border-radius: 0;
    padding: var(--btn-padding-y) 0;
    box-shadow: none;
}

.btn--secondary:hover {
    color: var(--color-primary);
    text-decoration: underline;
    box-shadow: none;
}

.btn--sm {
    font-size: 0.8em;
}

.btn--md {
    font-size: 1.2em;
}

.btn--lg {
    font-size: 1.4em;
}

/* ── Card V3 — matches myzing.com GreenPath card-repeater ── */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 48rem) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-v3 {
    background-color: #fff;
    border-radius: 30px 0px 30px 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px 0px;
    overflow: hidden;
    height: 100%;
}

.card-v3__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.card-v3__link:hover {
    text-decoration: none;
}

.card-v3__img {
    height: 255px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.card-v3__content {
    padding: 40px;
    flex-grow: 1;
}

.card-v3__title {
    display: block;
    font-size: 31.25px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-contrast-higher);
    margin-bottom: calc(var(--space-unit) * 0.25);
}

.card-v3__body p {
    font-size: 1em;
    color: var(--color-contrast-high);
    line-height: 1.4;
    margin-bottom: 0;
}

/* ── Footer with orange line animation ── */
.card-v3__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px 40px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--color-contrast-higher);
    position: relative;
}

.card-v3__footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgb(222, 118, 84);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.card-v3__link:hover .card-v3__footer::before {
    transform: scaleX(1);
}

/* ── Arrow icon — hidden by default, shown on hover ── */
.card-v3__footer-icon-wrap {
    display: none;
}

.card-v3__link:hover .card-v3__footer-icon-wrap {
    display: block;
    color: rgb(222, 118, 84);
}

.card-v3__footer-icon-wrap .icon {
    --size: 20px;
    width: var(--size);
    height: var(--size);
}

.max-width-sm {
    max-width: var(--max-width-sm) !important;
}

/* ── Careers Icons Grid — "We are financial mentors" section ── */
.careers-icons__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: var(--space-md);
}

.careers-icons__item {
    flex: 0 0 calc(50% - var(--space-md));
    text-align: center;
    margin-bottom: var(--space-xl);
}

@media (min-width: 64rem) {
    .careers-icons__item {
        flex: 0 0 calc(25% - var(--space-md));
        margin-bottom: var(--space-sm);
    }
}

.careers-icons__item img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.careers-icons__item figure {
    margin: 0;
}

/* ── Coming Soon / Hero — matches myzing.com responsive behavior ── */
.coming-soon--no-clip {
    min-height: auto;
}

.coming-soon__figure {
    position: relative;
    height: auto;
}

.coming-soon__bg {
    background-size: cover;
    background-position: 50% center;
    background-repeat: no-repeat;
    padding-top: 100%;
}

/* .flip-card-wrapper { */
/* } */
.flip-card {
    transform-style: preserve-3d;
    transition: transform 1s;
}

.flip-card-front,
.flip-card-back {
    backface-visibility: hidden;
}

.flip-card-back,
.flip-card-wrapper:hover .flip-card {
    transform: rotateY(180deg);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    position: relative;
    width: 3rem;
    height: 2rem;
    gap: 0.5rem;
}

.hamburger.active .hamburger-bar:nth-child(1) {
    transform: rotate(-45deg);
}

.hamburger.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-bar:nth-child(3) {
    transform: rotate(45deg);
}

.hamburger-bar {
    display: block;
    width: 3rem;
    height: 0.35rem;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: absolute;
    background-color: var(--color-primary-orange);
}

.hamburger-bar:nth-of-type(1) {
    top: calc(50%);
    transform: translateY(calc(-150% - 0.5rem));
    /* 0.5rem is gap */
}

.hamburger-bar:nth-of-type(2) {
    top: calc(50%);
    transform: translateY(-50%);
}

.hamburger-bar:nth-of-type(3) {
    top: calc(50%);
    transform: translateY(calc(+50% + 0.5rem));
    /* 0.5rem is gap */
}

/* ── Mega Nav — simplified careers header ── */
:root {
    --inner-nav-height: 60px;
    --logo-width: 120px;
}

@media (min-width: 64rem) {
    :root {
        --inner-nav-height: 95px;
        --logo-width: 200px;
    }
}

/* ── Reset utility ── */
.reset {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    color: inherit;
    line-height: inherit;
    padding: 0;
}

.mega-nav {
    width: 100%;
    z-index: var(--zindex-fixed-element, 10);
    font-family: var(--font-heading);
    box-shadow: inset 0 -1px hsla(0, 0%, 20%, 0.1);
    height: var(--inner-nav-height);
}

/* ── Container ── */
.mega-nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: calc(100% - var(--component-padding) * 2);
    margin-left: auto;
    margin-right: auto;
}

/* ── Logo ── */
.mega-nav__logo {
    display: block;
    width: var(--logo-width);
    height: auto;
    flex-shrink: 0;
    text-decoration: none;
}

.mega-nav__logo>* {
    width: inherit;
    height: inherit;
}

/* ── Icon system ── */
.icon {
    --size: 1em;
    color: inherit;
    display: inline-block;
    fill: currentColor;
    flex-shrink: 0;
    height: var(--size);
    line-height: 1;
    max-width: none;
    width: var(--size);
}

.icon--sm {
    --size: 24px;
}

/* ── Actions row (Careers Home link + Explore Careers button) ── */
.mega-nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.mega-nav__nav-link {
    color: var(--color-contrast-higher);
    font-size: var(--text-sm, 0.833em);
    font-weight: 600;
    text-decoration: none;
    padding: var(--space-xs) var(--space-sm);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.mega-nav__nav-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* @import "./jobs/+.css"; */

.open-jobs {
    padding: 48px 0;
    background-color: #003055;
}

.open-jobs h2 {
    font-size: 28.8px;
    line-height: normal;
    color: white;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}