:root {
    --rogers-green: #1b342a;
    --rogers-green-deep: #10241c;
    --rogers-yellow: #f4c321;
    --rogers-cream: #f7f5ef;
    --rogers-ink: #1e2823;
    --rogers-muted: #5b665f;
    --rogers-line: #dce2de;
    --rogers-shadow: 0 1.1rem 2.8rem rgba(16, 36, 28, .12);
    --content-padding: clamp(1rem, 4vw, 3.5rem);
    --header-background: #fff;
    --header-font-family: "Mulish", sans-serif;
    --header-min-height: 116px;
    --header-padding-x: clamp(1rem, 4vw, 4.5rem);
    --header-gap: clamp(1.25rem, 3vw, 3.5rem);
    --nav-gap: clamp(1rem, 2.2vw, 2.4rem);
    --nav-text: var(--rogers-green);
    --nav-active: var(--rogers-green);
    --nav-hover: var(--rogers-green);
    --nav-arrow: var(--rogers-green);
    --nav-arrow-hover: var(--rogers-green);
    --contact-background: var(--rogers-green);
    --contact-text: #fff;
    --contact-hover-background: var(--rogers-yellow);
    --contact-hover-text: var(--rogers-green-deep);
    --logo-max-width: 112px;
    --logo-max-height: 96px;
    --footer-background: var(--rogers-green);
    --footer-link-hover: var(--rogers-yellow);
    --footer-credit-link: var(--rogers-yellow);
    --footer-max-width: 78rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: #fff;
    color: var(--rogers-ink);
    font-family: "Mulish", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

img {
    max-width: 100%;
}

a {
    color: var(--rogers-green);
    text-underline-offset: .18em;
}

a:hover {
    text-decoration-thickness: .14em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nxb-banner__title,
.nxb-text-block__heading,
.nxb-simple-pods__heading,
.nxb-contact-form__heading {
    font-family: "Krona One", sans-serif;
    font-weight: 400;
    letter-spacing: -.025em;
}

.content {
    padding: 0;
}

.page-heading {
    width: min(100% - 2rem, 72rem);
    margin: 0 auto;
    padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(1.5rem, 4vw, 3rem);
    color: var(--rogers-green);
    font-size: clamp(2rem, 5vw, 4.35rem);
    line-height: 1.08;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: .75rem;
    left: .75rem;
    padding: .7rem 1rem;
    background: var(--rogers-yellow);
    color: var(--rogers-green-deep);
    font-weight: 800;
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: none;
}

/* Header */
.site-header {
    position: relative;
    z-index: 100;
    grid-template-columns: minmax(112px, 1fr) auto minmax(180px, 1fr);
    border-bottom: 1px solid rgba(27, 52, 42, .1);
    box-shadow: 0 .35rem 1.5rem rgba(16, 36, 28, .06);
}

.header-logo img {
    width: 104px;
}

.main-navigation > ul {
    gap: var(--nav-gap);
}

.main-navigation a {
    position: relative;
    font-size: .94rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.main-navigation > ul > li > a::after {
    position: absolute;
    right: 0;
    bottom: 1.2rem;
    left: 0;
    height: 3px;
    background: var(--rogers-yellow);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-navigation > ul > li:hover > a::after,
.main-navigation > ul > li:focus-within > a::after,
.main-navigation > ul > li.active > a::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.button-light {
    min-width: 7.4rem;
    min-height: 3rem;
    padding-inline: 1.4rem;
    border-radius: 999px;
    font-size: .92rem;
    letter-spacing: .03em;
}

.header-search {
    position: relative;
}

.header-search summary {
    position: relative;
    display: grid;
    width: 3rem;
    height: 3rem;
    border: 2px solid var(--rogers-green);
    border-radius: 50%;
    color: var(--rogers-green);
    cursor: pointer;
    list-style: none;
    place-items: center;
}

.header-search summary::-webkit-details-marker {
    display: none;
}

.header-search summary span {
    width: .9rem;
    height: .9rem;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.header-search summary span::after {
    display: block;
    width: .5rem;
    height: 2px;
    margin: .65rem 0 0 .65rem;
    background: currentColor;
    content: "";
    transform: rotate(45deg);
    transform-origin: left center;
}

.header-search form {
    position: absolute;
    z-index: 10;
    top: calc(100% + .75rem);
    right: 0;
    display: flex;
    width: min(88vw, 25rem);
    padding: .75rem;
    background: #fff;
    border-radius: .4rem;
    box-shadow: var(--rogers-shadow);
}

.header-search input {
    min-width: 0;
    flex: 1;
    padding: .7rem .8rem;
    border: 1px solid var(--rogers-line);
    font: inherit;
}

.header-search button {
    border: 0;
    padding-inline: 1rem;
    background: var(--rogers-green);
    color: #fff;
    font: 800 .9rem "Mulish", sans-serif;
}

/* Shared editor presentation controls */
.nxb-block-frame {
    padding-block: clamp(2rem, 5vw, 4.5rem);
}

.nxb-block-frame--no-top-padding {
    padding-top: 0;
}

.nxb-block-frame--no-bottom-padding {
    padding-bottom: 0;
}

.nxb-block-frame--heading-centre :is(.nxb-text-block__intro, .nxb-contact-form__intro, .nxb-blog__header) {
    text-align: center;
}

.nxb-block-frame--heading-centre :is(.nxb-text-block__buttons, .nxb-banner__buttons) {
    justify-content: center;
}

.nxb-block-frame--heading-right :is(.nxb-text-block__intro, .nxb-contact-form__intro, .nxb-blog__header) {
    text-align: right;
}

.nxb-block-frame--heading-right :is(.nxb-text-block__buttons, .nxb-banner__buttons) {
    justify-content: flex-end;
}

/* Full-width content treatments */
.global-content .nxb-block-frame,
.nxb-block-frame:has(.rogers-home-carousel),
.nxb-block-frame:has(.rogers-enquiry-strip),
.nxb-block-frame:has(.rogers-iosh-grid),
.nxb-block-frame:has(.rogers-service-pods) {
    padding-block: 0;
}

.rogers-enquiry-strip {
    width: 100%;
    padding: .72rem var(--content-padding);
    background: var(--rogers-green);
    color: #fff;
    text-align: center;
}

.rogers-enquiry-strip .nxb-text-block__inner {
    width: 100%;
}

.rogers-enquiry-strip p {
    margin: 0;
    font-size: clamp(.78rem, 1.4vw, .96rem);
    font-weight: 700;
    letter-spacing: .055em;
}

.rogers-enquiry-strip a {
    color: #fff;
    text-decoration: none;
}

.rogers-enquiry-strip strong {
    color: var(--rogers-yellow);
}

/* Hero */
.nxb-banner {
    --nxb-banner-accent: var(--rogers-yellow);
}

.nxb-banner__button--primary {
    color: var(--rogers-green-deep);
}

.rogers-home-carousel,
.rogers-home-carousel .nxb-banner,
.rogers-home-carousel .nxb-banner__layout {
    min-height: min(760px, calc(100svh - var(--header-min-height) - 47px));
}

.rogers-home-carousel {
    width: 100% !important;
    margin-inline: 0 !important;
}

.rogers-home-carousel .nxb-banner__content {
    padding-inline: max(var(--content-padding), calc((100vw - 78rem) / 2));
}

.rogers-home-carousel .nxb-banner__content-inner {
    max-width: 59rem;
}

.rogers-home-carousel .nxb-banner__title {
    color: #fff;
    font-size: clamp(2.25rem, 6.6vw, 6.1rem);
    line-height: 1.02;
    text-shadow: 0 .18rem .8rem rgba(0, 0, 0, .25);
}

.rogers-home-carousel .nxb-banner__subtitle {
    max-width: 45rem;
    margin: 1.35rem auto 0;
    color: var(--rogers-yellow);
    font-size: clamp(1rem, 2.2vw, 1.5rem);
}

.nxb-banner-carousel__arrow,
.nxb-banner-carousel__toggle,
.nxb-banner-carousel__dot {
    border-color: rgba(244, 195, 33, .75);
    background: rgba(16, 36, 28, .78);
}

/* Content */
.nxb-text-block {
    --text-block-colour: var(--rogers-ink);
    --text-block-accent: var(--rogers-green);
}

.nxb-text-block--background-light-grey {
    --text-block-background: var(--rogers-cream);
}

.nxb-text-block--background-dark {
    --text-block-background: var(--rogers-green-deep);
}

.nxb-text-block--background-brand {
    --text-block-background: var(--rogers-green);
    --text-block-accent: var(--rogers-yellow);
}

.nxb-text-block__inner,
.nxb-grid-layout__inner,
.nxb-contact-form__inner {
    width: min(100% - 2rem, 72rem);
}

.nxb-text-block__heading {
    color: var(--rogers-green);
    font-size: clamp(1.8rem, 4vw, 3.45rem);
}

.nxb-text-block--background-dark .nxb-text-block__heading,
.nxb-text-block--background-brand .nxb-text-block__heading {
    color: #fff;
}

.nxb-text-block__secondary-heading {
    color: var(--rogers-yellow);
}

.nxb-text-block__content,
.nxb-text-block__intro-text,
.nxb-text-block__outro-text {
    font-size: 1.05rem;
}

.nxb-text-block__content h2,
.nxb-text-block__content h3,
.nxb-text-block__content h4 {
    margin-top: 2.25rem;
    color: var(--rogers-green);
    line-height: 1.25;
}

.nxb-text-block__content hr {
    height: 1px;
    margin-block: 2.5rem;
    border: 0;
    background: var(--rogers-line);
}

.nxb-text-block__button,
.nxb-contact-form__submit {
    border-color: var(--rogers-green);
    border-radius: 999px;
    background: var(--rogers-green);
    color: #fff;
}

.nxb-text-block__button:hover,
.nxb-contact-form__submit:hover {
    background: var(--rogers-yellow);
    color: var(--rogers-green-deep);
}

.rogers-home-welcome .nxb-text-block__inner,
.rogers-section-heading .nxb-text-block__inner {
    max-width: 62rem;
    text-align: center;
}

.rogers-page-copy .nxb-text-block__inner,
.rogers-course-section .nxb-text-block__inner,
.rogers-testimonials .nxb-text-block__inner {
    max-width: 58rem;
}

.rogers-course-section:nth-child(even) {
    background: var(--rogers-cream);
}

.rogers-testimonials blockquote,
.rogers-testimonials .nxb-text-block__content > p {
    padding: clamp(1.25rem, 3vw, 2rem);
    border-left: 5px solid var(--rogers-yellow);
    background: var(--rogers-cream);
}

/* Cards */
.nxb-simple-pods {
    --nxb-simple-pods-accent: var(--rogers-green);
    --nxb-simple-pods-border: transparent;
    --nxb-simple-pods-text: var(--rogers-ink);
    --nxb-simple-pods-muted: var(--rogers-muted);
    width: min(100% - 2rem, 78rem);
}

.nxb-simple-pods__card {
    border-radius: 0;
    box-shadow: var(--rogers-shadow);
}

.nxb-simple-pods__heading {
    color: var(--rogers-green);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.nxb-simple-pods__link {
    border-color: var(--rogers-green);
    border-radius: 999px;
    background: var(--rogers-green);
}

.rogers-why-pods {
    margin-bottom: clamp(3rem, 7vw, 6rem);
}

.rogers-why-pods .nxb-simple-pods__card {
    border-top: .4rem solid var(--rogers-yellow);
    background: #fff;
    box-shadow: none;
}

.rogers-why-pods .nxb-simple-pods__content {
    padding: clamp(1.4rem, 3vw, 2rem);
}

.rogers-service-pods {
    width: 100%;
    max-width: none;
}

.rogers-service-pods .nxb-simple-pods__grid {
    gap: 0;
}

.rogers-service-pods .nxb-simple-pods__card {
    position: relative;
    min-height: 31rem;
    border: 0;
    color: #fff;
}

.rogers-service-pods .nxb-simple-pods__media,
.rogers-service-pods .nxb-simple-pods__content {
    grid-area: 1 / 1;
}

.rogers-service-pods .nxb-simple-pods__card {
    display: grid;
}

.rogers-service-pods .nxb-simple-pods__media {
    height: 100%;
    aspect-ratio: auto;
}

.rogers-service-pods .nxb-simple-pods__media::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    content: "";
}

.rogers-service-pods .nxb-simple-pods__image {
    min-height: 31rem;
}

.rogers-service-pods .nxb-simple-pods__content {
    position: relative;
    z-index: 2;
    justify-content: flex-end;
    padding: 2rem;
}

.rogers-service-pods .nxb-simple-pods__heading,
.rogers-service-pods .nxb-simple-pods__text {
    color: #fff;
}

.rogers-service-pods .nxb-simple-pods__link {
    border-color: var(--rogers-yellow);
    background: var(--rogers-yellow);
    color: var(--rogers-green-deep);
}

/* IOSH split */
.rogers-iosh-grid {
    --nxb-grid-background: var(--rogers-green);
    --nxb-grid-colour: #fff;
    --nxb-grid-column-gap: 0;
}

.rogers-iosh-grid .nxb-grid-layout__inner {
    width: 100%;
    max-width: none;
}

.rogers-iosh-grid .umb-block-grid__area:first-child {
    justify-content: center;
    padding: clamp(2.5rem, 6vw, 6rem) max(2rem, calc((100vw - 78rem) / 2));
}

.rogers-iosh-copy {
    --text-block-background: transparent;
    --text-block-colour: #fff;
}

.rogers-iosh-copy .nxb-text-block__inner {
    width: 100%;
}

.rogers-iosh-copy .nxb-text-block__heading {
    color: var(--rogers-yellow);
}

.rogers-iosh-image,
.rogers-iosh-image .nxb-banner__layout,
.rogers-iosh-image .nxb-banner__media,
.rogers-iosh-image .nxb-banner__image {
    min-height: 100%;
}

.rogers-iosh-image .nxb-banner__image {
    object-fit: cover;
}

/* Galleries */
.nxb-gallery {
    width: min(100% - 2rem, 72rem);
    margin: 0 auto;
}

.rogers-client-logos {
    padding-bottom: clamp(3rem, 7vw, 6rem);
}

.rogers-client-logos .nxb-gallery__link {
    display: grid;
    min-height: 9rem;
    padding: 1.5rem;
    background: #fff;
    place-items: center;
}

.rogers-client-logos .nxb-gallery__image {
    width: 100%;
    height: 6rem;
    aspect-ratio: auto;
    object-fit: contain;
}

.rogers-client-logos .nxb-gallery__arrow,
.rogers-client-logos .nxb-gallery__toggle,
.rogers-client-logos .nxb-gallery__dot {
    background: var(--rogers-green);
}

.rogers-client-logos .nxb-gallery__dots {
    display: none;
}

.rogers-approach-gallery .nxb-gallery__image {
    aspect-ratio: auto;
    object-fit: contain;
}

/* Forms and utilities */
.nxb-contact-form,
.nxb-search-results,
.nxb-sitemap {
    width: min(100% - 2rem, 58rem);
    margin-inline: auto;
}

.rogers-contact-form {
    padding-block: 0 5rem;
}

.nxb-contact-form input,
.nxb-contact-form textarea,
.nxb-search-results input {
    border-color: var(--rogers-line);
    border-radius: .2rem;
    font-family: "Mulish", sans-serif;
}

.nxb-search-results__title,
.nxb-sitemap a {
    color: var(--rogers-green);
}

/* Footer */
.site-footer {
    background: var(--rogers-green);
}

.footer-inner {
    padding: clamp(3.5rem, 7vw, 6rem) var(--content-padding) 1.75rem;
}

.footer-contact {
    max-width: 64rem;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.footer-contact p {
    margin: 0 0 1rem;
    color: var(--rogers-yellow);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.footer-contact h2 {
    margin: 0;
    font-size: clamp(1.45rem, 3.8vw, 3.1rem);
    line-height: 1.35;
}

.footer-contact a {
    color: #fff;
    text-decoration-color: var(--rogers-yellow);
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    width: 145px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: #fff;
    font-weight: 800;
    text-decoration-color: var(--rogers-yellow);
}

.footer-services-navigation {
    max-width: 52rem;
    margin: 2.5rem auto 0;
}

.footer-services-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .7rem 2rem;
}

.footer-bottom {
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.footer-navigation ul {
    flex-wrap: wrap;
    gap: .65rem 1.5rem;
}

.footer-navigation li + li {
    margin-left: 0;
}

.footer-navigation .site-credit img {
    width: 30px;
    height: 20px;
}

.back-to-top-button {
    background: var(--rogers-yellow);
}

.back-to-top-button::before {
    border-color: var(--rogers-green);
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: 112px 1fr auto;
    }

    .main-navigation a {
        font-size: .8rem;
    }
}

@media (max-width: 992px) {
    :root {
        --header-min-height: 88px;
    }

    .site-header {
        padding: .75rem 1rem;
    }

    .header-logo img {
        width: 76px;
    }

    .header-actions {
        margin-left: auto;
    }

    .main-navigation {
        padding-top: .75rem;
    }

    .main-navigation li,
    .main-navigation .navigation-submenu li {
        border-color: rgba(27, 52, 42, .15);
    }

    .main-navigation a,
    .main-navigation .navigation-submenu a {
        color: var(--rogers-green);
        font-size: 1rem;
    }

    .main-navigation > ul > li > a::after {
        display: none;
    }

    .header-menu-toggle {
        border-color: var(--rogers-green);
        color: var(--rogers-green);
    }

    .button-light {
        min-height: 2.75rem;
    }

    .header-search summary {
        width: 2.75rem;
        height: 2.75rem;
    }

    .rogers-home-carousel,
    .rogers-home-carousel .nxb-banner,
    .rogers-home-carousel .nxb-banner__layout {
        min-height: 68svh;
    }

    .rogers-service-pods .nxb-simple-pods__card,
    .rogers-service-pods .nxb-simple-pods__image {
        min-height: 26rem;
    }

    .rogers-iosh-grid .umb-block-grid__area:first-child {
        padding-inline: 1rem;
    }

    .footer-navigation ul {
        align-items: center;
        text-align: center;
    }

    .footer-navigation .site-credit {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .button-light {
        min-width: auto;
        padding-inline: .9rem;
        font-size: .8rem;
    }

    .header-search {
        display: none;
    }

    .rogers-home-carousel .nxb-banner__content {
        padding: 3.5rem 3.75rem;
    }

    .footer-contact h2 {
        overflow-wrap: anywhere;
    }
}

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

    .main-navigation > ul > li > a::after {
        transition: none;
    }
}

/* Rogers Safety live-site parity refinements. */
:root {
    --rogers-section-gutter: clamp(2rem, 5.21vw, 4.6875rem);
    --rogers-live-container: 84.375rem;
    --footer-max-width: 84.375rem;
}

/* Header and global enquiry strip */
.site-header {
    min-height: 120px;
    grid-template-columns: 150px minmax(0, 1fr) 180px;
    gap: 1rem;
    padding: 0 20px;
    border-bottom: 0;
    background: #fff url("/media/antnvpsp/rs-bg-left.svg") left center / auto 100% no-repeat;
    box-shadow: none;
}

.header-logo img {
    width: 78px;
    height: auto;
    max-width: none;
    max-height: 106px;
}

.header-logo,
.header-logo a {
    width: 78px;
}

.main-navigation > ul {
    justify-content: center;
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.main-navigation a {
    font-size: 1rem;
}

.button-light {
    min-width: 84px;
    min-height: 42px;
    padding-inline: 14px;
    border-radius: 0;
}

.header-search summary {
    width: 44px;
    height: 44px;
    border: 0;
}

.rogers-enquiry-strip {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    padding: 15px var(--content-padding);
    background: linear-gradient(135deg, var(--rogers-green) 0%, var(--rogers-green-deep) 100%);
}

.rogers-enquiry-strip p {
    font-size: 1rem;
    line-height: 1.5;
}

/* The migrated blocks already own their vertical spacing. Remove the second
   presentation-frame gap on the home page, then opt in where the live design
   has a section gutter. */
.page-home .nxb-block-frame {
    padding-block: 0;
}

.page-home .nxb-block-frame:has(.rogers-service-pods) {
    padding-block: 60px;
}

/* Home hero */
.rogers-home-carousel,
.rogers-home-carousel .nxb-banner,
.rogers-home-carousel .nxb-banner__layout,
.rogers-home-carousel .nxb-banner__media,
.rogers-home-carousel .nxb-banner__image {
    height: calc(100svh - 120px);
    min-height: calc(100svh - 120px);
}

.rogers-home-carousel .nxb-banner__content {
    padding: 60px var(--rogers-section-gutter);
}

.rogers-home-carousel .nxb-banner__content-inner {
    width: 100%;
    max-width: 64rem;
    margin-inline: auto;
}

.rogers-home-carousel .nxb-banner__title {
    max-width: 64rem;
    margin-inline: auto;
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: 0;
}

.rogers-home-carousel .nxb-banner__buttons {
    margin-top: 25px;
}

.rogers-home-carousel .nxb-banner__button {
    min-height: 42px;
    padding: 8px 12px;
    border-width: 1px;
    font-size: 16px;
    line-height: 24px;
}

.rogers-home-carousel .nxb-banner-carousel__toggle {
    right: auto;
    left: 20px;
}

/* Welcome strip */
.rogers-home-welcome {
    min-height: 288px;
    padding: 60px 0;
    background:
        linear-gradient(135deg, rgba(27, 52, 42, .86), rgba(15, 37, 28, .92)),
        url("/media/fn0p3txx/rs-bg-left2.svg") left center / auto 100% no-repeat;
    color: #fff;
}

.rogers-home-welcome .nxb-text-block__inner {
    width: calc(100% - var(--rogers-section-gutter));
    max-width: 64.921875rem;
}

.rogers-home-welcome .nxb-text-block__heading {
    color: #fff;
    font-size: 50px;
    line-height: 1.2;
}

.rogers-home-welcome .nxb-text-block__intro-text {
    margin-top: 10px;
}

.rogers-home-welcome .nxb-text-block__intro-text,
.rogers-home-welcome .nxb-text-block__intro-text p {
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
}

.rogers-home-welcome .nxb-text-block__buttons {
    gap: 0;
    margin-top: 20px;
}

.rogers-home-welcome .nxb-text-block__button {
    min-height: 30px;
    padding: 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
}

.rogers-home-welcome .nxb-text-block__button:hover {
    background: transparent;
    color: var(--rogers-yellow);
}

/* Shared home section headings */
.page-home .rogers-section-heading {
    padding: 60px 0 30px;
}

.page-home .rogers-section-heading .nxb-text-block__inner {
    width: calc(100% - var(--rogers-section-gutter));
    max-width: 61.78125rem;
}

.page-home .rogers-section-heading .nxb-text-block__heading {
    font-size: 40px;
    line-height: 1.2;
}

/* Why Rogers Safety cards */
.rogers-why-pods {
    width: calc(100% - var(--rogers-section-gutter));
    max-width: var(--rogers-live-container);
    margin-bottom: 0;
}

.rogers-why-pods .nxb-simple-pods__grid {
    gap: 0;
}

.rogers-why-pods .nxb-simple-pods__card {
    width: auto;
    margin: 0 12px;
    border: 0;
    background: #fff;
}

.rogers-why-pods .nxb-simple-pods__media {
    aspect-ratio: 4 / 3;
    background: #fff;
}

.rogers-why-pods .nxb-simple-pods__content {
    padding: 25px;
}

/* Image service cards */
.rogers-service-pods {
    width: calc(100% - var(--rogers-section-gutter));
    max-width: var(--rogers-live-container);
    margin-inline: auto;
}

.rogers-service-pods .nxb-simple-pods__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.rogers-service-pods .nxb-simple-pods__card {
    width: auto;
    height: auto;
    min-height: 0;
    margin: 0 12px 30px;
    box-shadow: none;
}

.rogers-service-pods .nxb-simple-pods__media {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
}

.rogers-service-pods .nxb-simple-pods__image {
    height: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
}

.rogers-service-pods .nxb-simple-pods__content {
    align-items: center;
    justify-content: flex-end;
    padding: 30px 30px 35px;
    text-align: center;
}

.rogers-service-pods .nxb-simple-pods__heading {
    width: 100%;
    max-width: 500px;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: normal;
}

.rogers-service-pods .nxb-simple-pods__link {
    min-height: 42px;
    margin-top: 30px;
    padding: 8px 12px;
    border-width: 1px;
    border-radius: 0;
    font-size: 16px;
    line-height: 24px;
}

/* IOSH split panel */
.rogers-iosh-grid {
    --nxb-grid-background: #f9f9f9;
    --nxb-grid-colour: var(--rogers-ink);
    min-height: 568px;
    padding: 60px 0;
}

.rogers-iosh-grid .nxb-grid-layout__inner {
    width: calc(100% - var(--rogers-section-gutter));
    max-width: var(--rogers-live-container);
}

.rogers-iosh-grid .nxb-grid-layout__row > .umb-block-grid__area-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0;
}

.rogers-iosh-grid .nxb-grid-layout__row .umb-block-grid__area {
    box-sizing: border-box;
    padding-inline: 12px;
}

.rogers-iosh-grid .nxb-grid-layout__row .umb-block-grid__area:first-child {
    grid-column: 5 / span 8;
    padding-block: 0;
}

.rogers-iosh-grid .nxb-grid-layout__row .umb-block-grid__area:last-child {
    grid-column: 1 / span 3;
    grid-row: 1;
}

.rogers-iosh-copy {
    display: flex;
    min-height: 100%;
    align-items: center;
    padding: 0;
    background: transparent;
    color: var(--rogers-ink);
}

.rogers-iosh-copy .nxb-text-block__heading {
    color: var(--rogers-green);
    font-family: "Mulish", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
}

.rogers-iosh-copy .nxb-text-block__content,
.rogers-iosh-copy .nxb-text-block__content p {
    color: var(--rogers-ink);
    font-size: 16px;
    line-height: 1.5;
}

.rogers-iosh-image,
.rogers-iosh-image .nxb-banner__layout,
.rogers-iosh-image .nxb-banner__media,
.rogers-iosh-image .nxb-banner__image {
    min-height: 0;
}

.rogers-iosh-image {
    background: transparent;
}

.rogers-iosh-image .nxb-banner__content,
.rogers-iosh-image .nxb-banner__media::after {
    display: none;
}

.rogers-iosh-image .nxb-banner__image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Client logo carousel */
.rogers-client-logos {
    width: calc(100% - var(--rogers-section-gutter));
    max-width: var(--rogers-live-container);
    padding-bottom: 60px;
}

.rogers-client-logos .nxb-gallery__item {
    padding-inline: 15px;
}

.rogers-client-logos .nxb-gallery__link {
    min-height: 0;
    padding: 0;
}

.rogers-client-logos .nxb-gallery__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: fill;
}

/* Internal page banners and content widths */
.page-heading {
    width: calc(100% - var(--rogers-section-gutter));
    max-width: var(--rogers-live-container);
    padding: 60px 0 30px;
    color: var(--rogers-green);
    font-size: 50px;
    line-height: 1.2;
}

:is(.page-our-approach, .page-behavioural, .page-coaching-mentoring) .page-heading {
    display: flex;
    width: 100%;
    max-width: none;
    height: 460px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 var(--rogers-section-gutter);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.page-our-approach .page-heading {
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), var(--rogers-page-banner, url("/media/j5qfswui/image00017.jpeg"));
}

.page-behavioural .page-heading {
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), var(--rogers-page-banner, url("/media/tskdjg53/training-sessions-header.jpg"));
}

.page-coaching-mentoring .page-heading {
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), var(--rogers-page-banner, url("/media/wp5mtzja/image00026.jpeg"));
}

:is(.page-our-approach, .page-behavioural, .page-coaching-mentoring) .nxb-block-frame,
.page-testimonials .nxb-block-frame,
.page-contact .nxb-block-frame {
    padding-block: 0;
}

.rogers-page-copy,
.rogers-course-section,
.rogers-testimonials {
    padding: 60px 0;
}

.rogers-page-copy .nxb-text-block__inner,
.rogers-course-section .nxb-text-block__inner,
.rogers-testimonials .nxb-text-block__inner {
    width: min(calc(100% - 18px), 1326px);
    max-width: 1326px;
}

.rogers-page-copy .nxb-text-block__content,
.rogers-page-copy .nxb-text-block__content p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
}

.rogers-testimonials .nxb-text-block__content > p {
    margin: 0 0 20px;
    padding: 0;
    border-left: 0;
    background: transparent;
}

/* Contact form: the page heading forms the top of the live dark panel. */
.page-contact .page-heading {
    width: calc(100% - var(--rogers-section-gutter));
    max-width: var(--rogers-live-container);
    margin: 60px auto 0;
    padding: 30px 30px 10px;
    background: var(--rogers-green-deep);
    color: #fff;
    font-size: 34px;
    line-height: 1.2;
}

.page-contact .rogers-contact-form {
    width: calc(100% - var(--rogers-section-gutter));
    max-width: var(--rogers-live-container);
    margin: 0 auto 60px;
    padding: 0 30px 30px;
    background: var(--rogers-green-deep);
    color: #fff;
}

.page-contact .rogers-contact-form .nxb-contact-form__inner {
    width: 100%;
    max-width: none;
}

.page-contact .rogers-contact-form .nxb-contact-form__fields {
    grid-template-columns: minmax(0, 1fr);
}

.page-contact .rogers-contact-form label {
    color: #fff;
}

.page-contact .rogers-contact-form input,
.page-contact .rogers-contact-form textarea {
    border: 0;
    border-radius: 0;
    background: #fff;
}

/* Footer */
.footer-inner {
    width: calc(100% - var(--rogers-section-gutter));
    max-width: var(--rogers-live-container);
    margin-inline: auto;
    padding: 60px 12px 24px;
}

.footer-contact {
    max-width: none;
    margin: 30px auto 30px;
}

.footer-contact p {
    margin: 0;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
}

.footer-contact h2 {
    margin: 10px 0 15px;
    font-family: "Mulish", sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
}

.footer-logo img {
    width: 120px;
}

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

.footer-navigation .site-credit img {
    width: 24px;
    height: 24px;
}

@media (max-width: 992px) {
    :root {
        --rogers-section-gutter: 2rem;
    }

    .site-header {
        min-height: 92px;
        grid-template-columns: 84px 1fr auto;
        padding: 8px 16px;
        background-size: auto 100%;
    }

    .header-logo img {
        width: 56px;
        max-width: none;
        max-height: 76px;
    }

    .header-logo,
    .header-logo a {
        width: 56px;
    }

    .rogers-enquiry-strip {
        min-height: 54px;
        padding: 12px 16px;
    }

    .rogers-enquiry-strip p {
        font-size: .85rem;
    }

    .rogers-home-carousel,
    .rogers-home-carousel .nxb-banner,
    .rogers-home-carousel .nxb-banner__layout,
    .rogers-home-carousel .nxb-banner__media,
    .rogers-home-carousel .nxb-banner__image {
        height: 560px;
        min-height: 560px;
    }

    .rogers-home-carousel .nxb-banner__content {
        padding: 40px 52px;
    }

    .rogers-home-carousel .nxb-banner__title {
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.12;
    }

    .rogers-home-welcome {
        min-height: 0;
        padding: 42px 0;
    }

    .rogers-home-welcome .nxb-text-block__heading,
    .page-home .rogers-section-heading .nxb-text-block__heading {
        font-size: 30px;
        line-height: 1.2;
    }

    .rogers-home-welcome .nxb-text-block__intro-text,
    .rogers-home-welcome .nxb-text-block__intro-text p,
    .rogers-home-welcome .nxb-text-block__button {
        font-size: 17px;
    }

    .page-home .rogers-section-heading {
        padding: 42px 0 24px;
    }

    .rogers-why-pods .nxb-simple-pods__grid,
    .rogers-service-pods .nxb-simple-pods__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rogers-why-pods .nxb-simple-pods__card,
    .rogers-service-pods .nxb-simple-pods__card {
        margin: 0 0 24px;
    }

    .page-home .nxb-block-frame:has(.rogers-service-pods) {
        padding-block: 30px;
    }

    .rogers-iosh-grid {
        min-height: 0;
        padding: 40px 0;
    }

    .rogers-iosh-grid .nxb-grid-layout__row > .umb-block-grid__area-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .rogers-iosh-grid .nxb-grid-layout__row .umb-block-grid__area:first-child {
        order: 2;
        padding-inline: 0;
    }

    .rogers-iosh-grid .nxb-grid-layout__row .umb-block-grid__area:last-child {
        order: 1;
        padding-inline: 0;
    }

    .rogers-iosh-copy .nxb-text-block__heading {
        font-size: 28px;
    }

    .rogers-client-logos {
        padding-bottom: 42px;
    }

    :is(.page-our-approach, .page-behavioural, .page-coaching-mentoring) .page-heading {
        height: 320px;
        font-size: 36px;
    }

    .page-heading {
        padding: 42px 0 24px;
        font-size: 40px;
    }

    .rogers-page-copy,
    .rogers-course-section,
    .rogers-testimonials {
        padding: 40px 0;
    }

    .rogers-page-copy .nxb-text-block__content,
    .rogers-page-copy .nxb-text-block__content p {
        font-size: 17px;
        line-height: 1.55;
    }

    .page-contact .page-heading {
        margin-top: 30px;
        padding: 24px 20px 8px;
        font-size: 30px;
    }

    .page-contact .rogers-contact-form {
        margin-bottom: 40px;
        padding: 0 20px 24px;
    }

    .footer-inner {
        padding: 42px 0 20px;
    }

    .footer-contact {
        margin-top: 0;
    }

    .footer-contact p {
        font-size: 22px;
    }

    .footer-contact h2 {
        font-size: 26px;
    }
}

@media (max-width: 520px) {
    :root {
        --rogers-section-gutter: 1.5rem;
    }

    .button-light {
        min-width: 76px;
    }

    .rogers-home-carousel,
    .rogers-home-carousel .nxb-banner,
    .rogers-home-carousel .nxb-banner__layout,
    .rogers-home-carousel .nxb-banner__media,
    .rogers-home-carousel .nxb-banner__image {
        height: 500px;
        min-height: 500px;
    }

    .rogers-home-carousel .nxb-banner__content {
        padding: 36px 42px;
    }

    .footer-contact h2 {
        font-size: 22px;
    }
}

/* Client feedback parity pass: responsive layouts and long-form content. */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.rogers-enquiry-strip {
    min-height: 63px;
}

.page-home .nxb-block-frame:has(+ .nxb-block-frame .rogers-why-pods) .rogers-section-heading {
    padding-bottom: 0;
}

.page-home .nxb-block-frame:has(+ .nxb-block-frame .rogers-why-pods) .rogers-section-heading .nxb-text-block__intro {
    margin-bottom: 30px;
}

.page-home .nxb-block-frame:has(.rogers-why-pods) {
    padding-bottom: 0;
}

.rogers-why-pods .nxb-simple-pods__content {
    padding: 15px 0 28px;
    align-items: center;
    text-align: center;
}

.rogers-why-pods .nxb-simple-pods__heading {
    width: 100%;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: normal;
}

.rogers-why-pods .nxb-simple-pods__text,
.rogers-why-pods .nxb-simple-pods__text p {
    width: 100%;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 300;
    color: var(--rogers-ink);
}

.page-home .nxb-block-frame:has(+ .nxb-block-frame .rogers-client-logos) .rogers-section-heading .nxb-text-block__heading {
    font-size: 34px;
    line-height: 1.2;
}

.rogers-client-logos {
    padding-bottom: 78px;
}

:is(.page-our-approach, .page-behavioural, .page-coaching-mentoring) .page-heading {
    height: 465px;
}

.rogers-page-copy .nxb-text-block__content p {
    margin: 10px 0 15px;
}

.rogers-course-section .nxb-text-block__inner {
    max-width: 1326px;
}

.rogers-course-section .nxb-text-block__intro {
    max-width: 925px;
    margin-bottom: 151px;
}

.rogers-course-section .nxb-text-block__heading {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
}

.rogers-course-section .nxb-text-block__content h3,
.page-coaching-mentoring .rogers-page-copy .nxb-text-block__content h3 {
    margin: 30px 0 15px;
    font-family: "Mulish", sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: normal;
}

.rogers-course-section .nxb-text-block__content p,
.page-coaching-mentoring .rogers-page-copy .nxb-text-block__content p {
    margin: 10px 0 15px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.rogers-course-section .nxb-text-block__content hr,
.page-coaching-mentoring .rogers-page-copy .nxb-text-block__content hr,
.rogers-testimonials .nxb-text-block__content hr {
    margin: 16px 0;
    background: transparent;
}

.page-testimonials .page-heading {
    padding: 60px 0 0;
}

.page-testimonials .rogers-testimonials {
    padding-top: 30px;
}

.rogers-testimonials .nxb-text-block__content > p {
    margin: 10px 0 15px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
}

.site-footer#site-footer {
    padding-bottom: 54px;
    background: linear-gradient(-180deg, #1b342a 0%, #0f251c 100%);
}

.site-footer#site-footer .footer-social {
    margin-top: 34px;
}

.site-footer#site-footer .footer-bottom {
    padding-top: 45px;
}

.site-header .main-navigation > ul > li > a::after {
    display: none;
}

.site-header .main-navigation > ul > li.active > a,
.site-header .main-navigation > ul > li > a:hover {
    color: var(--rogers-yellow);
}

.rogers-home-carousel .nxb-banner__media::after {
    opacity: .35;
}

/* Match the reference hero's viewport-anchored image and fade transition. */
.rogers-home-carousel .nxb-banner-carousel__viewport {
    z-index: 0;
}

.rogers-home-carousel .nxb-banner__media {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.rogers-home-carousel .nxb-banner__image {
    visibility: hidden;
}

.rogers-home-carousel[data-transition="fade"] .slick-list,
.rogers-home-carousel[data-transition="fade"] .slick-track {
    transform: none;
}

@supports (-webkit-touch-callout: none) {
    .rogers-home-carousel .nxb-banner__media,
    :is(.page-our-approach, .page-behavioural, .page-coaching-mentoring) .page-heading {
        background-attachment: scroll;
    }
}

.rogers-page-copy .nxb-text-block__content strong,
.rogers-course-section .nxb-text-block__content strong,
.rogers-testimonials .nxb-text-block__content strong {
    font-weight: 700;
}

.rogers-page-copy .nxb-text-block__content strong a {
    text-decoration: none;
}

.rogers-course-section {
    scroll-margin-top: 203px;
}

.page-our-approach .rogers-approach-gallery {
    width: calc(100% - var(--rogers-section-gutter));
    max-width: var(--rogers-live-container);
    padding-bottom: 90px;
}

.page-our-approach .rogers-approach-gallery .nxb-gallery__viewport {
    gap: 0;
}

.page-our-approach .rogers-approach-gallery .nxb-gallery__item {
    padding-inline: 12px;
}

.page-our-approach .rogers-approach-gallery .nxb-gallery__image {
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

@media (min-width: 993px) {
    .site-footer .back-to-top-button {
        width: 60px;
        height: 60px;
        right: 0;
        bottom: 0;
        border-radius: 0;
        background: var(--rogers-green);
    }

    .site-footer .back-to-top-button::before {
        top: 26px;
        left: 24px;
        border-color: #fff;
    }
}

@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 992px) {
    .rogers-enquiry-strip {
        min-height: 45px;
    }

    .site-header .header-menu-toggle .header-menu-toggle__icon {
        opacity: 1;
    }

    .rogers-home-carousel,
    .rogers-home-carousel .nxb-banner,
    .rogers-home-carousel .nxb-banner__layout,
    .rogers-home-carousel .nxb-banner__media,
    .rogers-home-carousel .nxb-banner__image {
        height: calc(100svh - 80px);
        min-height: calc(100svh - 80px);
    }

    .rogers-home-carousel .nxb-banner__content {
        padding: 40px 0;
    }

    .rogers-home-carousel .nxb-banner__content-inner {
        width: calc(100% - 135px);
        max-width: 618px;
    }

    .rogers-home-carousel .nxb-banner__title {
        font-size: 40px;
        line-height: 1.2;
    }

    :is(.page-our-approach, .page-behavioural, .page-coaching-mentoring) .page-heading {
        height: 505px;
        font-size: 40px;
        line-height: 1.2;
    }

    .rogers-page-copy .nxb-text-block__content,
    .rogers-page-copy .nxb-text-block__content p {
        font-size: 20px;
        line-height: 1.4;
    }

    .rogers-course-section .nxb-text-block__content,
    .rogers-course-section .nxb-text-block__content p,
    .page-coaching-mentoring .rogers-page-copy .nxb-text-block__content,
    .page-coaching-mentoring .rogers-page-copy .nxb-text-block__content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .page-testimonials .page-heading {
        padding: 30px 0 0;
        font-size: 30px;
        line-height: 1.2;
    }

    .page-testimonials .rogers-testimonials {
        padding-top: 30px;
    }

    .rogers-testimonials .nxb-text-block__content,
    .rogers-testimonials .nxb-text-block__content > p {
        font-size: 20px;
        line-height: 1.4;
    }

    .site-footer#site-footer {
        padding: 30px 0;
    }

    .site-footer .footer-social {
        padding: 0 0 25px;
    }

    .site-footer#site-footer .footer-social {
        margin-top: 24px;
    }

    .site-footer#site-footer .footer-bottom {
        padding-top: 25px;
    }

    .rogers-course-section {
        scroll-margin-top: 145px;
    }

    .page-our-approach .rogers-approach-gallery .nxb-gallery__item {
        padding-inline: 0;
    }

    .site-footer .footer-navigation ul {
        align-items: flex-start;
        text-align: left;
    }

    .site-footer .footer-navigation li,
    .site-footer .footer-navigation li + li {
        margin: 0 0 10px;
    }

    .site-footer .footer-navigation .site-credit {
        justify-content: flex-start;
    }

    .site-footer .back-to-top {
        width: calc(100% + var(--rogers-section-gutter));
        height: 95px;
        margin-inline: calc(-.5 * var(--rogers-section-gutter));
        padding-top: 45px;
    }

    .site-footer .back-to-top-button {
        position: relative;
        right: auto;
        bottom: auto;
        display: block;
        width: 100%;
        height: 50px;
        border-radius: 0;
    }

    .site-footer .back-to-top-button::before {
        top: 20px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }
}

