/* =========================================================
   Statement Section (reusable) — UPDATED DESIGN
   Two columns: text left (50%) / image right (39.5%),
   vertically centred, "1F" watermark behind.
   Replaces the previous statement-section rules in v2.css.
   ========================================================= */
.statement-section {
    position: relative;
    overflow: hidden;
    background: #0A233F;
    margin: 0 0px;
    padding: 150px 0;
}

/* Content sits above the watermark */
.statement-section .container {
    position: relative;
    z-index: 1;
}

/* Two-column grid: 810px text / 170px gap / 640px image within a 1620 container */
.statement-section__inner {
    display: grid;
    grid-template-columns: 55% 1fr;
    column-gap: 7%;
    align-items: center;
}

/* When there's no image the text spans the full width again */
.statement-section--no-media .statement-section__inner {
    display: block;
}

.statement-section--no-media .statement-section__content {
    max-width: 810px;
}

/* Eyebrow + divider */
.statement-section__eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}

/* Heading */
.statement-section__heading {
    margin: 45px 0 0;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -1.2px;
    text-transform: unset;
}

/* Body copy */
.statement-section__text {
    margin-top: 35px;
}

.statement-section__text p {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
    margin: 0 0 15px;
}

.statement-section__text p:last-child {
    margin-bottom: 0;
}

/* CTA */
.statement-section__cta {
    margin-top: 45px;
}

/* Media column — video placeholder with brand 40px top-left corner */
.statement-section__media {
    position: relative;
    line-height: 0;
}

.statement-section__video {
    position: relative;
    display: block;
    text-decoration: none;
}

.statement-section__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 40px 0 0 0;
}

/* Play button + overlay heading, centred over the placeholder */
.statement-section__video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.statement-section__play {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.statement-section__play svg {
    display: block;
    width: 27px;
    height: 34px;
    margin-left: 5px;
    /* optical centring of the triangle */
}

.statement-section__video:hover .statement-section__play {
    transform: scale(1.08);
}

.statement-section__video-heading {
    display: block;
    margin-top: 15px;
    max-width: 300px;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.6px;
}

/* Brand "1F" watermark */
.statement-section__watermark {
    position: absolute;
    top: 50%;
    right: -35%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 100%;
    height: 100%;
    color: #081C33;
    z-index: 0;
    pointer-events: none;
    left: auto;
    justify-content: flex-end;
    display: flex;
    align-items: flex-end;
    text-align: right;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .statement-section {
        padding: 90px 0;
    }

    .statement-section__inner {
        column-gap: 6%;
    }

    .statement-section__heading {
        font-size: 42px;
        letter-spacing: -0.84px;
        margin-top: 35px;
    }

    .statement-section__text {
        margin-top: 25px;
    }

    .statement-section__text p {
        font-size: 18px;
        line-height: 155%;
    }

    .statement-section__play {
        width: 64px;
        height: 64px;
    }

    .statement-section__play svg {
        width: 22px;
        height: 27px;
    }

    .statement-section__video-heading {
        font-size: 24px;
        letter-spacing: -0.48px;
        max-width: 240px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .statement-section {
       
        padding: 50px 0;
    }

    /* stack: text, then image */
    .statement-section__inner {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }

    .statement-section--no-media .statement-section__content {
        max-width: 100%;
    }

    .statement-section__eyebrow {
        font-size: 14px;
        padding-bottom: 16px;
    }

    .statement-section__heading {
        margin-top: 28px;
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: 110%;
    }

    .statement-section__text {
        margin-top: 20px;
    }

    .statement-section__text p {
        font-size: 16px;
        line-height: 160%;
    }

    .statement-section__cta {
        margin-top: 35px;
    }

    .statement-section__image {
        border-radius: 20px 0 0 0;
    }

    .statement-section__play {
        width: 56px;
        height: 56px;
    }

    .statement-section__play svg {
        width: 19px;
        height: 24px;
        margin-left: 4px;
    }

    .statement-section__video-heading {
        margin-top: 16px;
        font-size: 20px;
        letter-spacing: -0.4px;
        max-width: 200px;
    }

   .statement-section__watermark {
    top: auto;
    bottom: 0;
    transform: none;
    width: 85%;
    height: auto;
}
}


/* =========================================================
   Media Banner (reusable) — 3 layouts
   Add to style.css
   ========================================================= */
.media-banner {
    position: relative;
    overflow: hidden;
    background: #0A233F;
    min-height: 860px;
    display: flex;
    align-items: flex-end;
    height: 56vw;
}

/* Background image */
.media-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-banner__image--mobile {
    display: none;
}

/* Background video — same full-bleed cover as the image */
.media-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bottom-up navy gradient (solid at the bottom, fading out ~72% up) */
.media-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0A233F 0%, rgba(10, 35, 63, 0.00) 100%);
    pointer-events: none;
}

/* Content */
.media-banner .container {
    position: relative;
    z-index: 1;
}

.media-banner__content {
    padding: 60px 0 80px;
}

.media-banner__text {
    max-width: 1122px;
}

/* Eyebrow + divider */
.media-banner__eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* Heading */
.media-banner__heading {
    margin: 35px 0 0;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 105%;
    letter-spacing: -1.12px;
    text-transform: unset;
}

/* Body copy */
.media-banner__copy {
    margin-top: 25px;
}

.media-banner__copy p {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    line-height: 150%;
    margin: 0 0 15px;
}

.media-banner__copy p:last-child {
    margin-bottom: 0;
}

/* CTA */
.media-banner__cta {
    margin-top: 35px;
}

/* Light button variant (white bg / navy text) */
.btn{
    letter-spacing: 0.7px;
}
.btn.btn--light {
    background: #fff;
    color: #0A233F;
    transition: all 0.4s ease;
    letter-spacing: 0.7px;
}

.btn.btn--light:hover {
    background: #0A233F;
    color: #fff;
    box-shadow: inset 0 0 0 1px #fff;
}

/* ---------- Layout: button at right ---------- */
.media-banner--button-right .media-banner__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.media-banner--button-right .media-banner__text {
    flex: 1 1 auto;
}

.media-banner--button-right .media-banner__cta {
    flex: 0 0 auto;
    margin-top: 0;
    margin-bottom: 4px;
}

/* ---------- Mobile: image and navy panel stack ---------- */
@media (max-width: 767px) {
    .media-banner {
        display: block;
        min-height: 0;
    }

    /* Image becomes a fixed-height block at the top */
    .media-banner__image {
        position: relative;
        height: 420px;
    }

    .media-banner__image--desktop {
        display: none;
    }

    .media-banner__image--mobile {
        display: block;
    }

    /* Solid navy panel below the image, no gradient needed */
    /* .media-banner__overlay {
        display: none;
    } */
.media-banner{
    height: auto;
}
    .media-banner__content {
        padding: 100px 0 40px;
        height: auto;
    }

    .media-banner__text {
        max-width: 100%;
    }

    .media-banner__eyebrow {
        font-size: 14px;
    }

    .media-banner__heading {
        margin-top: 28px;
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: 110%;
    }

    .media-banner__copy {
        margin-top: 20px;
    }

    .media-banner__copy p {
        font-size: 16px;
    }

    /* All variants stack on mobile */
    .media-banner--button-right .media-banner__content {
        display: block;
    }

    .media-banner--button-right .media-banner__cta,
    .media-banner__cta {
        margin-top: 35px;
        margin-bottom: 0;
    }
}

/* =========================================================
   Capability Section (home page only, not reusable)
   Left: eyebrow/heading/body/checklist/button.
   Right: flat gray panel with a cutout product image.
   ========================================================= */
.capability-section {
    margin: 15px 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 40px 0 0 0;
    overflow: hidden;
}

/* ---- Left column ---- */
.capability-section__col--text {
    padding: 130px 150px 100px;
}

.capability-section__eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #0A233F;
    padding-bottom: 20px;
    border-bottom: 1px solid #0A233F;
}

.capability-section__heading {
    margin: 45px 0 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.96px;
    text-transform: unset;
}

.capability-section__text {
    margin-top: 30px;
    max-width: 640px;
}

.capability-section__text p {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    margin: 0 0 15px;
}

.capability-section__text p:last-child {
    margin-bottom: 0;
}

/* ---- Checklist ---- */
.capability-section__list {
    margin-top: 55px;
    border-bottom: 1px solid #DEDAD5;
}

.capability-section__item {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #DEDAD5;
    padding: 28px 0;
}
.capability-section__item-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    background-image: url('../images/ch-icon.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
}

.capability-section__item-label {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 130%;
}
/* ---- CTA ---- */
.capability-section__cta {
    margin-top: 50px;
}

/* ---- Right column: flat gray panel + cutout image ---- */
.capability-section__col--media {
    background: #EAE8E4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

.capability-section__image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .capability-section__col--text {
        padding: 80px 60px 60px;
    }

    .capability-section__heading {
        font-size: 34px;
        letter-spacing: -0.68px;
    }

    .capability-section__list {
        margin-top: 40px;
    }


    .capability-section__item-label {
        font-size: 18px;
    }
}

