/* ------------------------------------------------
   Base
------------------------------------------------ */

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* unc utility bar fixes */
.wp-block-utility-bar-utility-bar {
    color: white;
    background: #414141;
}
.wp-block-utility-bar-utility-bar a {
    color: white;
}
#logo-fill {
    fill: #4B9CD3 !important;
}
#logo-stroke {
    fill: #fff !important;
}
@media (max-width: 767px) {
    .utility-bar-row { 
        padding-left:15px;
        padding-right:15px;
    }
    .unc-utility-bar-short-title {
        display: none !important;
    }
    .utiltity-bar-nav-item:not(:first-child) {
        display: none !important;
    }
    .utility-bar-row {
        justify-content: space-between !important;
    }
    #utiltity-bar-nav {
        flex: 0 !important;
    }
}

/* ------------------------------------------------
   Layout tokens
------------------------------------------------ */

:root {
    --site-width-wide: 1280px;
    --site-width-default: 1170px;
    --site-width-inner: 1140px;
    --site-width-alt: 1184px;

    --site-gutter-desktop: 40px;
    --site-gutter-mobile: 24px;
}


/* ------------------------------------------------
   Site layout
------------------------------------------------ */

.wp-site-blocks {
    width: 100%;
}


/* Standard container */

.site-container {
    width: min(
        calc(100% - (var(--site-gutter-desktop) * 2)),
        var(--site-width-default)
    );

    margin-inline: auto;
}


/* Wide container */

.site-container--wide {
    width: min(
        calc(100% - (var(--site-gutter-desktop) * 2)),
        var(--site-width-wide)
    );

    margin-inline: auto;
}


/* Inner / narrow container */

.site-container--inner {
    width: min(
        calc(100% - (var(--site-gutter-desktop) * 2)),
        var(--site-width-inner)
    );

    margin-inline: auto;
}


/* Special 1184px container */

.site-container--alt {
    width: min(
        calc(100% - (var(--site-gutter-desktop) * 2)),
        var(--site-width-alt)
    );

    margin-inline: auto;
}


/* ------------------------------------------------
   Full-width sections
------------------------------------------------ */

.site-section {
    width: 100%;
}

.site-section--full {
    width: 100%;
    max-width: none;
}


/* ------------------------------------------------
   Mobile
------------------------------------------------ */

@media (max-width: 767px) {

    .site-container,
    .site-container--wide,
    .site-container--inner,
    .site-container--alt {
        width: calc(100% - (var(--site-gutter-mobile) * 2));
    }
}


/* ------------------------------------------------
   Challenge / Stats
------------------------------------------------ */

.challenge-section {
    width: 100%;
    background: var(--wp--preset--color--secondary);
    margin-top: 0;
}

.challenge-section__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: 96px 128px;
}

.challenge-section__inner {
    width: 100%;
    max-width: 1184px;

    display: flex;
    flex-direction: column;
    gap: 50px;
}

.challenge-section__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 88px;
    align-items: center;
}

.challenge-section__header-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.challenge-section__eyebrow {
    margin: 0;

    color: rgba(235, 202, 225, 0.9);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.challenge-section__heading {
    margin: 0;

    color: var(--wp--preset--color--surface);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
}

.challenge-section__body {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.challenge-section__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--wp--preset--color--highlight-light);
}

.challenge-section__stat {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 298px;
}

.challenge-section__stat--one {
    padding: 32px 32px 32px 0;
}

.challenge-section__stat--two {
    padding: 32px;
    border-left: 1px solid var(--wp--preset--color--highlight-light);
    border-right: 1px solid var(--wp--preset--color--highlight-light);
    margin-top: 0;
}

.challenge-section__stat--three {
    padding: 32px 0 32px 32px;
    margin-top: 0;
}

.challenge-section__stat-number {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
}