@media (min-width: 521px) and (max-width: 992px) {
    .rogers-page-copy .nxb-text-block__inner,
    .rogers-course-section .nxb-text-block__inner,
    .rogers-testimonials .nxb-text-block__inner {
        max-width: 696px;
    }

    .rogers-why-pods,
    .rogers-service-pods,
    .rogers-iosh-grid .nxb-grid-layout__inner {
        max-width: 720px;
    }

    .rogers-home-welcome .nxb-text-block__inner {
        max-width: 648px;
    }

    .rogers-home-welcome .nxb-text-block__heading {
        font-size: 40px;
        line-height: 1.2;
    }

    .page-home .nxb-block-frame:has(+ .nxb-block-frame .rogers-why-pods) .rogers-section-heading .nxb-text-block__heading {
        font-size: 36px;
        line-height: 1.2;
    }

    .page-home .nxb-block-frame:has(+ .nxb-block-frame .rogers-why-pods) .rogers-section-heading {
        padding-top: 40px;
    }

    .page-home .nxb-block-frame:has(+ .nxb-block-frame .rogers-client-logos) .rogers-section-heading .nxb-text-block__heading {
        font-size: 28px;
        line-height: 1.2;
    }

    .rogers-why-pods .nxb-simple-pods__grid,
    .rogers-service-pods .nxb-simple-pods__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rogers-why-pods .nxb-simple-pods__card,
    .rogers-service-pods .nxb-simple-pods__card {
        margin: 0 12px 24px;
    }

    .rogers-why-pods .nxb-simple-pods__heading {
        font-size: 26px;
    }

    .rogers-why-pods .nxb-simple-pods__content {
        padding-block: 9px;
    }

    .page-home .nxb-block-frame:has(.rogers-service-pods) {
        padding-block: 46px;
    }

    .rogers-iosh-grid .nxb-grid-layout__row > .umb-block-grid__area-container {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 0;
    }

    .rogers-iosh-grid .nxb-grid-layout__row .umb-block-grid__area:first-child {
        order: initial;
        grid-column: 5 / span 8;
        padding-inline: 12px;
    }

    .rogers-iosh-grid .nxb-grid-layout__row .umb-block-grid__area:last-child {
        order: initial;
        grid-column: 1 / span 3;
        grid-row: 1;
        padding-inline: 12px;
    }

    .rogers-iosh-grid {
        min-height: 551px;
    }

    .rogers-client-logos {
        padding-bottom: 59px;
    }

    .page-our-approach .rogers-page-copy {
        min-height: 770px;
    }

    .page-our-approach .rogers-approach-gallery {
        width: min(calc(100% - 30px), 690px);
        padding-bottom: 70px;
    }

    .page-our-approach .rogers-approach-gallery .nxb-gallery__image {
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .page-our-approach .rogers-approach-gallery .nxb-gallery__viewport {
        gap: 16px;
    }
}

@media (max-width: 520px) {
    .rogers-home-welcome {
        padding-block: 33px;
    }

    .rogers-home-carousel .nxb-banner__content {
        padding: 36px 0;
    }

    .rogers-home-carousel .nxb-banner__content-inner {
        width: calc(100% - 30px);
        max-width: 345px;
    }

    .rogers-home-carousel .nxb-banner__title {
        font-size: 30px;
        line-height: 1.2;
    }

    :is(.page-our-approach, .page-behavioural, .page-coaching-mentoring) .page-heading {
        height: 469px;
        font-size: 30px;
        line-height: 1.2;
    }

    .rogers-page-copy,
    .rogers-course-section,
    .rogers-testimonials {
        padding-block: 30px;
    }

    .rogers-course-section .nxb-text-block__heading {
        font-size: 30px;
        line-height: 1.2;
    }

    .rogers-course-section .nxb-text-block__content h3,
    .page-coaching-mentoring .rogers-page-copy .nxb-text-block__content h3 {
        font-size: 26px;
        line-height: 1.2;
    }

    .page-home .nxb-block-frame:has(+ .nxb-block-frame .rogers-why-pods) .rogers-section-heading .nxb-text-block__intro {
        margin-bottom: 18px;
    }

    .rogers-why-pods .nxb-simple-pods__grid {
        gap: 30px;
        padding-bottom: 30px;
    }

    .rogers-why-pods .nxb-simple-pods__card {
        margin: 0;
    }

    .rogers-why-pods .nxb-simple-pods__content {
        flex: 0 0 auto;
        padding: 13.2px 0 0;
    }

    .rogers-why-pods .nxb-simple-pods__heading {
        font-size: 22px;
    }

    .rogers-why-pods .nxb-simple-pods__text,
    .rogers-why-pods .nxb-simple-pods__text p {
        font-weight: 300;
    }

    .rogers-service-pods .nxb-simple-pods__card {
        margin-bottom: 30px;
    }

    .rogers-service-pods .nxb-simple-pods__heading {
        font-size: 22px;
    }

    .rogers-service-pods .nxb-simple-pods__content {
        padding: 30px 30px 35px;
    }

    .rogers-service-pods .nxb-simple-pods__link {
        margin-top: 20px;
    }

    .rogers-iosh-grid {
        min-height: 1190px;
    }

    .page-home .nxb-block-frame:has(+ .nxb-block-frame .rogers-client-logos) .rogers-section-heading {
        padding: 30px 0 0;
    }

    .page-home .nxb-block-frame:has(+ .nxb-block-frame .rogers-client-logos) .rogers-section-heading .nxb-text-block__intro {
        margin-bottom: 25px;
    }

    .page-home .nxb-block-frame:has(+ .nxb-block-frame .rogers-client-logos) .rogers-section-heading .nxb-text-block__heading {
        font-family: "Mulish", sans-serif;
        font-size: 24px;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .rogers-client-logos {
        width: calc(100% - 7px);
        padding-bottom: 79px;
    }

    .page-contact .page-content-shell {
        margin-top: -17px;
    }

    .page-contact .rogers-contact-form {
        min-height: 708px;
    }

    .page-contact .rogers-contact-form .nxb-contact-form__fields {
        gap: 16px;
    }

    .page-contact .rogers-contact-form .nxb-contact-form__field {
        gap: 5px;
    }

    .page-contact .rogers-contact-form label {
        line-height: 24px;
    }

    .page-contact .rogers-contact-form input {
        min-height: 40px;
        padding: 6px 12px;
        line-height: 24px;
    }

    .page-contact .rogers-contact-form textarea {
        height: 134px;
        min-height: 134px;
        padding: 6px 12px;
        line-height: 24px;
        box-sizing: border-box;
    }

    .page-contact .rogers-contact-form .nxb-contact-form__submit {
        height: 42px;
        min-height: 42px;
        margin-top: 36px;
        padding: 8px 12px;
        font-size: 16px;
        line-height: 24px;
        box-sizing: border-box;
    }

    .page-our-approach .rogers-approach-gallery {
        --nxb-gallery-gap: 25px;
        width: calc(100% - 15px);
        padding-bottom: 55px;
    }

    .rogers-approach-gallery .nxb-gallery__image {
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .page-our-approach .rogers-approach-gallery .nxb-gallery__viewport {
        gap: 25px;
    }
}