/* ---------- Mobile: stack, media on top ---------- */
@media (max-width: 767px) {
    .capability-section {
        margin: 15px 15px;
        grid-template-columns: 1fr;
        border-radius: 20px 0 0 0;
    }

    /* media panel first on mobile */
    .capability-section__col--media {
        order: -1;
        padding: 30px;
        min-height: 280px;
    }

    .capability-section__col--text {
        padding: 45px 25px 50px;
    }

    .capability-section__eyebrow {
        font-size: 14px;
        padding-bottom: 16px;
    }

    .capability-section__heading {
        margin-top: 28px;
        font-size: 26px;
        letter-spacing: -0.56px;
    }

    .capability-section__text {
        margin-top: 20px;
    }

    .capability-section__text p {
        font-size: 16px;
    }

    .capability-section__list {
        margin-top: 35px;
    }

    .capability-section__item {
       
        gap: 14px;
        padding: 18px 0;
    }

    /* .capability-section__item-icon {
        width: 16px;
        height: 16px;
    } */

    .capability-section__item-label {
        font-size: 18px;
    }

    .capability-section__cta {
        margin-top: 35px;
    }

}

/* =========================================================
   Media / Text Split Section (generic, reusable anywhere)
   ========================================================= */
.media-text-split {
    display: flex;
    align-items: stretch;
    background: #fff;
    margin: 0 15px;
    border-radius: 40px 0 0 0;
    overflow: hidden;
}

.media-text-split__text {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
}

.media-text-split__inner {
    max-width: 100%;
    width: 100%;
    padding: 150px 90px 150px 150px;
}
.media-text-split__inner-cs {
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

.media-text-split__eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #0A233F;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10, 35, 63, 0.25);
}

.media-text-split__heading {
    margin: 30px 0 0;
   color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.96px;
}

.media-text-split__copy {
    margin-top: 22px;
}

.media-text-split__copy p {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 150%;
    margin: 0 0 15px;
}

.media-text-split__copy p:last-child {
    margin-bottom: 0;
}

.media-text-split__cta {
    margin-top: 35px;
}


.media-text-split__image {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

.media-text-split__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
section.text-column.po-text {
    background: #F7F6F4;
    padding-top: 150px;
    padding-bottom: 70px;
}
/* ---------- Tablet / Mobile ---------- */
@media (max-width: 1024px) {
    .media-text-split {
        flex-direction: column;
    }

    .media-text-split__text,
    .media-text-split__image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .media-text-split__image {
        order: -1;
        height: auto;
    }
.media-text-split__image img {
    position: relative;
    width: 100%;
    height: auto;
   }
    .media-text-split__inner {
        padding: 35px 24px;
        max-width: 100%;
    }

    .media-text-split__heading {
        font-size: 26px;
        margin-top: 22px;
    }

    .media-text-split__copy p {
        font-size: 16px;
    }
}


/* =========================================================
   Footer Press / Publication Logos — auto-scrolling marquee
   ========================================================= */
.press-marquee {
    width: 100%;
    overflow: hidden;
    background: #F7F6F4;
    border-bottom: 1px solid #E5E7EB;
    padding: 28px 0;
    padding-bottom: 100px;
}
.press-marquee__track {
    display: flex;
    width: max-content;
    animation: press-marquee-scroll 30s linear infinite;
}

.press-marquee:hover .press-marquee__track {
    animation-play-state: paused;
}

.press-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.press-marquee__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.press-marquee__logo-img {
    max-height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.press-marquee__item:hover .press-marquee__logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes press-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .press-marquee {
        padding: 20px 0;
    }

    .press-marquee__item {
        padding: 0 24px;
    }

    .press-marquee__logo-img {
        max-height: 24px;
    }

    .press-marquee__track {
        animation-duration: 20s;
    }
}

/* =========================================================
   Card Grid (reusable) — 3 or 4 columns, blue or gray theme
   ========================================================= */
.card-grid {
    padding: 80px 0;
}

/* Backgrounds */
.card-grid--gray {
    background: #F7F6F4;
}

.card-grid--blue {
    background: #0A233F;
    padding-top: 0;
    padding-bottom: 0;
}

/* Row */
.card-grid__row {
    display: grid;
    gap: 15px;
}

.card-grid--cols-3 .card-grid__row {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid--cols-4 .card-grid__row {
    grid-template-columns: repeat(4, 1fr);
}

/* Card */
.card-grid__card {
    padding: 35px;
    border-radius: 40px 0 0 0;
    display: flex;
    flex-direction: column;
}

.card-grid--gray .card-grid__card {
    background: #EAE8E4;
}

.card-grid--blue .card-grid__card {
    background: #fff;
}

/* Heading */
.card-grid__heading {
    margin: 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: normal;
    text-transform: unset;
}

/* Body copy — pushed down so it sits in the lower half of the card */
.card-grid__copy {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 70px;
}

.card-grid__copy p {
    margin: 0 0 15px;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 150%;
}

.card-grid__copy p:last-child {
    margin-bottom: 0;
}

/* CTA */
.card-grid__cta {
    margin-top: 30px;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {

    .card-grid--cols-3 .card-grid__row,
    .card-grid--cols-4 .card-grid__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Mobile: stack ---------- */
@media (max-width: 767px) {
    .card-grid {
        padding: 50px 0;
    }

    .card-grid--cols-3 .card-grid__row,
    .card-grid--cols-4 .card-grid__row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-grid__card {
        padding: 30px 25px;
        border-radius: 20px 0 0 0;
    }

    .card-grid__heading {
        font-size: 24px;
    }

    .card-grid__copy {
        margin-top: 25px;
    }
}



/* =========================================================
   Reactor section — NEW design
   (replaces the previous "centered animation + floating
   .reactor-info callouts" styles)
   ========================================================= */

section.reactor {
    padding-top: 4vw;
    padding-bottom: 0;
    background: #fff;
}

/* Top: two columns — text left, animation right */
section.reactor .reactor-grid {
    max-width: none;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
    position: relative;
}

/* ---- Left text column ---- */
section.reactor .reactor-content {
    padding-top: 180px;
    max-width: 620px;
}

section.reactor .reactor-eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0A233F;
    padding-bottom: 16px;
    letter-spacing: 0.7px;
    border-bottom: 1px solid #0A233F;
}

section.reactor .reactor-heading {
    text-transform: unset;
    color: #0A233F;
    margin: 35px 0 0;
    font-size: 60px;
    line-height: 105%;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    letter-spacing: -1.2px;
    text-align: left;
    width: 100%;
}

section.reactor .reactor-copy {
    margin-top: 30px;
    max-width: 600px;
}

section.reactor .reactor-copy,
section.reactor .reactor-copy p {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
}

section.reactor .reactor-copy p {
    margin: 0 0 15px;
}

section.reactor .reactor-copy p:last-child {
    margin-bottom: 0;
}

/* ---- Right animation column (layout only) ---- */
.reactor-animation {
    position: relative;
    height: 100vh;
}

img.round-shape-bg {
    position: absolute;
    top: 53%;
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: translateY(-50%);
    z-index: -1;
}

.reactor-animation canvas {
    width: 100%;
    height: 78%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2%;
}

/* ---- Bottom: 4-column card grid ---- */
section.reactor .reactor-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
    z-index: 1;
    margin-top: 0px;
}

section.reactor .reactor-card {
    background: #EAE8E4;
    border-radius: 40px 0 0 0;
    padding: 40px;
    box-sizing: border-box;
}

section.reactor .reactor-card h4 {
    font-family: "Inter", sans-serif;
    color: #0A233F;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: -0.48px;
    margin: 0 0 35px;
    font-weight: 800;
}

section.reactor .reactor-card p {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 150%;
    margin: 0;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    section.reactor .reactor-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    section.reactor {
        padding-top: 50px;
    }

    section.reactor .reactor-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    section.reactor .reactor-content {
        padding-top: 0;
        max-width: 100%;
    }

    section.reactor .reactor-heading {
        font-size: 32px;
        letter-spacing: -0.64px;
        margin-top: 28px;
    }

    section.reactor .reactor-copy,
    section.reactor .reactor-copy p {
        font-size: 16px;
    }

    /* keep the animation visible but in normal flow on mobile */
    .reactor-animation {
        height: 60vh;
        margin-top: 30px;
    }

    section.reactor .reactor-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    section.reactor .reactor-card {
        padding: 30px 25px;
        border-radius: 20px 0 0 0;
    }

    section.reactor .reactor-card h4 {
        margin-bottom: 30px;
        font-size: 22px;
    }
}


/* =========================================================
   Text Column (reusable) — centered editorial / statement block
   eyebrow + divider, large heading, body paragraphs.
   ========================================================= */
.text-column {
    padding: 90px 0;
    background: #fff;
}

/* Centered column. The design content width is ~1215px, which sits inside
   the .container; keeping it inside .container keeps gutters consistent
   with the rest of the site. */
.text-column__inner {
    max-width: 1215px;
    margin: 0 auto;
}

/* Eyebrow + full-width divider line beneath it */
.text-column__eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #0A233F;
    padding-bottom: 16px;
    border-bottom: 1px solid #0A233F;
}

/* Heading */
.text-column__heading {
    text-transform: unset;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -1.2px;
    margin: 40px 0 0;
}

/* Body copy */
.text-column__body {
    margin-top: 30px;
    max-width: 1120px;
    /* per design the paragraphs are slightly narrower than the rule */
}
.text-column.reach-text {
    background: #F7F6F4;
}

.text-column__body p {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
    margin: 0 0 28px;
}

.text-column__body p:last-child {
    margin-bottom: 0;
}

/* If the eyebrow is omitted, don't leave a gap above the heading */
.text-column__eyebrow+.text-column__heading {
    margin-top: 40px;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .text-column__heading {
        font-size: 48px;
        letter-spacing: -0.96px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .text-column {
        padding: 50px 0;
    }

    .text-column__heading {
        font-size: 32px;
        letter-spacing: -0.64px;
        margin-top: 28px;
    }

    .text-column__body {
        margin-top: 24px;
    }

    .text-column__body p {
        font-size: 16px;
        line-height: 150%;
        margin-bottom: 22px;
    }
}

/* =========================================================
   Text Column — two-column list
   Left: heading.  Right: body paragraphs.  Thin divider
   between each row (and below the last one).
   ========================================================= */

.text-column__list {
    margin-top: 60px;
}

.text-column__list-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 50px 0;
    border-top: 1px solid #DEDAD5;
    /* line above each row */
}

/* Left column — heading */
.text-column__list-heading {
    margin: 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.56px;
    text-transform: unset;
}

/* Right column — body copy */
.text-column__list-copy p {
    margin: 0 0 16px;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.text-column__list-copy p:last-child {
    margin-bottom: 0;
}

.text-column__list .text-column__list-row:first-child {
    border-top: 0;
}

section#fast-reactor .inner-wrapper {
    background-color: #fff;
    border-radius: 40px 0 0 0;
}

section#fast-reactor .inner-wrapper .col-right h2,
section#fast-reactor .inner-wrapper .col-right p {
    color: #0A233F;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .text-column__list-row {
        gap: 40px;
        padding: 40px 0;
    }
}

