:root {
    --ods-blue: #003f8f;
    --ods-blue-deep: #00265f;
    --ods-navy: #071f3c;
    --ods-cyan: #00a0d2;
    --campaign-red: #ed174c;
    --ink: #10243c;
    --muted: #5f6f82;
    --line: #dce4ec;
    --paper: #f4f7fa;
    --white: #fff;
    --header-height: 82px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    color: var(--ink);
    background: var(--white);
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    padding-right: 0 !important;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ods-blue-deep);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.container-xxl {
    --bs-gutter-x: 3rem;
}

.section-pad {
    padding: 110px 0;
}

.section-kicker {
    margin-bottom: 18px;
    color: var(--campaign-red);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.text-cyan {
    color: var(--ods-cyan) !important;
}

.text-blue {
    color: var(--ods-blue) !important;
}

.section-head {
    margin-bottom: 58px;
}

.section-head h2,
.results h2 {
    max-width: 850px;
    margin: 0;
    color: var(--ods-navy);
    font-size: clamp(2.55rem, 4.2vw, 4.8rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.055em;
}

.section-head p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.btn-campaign {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--campaign-red);
    --bs-btn-border-color: var(--campaign-red);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #cf0f3d;
    --bs-btn-hover-border-color: #cf0f3d;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #bd0d38;
    --bs-btn-active-border-color: #bd0d38;
    border-radius: 0;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.btn-ghost {
    --bs-btn-color: #fff;
    --bs-btn-border-color: rgba(255, 255, 255, .78);
    --bs-btn-hover-color: var(--ods-navy);
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #fff;
    border-radius: 0;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

/* Header */
.site-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(16, 36, 60, .12);
    transition: box-shadow .25s ease, height .25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 28px rgba(7, 31, 60, .12);
}

.site-header .navbar {
    height: 100%;
    padding: 0;
}

.campaign-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 330px;
    margin: 0;
    padding: 5px 0;
}

.brand-logos {
    display: flex;
    align-items: center;
    gap: 9px;
}

.brand-logo {
    display: block;
    object-fit: contain;
}

.brand-logo-ods {
    width: 76px;
    height: 42px;
}

.brand-logo-top09 {
    width: 54px;
    height: 42px;
}

.brand-plus {
    color: var(--muted);
    font-weight: 700;
}

.brand-place {
    padding-left: 16px;
    color: var(--ods-navy);
    border-left: 1px solid var(--line);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .03em;
}

.brand-place strong {
    color: var(--campaign-red);
}

.site-header .nav-link {
    position: relative;
    margin: 0 11px;
    padding: 29px 0 25px !important;
    color: #30435a;
    font-size: .88rem;
    font-weight: 700;
}

.site-header .nav-link::after {
    position: absolute;
    right: 0;
    bottom: 17px;
    left: 0;
    height: 3px;
    content: "";
    background: var(--campaign-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--ods-blue);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    display: grid;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 0;
    border-radius: 0;
    background: var(--ods-blue);
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    height: 2px;
    background: #fff;
}

.mobile-nav {
    color: #fff;
    background: var(--ods-navy);
}

.mobile-nav .offcanvas-header {
    padding: 28px 28px 10px;
}

.mobile-nav .offcanvas-title {
    font-size: 1.25rem;
    font-weight: 800;
}

.mobile-nav .offcanvas-body {
    padding: 32px 28px;
}

.mobile-brand {
    font-size: 1.6rem;
    font-weight: 900;
}

.mobile-brand span {
    color: var(--campaign-red);
}

.mobile-brand small {
    display: block;
    margin-top: 4px;
    color: var(--ods-cyan);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.mobile-nav nav a {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
}

.mobile-nav nav a span {
    color: var(--ods-cyan);
    font-size: .7rem;
    letter-spacing: .1em;
}

/* Hero */
.hero {
    position: relative;
    padding-top: var(--header-height);
    color: #fff;
    background: var(--ods-navy);
    overflow: hidden;
}

.hero-photo {
    position: relative;
    height: clamp(430px, 43vw, 620px);
    background-image: url("../img/hero-lisen.webp");
    background-position: center 61%;
    background-size: cover;
    filter: saturate(.86) contrast(1.03);
}

.hero-shade {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 54px;
    padding-bottom: 58px;
}

.hero-content {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
    grid-template-rows: auto auto auto;
    column-gap: clamp(45px, 6vw, 100px);
    align-items: center;
}

.hero-date {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    justify-self: start;
    margin-bottom: 18px;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.hero-date span {
    padding: 7px 10px;
    background: var(--campaign-red);
}

.hero h1 {
    grid-column: 1;
    grid-row: 1 / span 3;
    margin: 0;
    font-size: clamp(5.4rem, 9vw, 9.5rem);
    font-weight: 900;
    line-height: .83;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
}

.hero h1 span:last-child {
    color: var(--ods-cyan);
}

.hero-subtitle {
    grid-column: 2;
    grid-row: 2;
    margin: 0 0 27px;
    font-size: clamp(1.65rem, 2.45vw, 2.65rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.hero-actions {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn {
    min-width: 190px;
    padding: 14px 20px;
}

.hero-actions .btn span {
    margin-left: 16px;
    font-size: 1.1rem;
}

.hero-strip {
    position: relative;
    z-index: 3;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    gap: 23px;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 14px 24px;
    color: var(--ods-navy);
    background: rgba(255, 255, 255, .96);
    font-size: .83rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-strip i {
    width: 5px;
    height: 5px;
    background: var(--campaign-red);
    transform: rotate(45deg);
}

/* Leader */
.leader {
    background: var(--paper);
}

.leader-card {
    min-height: 620px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(7, 31, 60, .12);
}

.leader-image-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 560px;
    overflow: hidden;
}

.leader-image {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    object-fit: cover;
    transform: translateY(-2.5%) scale(1.055);
    transform-origin: center center;
}

.leader-identity {
    display: flex;
    flex: 0 0 108px;
    align-items: stretch;
    color: #fff;
    background: var(--ods-blue);
}

.leader-identity-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 18px 26px;
}

.leader-identity-copy strong {
    font-size: 1.18rem;
    line-height: 1.15;
}

.leader-identity-copy span {
    margin-top: 5px;
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
}

.leader-number {
    display: flex;
    flex: 0 0 108px;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    padding: 18px 22px 12px;
    color: #fff;
    background: var(--campaign-red);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.leader-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(45px, 6vw, 90px);
}

.leader-copy h2 {
    max-width: 800px;
    margin: 0 0 30px;
    color: var(--ods-navy);
    font-size: clamp(2.45rem, 4.5vw, 4.7rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.055em;
}

.leader-quote {
    max-width: 780px;
    margin-bottom: 18px;
    color: #2b435f;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.5;
}

.leader-placeholder {
    max-width: 650px;
    color: var(--muted);
}

.leader-more {
    align-self: flex-start;
    margin-top: 10px;
    padding: 0 0 5px;
    color: var(--ods-blue);
    background: transparent;
    border: 0;
    border-bottom: 2px solid var(--ods-cyan);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Program */
.program {
    color: #fff;
    background: var(--ods-navy);
}

.program .section-head h2 {
    color: #fff;
}

.program .section-head p {
    color: #bac6d4;
}

.program-list {
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.program-overview-card {
    display: grid;
    width: 100%;
    margin: 0 0 38px;
    padding: 30px 32px;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    color: #fff;
    text-align: left;
    background: linear-gradient(130deg, var(--ods-blue) 0%, #006ebc 100%);
    border: 1px solid rgba(255, 255, 255, .2);
    transition: border-color .2s ease, transform .2s ease;
}

.program-overview-card:hover,
.program-overview-card:focus-visible {
    color: #fff;
    border-color: var(--ods-cyan);
    transform: translateY(-2px);
}

.program-overview-number {
    color: rgba(255, 255, 255, .22);
    font-size: 4.6rem;
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.08em;
}

.program-overview-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.program-overview-copy small {
    margin-bottom: 6px;
    color: var(--ods-cyan);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.program-overview-copy strong {
    font-size: clamp(1.45rem, 2.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.program-overview-copy > span {
    max-width: 760px;
    margin-top: 9px;
    color: #c4d2e0;
    font-size: .96rem;
    line-height: 1.55;
}

.program-overview-action {
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.program-overview-action i {
    margin-left: 8px;
    color: var(--ods-cyan);
    font-size: 1rem;
    font-style: normal;
}

.program-item {
    color: #fff;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.program-item h3 {
    margin: 0;
}

.program-open {
    display: grid;
    width: 100%;
    grid-template-columns: 84px 1fr 44px;
    gap: 18px;
    align-items: center;
    padding: 28px 0;
    color: #fff;
    text-align: left;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.program-open:hover .program-name strong,
.program-open:focus-visible .program-name strong {
    color: var(--ods-cyan);
}

.program-number {
    color: var(--ods-cyan);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.program-name {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(260px, 1.2fr);
    gap: 28px;
    align-items: baseline;
}

.program-name strong {
    font-size: clamp(1.45rem, 2.4vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -.035em;
}

.program-name small {
    color: #aebfd1;
    font-size: 1rem;
}

.program-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
}

.program-toggle::before,
.program-toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    content: "";
    background: #fff;
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.program-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.program-open:hover .program-toggle,
.program-open:focus-visible .program-toggle {
    background: var(--campaign-red);
    border-color: var(--campaign-red);
}

.program-open:focus-visible {
    outline: 2px solid var(--ods-cyan);
    outline-offset: 5px;
}

/* Projects */
.projects {
    position: relative;
    color: #fff;
    background: linear-gradient(135deg, var(--ods-blue) 0%, #0068b7 100%);
    overflow: hidden;
}

.projects::before {
    position: absolute;
    top: -220px;
    right: -180px;
    width: 600px;
    height: 600px;
    content: "";
    border: 100px solid rgba(255, 255, 255, .055);
    border-radius: 50%;
}

.projects .container-xxl {
    position: relative;
}

.section-head-light h2,
.section-head-light p {
    color: #fff;
}

.section-head-light p {
    opacity: .78;
}

.projects .section-kicker {
    color: #fff;
    opacity: .72;
}

.project-title-line {
    display: block;
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 590px;
    padding: 0;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(6px);
    overflow: hidden;
    transition: transform .25s ease, background .25s ease;
}

.project-card:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-6px);
}

.project-image {
    position: relative;
    height: 225px;
    flex: 0 0 225px;
    background: var(--ods-blue-deep);
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.project-image-03 img {
    object-position: center 58%;
}

.project-card:hover .project-image img {
    transform: scale(1.025);
}

.project-number {
    position: absolute;
    right: 24px;
    bottom: 14px;
    color: #fff;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 18px rgba(0, 20, 52, .45);
}

.project-card-copy {
    display: flex;
    flex: 1 1 auto;
    padding: 28px 30px 30px;
    flex-direction: column;
}

.project-status {
    align-self: flex-start;
    margin: 0 0 18px;
    padding: 6px 9px;
    background: var(--campaign-red);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.project-card h3 {
    margin: 0 0 17px;
    font-size: clamp(1.4rem, 2vw, 1.78rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.project-card p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .95rem;
    line-height: 1.55;
}

.project-open {
    align-self: flex-start;
    margin-top: auto;
    padding: 26px 0 4px;
    color: #fff;
    background: transparent;
    border: 0;
    border-bottom: 2px solid var(--ods-cyan);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.project-open span {
    margin-left: 10px;
    color: var(--ods-cyan);
    font-size: 1rem;
}

.project-open:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 5px;
}

/* Candidates */
.candidates {
    background: var(--paper);
}

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

.candidate-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 0;
    flex-direction: column;
    color: var(--ink);
    text-align: left;
    background: #fff;
    border: 0;
    box-shadow: 0 8px 30px rgba(7, 31, 60, .08);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.candidate-card:hover,
.candidate-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(7, 31, 60, .16);
}

.candidate-card:focus-visible {
    outline: 3px solid var(--ods-cyan);
    outline-offset: 3px;
}

.candidate-photo {
    position: relative;
    display: flex;
    aspect-ratio: 4 / 5;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, var(--ods-blue) 0%, var(--ods-cyan) 100%);
    overflow: hidden;
}

.candidate-photo::after {
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    content: "";
    background: linear-gradient(0deg, rgba(1, 23, 50, .52), transparent);
}

.candidate-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.candidate-card:hover .candidate-photo img {
    transform: scale(1.025);
}

.candidate-initials {
    font-size: clamp(3.6rem, 6vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -.08em;
    opacity: .92;
}

.candidate-position {
    position: absolute;
    z-index: 2;
    bottom: 12px;
    left: 16px;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.candidate-info {
    display: flex;
    min-height: 166px;
    padding: 22px 44px 20px 20px;
    flex-direction: column;
}

.candidate-info strong {
    color: var(--ods-navy);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.18;
}

.candidate-info > span {
    margin-top: 10px;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.35;
}

.candidate-info small {
    margin-top: auto;
    padding-top: 16px;
    color: var(--ods-blue);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.candidate-open {
    position: absolute;
    right: 18px;
    bottom: 19px;
    color: var(--campaign-red);
    font-size: 1.35rem;
    font-weight: 400;
}

.candidate-card-featured {
    box-shadow: inset 0 0 0 3px var(--campaign-red), 0 8px 30px rgba(7, 31, 60, .11);
}

/* Candidate modal */
.candidate-modal .modal-dialog {
    max-width: 940px;
}

.candidate-modal .modal-content {
    border: 0;
    border-radius: 0;
    box-shadow: 0 26px 90px rgba(7, 31, 60, .28);
    overflow: hidden;
}

.candidate-modal .btn-close {
    position: absolute;
    z-index: 4;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    padding: 9px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
}

.modal-photo {
    position: relative;
    display: flex;
    min-height: 560px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, var(--ods-blue) 0%, var(--ods-cyan) 100%);
    overflow: hidden;
}

.modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-photo > span:last-child {
    position: absolute;
    right: 22px;
    bottom: 16px;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    opacity: .72;
}

.modal-copy {
    display: flex;
    padding: clamp(45px, 6vw, 80px);
    flex-direction: column;
    justify-content: center;
}

.modal-copy:has(.modal-bio) {
    justify-content: flex-start;
    max-height: min(82vh, 760px);
    overflow-y: auto;
}

.modal-party {
    margin-bottom: 16px;
    color: var(--campaign-red);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.modal-copy h2 {
    margin: 0;
    color: var(--ods-navy);
    font-size: clamp(2.1rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.05em;
}

.modal-job {
    margin: 20px 0 0;
    color: var(--ods-blue);
    font-size: 1.1rem;
    font-weight: 700;
}

.modal-divider {
    width: 70px;
    height: 5px;
    margin: 30px 0;
    background: var(--ods-cyan);
}

.modal-copy > p:last-child {
    color: var(--muted);
}

.modal-motto {
    margin: 0 0 22px;
    padding-left: 18px;
    color: var(--ods-blue);
    border-left: 4px solid var(--ods-cyan);
    font-size: .95rem;
    font-weight: 700;
}

.modal-bio p {
    margin: 0 0 1em;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.62;
}

.modal-bio p:last-child {
    margin-bottom: 0;
}

/* Leader statement and project details */
.content-modal .modal-dialog {
    max-width: 1120px;
}

.content-modal .modal-content {
    max-height: calc(100vh - 2rem);
    border: 0;
    border-radius: 0;
    box-shadow: 0 26px 90px rgba(7, 31, 60, .28);
    overflow-x: hidden;
    overflow-y: auto;
}

.content-modal .btn-close {
    position: absolute;
    z-index: 6;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    padding: 9px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(7, 31, 60, .18);
    opacity: 1;
}

.content-modal-hero {
    position: relative;
    height: clamp(250px, 34vw, 390px);
    flex: 0 0 auto;
    background: var(--ods-blue-deep);
    overflow: hidden;
}

.content-modal-hero::after {
    position: absolute;
    inset: 45% 0 0;
    content: "";
    background: linear-gradient(to bottom, transparent, rgba(0, 25, 61, .62));
}

.content-modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-modal-hero-03 img {
    object-position: center 58%;
}

.content-modal-hero > span {
    position: absolute;
    z-index: 2;
    right: 32px;
    bottom: 20px;
    color: #fff;
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1;
}

.content-modal-copy {
    padding: clamp(38px, 6vw, 72px);
    background: #fff;
}

.content-modal-copy h2 {
    max-width: 920px;
    margin: 0;
    color: var(--ods-navy);
    font-size: clamp(2.1rem, 4.6vw, 4.1rem);
    font-weight: 800;
    line-height: .99;
    letter-spacing: -.052em;
    text-wrap: balance;
}

.content-modal-body {
    max-width: 860px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.68;
}

.content-modal-body p {
    margin: 0 0 1.15em;
}

.content-modal-body ul {
    margin: 4px 0 1.4em;
    padding-left: 1.35rem;
}

.content-modal-body li {
    margin-bottom: .62em;
    padding-left: .35rem;
}

.content-modal-body li::marker {
    color: var(--campaign-red);
}

.project-modal-lead {
    padding-left: 20px;
    color: var(--ods-blue-deep);
    border-left: 5px solid var(--ods-cyan);
    font-size: 1.08rem;
    font-weight: 700;
}

.program-modal-hero {
    display: flex;
    height: clamp(190px, 24vw, 285px);
    padding: 40px 48px;
    align-items: flex-end;
    color: #fff;
    background: linear-gradient(125deg, var(--ods-blue-deep) 0%, var(--ods-blue) 62%, #008fcd 100%);
}

.program-modal-hero::after {
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 25, 61, .35), transparent 72%);
}

.program-modal-hero > div {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: calc(100% - 150px);
    flex-direction: column;
}

.program-modal-hero small {
    margin-bottom: 8px;
    color: var(--ods-cyan);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.program-modal-hero strong {
    font-size: clamp(1.45rem, 3vw, 2.45rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.program-modal-lead {
    color: var(--ods-blue-deep);
    font-size: 1.08rem;
    font-weight: 700;
}

.program-modal-subheading {
    margin: 1.7em 0 .75em;
    color: var(--ods-navy);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -.025em;
}

.report-document-modal .modal-dialog {
    max-width: 1180px;
}

.report-document-hero {
    height: clamp(205px, 25vw, 290px);
}

.report-document-hero > span {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    letter-spacing: -.07em;
}

.report-document-copy h2 {
    max-width: 900px;
    font-size: clamp(2.25rem, 4.4vw, 4rem);
}

.report-document-body {
    max-width: 920px;
}

.report-document-sections {
    margin-top: 38px;
}

.report-document-section {
    padding: 38px 0 28px;
    border-top: 1px solid #d8e2ec;
}

.report-document-section:first-child {
    padding-top: 30px;
}

.report-document-section h3 {
    max-width: 780px;
    margin: 0 0 18px;
    color: var(--ods-navy);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.report-section-label {
    display: block;
    margin-bottom: 10px;
    color: var(--campaign-red);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.report-section-subtitle {
    margin: -6px 0 22px !important;
    color: var(--ods-blue-deep);
    font-size: 1.08rem;
    font-weight: 800;
}

.report-document-summary {
    margin-top: 34px;
    padding-right: clamp(20px, 4vw, 42px);
    padding-left: clamp(20px, 4vw, 42px);
    border: 0;
    background: #eff6fb;
}

.report-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 34px 0;
}

.report-summary-grid > div {
    padding: 20px;
    background: #eff6fb;
    border-left: 4px solid var(--ods-cyan);
}

.report-summary-grid dt {
    margin-bottom: 5px;
    color: var(--ods-blue-deep);
    font-weight: 800;
}

.report-summary-grid dd {
    margin: 0;
}

.report-document-figure {
    margin: 26px 0 30px;
}

.report-document-figure img {
    display: block;
    width: 100%;
    max-height: 540px;
    object-fit: cover;
}

.report-document-image-portrait img {
    width: min(100%, 430px);
    max-height: 620px;
    margin: 0 auto;
    object-fit: contain;
}

.report-document-figure figcaption {
    padding-top: 9px;
    color: #7b8997;
    font-size: .78rem;
}

.report-benefit {
    padding: 18px 20px;
    color: var(--ods-navy);
    background: #eff6fb;
    border-left: 4px solid var(--campaign-red);
}

.report-source-list {
    font-size: .82rem;
    overflow-wrap: anywhere;
}

.report-source-list a {
    color: var(--ods-blue-deep);
}

.leader-statement-modal .modal-content {
    overflow: hidden;
}

.leader-statement-modal .row {
    min-height: min(820px, calc(100vh - 2rem));
}

.content-modal-visual {
    position: relative;
    min-height: 620px;
    background: var(--ods-blue-deep);
    overflow: hidden;
}

.content-modal-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.content-modal-identity {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 24px 28px;
    flex-direction: column;
    color: #fff;
    background: var(--ods-blue);
}

.content-modal-identity strong {
    font-size: 1.18rem;
}

.content-modal-identity span {
    color: rgba(255, 255, 255, .78);
    font-size: .86rem;
}

.leader-statement-modal .content-modal-copy {
    max-height: min(820px, calc(100vh - 2rem));
    overflow-y: auto;
}

.leader-salutation {
    color: var(--ods-blue-deep);
    font-weight: 700;
}

.leader-statement-closing {
    color: var(--ods-navy);
    font-weight: 800;
}

/* Results */
.results {
    color: #fff;
    background: var(--ods-navy);
}

.results h2 {
    color: #fff;
}

.results-intro {
    max-width: 570px;
    margin-top: 28px;
    color: #b8c5d4;
    font-size: 1.06rem;
}

.report-list {
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.report-card {
    display: grid;
    width: 100%;
    grid-template-columns: 110px 1fr 72px;
    gap: 24px;
    align-items: center;
    padding: 30px 0;
    color: #fff;
    font: inherit;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    text-decoration: none;
    cursor: pointer;
}

.report-years {
    color: var(--ods-cyan);
    font-size: .78rem;
    font-weight: 800;
}

.report-content {
    display: flex;
    flex-direction: column;
}

.report-content strong {
    font-size: 1.25rem;
}

.report-content small {
    margin-top: 8px;
    color: #aebdce;
    line-height: 1.45;
}

.report-download {
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.report-download i {
    display: inline-flex;
    width: 28px;
    height: 28px;
    margin-left: 5px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-style: normal;
    background: var(--campaign-red);
    border-radius: 50%;
}

.report-card:hover .report-content strong,
.report-card:focus-visible .report-content strong {
    color: var(--ods-cyan);
}

.report-card:focus-visible {
    outline: 2px solid var(--ods-cyan);
    outline-offset: 5px;
}

/* Closing/footer */
.closing-claim {
    position: relative;
    padding: 100px 0;
    color: var(--ods-navy);
    background: var(--ods-cyan);
    overflow: hidden;
}

.closing-claim::after {
    position: absolute;
    top: 50%;
    right: -30px;
    width: 270px;
    height: 270px;
    content: "";
    border: 45px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    transform: translateY(-50%);
}

.closing-claim p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(2.5rem, 5.3vw, 6rem);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

.closing-claim strong {
    color: #fff;
    font-weight: 900;
}

.site-footer {
    padding: 90px 0 28px;
    color: #fff;
    background: var(--ods-blue-deep);
}

.footer-kicker {
    margin-bottom: 14px;
    color: var(--ods-cyan);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-claim {
    font-size: clamp(2.8rem, 5vw, 5.6rem);
    font-weight: 900;
    line-height: .86;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.footer-partners {
    display: flex;
    gap: 13px;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.footer-partners img {
    width: 95px;
    height: 62px;
    padding: 5px;
    object-fit: contain;
    background: #fff;
}

.footer-partners span {
    color: var(--campaign-red);
    font-size: 1.4rem;
    font-weight: 900;
}

.footer-note {
    color: #9badc0;
    font-size: .88rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
    padding-top: 24px;
    color: #8193a8;
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: .78rem;
}

.footer-bottom a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.footer-bottom a span {
    color: var(--ods-cyan);
}

@media (max-width: 1199.98px) {
    :root {
        --header-height: 74px;
    }

    .campaign-brand {
        min-width: 0;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
    }

    .candidate-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .section-pad {
        padding: 82px 0;
    }

    .section-head {
        margin-bottom: 42px;
    }

    .hero-photo {
        height: 480px;
    }

    .hero-content {
        grid-template-columns: 1fr .8fr;
        column-gap: 38px;
    }

    .hero h1 {
        font-size: clamp(4.8rem, 10.5vw, 7.4rem);
    }

    .leader-image-wrap {
        min-height: 640px;
    }

    .program-name {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .project-card {
        min-height: 370px;
    }

    .leader-statement-modal .modal-content {
        overflow-y: auto;
    }

    .leader-statement-modal .row {
        min-height: 0;
    }

    .content-modal-visual {
        min-height: 460px;
    }

    .leader-statement-modal .content-modal-copy {
        max-height: none;
        overflow: visible;
    }

    .footer-partners {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .container-xxl {
        --bs-gutter-x: 2rem;
    }

    .brand-place {
        display: none;
    }

    .brand-logo-ods {
        width: 68px;
    }

    .brand-logo-top09 {
        width: 48px;
    }

    .hero-photo {
        height: 330px;
        background-position: center 60%;
    }

    .hero-inner {
        padding-top: 35px;
        padding-bottom: 38px;
    }

    .hero-content {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .hero-date {
        order: 1;
        margin-bottom: 20px;
        font-size: .66rem;
    }

    .hero h1 {
        order: 2;
        margin-bottom: 18px;
        font-size: clamp(4rem, 20vw, 6.4rem);
    }

    .hero-subtitle {
        order: 3;
        font-size: 1.65rem;
    }

    .hero-actions {
        order: 4;
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 100%;
    }

    .hero-strip {
        gap: 10px;
        justify-content: center;
        min-height: 60px;
        padding-right: 10px;
        padding-left: 10px;
        font-size: .64rem;
        overflow: hidden;
    }

    .hero-strip span {
        white-space: nowrap;
    }

    .hero-strip span:last-child,
    .hero-strip i:last-of-type {
        display: none;
    }

    .leader-card {
        min-height: 0;
    }

    .leader-image-wrap {
        min-height: 460px;
    }

    .leader-copy {
        padding: 42px 28px 48px;
    }

    .leader-copy h2 {
        font-size: 2.45rem;
    }

    .leader-quote {
        font-size: 1.05rem;
    }

    .project-image {
        height: 210px;
        flex-basis: 210px;
    }

    .project-card-copy {
        padding: 25px 24px 27px;
    }

    .project-card h3 {
        font-size: 1.5rem;
    }

    .content-modal .modal-dialog {
        margin: .5rem;
    }

    .content-modal .modal-content {
        max-height: calc(100vh - 1rem);
    }

    .content-modal-hero {
        height: 220px;
    }

    .content-modal-hero > span {
        right: 22px;
        bottom: 14px;
        font-size: 3.2rem;
    }

    .content-modal-copy {
        padding: 38px 26px 46px;
    }

    .content-modal-copy h2 {
        font-size: clamp(1.82rem, 8.3vw, 2.05rem);
        line-height: 1.03;
        letter-spacing: -.04em;
    }

    .content-modal-body {
        font-size: .94rem;
    }

    .content-modal-visual {
        min-height: 430px;
    }

    .program-overview-card {
        padding: 24px 22px;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 15px;
    }

    .program-overview-number {
        font-size: 3.25rem;
    }

    .program-overview-copy strong {
        font-size: 1.35rem;
    }

    .program-overview-copy > span {
        display: none;
    }

    .program-overview-action {
        grid-column: 2;
    }

    .program-open {
        grid-template-columns: 45px 1fr 38px;
        gap: 12px;
        padding: 22px 0;
    }

    .program-name strong {
        font-size: 1.3rem;
    }

    .program-name small {
        font-size: .82rem;
        line-height: 1.35;
    }

    .program-toggle {
        width: 36px;
        height: 36px;
    }

    .program-modal-hero {
        height: 175px;
        padding: 28px 24px;
    }

    .program-modal-hero > div {
        max-width: calc(100% - 78px);
    }

    .program-modal-hero strong {
        font-size: 1.35rem;
    }

    .program-modal-hero > span {
        right: 24px;
        bottom: 24px;
        font-size: 2.8rem;
    }

    .program-modal-lead {
        font-size: 1rem;
    }

    .report-document-copy h2 {
        font-size: clamp(1.82rem, 8.3vw, 2.05rem);
        line-height: 1.03;
        letter-spacing: -.04em;
    }

    .report-document-sections {
        margin-top: 28px;
    }

    .report-document-section {
        padding: 30px 0 20px;
    }

    .report-document-section h3 {
        font-size: 1.65rem;
    }

    .report-summary-grid {
        grid-template-columns: 1fr;
    }

    .report-document-figure {
        margin: 20px 0 24px;
    }

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

    .section-head,
    .project-grid,
    .results > .container-xxl > .row,
    .site-footer .row {
        --bs-gutter-x: 1rem;
        margin-right: 0;
        margin-left: 0;
    }

    .candidate-info {
        min-height: 155px;
        padding: 17px 30px 16px 15px;
    }

    .candidate-info strong {
        font-size: .9rem;
    }

    .candidate-info > span {
        font-size: .76rem;
    }

    .candidate-info small {
        font-size: .58rem;
    }

    .candidate-open {
        right: 12px;
        bottom: 14px;
    }

    .modal-photo {
        min-height: 420px;
    }

    .modal-copy {
        padding: 40px 28px;
    }

    .report-card {
        grid-template-columns: 1fr 52px;
        gap: 12px;
    }

    .report-years {
        grid-column: 1 / -1;
    }

    .report-content strong {
        font-size: 1.08rem;
    }

    .report-download {
        align-self: end;
        font-size: 0;
    }

    .closing-claim {
        padding: 78px 0;
    }

    .closing-claim p {
        font-size: clamp(3.1rem, 15vw, 5.5rem);
    }

    .footer-claim {
        font-size: 3rem;
    }

    .footer-bottom {
        margin-top: 50px;
    }
}

@media (max-width: 399.98px) {
    .brand-logos {
        gap: 5px;
    }

    .brand-logo-ods {
        width: 61px;
    }

    .brand-logo-top09 {
        width: 43px;
    }

    .candidate-info strong {
        font-size: .82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