.challenge-section__stat-desc {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

@media (max-width: 767px) {

    .challenge-section__frame {
        padding: 64px 20px;
    }

    .challenge-section__inner {
        max-width: 350px;
        gap: 40px;
    }

    .challenge-section__header {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .challenge-section__header-right {
        display: none;
    }

    .challenge-section__eyebrow {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 2px;
    }

    .challenge-section__heading {
        color: var(--wp--preset--color--white);
        font-size: 40px;
        line-height: 48px;
    }

    .challenge-section__stats {
        grid-template-columns: 1fr;
        gap: 32px;
        border-top: 0;
    }

    .challenge-section__stat {
        gap: 12px;
        min-height: 0;
        padding: 0;
    }

    .challenge-section__stat--one {
        padding: 0;
        border-top: 0;
    }

    .challenge-section__stat--two,
    .challenge-section__stat--three {
        padding: 32px 0 0;
        border-left: 0;
        border-right: 0;
        border-top: 1px solid var(--wp--preset--color--highlight-light);
        border-bottom: 0;
    }
}


/* ------------------------------------------------
   Our Solution
------------------------------------------------ */

.solution-section {
    width: 100%;
    background: var(--wp--preset--color--white);
    margin-top: 0;
}

.solution-section__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: 96px 128px;
}

.solution-section__inner {
    width: 100%;
    max-width: 1184px;

    display: flex;
    flex-direction: column;
    gap: 60px;
}

.solution-section__content-row {
    display: grid;
    grid-template-columns: 531px 573px;
    gap: 80px;
}

.solution-section__left-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.solution-section__kicker {
    margin: 0;

    color: var(--wp--preset--color--highlight);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.solution-section__title {
    margin: 0;

    color: var(--wp--preset--color--primary);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
}

.solution-section__right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-section__body {
    margin: 0;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.solution-section__card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.solution-section__card {
    min-height: 101px;
    padding: 24px;

    background: var(--wp--preset--color--surface-alt);
}

.solution-section__card-label {
    margin: 0;

    color: var(--wp--preset--color--highlight);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.solution-section__card-value {
    margin: 0;

    color: var(--wp--preset--color--primary);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
}

@media (max-width: 767px) {

    .solution-section__frame {
        padding: 64px 20px;
    }

    .solution-section__inner {
        max-width: 350px;
        gap: 32px;
    }

    .solution-section__content-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-section__left-col {
        width: 100%;
    }

    .solution-section__right-col {
        width: 100%;
        max-width: none;
        gap: 20px;
    }

    .solution-section__kicker {
        font-size: 16px;
    }

    .solution-section__title {
        font-size: 40px;
        line-height: 48px;
    }

    .solution-section__card-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .solution-section__card {
        min-height: 98px;
        padding: 16px;
    }

    .solution-section__card-label {
        font-size: 16px;
    }

    .solution-section__card-label + .solution-section__card-value {
        margin-top: 8px;
    }

    .solution-section__card:nth-child(3) {
        order: 4;
    }

    .solution-section__card:nth-child(4) {
        order: 3;
    }
}


/* ------------------------------------------------
   CTA Banner
------------------------------------------------ */

.cta-section {
    width: 100%;
    background: var(--wp--preset--color--highlight);
    margin-top: 0;
}

.cta-section__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: 60px 80px 65px;
}

.cta-section__inner {
    width: 100%;
    max-width: 1280px;

    display: flex;
    align-items: center;
    gap: 32px;
}

.cta-section__text {
    width: 844px;
    max-width: 100%;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-section__heading {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 48px;
    font-style: italic;
    font-weight: 600;
    line-height: 60px;
}

.cta-section__subtitle {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.cta-section__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cta-section__buttons .wp-block-button {
    margin: 0;
}

.cta-section__button .wp-block-button__link {
    min-width: 0;
    border-radius: 0;
    padding: 12px 32px;

    font-family: var(--wp--preset--font-family--body);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.35px;
    text-align: center;
    text-decoration: none;
}

.cta-section__button--primary .wp-block-button__link {
    width: 213px;
    min-height: 44px;
    border: 0;
    background: var(--wp--preset--color--white);
    color: var(--wp--preset--color--highlight);
}

.cta-section__button--secondary .wp-block-button__link {
    width: 207px;
    min-height: 46px;
    border: 1px solid var(--wp--preset--color--white);
    background: transparent;
    color: var(--wp--preset--color--white);
}

@media (max-width: 767px) {

    .cta-section__frame {
        padding: 48px 20px 64px;
    }

    .cta-section__inner {
        max-width: 350px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .cta-section__text {
        width: 100%;
        gap: 24px;
    }

    .cta-section__buttons {
        width: 213px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cta-section__buttons .wp-block-button {
        width: 213px;
    }

    .cta-section__button--secondary .wp-block-button__link {
        width: 213px;
    }
}


/* ------------------------------------------------
   Join The Program - Hero
------------------------------------------------ */

.invitation-section {
    width: 100%;
    background: var(--wp--preset--color--white);
    margin-top: 0;
}

.invitation-section__frame {
    width: min(100%, 1440px);
    min-height: 611px;
    margin-inline: auto;

    display: grid;
    grid-template-columns: 56.6% 43.4%;
}

.invitation-section__text-col {
    background: var(--wp--preset--color--white);
    padding: 100px 80px;

    display: flex;
    align-items: center;
}

.invitation-section__content {
    width: 100%;
    max-width: 655px;

    display: flex;
    flex-direction: column;
    gap: 44px;
}

.invitation-section__header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.invitation-section__kicker {
    margin: 0;

    color: var(--wp--preset--color--teal);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.invitation-section__heading {
    margin: 0;

    color: var(--wp--preset--color--primary);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 75px;
    font-style: italic;
    font-weight: 600;
    line-height: 83.4px;
}

.invitation-section__body {
    margin: 0;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.invitation-section__banner {
    width: 100%;
    min-height: 72px;
    padding: 20px 30px;
    border-left: 4px solid rgba(255, 158, 27, 0.9);
    background: var(--wp--preset--color--warm-yellow);
}

.invitation-section__banner-text {
    margin: 0;

    color: var(--wp--preset--color--primary);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 32px;
}

.invitation-section__illustration-col {
    background: var(--wp--preset--color--primary);
    padding: 80px;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.invitation-section__illustration-wrap {
    margin: 0;
}

.invitation-section__illustration {
    width: 100%;
    max-width: 465px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 767px) {

    .invitation-section__frame {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .invitation-section__text-col {
        padding: 48px 24px;
    }

    .invitation-section__heading {
        font-size: 50px;
        line-height: 58px;
    }

    .invitation-section__illustration-col {
        padding: 32px 24px;
    }
}


/* ------------------------------------------------
   Join The Program - Program Blueprint
------------------------------------------------ */

.blueprint-section {
    width: 100%;
    background: var(--wp--preset--color--teal);
    margin-top: 0;
}

.blueprint-section__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: 80px;
}

.blueprint-section__inner {
    width: 100%;
    max-width: 1280px;

    display: flex;
    flex-direction: column;
    gap: 44px;
}

.blueprint-section__header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blueprint-section__kicker {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blueprint-section__title {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
}

.blueprint-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0.5px solid var(--wp--preset--color--warm-yellow);
}

.blueprint-section__card {
    padding: 25px 55px 30px;
    margin-top: 0;
}

.blueprint-section__card:nth-child(odd) {
    border-right: 0.5px solid var(--wp--preset--color--warm-yellow);
}

.blueprint-section__card:nth-child(-n+2) {
    border-bottom: 0.5px solid var(--wp--preset--color--warm-yellow);
    min-height: 215px;
}

.blueprint-section__card:nth-child(n+3) {
    min-height: 256px;
}

.blueprint-section__card-content {
    width: 100%;
    max-width: 530px;
}

.blueprint-section__step-number,
.blueprint-section__step-title,
.blueprint-section__step-desc {
    margin: 0;
}

.blueprint-section__step-number {
    color: var(--wp--preset--color--warm-yellow);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
}

.blueprint-section__step-title {
    color: var(--wp--preset--color--warm-yellow);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
}

.blueprint-section__step-desc {
    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

@media (max-width: 767px) {

    .blueprint-section__frame {
        padding: 48px 24px;
    }

    .blueprint-section__grid {
        grid-template-columns: 1fr;
    }

    .blueprint-section__card {
        min-height: 0 !important;
        padding: 24px;
        border-right: 0 !important;
        border-bottom: 0.5px solid var(--wp--preset--color--warm-yellow);
    }

    .blueprint-section__card:last-child {
        border-bottom: 0;
    }
}


/* ------------------------------------------------
   Join The Program - Register
------------------------------------------------ */

.register-section {
    width: 100%;
    background: var(--wp--preset--color--white);
}

.register-section__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: 80px 135px;
}

.register-section__inner {
    width: 100%;
    max-width: 1170px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.register-section__content {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.register-section__header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.register-section__kicker {
    margin: 0;

    color: var(--wp--preset--color--teal);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.register-section__title {
    margin: 0;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
}

.register-section__desc {
    margin: 0;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.register-section__form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.register-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.register-section__field {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.register-section__label {
    color: var(--wp--preset--color--teal);
    font-family: var(--wp--preset--font-family--body);
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
}

.register-section__input {
    width: 100%;
    height: 50px;
    padding: 12px 16px;
    border: 0.5px solid var(--wp--preset--color--silver);
    border-radius: 0;
    background: var(--wp--preset--color--surface-alt);

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--body);
    font-size: 16px;
    font-weight: 400;
}

.register-section__input::placeholder {
    color: var(--wp--preset--color--text-secondary);
    opacity: 1;
}

.register-section__submit {
    width: 243px;
    min-height: 46px;
    padding: 12px 32px;
    border: 0;
    border-radius: 0;
    background: var(--wp--preset--color--teal);
    cursor: pointer;
    align-self: flex-end;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.35px;
}

.register-section__submit:focus-visible,
.register-section__input:focus-visible {
    outline: 2px solid var(--wp--preset--color--teal);
    outline-offset: 1px;
}

@media (max-width: 767px) {

    .register-section__frame {
        padding: 48px 24px;
    }

    .register-section__grid {
        grid-template-columns: 1fr;
    }

    .register-section__submit {
        align-self: flex-start;
    }
}

/* ------------------------------------------------
   Header
------------------------------------------------ */

.site-header {
    width: 100%;
}


/* Organization row */

.site-header__brand-row {
    width: 100%;
    background: #fff;
}

.site-header__brand-inner {
    padding: 35px 0;
}

.site-header__organization {
    margin: 0;

    color: var(--wp--preset--color--accent);

    font-family: var(--wp--preset--font-family--body);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}


/* Site title row */

.site-header__title-row {
    width: 100%;
    background: #fff;
    margin-top: 0;
}

.site-header__title-inner {
    border-top: 1px solid var(--wp--preset--color--accent);
    line-height: 20px !important;
}

.site-header__title {
    margin: 0;
}

.site-header__title a {
    color: var(--wp--preset--color--text-dark);
    text-decoration: none;

    font-family: var(--wp--preset--font-family--body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* Navigation row */

.site-header__nav-row {
    width: 100%;
    background: var(--wp--preset--color--surface);
}

.site-header__nav-inner {
    min-height: 116px;

    display: flex;
    align-items: center;
}

.site-header__navigation {
    width: 100%;
}

.site-header__navigation .wp-block-navigation__container {
    gap: 54px;
}

.site-header__navigation .wp-block-navigation-item__content {
    padding-block: 4px;

    color: var(--wp--preset--color--text-secondary);
    text-decoration: none;

    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.site-header__navigation .current-menu-item > .wp-block-navigation-item__content,
.site-header__navigation .current-menu-ancestor > .wp-block-navigation-item__content {
    color: var(--wp--preset--color--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--wp--preset--color--secondary);
}

@media (max-width: 767px) {

    .site-header {
        position: relative;
        background: var(--wp--preset--color--white);
    }

    .site-header__brand-row {
        background: var(--wp--preset--color--white);
    }

    .site-header__brand-inner {
        width: calc(100% - 40px);
        margin-inline: auto;
        min-height: 72px;
        padding: 8px 0;

        display: flex;
        align-items: center;
    }

    .site-header__organization {
        color: var(--wp--preset--color--accent);
        font-size: 24px;
        font-weight: 700;
        line-height: 20.8px;
    }

    .site-header__nav-row {
        position: absolute;
        top: 8px;
        right: 20px;
        left: 20px;
        z-index: 20;
        width: auto;
        background: transparent;

        display: flex;
        justify-content: flex-end;
    }

    .site-header__nav-inner {
        min-height: 0;
        width: 100%;
        padding: 0;

        display: flex;
        justify-content: flex-end;
    }

    .site-header__navigation {
        width: auto;
        display: flex;
        justify-content: flex-end;
    }

    .site-header__navigation .wp-block-navigation__responsive-container-open,
    .site-header__navigation .wp-block-navigation__responsive-container-close {
        border: 0;
        border-radius: 0;
        background: transparent;
        color: var(--wp--preset--color--accent);
    }

    .site-header__navigation .wp-block-navigation__responsive-container-open {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 29px;
        height: 21px;
        padding: 0;

        background:
            linear-gradient(var(--wp--preset--color--accent) 0 0) top / 29px 4px no-repeat,
            linear-gradient(var(--wp--preset--color--accent) 0 0) center / 29px 4px no-repeat,
            linear-gradient(var(--wp--preset--color--accent) 0 0) bottom / 29px 4px no-repeat;
    }

    .site-header__navigation .wp-block-navigation__responsive-container-open svg {
        display: none;
    }

    .site-header__navigation .wp-block-navigation__container {
        display: none !important;
    }

    .site-header__navigation .wp-block-navigation__responsive-container .wp-block-navigation__container {
        display: none !important;
    }

    .site-header__navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,
    .site-header__navigation .wp-block-navigation__responsive-container[aria-hidden="false"] .wp-block-navigation__container,
    .has-modal-open .site-header__navigation .wp-block-navigation__responsive-container .wp-block-navigation__container {
        display: flex !important;
        flex-direction: column;
        gap: 16px;
    }

    .site-header__title-row {
        background: var(--wp--preset--color--white);
        min-height: 44px;
    }

    .site-header__title-inner {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 10px 0 14px;
        border-top: 0.5px solid var(--wp--preset--color--accent);
        line-height: normal !important;
    }

    .site-header__title a {
        color: var(--wp--preset--color--text-dark);
        font-family: var(--wp--preset--font-family--accent);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }
}


/* ------------------------------------------------
   Hero
------------------------------------------------ */

.site-main {
    width: 100%;
    margin-top: 0;
}

.hero-home {
    width: 100%;
    background: var(--wp--preset--color--white);
}

.hero-home__frame {
    width: min(100%, 1440px);
    margin-inline: auto;

    display: grid;
    grid-template-columns: 48.0556% 51.9444%;
    min-height: 597px;
}

.hero-home__content {
    background: var(--wp--preset--color--surface);
    padding: 100px 80px;
}

.hero-home__inner {
    max-width: 532px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-home__copy {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-home__heading-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-home__eyebrow {
    margin: 0;

    color: var(--wp--preset--color--highlight);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-home__headline {
    margin: 0;

    color: var(--wp--preset--color--primary);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 75px;
    font-style: italic;
    font-weight: 600;
    line-height: 83.4px;
    letter-spacing: 0;
}

.hero-home__body {
    margin: 0;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
}

.hero-home__buttons {
    display: flex;
    gap: 16px;
}

.hero-home__buttons .wp-block-button {
    margin: 0;
}

.hero-home__buttons .wp-block-button__link {
    border-radius: 0;
    border: 0;
    padding: 12px 32px;

    font-family: var(--wp--preset--font-family--body);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.35px;
    text-decoration: none;
}

.hero-home__button-primary .wp-block-button__link {
    background: var(--wp--preset--color--secondary);
    color: var(--wp--preset--color--surface);
}

.hero-home__button-secondary .wp-block-button__link {
    background: transparent;
    border: 1px solid var(--wp--preset--color--secondary);
    color: var(--wp--preset--color--secondary);
}

.hero-home__image-panel {
    position: relative;
    min-height: 597px;
    margin-top: 0;
}

.hero-home__image-wrap {
    margin: 0;
    width: 100%;
    height: 100%;
}

.hero-home__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-home__quote {
    position: absolute;
    right: 32px;
    bottom: 42px;
    left: 32px;

    margin: 0;
    min-height: 100px;
    padding: 20px 30px;
    border: 1px solid var(--wp--preset--color--highlight);

    background: rgba(235, 202, 225, 0.9);

    color: var(--wp--preset--color--primary);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    line-height: 29.8px;
}

@media (max-width: 767px) {

    .hero-home {
        background: var(--wp--preset--color--surface);
    }

    .hero-home__frame {
        max-width: 390px;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .hero-home__content {
        background: transparent;
        padding: 40px 20px 32px;
    }

    .hero-home__inner {
        max-width: 350px;
        gap: 24px;
    }

    .hero-home__copy {
        gap: 24px;
    }

    .hero-home__eyebrow {
        font-size: 16px;
    }

    .hero-home__headline {
        font-size: 50px;
        line-height: 58px;
    }

    .hero-home__button-secondary {
        display: none;
    }

    .hero-home__image-panel {
        min-height: 0;
        padding: 0;
    }

    .hero-home__image-wrap {
        height: 300px;
    }

    .hero-home__quote {
        position: static;
        min-height: 130px;
        display: flex;
        align-items: center;
    }
}


/* ------------------------------------------------
   Footer
------------------------------------------------ */
footer {
    margin-top: 0;
}

.site-footer {
    width: 100%;
    background: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--white);
    margin-top: 0;
}

.site-footer__inner {
    padding-top: 40px;
    padding-bottom: 30px;
}

.site-footer__top {
    margin-bottom: 30px;
}

.site-footer__brand {
    min-height: 74px;
}

.site-footer__brand-image {
    margin: 0;
}

.site-footer__brand-image img {
    width: 236px;
    height: auto;
}

.site-footer__divider {
    border: 0;
    height: 0;
    border-top: 0.5px solid var(--wp--preset--color--white);
    background: transparent;
    margin-top: 0;
    margin-bottom: 30px;
}

.site-footer__content {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
}

.site-footer__column {
    color: var(--wp--preset--color--white);
}

.site-footer__column--address {
    max-width: 524px;
}

.site-footer__column--links {
    margin-left: 122px;
    max-width: 524px;
}

.site-footer__column--employees {
    margin-left: 34px;
    max-width: 178px;
}

.site-footer__address {
    margin: 0;
    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--accent);
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.01em;
}

.site-footer__link-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__link-list li + li {
    margin-top: 18px;
}

.site-footer__link-list a,
.site-footer__legal-links a {
    color: var(--wp--preset--color--white);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.site-footer__link-list a {
    font-family: var(--wp--preset--font-family--body);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0;
}

.site-footer__social {
    list-style: none;
    margin: 34px 0 0;
    padding: 0;

    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer__social li {
    margin: 0;
}

.site-footer__social a {
    color: inherit;
    text-decoration: none;

    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-footer__social img {
    width: 35px;
    height: 35px;
    display: block;
}

.site-footer__social a:focus-visible,
.site-footer__link-list a:focus-visible,
.site-footer__legal-links a:focus-visible {
    outline: 2px solid var(--wp--preset--color--white);
    outline-offset: 2px;
}

.site-footer__social a:hover {
    opacity: 0.85;
}

.site-footer__employees-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-footer__divider--bottom {
    margin-bottom: 20px;
}

.site-footer__bottom {
    gap: 20px;
}

.site-footer__copyright,
.site-footer__legal-links {
    margin: 0;
    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--accent);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.site-footer__copyright {
    letter-spacing: 0.02em;
}

.site-footer__legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 40px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
}

.site-footer__legal-links span {
    opacity: 1;
}

@media (max-width: 767px) {

    .site-footer__inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .site-footer__brand {
        min-height: 51px;
        justify-content: center !important;
    }

    .site-footer__brand-image img {
        width: 165px;
    }

    .site-footer__divider {
        margin-bottom: 20px;
    }

    .site-footer__content {
        gap: 0;
        margin-bottom: 20px;
    }

    .site-footer__column {
        flex-basis: 100% !important;
    }

    .site-footer__column--links,
    .site-footer__column--employees {
        display: none;
    }

    .site-footer__column--address {
        text-align: center;
    }

    .site-footer__address {
        font-size: 16px;
        line-height: 32px;
    }

    .site-footer__divider--bottom {
        margin-bottom: 22px;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: center !important;
        gap: 10px;
    }

    .site-footer__copyright,
    .site-footer__legal-links {
        font-size: 15px;
        text-align: center;
    }

    .site-footer__legal-links {
        line-height: 40px;
    }

    .site-footer__copyright {
        line-height: 21px;
    }

    .site-footer__legal-links {
        gap: 15px;
        order: 1;
    }

    .site-footer__copyright {
        order: 2;
    }
}

@media (max-width: 390px) {

    .site-footer__inner {
        width: 330px;
    }
}


/* ------------------------------------------------
   Partner With Us - Hero
------------------------------------------------ */

.org-hero {
    width: 100%;
    background: var(--wp--preset--color--primary);
}

.org-hero__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: clamp(48px, 5.6vw, 80px) clamp(24px, 8.9vw, 128px);
}

.org-hero__inner {
    width: 100%;
    max-width: 1184px;

    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(28px, 5vw, 80px);
}

.org-hero__left {
    flex: 1 1 620px;
    max-width: 860px;

    display: flex;
    flex-direction: column;
    gap: 44px;
}

.org-hero__header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.org-hero__kicker {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.org-hero__heading {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--heading);
    font-size: clamp(52px, 6.2vw, 75px);
    font-style: italic;
    font-weight: 600;
    line-height: clamp(60px, 6.9vw, 83.4px);
}

.org-hero__body-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.org-hero__body {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.org-hero__card {
    flex: 1 1 320px;
    max-width: 340px;
    margin-left: auto;
    border: 1px solid var(--wp--preset--color--warm-yellow);
    padding: 32px;

    display: flex;
    align-items: center;
}

.org-hero__card-inner {
    width: 100%;
    max-width: 274px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.org-hero__card-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.org-hero__card-kicker {
    margin: 0;

    color: var(--wp--preset--color--warm-yellow);
    font-family: var(--wp--preset--font-family--body);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.org-hero__card-question {
    margin: 0;

    color: var(--wp--preset--color--surface-alt);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 30px;
    font-style: italic;
    font-weight: 500;
    line-height: 38px;
}

.org-hero__card-divider {
    width: 100%;
    height: 0;
    margin: 0;
    border: 0;
    border-top: 1px solid var(--wp--preset--color--warm-yellow);
}

.org-hero__card-body {
    margin: 0;

    color: var(--wp--preset--color--surface-alt);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

@media (max-width: 980px) {

    .org-hero__inner {
        flex-direction: column;
        gap: 24px;
    }

    .org-hero__left,
    .org-hero__card {
        max-width: none;
        width: 100%;
    }

    .org-hero__card {
        margin-left: 0;
    }

    .org-hero__card-inner {
        max-width: none;
    }
}

@media (max-width: 767px) {

    .org-hero__frame {
        padding: 48px 24px;
    }

    .org-hero__left {
        gap: 18px;
    }

    .org-hero__heading {
        font-size: 50px;
        line-height: 58px;
    }

    .org-hero__card {
        padding: 24px;
    }

    .org-hero__card-inner {
        gap: 16px;
    }

    .org-hero__card-header {
        gap: 16px;
    }

    .org-hero__card-kicker {
        font-size: 16px;
        line-height: 22px;
    }

    .org-hero__card-question {
        font-size: 24px;
        line-height: 32px;
    }
}


/* ------------------------------------------------
   Partner With Us - Why Partner
------------------------------------------------ */

.why-partner-section {
    width: 100%;
    background: var(--wp--preset--color--white);
}

.why-partner-section__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: clamp(48px, 6vw, 80px) clamp(24px, 5.6vw, 128px);
}

.why-partner-section__inner {
    width: 100%;
    max-width: 1280px;

    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(28px, 5vw, 80px);
}

.why-partner-section__left {
    flex: 1 1 520px;
    max-width: 600px;
}

.why-partner-section__header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 44px;
}

.why-partner-section__kicker {
    margin: 0;

    color: var(--wp--preset--color--red);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-partner-section__title {
    margin: 0;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--heading);
    font-size: clamp(40px, 4.6vw, 48px);
    font-weight: 500;
    line-height: clamp(48px, 5.6vw, 60px);
}

.why-partner-section__body {
    margin: 0;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.why-partner-section__cards {
    flex: 1 1 520px;
    max-width: 600px;
    margin-left: auto;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-partner-section__card {
    min-height: 122px;
    background: rgba(233, 85, 80, 0.1);

    display: flex;
    align-items: stretch;
    gap: 20px;
}

.why-partner-section__card-accent {
    width: 6px;
    flex-shrink: 0;
    background: var(--wp--preset--color--red);
}

.why-partner-section__card-content {
    width: 100%;
    max-width: 534px;
    padding: 11px 20px;

    display: flex;
    flex-direction: column;
}

.why-partner-section__card-title {
    margin: 0;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
}

.why-partner-section__card-desc {
    margin: 0;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

@media (max-width: 1100px) {

    .why-partner-section__left,
    .why-partner-section__cards {
        max-width: none;
        width: 100%;
    }

    .why-partner-section__cards {
        margin-left: 0;
    }
}

@media (max-width: 767px) {

    .why-partner-section__frame {
        padding: 48px 24px;
    }

    .why-partner-section__inner {
        gap: 40px;
    }

    .why-partner-section__header {
        margin-bottom: 18px;
    }

    .why-partner-section__kicker {
        font-size: 16px;
        line-height: 22px;
    }

    .why-partner-section__title {
        font-size: 40px;
        line-height: 48px;
    }

    .why-partner-section__body {
        font-size: 20px;
        line-height: 32px;
    }

    .why-partner-section__cards {
        gap: 16px;
    }

    .why-partner-section__card-content {
        padding: 11px 7px 11px 0;
    }

    .why-partner-section__card-title {
        font-size: 22px;
        font-weight: 600;
        line-height: 30px;
    }

    .why-partner-section__card-desc {
        line-height: 28px;
    }
}


/* ------------------------------------------------
   Partner With Us - Timeline
------------------------------------------------ */

.timeline-section {
    width: 100%;
    background: var(--wp--preset--color--dark-red);
}

.timeline-section__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: 80px 135px;
}

.timeline-section__inner {
    width: 100%;
    max-width: 1170px;

    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-section__header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 50px;
}

.timeline-section__kicker {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.timeline-section__title {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
}

.timeline-section__items {
    display: flex;
    flex-direction: column;
}

.timeline-section__item {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.timeline-section__badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-section__badge-dot {
    width: 15px;
    height: 15px;
    border-radius: 999px;
    flex-shrink: 0;
    background: var(--wp--preset--color--gold);
}

.timeline-section__badge-label {
    margin: 0;

    color: var(--wp--preset--color--surface-alt);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.timeline-section__content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.timeline-section__milestone {
    margin: 0;
    flex: 0 0 300px;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
}

.timeline-section__description {
    margin: 0;
    flex: 1;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}

.timeline-section__divider {
    width: 100%;
    height: 0;
    margin: 14px 0 26px;
    border: 0;
    border-top: 1px solid var(--wp--preset--color--silver);
}

.timeline-section__item:last-child .timeline-section__divider {
    display: none;
}

@media (max-width: 1280px) {

    .timeline-section__frame {
        padding-inline: clamp(24px, 5.6vw, 135px);
    }
}

@media (max-width: 980px) {

    .timeline-section__content {
        flex-direction: column;
        gap: 14px;
    }

    .timeline-section__milestone {
        flex-basis: auto;
    }
}

@media (max-width: 767px) {

    .timeline-section__frame {
        padding: 48px 24px;
    }

    .timeline-section__inner {
        gap: 32px;
    }

    .timeline-section__header {
        padding-bottom: 0;
    }

    .timeline-section__kicker {
        color: var(--wp--preset--color--surface-alt);
        font-size: 16px;
        line-height: 22px;
    }

    .timeline-section__title {
        font-size: 40px;
        line-height: 48px;
    }

    .timeline-section__items {
        gap: 24px;
    }

    .timeline-section__item {
        gap: 12px;
    }

    .timeline-section__badge {
        gap: 8px;
    }

    .timeline-section__badge-dot {
        width: 12px;
        height: 12px;
    }

    .timeline-section__badge-label {
        font-size: 16px;
        line-height: 22px;
    }

    .timeline-section__content {
        gap: 4px;
    }

    .timeline-section__description {
        font-weight: 400;
    }

    .timeline-section__divider {
        margin: 0;
        border-top-color: rgba(255, 255, 255, 0.2);
    }
}


/* ------------------------------------------------
   Partner With Us - Apply
------------------------------------------------ */

.apply-section {
    width: 100%;
    background: var(--wp--preset--color--white);
}

.apply-section__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: 80px 135px;
}

.apply-section__inner {
    width: 100%;
    max-width: 1170px;
    padding-inline: 22px;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

.apply-section__header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.apply-section__kicker {
    margin: 0;

    color: var(--wp--preset--color--red);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.apply-section__title {
    margin: 0;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
}

.apply-section__body {
    margin: 0;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.apply-section__form {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.apply-section__field {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.apply-section__field--full {
    grid-column: 1 / -1;
}

.apply-section__label {
    margin: 0;

    color: var(--wp--preset--color--red);
    font-family: var(--wp--preset--font-family--body);
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
}

.apply-section__input,
.apply-section__textarea {
    width: 100%;
    border: 0.5px solid var(--wp--preset--color--silver);
    border-radius: 0;
    background: var(--wp--preset--color--surface-alt);
    padding: 12px 16px;

    color: var(--wp--preset--color--black);
    font-family: var(--wp--preset--font-family--body);
    font-size: 16px;
    font-weight: 400;
}

.apply-section__input {
    height: 50px;
}

.apply-section__textarea {
    min-height: 116px;
    line-height: 24px;
    resize: vertical;
}

.apply-section__input::placeholder,
.apply-section__textarea::placeholder {
    color: #5b6670;
}

.apply-section__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.apply-section__submit {
    border: 0;
    border-radius: 0;
    background: var(--wp--preset--color--red);
    height: 46px;
    padding: 12px 32px;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.35px;
    cursor: pointer;
}

.apply-section__submit:focus-visible,
.apply-section__input:focus-visible,
.apply-section__textarea:focus-visible {
    outline: 2px solid var(--wp--preset--color--primary);
    outline-offset: 2px;
}

@media (max-width: 1280px) {

    .apply-section__frame {
        padding-inline: clamp(24px, 5.6vw, 135px);
    }
}

@media (max-width: 900px) {

    .apply-section__form {
        grid-template-columns: 1fr;
    }

    .apply-section__actions {
        margin-top: 20px;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {

    .apply-section__frame {
        padding: 48px 24px;
    }

    .apply-section__inner {
        padding-inline: 0;
        gap: 32px;
    }

    .apply-section__header {
        gap: 12px;
    }

    .apply-section__kicker {
        font-size: 16px;
        line-height: 22px;
    }

    .apply-section__form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .apply-section__field {
        gap: 4px;
    }

    .apply-section__label {
        font-weight: 600;
        line-height: normal;
    }

    .apply-section__actions {
        margin-top: 32px;
    }

    .apply-section__submit {
        width: 100%;
        height: 52px;
        padding: 16px 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/* ------------------------------------------------
   About and Contact - Meet the Team
------------------------------------------------ */

.team-section {
    width: 100%;
    background: var(--wp--preset--color--white);
}

.team-section__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: clamp(48px, 5.6vw, 80px);
}

.team-section__inner {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-section__header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.team-section__kicker {
    margin: 0;

    color: var(--wp--preset--color--secondary);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-section__title {
    margin: 0;

    color: var(--wp--preset--color--primary);
    font-family: var(--wp--preset--font-family--heading);
    font-size: clamp(52px, 6.2vw, 75px);
    font-style: italic;
    font-weight: 600;
    line-height: clamp(60px, 6.9vw, 83.4px);
}

.team-section__columns {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.team-section__leaders,
.team-section__collaborators {
    flex: 1 1 540px;
    padding: clamp(28px, 5.6vw, 80px);
}

.team-section__leaders {
    background: var(--wp--preset--color--primary);
}

.team-section__collaborators {
    background: var(--wp--preset--color--secondary);
    margin-top: 0;
}

.team-section__leaders-inner,
.team-section__collaborators-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-section__col-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.team-section__leaders-kicker,
.team-section__collab-kicker {
    margin: 0;

    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-section__leaders-kicker {
    color: rgba(235, 202, 225, 0.9);
}

.team-section__collab-kicker {
    color: var(--wp--preset--color--warm-yellow);
}

.team-section__leaders-title,
.team-section__collab-title {
    margin: 0;

    font-family: var(--wp--preset--font-family--heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
}

.team-section__leaders-title {
    color: var(--wp--preset--color--surface);
}

.team-section__collab-title {
    color: var(--wp--preset--color--white);
}

.team-section__leaders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-section__leader-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-section__leader-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.team-section__leader-name {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
}

.team-section__leader-role {
    margin: 0;

    color: rgba(235, 202, 225, 0.9);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}

.team-section__leader-affiliation {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 32px;
}

.team-section__leader-desc {
    margin: 0;

    color: var(--wp--preset--color--surface-alt);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.team-section__leader-divider {
    width: 100%;
    height: 0;
    margin: 0;
    border: 0;
    border-top: 1px solid var(--wp--preset--color--surface);
}

.team-section__leader-card:last-child .team-section__leader-divider {
    display: none;
}

.team-section__partners-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-section__partner-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.team-section__partner-bullet {
    width: 9px;
    height: 9px;
    margin-top: 14px;
    flex-shrink: 0;
    background: var(--wp--preset--color--warm-yellow);
}

.team-section__partner-name {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
}

.team-section__partner-divider {
    width: 100%;
    height: 0;
    margin: 0;
    border: 0;
    border-top: 0.5px solid var(--wp--preset--color--white);
    opacity: 0.8;
}

.team-section__partners-list > .wp-block-separator:last-child {
    display: none;
}


/* ------------------------------------------------
   About and Contact - Contact
------------------------------------------------ */

.contact-section {
    width: 100%;
    background: var(--wp--preset--color--highlight);
    margin-top: 0;
}

.contact-section__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: 80px 135px;
}

.contact-section__inner {
    width: 100%;
    max-width: 1170px;

    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px 80px;
}

.contact-section__header {
    flex: 1 1 300px;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-section__kicker {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-section__title {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 48px;
    font-style: italic;
    font-weight: 600;
    line-height: 60px;
}

.contact-section__body {
    flex: 1 1 520px;

    display: flex;
    flex-direction: column;
    gap: 44px;
}

.contact-section__desc {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}

.contact-section__info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-section__name {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-section__email,
.contact-section__phone {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    line-height: 32px;
}

.contact-section__email {
    font-weight: 700;
}

.contact-section__email a {
    color: inherit;
    text-decoration: underline;
}

.contact-section__email a:hover {
    opacity: 0.8;
}

.contact-section__phone {
    font-weight: 400;
}

@media (max-width: 1280px) {

    .contact-section__frame {
        padding-inline: clamp(24px, 5.6vw, 135px);
    }
}


/* ------------------------------------------------
   About and Contact - Project Detail (IRB)
------------------------------------------------ */

.irb-section {
    width: 100%;
    background: #651550;
    margin-top: 0;
}

.irb-section__frame {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding: 40px 80px;
}

.irb-section__inner {
    width: 100%;
    max-width: 1280px;

    display: flex;
    flex-direction: column;
    gap: 44px;
}

.irb-section__text {
    margin: 0;

    color: var(--wp--preset--color--white);
    font-family: var(--wp--preset--font-family--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.irb-section__text a {
    color: inherit;
    text-decoration: underline;
}

.irb-section__text a:hover {
    opacity: 0.8;
}

@media (max-width: 1280px) {

    .irb-section__frame {
        padding-inline: clamp(24px, 5.6vw, 80px);
    }
}