/* ---------- Mobile: stack heading over copy ---------- */
@media (max-width: 767px) {
    .text-column__list {
        margin-top: 35px;
    }

    .text-column__list-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 30px 0;
    }

    .text-column__list-heading {
        font-size: 22px;
    }

    .text-column__list-copy p {
        font-size: 16px;
    }
}

/* =========================================================
   Cover Image (reusable) — full-width image, nothing else.
   ========================================================= */

.cover-image {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
    /* removes inline-block gap under img */
}

.cover-image__img {
    display: block;
    width: 100%;
    height: auto;
}

/* Desktop image on by default, mobile hidden */
.cover-image__img--desktop {
    display: block;
}

.cover-image__img--mobile {
    display: none;
}

/* Swap on mobile */
@media (max-width: 767px) {
    .cover-image__img--desktop {
        display: none;
    }

    .cover-image__img--mobile {
        display: block;
    }
}


/* =========================================================
   Deployment Section — "EAGL-1 at a glance" stats panel
   Left: reactor image.  Right: card with a warm-gray header
   bar (40px top-left corner) + a 2-column stats grid with
   thin dividing lines.
   ========================================================= */

.deployment-section {
    background: #fff;
}

.deployment-section .deployment-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10px;
    padding-top: 0;
}

/* ---- Left: reactor image ---- */
.deployment-section .reactor-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.deployment-section .reactor-image-wrap .hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

/* ---- Right: stats card ---- */
.deployment-section .glance-card {
    border-radius: 40px 0 0 0;
    overflow: hidden;
    border: 1px solid #DEDAD5;

}

/* Header bar */
.deployment-section .glance-card__header {
    background: #E6E3DF;
    padding: 32px 40px;
}

.deployment-section .glance-card__header h3 {
    margin: 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.44px;
    text-transform: unset;
}

/* Stats grid: 2 columns */
.deployment-section .glance-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Each stat cell — dividing lines drawn with borders */
.deployment-section .glance-stat {
    padding: 40px;
    border-top: 1px solid #DEDAD5;
    border-left: 1px solid #DEDAD5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 160px;
    justify-content: center;
}
.deployment-section .glance-stat:first-child,.deployment-section .glance-stat:nth-child(2) {
    border-top: 0;
}
/* Remove the left border on the first column so the card edge stays clean */
.deployment-section .glance-stat:nth-child(odd) {
    border-left: none;
}

.deployment-section .glance-stat__value {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -2%;
}

.deployment-section .glance-stat__label {
    color: #0A233F;
    font-family: "Industry", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 5%;
    text-transform: uppercase;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .deployment-section .deployment-inner {
        gap: 40px;
    }

    .deployment-section .glance-stat {
        padding: 30px 24px;
        min-height: 140px;
    }

    .deployment-section .glance-stat__value {
        font-size: 22px;
    }
}

/* ---- Mobile: image on top, single-column stats ---- */
@media (max-width: 767px) {
    .deployment-section {
        padding: 50px 0;
    }
     

    .deployment-section .deployment-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .deployment-section .glance-card__header {
        padding: 20px 25px;
    }


    /* single column — every cell gets a top border, none get a left border */
    .deployment-section .glance-stats {
        grid-template-columns: 1fr;
    }

    .deployment-section .glance-stat {
        padding: 26px 25px;
        min-height: 0;
        border-left: none;
    }

    .deployment-section .glance-stat__label {
        font-size: 12px;

    }

    .deployment-section .glance-stat:nth-child(odd) {
        border-left: none;
    }
}



/**** new v2 css *********/
body.home header.header {
    position: absolute;
    top: 0;
    z-index: 5;
    width: calc(100% - 40px);
    left: 0;
}

.hero-section {
    margin: 0;
    border-radius: 0 !important;
}

.hero-section .hero-image {
    border-radius: 0;
}

.hero-video-cover {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56%;
}

.hero-video-cover video.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            rgba(10, 35, 63, 0.55) 0%,
            rgba(10, 35, 63, 0.15) 40%,
            transparent 70%);
    pointer-events: none;
}

.hero-section h1 {
    text-align: left;
    font-size: 72px;
}

.hero-section .hero-content {
    top: auto;
    text-align: left;
    padding-left: 60px;
    padding-right: 60px;
    bottom: 11%;
}

@media(min-width:1380px) {
    .hero-section .hero-content {
        padding-left: 150px;
        padding-right: 150px;
    }
}

header.header .main-menu ul li a,#primary-menu .sub-menu li a {
 letter-spacing: 0.36px;
 font-size: 12px;
}
#primary-menu .menu-item-has-children>a::before {
    position: relative;
    top: 2px;
}
.hero-section p{
    color: #fff;
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 33px */
}

section.reactor .reactor-grid {
    display: block !important;
    max-width: 100%;
    width: 50%;
    margin-left: auto;
    margin-right: 0;
}

.reactor-content-outer {
    position: absolute;
    left: -100%;
    width: 100vw;
    top: 50%;
    transform: translateY(-50%);
}

section.reactor .reactor-content-outer .reactor-content {
    padding-top: 0px !important;
    max-width: 670px !important;
}

.reactor-content-outer {
    position: absolute;
    left: 0%;
    width: 100vw;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 50px;
}

.hero-section .hero-content {
    z-index: 1;

}

@media(min-width:1380px) {
    .reactor-content-outer {
        padding: 0 150px;
    }

    .our-partners .partners-grid {
        padding-left: 150px;
        padding-right: 150px;
    }
}

.our-partners {
    padding-left: 0;
    padding-right: 0;
}

.partner-card-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.our-partners .partner-card {
    flex: inherit;
    width: calc(33.33% - 10px);
}

.our-partners .partners-grid {
    max-width: 100%;
}

.our-partners .partner-card {
    max-width: 100%;

}

section.reactor .reactor-grid h2 {
    position: relative;
    min-width: inherit;
    transform: none;
    left: auto;
    text-align: left !important;
    top: auto;
    margin: 35px 0 0;
}

section.reactor {
    background: linear-gradient(180deg, #F7F6F4 0%, rgba(247, 246, 244, 0) 33%, rgba(247, 246, 244, 0) 66%, #F7F6F4 100%);
    padding-bottom: 4vw;
}

section.plant {
    margin: 0;
    padding-top: 0;
    background: #fff;
    border-radius: 0;
}

.plant-cards .card {
    background: #0A233F;
}

.double-wrap {
    background: linear-gradient(180deg, #F7F6F4 0%, rgba(247, 246, 244, 0) 33%, rgba(247, 246, 244, 0) 66%, #F7F6F4 100%);
    margin: 0 15px 15px;
}

.double-wrap section.text-column {
    border-radius: 40px 0 0 0;
}

section.team-banner.project h1 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
section.team-banner.project .hero-media-banner__subheading {
    text-align: center;
    margin: 0 0 100px;
}

.team-banner img.hero-image {
    border-radius: 40px 0 0 0;
}

.text-column.nc-text {
    background: #F7F6F4;
    padding-top: 60px;
    padding-bottom: 20px;
}

.cover-image.bridge-cover {
    background: #F7F6F4;
    margin: 0 15px;
}

.cover-image.bridge-cover .cover-image__img--desktop {
    border-radius: 40px 0 0 0;
}

.text-column.ca-text {
    background: #F7F6F4;
    padding-bottom: 0;
}

.team-banner.project.pw-solution h1 {
    max-width: 100%;
}
.page-template-template-power-solutions .team-banner.project.pw-solution h1 {
    margin-bottom: 100px;
}

.text-column.start-text {
    background: #F7F6F4;
    padding-top: 60px;
    padding-bottom: 40px;
}

.deployment-section {
    background: #F7F6F4;
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
}

.text-column.coolant-text {
    background: #F7F6F4;
    padding-bottom: 100px;
}

.cover-image.about-cover {
    margin: 0 15px;
    border-radius: 40px 0 0 0;
    overflow: hidden;
}

.text-column.deploy-text {
    background: #F7F6F4;
    padding-bottom: 0;
}
.deploy-col-card-grid {
    padding-top: 50px;
        padding-bottom: 20px;
}
.deploy-col-card-grid + .fact-check-card {
    margin-bottom: 100px;
}
.spectrum-reactor .col-right span.eyebrow,
.nuclear-section span.eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #0A233F;
    padding-bottom: 16px;
    border-bottom: 1px solid #0A233F;
    margin-bottom: 30px;
}

.spectrum-reactor .col-right a.btn,
.nuclear-section a.btn {
    margin-top: 30px;
}

.nuclear-section {
    border-radius: 40px 0 0 0;
    padding: 90px 0;
}

.text-column.reuse-text {
    background: #F7F6F4;
}

section.team-banner.about img {
    border-radius: 40px 0 0 0;
}

.about-section .page-content p.subheading {
    font-size: 22px;
}
.about-section p{
    font-size: 22px;

font-weight: 400;
line-height: 150%;
margin: 0 0 30px;
}
.about-section .page-content h4 {
    margin: 40px 0px 20px;
}
section.execution-partners.about-partners h2.execution-partners__heading {
    margin-top: 0;
}
.timeline-section-inner h2+p {
    font-size: 20px;
}
.timeline-section-inner {
    background: #F7F6F4;
}
.timeline-section {
    padding: 0;
 
}
.timeline-section .timeline .timeline-item .text {
    background: #fff;
    border-radius: 40px 0 0 0;
    padding: 50px;
    gap: 15px;
}
.timeline-section .timeline .timeline-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.timeline-section .timeline .timeline-item {
    padding: 0 0 15px;
    border: 0 !important;
}
.timeline-section .timeline .timeline-item .text .date-range {
    font-size: 30px !important;
    font-weight: 800;
    letter-spacing: -0.6px;
}
.about-section .eyebrow,
.timeline-section-inner .eyebrow,
.experience .eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #0A233F;
    padding-bottom: 16px;
    border-bottom: 1px solid #0A233F;
    margin: 0 0 35px;
    width: 100%;
}

.about-section .page-content h2 {
    font-size: 60px;
    letter-spacing: -1.2px;
}

.page-template-template-about section.team-banner.about h1 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.about-section {
    padding: 0  15px !important;
}
.timeline-section-inner {
    border-radius: 40px 0 0 0;
}

.timeline-section .timeline .timeline-item {
    border-bottom: 1px solid #EAE8E4;
}

.timeline-section .timeline {
    padding-top: 60px;
}

.timeline-section .timeline .timeline-item .text p {
    font-size: 16px;
    line-height: 150%;
}

.timeline-section .timeline .timeline-item .text .date-range {
    font-size: 20px;
}

.timeline-section .timeline .timeline-item:last-child {
    border-bottom: 0 !important;
}

.experience .col-one {
    align-items: flex-start;
    justify-content: flex-start;
}

.experience .col-one h2 {
    letter-spacing: -2%;
    line-height: 110%;
    text-align: left;
    max-width: 1100px;
    margin-left: 0;
}

.experience .col-one p {
    font-size: 20px;
    line-height: 150%;
    max-width: 1100px;
}

.experience .custom-row {
    padding-top: 70px;
}

.experience .col-one span.eyebrow {
    margin: 0 !important;
}

.page-template-template-partner .team-banner h1 {
    max-width: 1100px;
}

.plant-cards .card .text-wrap p {
    font-size: 16px;
}

.plant-cards .card .text-wrap>div:first-child>p {
    font-size: 18px;
}

@media(min-width:1380px) {

    .container.page-full,
    .nc-card-grid .container,
    .ca-card-grid .container,
    .coolant-card-grid .container,.cu-card-grid .container ,footer.footer .footer-content,
.deploy-col-card-grid .container{
        padding: 0 150px;
        max-width: 100%;
    }
    .execution-partners .container + .container{
        padding: 0 135px;
        max-width: 100%;
    }
    .list-wrapper-main .container{
            max-width: 100%;
            padding-left: 150px;
            padding-right: 150px;
    }
    .contact-cards .container,.contact-hero .container{
         max-width: 100%;
            padding-left: 110px;
            padding-right: 110px;
    }
}

.plant-cards .card .text-wrap {
    padding-right: 20px;
}

.plant-cards .card .text-wrap h3 {
    color: #fff;
}

.plant-cards .card .text-wrap p {
    color: #fff;
}

.plant-cards .card .text-wrap h3 {
    margin: 0 0 12px;
}

.plant-cards .card .text-wrap div {
    width: 100%;
}

.plant-cards .card .text-wrap div p+a {
    margin-top: 15px;
}

.plant-cards {
    column-gap: 15px;
}

.plant-cards .card {
    width: calc(50% - 8px);
}

.text-column.partners-text {
    background: #F7F6F4;
    padding-bottom: 0;
}

.our-partners {
    padding-top: 0px;
}

@media(min-width:767px) {
    section.reactor {
        overflow-x: hidden;
    }
}



@media(max-width:1060px) {
    .plant-cards .card {
        width: 100%;
        margin: 0 0 20px;
    }

    .our-partners .partner-card {
        flex: inherit;
        width: calc(50% - 8px);
    }
}

@media(max-width:1020px) {
    .hero-section h1 {
        font-size: 48px;
    }

    .statement-section__heading,
    .text-column__heading,
    .media-banner__heading {
        font-size: 46px;

    }

    section.reactor .reactor-grid h2 {
        font-size: 40px;
    }

    section.reactor .reactor-grid h2 {
        max-width: 440px;
    }

    section.reactor .reactor-copy p {
        max-width: 400px;
    }
}

@media(max-width:767px) {
    .hero-section {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-video-cover {
        padding-top: 0;
        height: 100%;
    }

    .hero-section h1 {
        font-size: 30px;
                margin: 0 0 15px;
    }

    .hero-section .hero-content {
        padding-left: 15px;
        padding-right: 15px;
        bottom: 50px;
    }

    .statement-section__heading,
    .text-column__heading {
        font-size: 28px;
    }

    .media-banner__heading {
        font-size: 30px;
    }

    .reactor-content-outer {
        padding: 0 15px;
    }

    section.reactor .reactor-grid {
        max-width: 40vw;
        margin: 0 auto;
        position: relative;
        width: 100%;
        margin-right: 0;
        margin-left: auto;
    }

    .reactor-animation canvas {
        height: 88%;
        top: 62%;
        left: -12%;
    }

    section.reactor .reactor-grid h2 {
        font-size: 5vw;
        max-width: 40vw !important;
        letter-spacing: -0.3vw;
        line-height: 1.1;
        margin: 4vw 0 0;
    }

    section.reactor .reactor-copy p {
        margin: 0 0 15px;
        max-width: 40vw !important;
        font-size: 3.3vw !important;
        line-height: 1.4;
    }

    .reactor-content-outer {
        left: -16vw;
        width: 80vw;
        top: 55%;

    }

    section.reactor .reactor-eyebrow {
        max-width: 46vw;
    }

    section.reactor {
        padding-bottom: 50px;
    }

    .text-column__eyebrow+.text-column__heading {
        margin-top: 25px;
    }

    .plant-cards .card figure,
    .plant-cards .card .text-wrap {
        width: 100%;
    }

    .plant-cards .card {
        flex-direction: column-reverse;
    }

    .plant-cards {
        row-gap: 0 !important;
    }

    .card-grid__heading {
        font-size: 20px;
    }

    .card-grid__copy {
        padding-top: 10px;
    }

    .card-grid {
        padding: 20px 0 0;
    }

    section.team-banner img.hero-image {
        border-radius: 20px 0 0 0;
    }

    .text-column.nc-text {
        padding-top: 20px;
    }

    .nc-card-grid {
        padding-bottom: 50px;
    }

    .cover-image.bridge-cover .cover-image__img--mobile {
        border-radius: 40px 0 0 0;
    }

    .ca-card-grid {
        padding-bottom: 60px;
    }

    .text-column.start-text {
        background: #F7F6F4;
        padding-top: 20px;
        padding-bottom: 50px;
    }
.page-template-template-power-solutions .text-column.start-text {
    padding-top: 50px;
   
}
    .deployment-section .deployment-inner {
        flex-direction: column-reverse;
        display: flex;
        flex-wrap: wrap;
    }

    .deployment-section .glance-card__header h3 {
        font-size: 18px;
        letter-spacing: normal;
    }

    .deployment-section .glance-card {
        width: 100%;
    }

    .coolant-card-grid {
        padding-bottom: 50px;
    }

    .text-column.deploy-text .text-column__list {
        margin-top: 20px;
    }

    section#fast-reactor {
        margin: 0 15px 15px;
    }

    section.nuclear-section.first {
        margin: 0 15px 15px 15px;
        padding-top: 0;
        padding-bottom: 0px;
    }

    .about-section .page-content h2 {
        font-size: 28px;
    }

    .about-section .page-content p.subheading,
    .timeline-section-inner h2+p {
        font-size: 18px;
    }

    .timeline-section {
        padding: 15px 15px 0px 15px;
    }

    .experience .col-one p {
        font-size: 18px;
    }

    .experience .custom-row {
        padding-top: 40px;
    }

    .experience .col-one {
        gap: 20px;
    }

    .timeline-section .timeline .timeline-item {
        display: block;
    }

   .timeline-section .timeline .timeline-item .text {
    gap: 10px;
    margin-top: 10px;
    border-radius: 20px 0 0 0;
    padding: 25px;
}

    .timeline-section .timeline .timeline-item .text p {
        font-size: 16px;
        line-height: 150%;
    }

    .timeline-section-inner {
        padding-bottom: 20px;
    }

    .experience {
        padding: 50px 0 50px;
    }

    section.reactor .reactor-card p {
        font-size: 14px;
    }

    .text-column__eyebrow {
        font-size: 14px;
    }

    .plant-cards .card .text-wrap p {
        font-size: 14px;
    }

    .plant-cards .card .text-wrap>div:first-child>p {
        font-size: 16px;
        margin: 16px 0 25px;
    }

    .card-grid__copy p {
        font-size: 14px;
    }

    .our-partners .partner-card {
        flex: inherit;
        width: 100%;
    }

    .our-partners .partner-card .text h5 {
        font-size: 22px;
    }
}


/* =========================================================
   Footer
   ========================================================= */
.footer {
    background: #0A233F;
    padding: 90px 0 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col--brand {
    flex: 0 0 460px;
    max-width: 460px;
}

.footer-col--menu {
    flex: 0 0 200px;
    padding-top: 6px;
}

.footer-logo img {
    max-width: 220px;
    height: auto;
    display: block;
}

/* Newsletter signup (static for now) */
.footer-newsletter {
    margin-top: 40px;
}

.footer-newsletter__label {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
}

.footer-newsletter__form {
    display: flex;
    align-items: stretch;
    max-width: 470px;
}

.footer-newsletter .frm_forms form#form_signup-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    font-family: "Inter", sans-serif;
    font-size: 16px !important;
    padding: 0 18px;
       height: 48px;
    min-height: 48px;
    outline: none;
    width: 100%;
    border-radius: 0;
        box-shadow: none !important;
} 
.footer-newsletter .frm_forms form#form_signup-form .form-field{
margin: 0 !important;
    width: 100%;
}

.footer-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.footer-newsletter .frm_fields_container {
    display: flex !important;
    align-items: flex-start;
}
.footer-newsletter .frm_forms {
    max-width: 100% !important;

}
.footer-newsletter .frm_forms form#form_signup-form .form-field + .form-field {
    width: auto;
}
.footer-newsletter .frm_forms form#form_signup-form .form-field.frm_required_field {
    width: calc(100% - 150px);
}
.frm_style_formidable-style.with_frm_style input:-webkit-autofill {
    -webkit-box-shadow: #fff !important;
}
.footer-newsletter  .frm_fields_container {
    display: flex !important;
    align-items: flex-start;
flex-wrap: wrap;
}
 .frm_button_submit {
    flex-shrink: 0;
    background: #fff !important;
    color: #0A233F !important;
    font-family: "Industry", sans-serif;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 5%;
    text-transform: uppercase;
    padding: 0 28px !important;
    height: 48px !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
    border-radius: 16px 0 0 0 !important;
    outline: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.footer-newsletter__btn:hover {
    background: #E5E7EB;
}

/* Social icons — circular, white bg / navy icon */
.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    transition: opacity 0.3s ease;
}

.social-links li a:hover {
    opacity: 0.8;
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: #0A233F;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 150%;
    margin: 46px 0 0;
}

/* Footer menu columns */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin: 0 0 20px;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu li a {
    color: #fff;
    font-family: "Inter", sans-serif !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    letter-spacing: normal;
    line-height: 120%;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.footer-col.footer-col--menu {
    margin-top: 72px;
}

.footer-menu li a:hover {
    opacity: 0.75;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .footer-col--brand {
        flex: 1 1 100%;
        max-width: 100%;
    }
.team-banner h1 {
    font-size: 60px;
   }
    .footer-col--menu {
        flex: 1 1 calc(50% - 20px);
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
    .footer {
        padding: 60px 0 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col--menu {
        flex: 1 1 100%;
    }

    .footer-newsletter__form {
        flex-direction: column;
        max-width: 100%;
    }

    .footer-newsletter__input {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
       
    }

    .footer-newsletter__btn {
        height: 48px;
    }

    .footer-menu li a {
        font-size: 22px;
    }
}


/* =========================================================
   Fact Check Card (reusable — icon/badge + divider + rich text)
   ========================================================= */
.fact-check-card {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: 30px;
}

.fact-check-card__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: #fff;
    border-radius: 40px 0 0 0;
}

.fact-check-card__badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.fact-check-card__badge-img {
    max-width: 100px;
    width: 100%;
    height: auto;
    display: block;
}

.fact-check-card__divider {
    flex-shrink: 0;
    width: 2px;
    align-self: stretch;
    background: #0083D4;
    border-radius: 2px;
}

.fact-check-card__text {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 160%;
}

.fact-check-card__text p {
    margin: 0;
    font-size: 14px;
}
.fact-check-card__text strong {
    font-weight: 700;
}

/* ---------- Tablet ---------- */
@media (max-width: 767px) {
    .fact-check-card__inner {
        padding: 24px;
        gap: 20px;
    }

    .fact-check-card__badge-img {
        max-width: 80px;
    }
    .hero-section p {
    font-size: 18px;
 }
}

/* ---------- Mobile ---------- */
@media (max-width: 560px) {
    .fact-check-card__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .fact-check-card__badge-img {
        max-width: 90px;
    }

    .fact-check-card__divider {
        width: 100%;
        height: 2px;
        align-self: auto;
    }

    .fact-check-card__text {
        font-size: 15px;
    }
}

/* =========================================================
   Hero Media Banner — heading + subheading over a light bg,
   full-width media (video or image) below.
   Reusable class name, not tied to any one page.
   ========================================================= */
.hero-media-banner {
    background: #F7F6F4;
    padding: 70px 0 0;
    text-align: center;
}

.hero-media-banner .container {
    max-width: 930px;
}

.hero-media-banner__heading {
       color: #0A233F;
    margin: 0 0 30px;
    font-family: Inter;
    font-size: 72px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -1.44px;
    text-align: center;
}

.hero-media-banner__subheading {
    margin: 16px 0 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
}

/* ---- Media block ----
   Inset card matching the brand's rounded-corner treatment used
   throughout the site (card-grid, media-banner): 20px side margins,
   40px radius on the TOP-LEFT corner only, other corners square. */
.hero-media-banner__wrap {
    margin: 100px 20px 0;
    border-radius: 40px 0 0 0;
    overflow: hidden;
    line-height: 0;
}

.hero-media-banner__video,
.hero-media-banner__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.78 / 1;
    object-fit: cover;
    object-position: center;
}
section.text-column.bp-text,section.text-column.cr-text {
    background: #F7F6F4;
}
section.text-column.bp-text .wp-video {
    margin: 100px 0 50px;
    border-radius: 40px 0 0 0;
    overflow: hidden;
}
section.text-column.bp-text{
    padding-bottom: 0;
}
section.text-column.cr-text {
    padding-top: 0;
    padding-bottom: 20px;
}
 section.text-column.cr-text + .fact-check-card {
    margin-bottom: 100px;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .hero-media-banner {
        padding: 55px 0 0;
    }

   


    .hero-media-banner__wrap {
        margin: 30px 15px 0;
        border-radius: 28px 0 0 0;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .hero-media-banner {
        padding: 40px 0 0;
    }

    .hero-media-banner .container {
        padding: 0 20px;
    }
    section.text-column.bp-text .wp-video {
    margin: 50px 0 40px;
    border-radius: 20px 0 0 0;
 }

    .hero-media-banner__heading {
        font-size: 30px;
        letter-spacing: -0.6px;
    }

    .hero-media-banner__subheading {
        font-size: 16px;
    }

    .hero-media-banner__wrap {
        margin: 24px 15px 0;
        border-radius: 20px 0 0 0;
    }

    .hero-media-banner__video,
    .hero-media-banner__image {
        aspect-ratio: 1 / 1.1;
    }
}

/* =========================================================
   Execution Partners section (page-specific)
   Eyebrow + divider + heading + intro, then a row of navy
   logo cards (40px top-left corner) with a caption below each.
   ========================================================= */
.execution-partners {
    padding: 100px 0;
    background: #fff;
    border-radius: 40px 0 0 0;
    margin: 0px 15px 15px;
}

.execution-partners__eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0A233F;
    padding-bottom: 20px;
    border-bottom: 1px solid #0A233F;
}

.execution-partners__heading {
    margin: 35px 0 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -1.2px;
    text-transform: unset;
}

.execution-partners__text {
    margin-top: 25px;
    max-width: 800px;
}

.execution-partners__text p {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    margin: 0 0 15px;
}

.execution-partners__text p:last-child {
    margin-bottom: 0;
}

/* ---- Row of partner cards ---- */
.execution-partners__row {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.execution-partners__item {
    display: flex;
    flex-direction: column;
}

.execution-partners__card {
    background: #0A233F;
    border-radius: 40px 0 0 0;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.execution-partners__logo {
    max-width: 220px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.execution-partners__caption {
    margin: 20px 0 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 120%;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .execution-partners {
        padding: 70px 0;
    }

    .execution-partners__heading {
        font-size: 36px;
        letter-spacing: -0.72px;
    }

    .execution-partners__row {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 45px;
    }

    .execution-partners__card {
        min-height: 220px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .execution-partners {
        padding: 50px 0;
    }

    .execution-partners__eyebrow {
        font-size: 12px;
        padding-bottom: 16px;
    }

    .execution-partners__heading {
        margin-top: 28px;
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .execution-partners__text {
        margin-top: 20px;
    }

    .execution-partners__text p {
        font-size: 16px;
    }

    .execution-partners__row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 35px;
    }

    .execution-partners__card {
        min-height: 200px;
        border-radius: 20px 0 0 0;
        padding: 30px;
    }

    .execution-partners__logo {
        max-width: 180px;
        max-height: 48px;
    }

    .execution-partners__caption {
        font-size: 16px;
    }
}
.nuclear-table {
    width: 100%;
    border-collapse: collapse;
    color: #0A233F;
    background: transparent;
    border: 1px solid #DEDAD5 !important;
    border-radius: 12px;
    display: block;
    font-size: 16px;
    line-height: 150%;
    margin: 50px 0;
}
.nuclear-table td {
    border-top: 1px solid #DEDAD5;
    padding: 28px 32px;
    vertical-align: middle;
}

.nuclear-table tr:first-child td {
    border-top: none;
}

.nuclear-table td:first-child {
    width: 50%;
    border-right: 1px solid #DEDAD5;
    font-size: 24px;
    font-weight: 800;
}

.nuclear-table td:first-child p:first-child {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 6px;
}

.nuclear-table td:first-child p:last-child {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.nuclear-table td:last-child p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}
section.text-column.tb-text img.size-full {
    display: block;
    border-radius: 40px 0 0 0;
    margin: 50px 0;
}


@media (max-width: 640px) {
/* 
    .nuclear-table,
    .nuclear-table tbody,
    .nuclear-table tr,
    .nuclear-table td {
        display: block;
        width: 100%;
    }

    .nuclear-table td {
        padding: 20px;
        border-right: none;
    }

    .nuclear-table td:first-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .nuclear-table td:last-child {
        border-top: none;
    }

    .nuclear-table td:first-child p:first-child {
        font-size: 22px;
    }

    .nuclear-table td:first-child p:last-child {
        font-size: 18px;
    } */
}

/* =========================================================
   Latest News (blog) section — page-specific
   Heading, then a 3-column post grid: image (40px top-left
   corner) -> category tag -> linked title.
   ========================================================= */
.latest-news {
    padding: 100px 0;
     margin: 0 15px;
     border-radius: 40px 0 0 0;
    background: #fff;
}

.latest-news__heading {
    margin: 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -1.2px;
    text-transform: unset;
}

/* ---- Post grid ---- */
.latest-news__row {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.latest-news__item {
    display: flex;
    flex-direction: column;
}

/* Image */
.latest-news__image-link {
    display: block;
    line-height: 0;
}

.latest-news__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.78 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 20px 0 0 0;
}

/* Category tag */
.latest-news__tag {
      display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #0A233F;
    margin-top: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #0A233F;
}

/* Title */
.latest-news__title {
    margin: 12px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.24px;
}

.latest-news__title a {
    color: #0A233F;
    text-decoration: none;
}

.latest-news__title a:hover {
    text-decoration: underline;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .latest-news {
        padding: 70px 0;
    }

    .latest-news__heading {
        font-size: 36px;
        letter-spacing: -0.72px;
    }

    .latest-news__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 45px;
    }

    .latest-news__title {
        font-size: 22px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .latest-news {
        padding: 50px 0;
    }

    .latest-news__heading {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .latest-news__row {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 35px;
    }

    .latest-news__image {
        border-radius: 20px 0 0 0;
    }

    .latest-news__tag {
        margin-top: 18px;
        font-size: 12px;
    }

    .latest-news__title {
        font-size: 20px;
    }
}

/* =========================================================
   Contact Page
   ========================================================= */

/* ---- Hero (navy top area) ---- */
.contact-hero {
    position: relative;
    background: #0A233F;
    overflow: hidden;
    padding: 110px 0 180px;   /* extra bottom padding so cards can overlap up into it */
}

.contact-hero__bg {
    position: absolute;
    top: 0px;
    right: 0;
    width: 55%;
    max-width: 910px;
    height: calc(100% - 10px);
    background-image: url('../images/FANCO-symbol.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
}
.contact-hero__content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.contact-hero__eyebrow {
    display: block;
    width: 100%;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.contact-hero__heading {
    margin: 35px 0 0;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 105%;
    letter-spacing: -1.4px;
}

.contact-hero__locations {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-top: 50px;
}

.contact-hero__location h3 {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 12px;
}

.contact-hero__location-text p {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 160%;
    margin: 0;
}

/* ---- Contact cards (white bg section, cards float up into navy) ---- */
.contact-cards {
    background: #0A233F;
    padding: 0 0 100px;
    position: relative;
    z-index: 2;
}

.contact-cards__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: -130px;   /* pulls cards up into the navy hero */
}

.contact-cards__item {
    flex: 1 1 0;
    min-width: 0;
    background: #fff;
    border-radius: 40px 0px 0 0;   /* top-right corner rounded */
    box-shadow: 0 20px 40px rgba(10, 35, 63, 0.12);
    padding: 40px 38px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
}

.contact-cards__item h3 {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 125%;
    letter-spacing: -0.3px;
    margin: 0;
    max-width: 160px;   /* natural wrap: "Energy customers", "Partners and suppliers" */
}

.contact-cards__email {
    display: inline-block;
    color: #0A233F;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 1px solid #0A233F;
    align-self: flex-start;
    transition: opacity 0.3s ease;
    overflow-wrap: normal;
    margin-top: auto;
}

.contact-cards__email:hover {
    opacity: 0.6;
}

section.text-column.cu-text {
    background: #F7F6F4;
    padding-top: 150px;
    padding-bottom: 0;
}
.cu-card-grid {
    background: #F7F6F4;
    padding-top: 50px;
    padding-bottom: 100px;
}

.card-grid--gray .card-grid__card .card-grid__number {
    display: block;
    font-family: Industry, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgb(10, 35, 63);
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(10, 35, 63);
    margin-bottom: 40px;
}
footer.footer {
    padding: 100px 0;
 }
 footer.footer .footer-content {
    grid-template-columns: 4fr 2fr 2fr;
 }
 .footer-newsletter__form {
    gap: 15px;
}
.footer-newsletter__label {
    font-size: 16px !important;
    font-weight: 800 !important;
    margin: 0 0 15px;
}
.footer-newsletter__input {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
 }
 .footer-newsletter__btn {
    font-size: 14px;
    border-radius: 16px 0 0 0;
}

.footer-col--brand ul.social-links {
    margin-top: 30px;
}
.footer-col--brand ul.social-links li a svg {
    width: 24px;
    fill: inherit;
}
.team-banner img.hero-image + .container{
            padding-left: 15px;
        padding-right: 15px;
}

.team-banner .hero-image__caption{
font-family: 'Inter';
font-size: 16px;
font-style: normal;
margin: 0;
font-weight: 400;
line-height: 150%;
border-bottom: 1px solid #DEDAD5;
padding: 15px 0;
}
.text-column.start-text .text-column__heading,.text-column.coolant-text .text-column__heading{
    max-width: 1160px;
}
.text-column.start-text .text-column__body,.text-column.coolant-text .text-column__body,section.text-column.reach-text .text-column__body{
    max-width: 1120px;
}
.text-column.coolant-text ul{
    padding: 0;
    list-style: none;
}
.text-column.coolant-text ul li {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #DEDAD5;
    padding: 28px 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 130%;
    position: relative;
}

.text-column.coolant-text ul li::before {
    flex: 0 0 auto;
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url('../images/ch-icon.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
}
.text-column.deploy-text .text-column__heading {
    margin-top: 0;
}
.reach-text .alignnone.size-full{
    border-radius: 40px 0 0 0;
    display: block;
    margin: 100px 0 50px;
}
 
section.nuclear-section .left-column-inner .fact-check-card__inner {
   background: #F7F6F4;
   }
 section.nuclear-section .left-column-inner    .fact-check-card {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    margin-top: 30px;
}
/* Make [video] shortcode inside text-column responsive full-width */
.text-column__body .wp-video,
.text-column__body .wp-video-shortcode,
.text-column__body .mejs-container {
    width: 100% !important;
    max-width: 100% !important;
}

.text-column__body .wp-video {
    aspect-ratio: 16 / 9;
    height: auto !important;
    position: relative;
}

.text-column__body .mejs-container {
    height: 100% !important;
    position: absolute !important;
    top: 0;
    left: 0;
}

.text-column__body .wp-video video,
.text-column__body video.wp-video-shortcode {
    width: 100% !important;
    height: 100% !important;
}
section.text-column.tb-text {
    background: #F7F6F4;
    padding-top: 60px;
}
section.text-column.tb-text  h2.text-column__heading {
    margin-top: 0;
}
section.text-column.tb-text span.text-column__eyebrow + h2.text-column__heading {
    margin-top: 40px;
}
section.nuclear-section.first  .left-column-inner {
    max-width: 620px;
}
section.nuclear-section.first  .left-column-inner  h2 {
    max-width: 600px;
}
/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 90px 0 160px;
    }

    .contact-hero__bg {
        width: 65%;
        opacity: 0.4;
    }

    .contact-hero__heading {
        font-size: 52px;
    }

    .contact-cards__grid {
        flex-wrap: wrap;
        margin-top: -100px;
    }

    .contact-cards__item {
        flex: 1 1 calc(33.333% - 14px);
        min-height: 230px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .contact-hero {
        padding: 70px 0 120px;
    }

    .contact-hero__bg {
        display: none;
    }

    .contact-hero__heading {
        font-size: 40px;
        letter-spacing: -0.6px;
    }

    .contact-hero__locations {
        gap: 26px;
        margin-top: 36px;
    }

    .contact-cards {
        padding-bottom: 60px;
    }

    .contact-cards__grid {
        flex-direction: column;
        margin-top: -80px;
        gap: 16px;
    }

    .contact-cards__item {
        flex: 1 1 100%;
        min-height: 200px;
        padding: 28px 24px;
        border-radius: 20px 0 0 0;
    }

    .contact-cards__item h3 {
        font-size: 20px;
        max-width: 200px;
    }
       section.text-column.cu-text {
    padding-top: 50px;
    }
    .cu-card-grid {
    padding-top: 30px;
    padding-bottom: 60px;
}
.media-text-split {
    margin: 0 15px;
    border-radius: 20px 0 0 0;
 }
 section.text-column.po-text {
    padding-top: 70px;
    padding-bottom: 30px;
}
.press-marquee {
    padding: 20px 0 50px;
}
footer.footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
footer.footer {
    padding: 70px 0;
}
.footer-menu li a {
    font-size: 20px !important;
}
.footer-col--menu {
    flex: 1 1 calc(50% - 20px) !important;
    margin-top: 10px !important;

}
.team-banner .hero-image__caption {
    font-size: 14px;
}
.team-banner img.hero-image + .container {
    padding-left: 0;
    padding-right: 0;
}
.text-column.coolant-text ul li {
    padding: 20px 0;
    font-size: 20px;
 }
 .text-column.coolant-text {
    padding-bottom: 50px;
}
.deploy-col-card-grid + .fact-check-card {
    margin-bottom: 50px;
}
.reach-text .alignnone.size-full {
    border-radius: 20px 0 0 0;
    margin: 50px 0 30px;
}
.spectrum-reactor .col-right span.eyebrow, .nuclear-section span.eyebrow {
   
    font-size: 14px;
   
}
.execution-partners {
    border-radius: 20px 0 0 0;
 }
 section.text-column.cr-text + .fact-check-card {
    margin-bottom: 50px;
}
.team-banner h1 {
    font-size: 30px !important;
 }
 .about-section p {
    font-size: 16px !important;
 }
.timeline-section .timeline {
    padding-top: 20px;
}
.timeline-section .timeline .timeline-item {
    padding: 0 0 30px;
 }
 .timeline-section .container {
    padding: 40px 0px 0 0px;
}   
.timeline-section .timeline .timeline-item .image img {
    border-radius: 20px 0 0 0;
}
}



/* =========================================================
   Category Archive page
   Header: eyebrow + divider + big heading + intro copy
   Post grid: two layout modes controlled by ACF column_setting:
     --cols-2 : 2 up on desktop (image + text below)
     --cols-1 : 1 up on desktop (row layout — image left, text right)
   Pagination below.
   ========================================================= */
.category-archive {
    padding: 100px 0;
    background: #fff;
}

/* Content column matches the design's centered 1215px width */
.category-archive .container {
    max-width: 1245px;
}

/* ---- Header ---- */
.category-archive__header {
    max-width: 1215px;
    margin: 0 auto 60px;
}

.category-archive__eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #0A233F;
    padding-bottom: 20px;
    border-bottom: 1px solid #0A233F;
}

.category-archive__heading {
    margin: 40px 0 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -1.44px;
    text-transform: unset;
}

.category-archive__intro {
    margin-top: 24px;
    max-width: 820px;
}

.category-archive__intro p {
    margin: 0 0 30px;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
}

.category-archive__intro p a{
        color: #0A233F;
    font-family: "Industry", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    position: relative;
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.category-archive__intro p a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #0A233F;
    bottom: -15px;
    left: 0;
}
.category-archive__intro p:last-child {
    margin-bottom: 0;
}

/* ---- Grid — shared ---- */
.category-archive__grid {
    display: grid;
    margin: 0px auto 0;
    
}

.category-archive__item {
    display: flex;
    flex-direction: column;
}

.category-archive__thumb-link {
    display: block;
    line-height: 0;
    overflow: hidden;
    border-radius: 40px 0 0 0;
}

.category-archive__thumb {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.78 / 1;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.category-archive__item:hover .category-archive__thumb {
    transform: scale(1.03);
}

.category-archive__body {
    padding-top: 24px;
}

.category-archive__tag {
    display: block;
    color: #0A233F;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.category-archive__title {
    margin: 15px 0 0;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: -0.28px;
    text-transform: unset;
}

.category-archive__title a {
    color: #0A233F;
    text-decoration: none;
}

.category-archive__title a:hover {
    text-decoration: underline;
}

.category-archive__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
}


.category-archive__meta .category-archive__date,
.category-archive__meta .category-archive__author {
    color: inherit;
    display: inline;
}

/* Bullet between date and author */
.category-archive__meta .category-archive__author::before {
    content: "•";
    display: none;
    margin-right: 10px;
    color: #536A85;
}

/* Style anything the fanuclear_posted_by() helper prints inside (links, .byline wrappers) */
.category-archive__meta .category-archive__author a {
    color: inherit;
    text-decoration: none;
}

.category-archive__meta .category-archive__author a:hover {
    text-decoration: underline;
}

/* ---- Grid: 2-column mode ---- */
.category-archive__grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 50px;
}
.category-archive__grid--cols-2  .category-archive__thumb-link {
   border-radius: 20px 0 0 0 !important;
}

.category-archive__grid--cols-2 .category-archive__title {
    font-size: 30px;
}
.category-archive__grid--cols-2  .category-archive__tag{
padding-bottom: 20px;
    border-bottom: 1px solid #0A233F;
}

/* ---- Grid: 1-column mode (image left, text right) ---- */
.category-archive__grid--cols-1 {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 0;
}
.category-archive__grid--cols-1 .category-archive__item {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 50px;
    align-items: center;
    border-bottom: 1px solid #DEDAD5;
    padding-bottom: 50px;
}
.category-archive__pagination:not(:has(.navigation.pagination)) {
  display: none;
}
.category-archive__grid--cols-1 .category-archive__thumb {
    aspect-ratio: 16 / 10;
}

.category-archive__grid--cols-1 .category-archive__body {
    padding-top: 0;
}

.category-archive__grid--cols-1 .category-archive__title {
    font-size: 30px;
    letter-spacing: -0.6px;
    margin-top: 15px;
    line-height: 120%;
}

/* ---- Pagination ---- */
.category-archive__pagination {
    margin-top: 80px;
}

.category-archive__pagination .nav-links,
.category-archive__pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.category-archive__pagination .page-numbers {
    color: #0A233F;
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    background: transparent;
    padding: 10px 0;
    min-width: 20px;
    margin: 0 15px;
    opacity: 0.5;
}
.category-archive__pagination a.page-numbers:hover {
   
}

.category-archive__pagination .page-numbers.current {
  opacity: 1 !important;
}

.category-archive__pagination .page-numbers.dots {
    background: transparent;
}
section.text-column.team-text {
    background: #F7F6F4;
    padding-top: 60px;
    padding-bottom: 0;
}
section.text-column.team-text + .experience .custom-row {
    padding-top: 0;
}
.team-section .list-wrapper {
    gap: 15px;
    padding: 0;
}
h2.team-term-title {
    padding: 0px 0px 50px 0px;
   
}
.list-wrapper-main.executive-leadership {
    border-radius: 40px 0 0 0;
 }
 section.text-column.sc-text {
    background: #F7F6F4;
    padding-top: 60px;
}
section.text-column.sc-text a {
    margin: 0 0 20px;
    text-decoration: underline;
    display: inline-block;
    font-size: 18px;
    line-height: 150%;
}
.latest-from-content .more-info a {
    text-transform: uppercase;
}
.latest-from-content .more-info a::after {
    background: #0A233F !important;
 }
 section.category-archive-top {
    padding: 80px 0 100px;
}
section.category-archive-top header.category-archive__header {
    margin: 0;
}
section.team-banner.careers h1 {
    max-width: 1000px;
    margin-left: auto !important;
    margin-right: auto !important;
}
.page-template-template-careers section.proven .project-section-modular .column h3 {
    line-height: 120%;
}
.page-template-template-careers section.open-roles p {
    font-size: 22px;
}
.page-template-template-careers section.open-roles .role a.link {
    border-bottom: 1px solid #0083D4;
 }

.page-template-template-contact{
    background: #0A233F;
}
.contact-cards__grid {
    margin-top: 0;
}
.contact-hero {
    padding: 110px 0 150px;
}
.footer-newsletter .frm_forms {
    margin: 0 !important;
    width: 100%;
}
.footer-newsletter .frm_forms form#form_signup-form,.frm_form_fields {
    width: 100%;
}
.footer-newsletter .frm_forms form#form_signup-form fieldset {
    padding: 0 !important;
    width: 100%;
}
section.text-column.tb-source-text {
    background: #F7F6F4;
    padding-top: 60px;
    padding-bottom: 0;
}
.text-column.tb-cr-text{
background: #F7F6F4;
padding-top: 150px;
    padding-bottom: 0;
}
section.text-column.tb-source-text .text-column__cta {
    margin-top: 50px;
}
.execution-partners.home-partners {
    background: #F7F6F4;
    padding-top: 40px;
    padding-bottom: 0;
    margin-bottom: 0;
}
.text-column.tb-cr-text .text-column__cta {
    margin-top: 50px;
}
.text-column.econo-text {
    background: #F7F6F4;
    padding-top: 60px;
    padding-bottom: 20px;
}
.text-column.coolant-text ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}
.text-column.coolant-text ul li {
    width: calc(50% - 10px);
}
.text-column.dc-text {
    padding-top: 50px;
        background: #F7F6F4;
    padding-bottom: 20px;
}
.fact-check-card + .text-column.deploy-text {
    padding-bottom: 90px;
}

section.nuclear-section.first .left-column-inner ul li ,section.nuclear-section.energy-security ul li,section.text-column.tc-text ul li{
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #DEDAD5;
    padding: 28px 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 130%;
    position: relative;
}
section.text-column.tc-text ul{
    display: flex;
    flex-wrap: wrap;
    column-gap:20px;
        margin-bottom: 10px !important;
}
section.text-column.tc-text ul li{
 width: calc(50% - 10px);
}
section.nuclear-section.first .left-column-inner ul , section.nuclear-section.energy-security ul,section.text-column.tc-text ul{
    padding: 0;
    margin: 0 0 35px;
}
section.nuclear-section.first .left-column-inner ul li::before,section.nuclear-section.energy-security ul li::before,section.text-column.tc-text ul li::before {
    flex: 0 0 auto;
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url('../images/ch-icon.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
}
section.text-column.fcf-text {
    background: #F7F6F4;
    padding-top: 10px;
}
section.nuclear-section.energy-security {
    margin-bottom: 100px;
}

.des-wrpa-top {
    position: absolute;
    bottom: 100px;
    z-index: 2;
    max-width: 1230px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: left;
    padding: 0 15px;
}
.des-wrpa-top p {
    color: #fff;
    font-size: 22px;
    line-height: 150%;
}
section.text-column.tc-text {
    background: #F7F6F4;
    padding-top: 60px;
}
section.text-column.tc-text .wp-video {
    margin-bottom: 50px;
    border-radius: 40px 0 0 0;
    overflow: hidden;
}
.page-template-template-about  .execution-partners .execution-partners__text {
    max-width: 100%;
}
.page-template-template-about section.about-section .container {
    padding-bottom: 0;
}
/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .category-archive {
        padding: 70px 0;
    }

    .category-archive__heading {
        font-size: 44px;
        letter-spacing: -0.88px;
    }

    .category-archive__grid--cols-2 {
        gap: 40px 30px;
    }

    .category-archive__grid--cols-2 .category-archive__title {
        font-size: 24px;
    }

    .category-archive__grid--cols-1 .category-archive__item {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }

    .category-archive__grid--cols-1 .category-archive__title {
        font-size: 28px;
    }
    .des-wrpa-top p {
    font-size: 20px;
    line-height: 140%;
}
.des-wrpa-top {
    bottom: 30px;
    padding: 0 20px;
}
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .category-archive {
        padding: 50px 0;
    }

    .category-archive__header {
        margin-bottom: 40px;
    }

    .category-archive__eyebrow {
        font-size: 14px;
        padding-bottom: 16px;
    }

    .category-archive__heading {
        margin-top: 28px;
        font-size: 32px;
        letter-spacing: -0.64px;
    }

    .category-archive__intro p {
        font-size: 16px;
    }

    /* Both column modes collapse to single-column stack on mobile */
    .category-archive__grid,
    .category-archive__grid--cols-2,
    .category-archive__grid--cols-1 {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 0px;
    }

    .category-archive__grid--cols-1 .category-archive__item {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }

    .category-archive__thumb-link {
        border-radius: 20px 0 0 0;
    }

    .category-archive__grid--cols-2 .category-archive__title,
    .category-archive__grid--cols-1 .category-archive__title {
        font-size: 22px;
    }

    .category-archive__pagination {
        margin-top: 40px;
    }
    .team-banner {
    padding: 50px 0 0px;
}
.team-wrapper .list-wrapper-main.executive-leadership {
    border-radius: 20px 0 0 0;
    margin: 0 15px !important;
}
h2.team-term-title {
    font-size: 28px;
    padding: 0px 0px 30px 0px !important;
}
section.team-banner.project .hero-media-banner__subheading {
    text-align: center;
    margin: 0 0 50px;
}
section.text-column.tb-text img.size-full {
    display: block;
    border-radius: 20px 0 0 0;
    margin: 30px 0;
}
.nuclear-table td {
    padding: 20px 15px;
   
    
 }

.nuclear-table {
    font-size: 18px !important;
        margin: 30px 0;
 }
.nuclear-table tr td:last-child {
    font-size: 14px;
    line-height: 120%;
}
.nuclear-table td:first-child p:last-child {
    font-size: 16px;
   
}
.latest-from-content {
    gap: 20px;
 }
 .faq-inner {
    border-radius: 20px;
 }
 .faq-section {
    padding: 15px 0px 15px 0px;
    margin: 0 15px 15px;
}
section.category-archive-top {
    padding: 40px 0 70px;
}
.category-archive__meta {
    gap: 4px;
    font-size: 14px;
  }
  .category-archive__grid--cols-1 .category-archive__item {
    padding-bottom: 40px;
}
.category-archive__tag {
    font-size: 14px;
 }
 .page-template-template-careers section.proven {
    padding: 50px 0 0 0;
}
.project-section-modular .container .column figure {
    border-radius: 20px 0 0 0;
}
.page-template-template-careers section.open-roles {
    margin: 30px 15px 15px;
    border-radius: 20px;
}
.page-template-template-careers section.open-roles p {
    font-size: 18px;
}
.page-template-template-careers section.open-roles .role {
    border-radius: 20px 0 0 0;
 }
 .contact-hero {
    padding: 60px 0 60px !important;
}
.contact-hero__bg {
    width: 100%;
    opacity: 1;
    bottom: 0;
    top: auto;
    background-position: bottom right;
    display: block;
}
.page-template-template-power-solutions .team-banner.project.pw-solution h1 {
    margin-bottom: 60px;
}
.deployment-section .glance-stat:nth-child(2){
    border-top:1px solid #DEDAD5;
}
.page-template-template-about .timeline-section .timeline .timeline-item .text .date-range {
    font-size: 22px !important;
}
.footer-newsletter .frm_forms form#form_signup-form .form-field.frm_required_field {
    width: 100%;
}
.footer-newsletter  .frm_fields_container {
    flex-direction: column;
    gap: 10px;
}
section.text-column.tb-source-text {
    padding-top: 30px;
    padding-bottom: 40px;
}
.text-column.tb-cr-text {
    padding-top: 80px;
 }
 .text-column.econo-text {
    padding-top: 20px;
    padding-bottom: 20px;
}
.text-column.coolant-text ul li {
    width: 100%;
}
.fact-check-card + .text-column.deploy-text {
    padding-bottom: 50px;
}
section.nuclear-section.first .left-column-inner ul li, section.nuclear-section.energy-security ul li {
    padding: 20px 0;
    font-size: 20px;
 }
 section.nuclear-section.energy-security {
    margin-bottom: 60px;
    padding-top: 0;
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 0;
}
.cover-image.about-cover {
    border-radius: 20px 0 0 0;
 }
 .fact-check-card__inner {
    border-radius: 20px 0 0 0;
}
.deployment-section .glance-card {
    border-radius: 20px 0 0 0;
 }
 .nuclear-section {
    border-radius: 20px 0 0 0;
 }
 .des-wrpa-top {
    bottom: 10px;
    padding: 0 15px;
}
.des-wrpa-top p {
    font-size: 16px;
    line-height: 135%;
}
section.text-column.tc-text {
    padding-top: 40px;
}
section.text-column.tc-text ul li {
    width: 100%;
}
 section.text-column.tc-text ul li {
    padding: 20px 0;
    font-size: 20px;
   }
   section.text-column.tc-text .wp-video {
    margin-bottom: 40px;
    border-radius: 20px 0 0 0;
 }
 .page-template-template-deployment .hero-media-banner .hero-media-banner__wrap .des-wrpa-top {
    bottom: auto;
    position: relative;
    background: #0A233F;
    top: auto;
    padding: 10px 15px 15px 15px;
}
.page-template-template-about .timeline-section .container {
    padding: 20px 0px 0 0px;
}
 }
