

/* Desktop */
:root {
    --size-unit: 16; /* body font-size in design - no px */
    --size-container-ideal: 1440; /* screen-size in design - no px */
    --size-container-min: 1024px;
    --size-container-max: 1248px;
    --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
    --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
}
  
/* Tablet */
@media screen and (max-width: 991px) {
    :root {
      --size-container-ideal: 834; /* screen-size in design - no px */
      --size-container-min: 768px;
      --size-container-max: 991px;
    }
}
  
/* Mobile Landscape */
@media screen and (max-width: 767px) {
    :root {
      --size-container-ideal: 550; /* screen-size in design - no px */
      --size-container-min: 480px;
      --size-container-max: 767px;
    }
}
  
/* Mobile Portrait */
@media screen and (max-width: 479px) {
    :root {
      --size-container-ideal: 390; /* screen-size in design - no px */
      --size-container-min: 320px;
      --size-container-max: 479px;
    }
}

body {
    font-size: var(--size-font);
}

/* Prevent flash of unstyled content for animated elements */
.hero-report__title,
.broadcast-section__title,
.network-section__title,
.resources-section__title,
.action-section__title,
.next-section__title,
.impact-together__title,
.global-impact__title,
.broadcast-card,
.network-card,
.resources-card,
.resources-section__stat,
.resources-section__image,
.network-section__image,
.action-section__text,
.action-section__carousel,
.next-feature,
.impact-together__video,
.impact-together__text,
.hero-report__video,
.hero-report__text,
.hero-report__sign,
.global-impact__card,
.global-impact__description {
    opacity: 0;
}

/* Show elements if JavaScript doesn't load or animations are disabled */
@media (prefers-reduced-motion: reduce) {
    .hero-report__title,
    .broadcast-section__title,
    .network-section__title,
    .resources-section__title,
    .action-section__title,
    .next-section__title,
    .impact-together__title,
    .global-impact__title,
    .broadcast-card,
    .network-card,
    .resources-card,
    .resources-section__stat,
    .resources-section__image,
    .network-section__image,
    .action-section__text,
    .action-section__carousel,
    .next-feature,
    .impact-together__video,
    .impact-together__text,
    .hero-report__video,
    .hero-report__text,
    .hero-report__sign,
    .global-impact__card,
    .global-impact__description {
        opacity: 1;
    }
}

.app .container {
    max-width: var(--size-container);
}
  
.app .container.medium {
    max-width: calc(var(--size-container) * 0.85);
}
  
.app .container.small {
    max-width: calc(var(--size-container) * 0.7);
}

/* Global Container */

.app .container {
    width: 100%;
    max-width: 1248px;
    margin-inline: auto;
    padding: 0;
}

.app p {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.font-white { color: #FFFFFF; }
.bg-white { background-color: #FFFFFF; }
.font-black { color: #000000; }
.bg-black { background-color: #000000; }
.font-dark-blue { color: #012B3B; }
.bg-dark-blue { background-color: #012B3B; }
.font-light-blue { color: #378C9E; }
.bg-light-blue { background-color: #378C9E; }
.font-grey { color: #BDBDBD; }
.bg-grey { background-color: #BDBDBD; }
.font-dark-grey { color: #4D6B76; }
.bg-dark-grey { background-color: #4D6B76; }
.font-darker-grey { color: #4B4B4B; }
.bg-darker-grey { background-color: #4B4B4B; }

.font-title-xl {
    font-size: 13.5em;
    line-height: .8;
    letter-spacing: 0;
    font-family: 'Zuume Bold', sans-serif;
}

.font-title {
    font-size: 13em;
    line-height: .8;
    letter-spacing: 0;
    font-family: 'Zuume Bold', sans-serif;
}

.font-subtitle-xl {
    font-size: 8.75em;
    line-height: .9;
    letter-spacing: 0;
    font-family: 'Zuume Bold', sans-serif;
}

.font-subtitle-l {
    font-size: 5.6em;
    line-height: 1.2;
    letter-spacing: 0;
    font-family: 'Zuume Bold', sans-serif;
}

.font-subtitle-m {
    font-size: 4.5em;
    line-height: .9;
    letter-spacing: 0;
    font-family: 'Zuume Bold', sans-serif;
}

.font-subtitle-s {
    font-size: 3.5em;
    line-height: .9;
    letter-spacing: 0;
    font-family: 'Zuume Bold', sans-serif;
}

.font-subtitle-xs {
    font-size: 3em;
    line-height: .9;
    letter-spacing: 0;
    font-family: 'Zuume Bold', sans-serif;
}

.font-eyebrow-s {
    font-size: .85em;
    letter-spacing: 0.15em;
    line-height: 1;
    text-transform: uppercase;
}

.font-body-xl {
    font-size: 1.25em;
    letter-spacing: 0;
    line-height: 1.75em;
}

.font-body-l {
    font-size: 1.125em;
    letter-spacing: 0;
    line-height: 1.5em;
}

.font-body-m {
    font-size: 1em;
    letter-spacing: 0;
    line-height: 1.5em;
    font-family: 'Chivo Mono', monospace;
}

.font-body-s {
    font-size: 0.875em;
    letter-spacing: 0;
    line-height: 1.375em;
}

.font-button-m {
    font-size: 1em;
    letter-spacing: .05em;
    line-height: 1;
    text-transform: uppercase;
}

.font-button-s {
    font-size: .75em;
    letter-spacing: .15em;
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.font-regular {
    font-weight: 400;
}

.font-light {
    font-weight: 300;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Hero Report Section */
.hero-report {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 6em 3em;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(1, 43, 59, 0.15) 49px,
            rgba(1, 43, 59, 0.15) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(1, 43, 59, 0.15) 49px,
            rgba(1, 43, 59, 0.15) 50px
        );
    background-size: 50px 50px;
    position: relative;
    overflow: hidden;
}

.hero-report::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    background: linear-gradient(150deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 100%);
}

.hero-report__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 90%;
    z-index: 2;
    opacity: 1;
}

.hero-report__content {
    display: flex;
    flex-direction: column;
    gap: 4em;
}

.hero-report__title {
    text-align: center;
    margin: 0;
    opacity: 0;
    background: linear-gradient(to right, #012735 40%, #001118 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-report__body {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.875em;
    align-items: end;
    margin-top: -2em;
    width: 1248px;
    max-width: 100%;
}

.hero-report__video {
    width: 100%;
    position: relative;
    grid-column: span 6;
    align-self: end;
    aspect-ratio: 16/9;
}

.video-player {
    width: 120%;
    height: 120%;
    float: right;
    background: linear-gradient(135deg, #1a3a5c 0%, #2d5a7b 100%);
    border-radius: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 44px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
}

.video-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-player__button,
body[data-button-style*="slightly_rounded"] button.video-player__button {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 44px 44px rgba(0, 0, 0, 0.2);
    backdrop-filter: url(#refractionFilter) contrast(1.01) brightness(1.1) blur(5px);
    z-index: 2;
    border-radius: 50% !important;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
}

.video-player:hover .video-player__button {
    transform: scale(1.1);
}

.video-player__button svg {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-report__text {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding: 3em 2em;
    border-radius: 1.5em;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 44px 44px rgba(0, 0, 0, 0.2);
    align-self: end;
    position: relative;
    
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 
        inset 0 0 14px rgba(255, 255, 255, 0.30), 
        inset -1px -3px 2px rgba(255, 255, 255, 0.3), 
        inset 1px 3px 2px rgba(255, 255, 255, 0.3), 
        0 44px 44px rgba(0, 0, 0, 0.2);
    backdrop-filter: url(#refractionFilter) contrast(1.01) brightness(1.1) blur(5px);
    z-index: 2;
}

.hero-report__text .glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-report__text::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: inherit;
}

.hero-report__paragraph {
    margin: 0;
}

.hero-report__paragraph p {
    margin-bottom: 1.5em;
}

.hero-report__signature {
    margin: 0;
    margin-top: 1em;
}

.hero-report__sign {
    margin-top: 0.5em;
}

.hero-report__sign img {
    width: auto;
    height: 4em;
    display: block;
}

/* =================================
   Broadcast Section
   ================================= */

.broadcast-section {
    background: #012B3B;
    padding: 8em 3em 0;
    position: relative;
    overflow: hidden;
}

.broadcast-section__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 90%;
    z-index: 2;
    opacity: 1;
}

.broadcast-section__glass {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 68%;
    width: 60%;
    height: 200%;
    z-index: 2;
    opacity: 1;
    margin: auto;
    backdrop-filter: blur(2px);
    transform: rotate(12deg);
    border: 1px solid rgba(255, 255, 255, .1);
}

.broadcast-section__glass .glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.broadcast-section__content {
    display: flex;
    flex-direction: column;
    gap: 4em;
    margin-bottom: -10em;
}

.broadcast-section__title {
    margin: 0;
    background: linear-gradient(to right, #FFFFFF 57%, #CECECE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.broadcast-section__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, minmax(80px, auto));
    gap: 2em;
    position: relative;
    z-index: 2;
    margin-top: -6em;
}

/* .broadcast-card {
    border-radius: 1.5em;
    padding: 2em;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 1em;
    backdrop-filter: blur(10px);
    background: rgba(1, 43, 59, 0.3);

    background: rgba(255, 255, 255, 0.01);
    box-shadow: 
        inset 0 0 14px rgba(255, 255, 255, 0.30), 
        inset -1px -3px 2px rgba(255, 255, 255, 0.3), 
        inset 1px 3px 2px rgba(255, 255, 255, 0.3);
    backdrop-filter: url(#refractionFilter) contrast(1.01) brightness(1.1) blur(5px);
} */
 
.broadcast-card {
    border-radius: 1.5em;
    padding: 2em;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 1em;
    backdrop-filter: url(#refractionFilter) blur(5px) brightness(1.1) saturate(1.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    box-shadow: 0px 44px 44px rgba(3, 24, 33, 0.1);
    position: relative;
    overflow: hidden;
}

.broadcast-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.35);
    mask: linear-gradient(337deg, rgba(255, 255, 255, 1) 0%, rgba(1, 43, 59, 0) 50%, rgba(255, 255, 255, 1) 100%);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.broadcast-card .glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* .broadcast-card::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: inherit;
} */

.broadcast-card--homes {
    grid-column: 3 / span 4;
    grid-row: 1 / span 2;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2em 5em;
    position: relative;
    right: -2.5em;
}

.broadcast-card--hearts {
    grid-column: 7 / span 4;
    grid-row: 2 / span 2;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    right: -3.5em;
}

.broadcast-card--reach {
    grid-column: 4 / span 3;
    grid-row: 3 / span 3;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.broadcast-section__body {
    grid-column: 1 / span 3;
    grid-row: 4 / span 2;
    display: flex;
    align-items: center;
}

.broadcast-card--testimony {
    grid-column: 7 / span 5;
    grid-row: 4 / span 3;
    background: #378C9E;
    border: none;
    box-shadow: 0 44px 44px rgba(0, 0, 0, 0.09);
    border: none;
}

.broadcast-card__number {
    margin: 0;
    line-height: 1;
}

.broadcast-card__text {
    margin: 0;
    line-height: 1.4;
}

.broadcast-card__label {
    margin: 0;
    line-height: 1.4;
}

.broadcast-section__paragraph {
    margin: 0;
    line-height: 1.6;
}

.broadcast-card__quote {
    margin: 0;
    font-style: italic;
}

.broadcast-card__testimony-text {
    margin: 0;
    line-height: 1.6;
}

.broadcast-card__author {
    margin: 0;
    margin-top: 0.5em;
}

/* =================================
   Network Section
   ================================= */

.network-section {
    background: #F5F5F5;
    padding: 8em 3em;
    overflow: hidden;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(1, 43, 59, 0.15) 49px,
            rgba(1, 43, 59, 0.15) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(1, 43, 59, 0.15) 49px,
            rgba(1, 43, 59, 0.15) 50px
        );
    background-size: 50px 50px;
    position: relative;
}

.network-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    background: linear-gradient(150deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 100%);
}

.network-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    background: linear-gradient(0deg,rgba(242, 242, 242, 1) 0%, rgba(255, 255, 255, 0) 20%);
}

.network-section__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: auto;
    z-index: 1;
    opacity: 1;
}

.network-section__content {
    display: flex;
    flex-direction: column;
    gap: 4em;
    position: relative;
    z-index: 2;
    margin-bottom: -10em;
}

.network-section__title {
    margin: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to right, #012735 40%, #001118 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.network-section__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, minmax(80px, auto));
    gap: 2em;
    position: relative;
}

.network-card {
    background: #FFFFFF;
    border-radius: 1.5em;
    padding: 2.4em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    backdrop-filter: url(#refractionFilter2) blur(5px) brightness(1.1) saturate(1.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    box-shadow: 0px 44px 44px rgba(3, 24, 33, 0.1);
    position: relative;
    overflow: hidden;
}

.network-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.35);
    mask: linear-gradient(337deg, rgba(255, 255, 255, 1) 0%, rgba(1, 43, 59, 0) 50%, rgba(255, 255, 255, 1) 100%);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.network-card .glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.network-card--users {
    grid-column: 2 / span 3;
    grid-row: 1 / span 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -6em;
}

.network-card--minutes {
    grid-column: 4 / span 5;
    grid-row: 2 / span 2;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    height: 70%;
    margin-top: -4em;
}

.network-card--partners {
    grid-column: 1 / span 3;
    grid-row: 2 / span 2;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.network-section__description {
    grid-column: 9 / span 3;
    grid-row: 1 / span 1;
    display: flex;
    align-items: center;
}

.network-section__image {
    grid-column: 8 / span 5;
    grid-row: 2 / span 5;
    border-radius: 1.5em;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 6em;
}

.network-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.network-card--testimony {
    grid-column: 3 / span 7;
    grid-row: 6 / span 2;
    background: #378C9E;
    padding: 3em;
    margin-top: -8em;
    box-shadow: 0 44px 44px rgba(0, 0, 0, 0.09);
    border: none;
}

.network-card__number {
    margin: 0;
    line-height: 1;
}

.network-card__label {
    margin: 0;
    line-height: 1.1;
}

.network-card__stat {
    margin: 0;
    line-height: 1;
}

.network-card__text {
    margin: 0;
    line-height: 1.4;
}

.network-section__paragraph {
    margin: 0;
    line-height: 1.6;
}

.network-card__quote {
    margin: 0;
    font-style: italic;
}

.network-card__testimony-text {
    margin: 0;
    line-height: 1.6;
}

.network-card__author {
    margin: 0;
    margin-top: 0.5em;
}

/* ---------------------------------------------
   Resources Section
   --------------------------------------------- */
.resources-section {
    padding: 6em 3em 8em;
    background-color: #F5F5F5;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(1, 43, 59, 0.15) 49px,
            rgba(1, 43, 59, 0.15) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(1, 43, 59, 0.15) 49px,
            rgba(1, 43, 59, 0.15) 50px
        );
    background-size: 50px 50px;
    position: relative;
}

.resources-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    background: linear-gradient(-150deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 100%);
}

.resources-section__title {
    text-align: center;
    margin: 0;
    margin-bottom: 60px;
    background: linear-gradient(to right, #012735 40%, #001118 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.resources-section__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, auto);
    gap: 2em;
    align-items: start;
}

.resources-card {
    padding: 2.5em;
    border-radius: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    backdrop-filter: url(#refractionFilter2) blur(5px) brightness(1.1) saturate(1.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    box-shadow: 0px 44px 44px rgba(3, 24, 33, 0.1);
    position: relative;
    overflow: hidden;
}

.broadcast-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.35);
    mask: linear-gradient(337deg, rgba(255, 255, 255, 1) 0%, rgba(1, 43, 59, 0) 50%, rgba(255, 255, 255, 1) 100%);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.resources-card--teal {
    background-color: #378C9E;
    grid-column: 1 / span 7;
    grid-row: 1 / span 3;
    margin-top: 4em;
    transform: translateX(-40px) !important;
    position: relative;
    z-index: 2;
    box-shadow: 0 44px 44px rgba(0, 0, 0, 0.09);
    border: none;
}

.resources-card--navy {
    background-color: #012B3B;
    grid-column: 7 / span 6;
    grid-row: 6 / span 3;
    margin-top: -8em;
    box-shadow: 0 44px 44px rgba(0, 0, 0, 0.09);
    border: none;
    transform: translateX(4em) !important;
}

.resources-card .glass {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.resources-section__description {
    grid-column: 8 / span 5;
    grid-row: 1 / span 2;
    line-height: 1.6;
    margin: 0;
}

.resources-card__quote {
    font-style: italic;
    line-height: 1.2;
    margin: 0;
}

.resources-card__text {
    line-height: 1.6;
    margin: 0;
}

.resources-card__author {
    margin: 0;
    margin-top: 0.5em;
    font-size: 0.9em;
}

.resources-section__stat {
    grid-column: 3 / span 4;
    grid-row: 4 / span 2;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    position: relative;
    z-index: 1;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 4em;
    transform: translateX(-4em) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.resources-stat__number {
    line-height: 1;
    margin: 0;
}

.resources-stat__text {
    line-height: 1.4;
    max-width: 90%;
    margin: 0;
}

.resources-section__image {
    grid-column: 6 / span 6;
    grid-row: 4 / span 3;
    border-radius: 1.5em;
    overflow: hidden;
    align-self: stretch;
    margin-top: -4em;
}

.resources-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------------------------------------------
   Action Section
   --------------------------------------------- */
.action-section {
    padding: 6em 3em 8em;
    background-color: #012B3B;
    position: relative;
    overflow: hidden;
}

.action-section__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 90%;
    z-index: 1;
    opacity: 1;
}

.action-section__glass {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 70%;
    width: 60%;
    height: 200%;
    z-index: 2;
    opacity: 1;
    margin: auto;
    backdrop-filter: blur(2px);
    transform: rotate(12deg);
    border: 1px solid rgba(255, 255, 255, .1);
}

.action-section__title {
    text-align: center;
    margin: 0 0 60px 0;
    background: linear-gradient(to right, #FFFFFF 57%, #CECECE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.action-section__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3em;
    align-items: end;
    position: relative;
    z-index: 3;
}

.action-section__text {
    grid-column: 1 / span 4;
}

.action-section__buttons {
    display: flex;
    gap: 1em;
    margin-top: 6em;
}

.action-section__description {
    line-height: 1.6;
    margin: 0;
}

.action-section__carousel {
    grid-column: 6 / span 7;
    position: relative;
}

.action-carousel {
    border-radius: 1.5em;
    overflow: visible;
}

.action-slide {
    border-radius: 1.5em;
    overflow: hidden;
    position: relative;
}

.action-carousel .swiper-slide {
    box-shadow: 0 4px 34px rgba(0, 0, 0, 0.45);
    border-radius: 1.5em;
    overflow: hidden;
}

.action-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.action-slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 656/468;
    object-fit: cover;
}

.action-slide__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5em 2.5em;
    width: 100%;
    z-index: 2;
}

.action-slide__caption .glass {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.action-slide__caption p {
    margin: 0;
}

.action-carousel__navigation {
    position: absolute;
    bottom: 2em;
    left: 2em;
    display: flex;
    gap: 1em;
    z-index: 10;
}

.action-carousel__button,
body[data-button-style*="slightly_rounded"] button.action-carousel__button {
    width: 3.5em;
    height: 3.5em;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: url(#refractionFilter) blur(5px) brightness(1.1) saturate(1.1);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.action-carousel__button.swiper-button-disabled,
body[data-button-style*="slightly_rounded"] button.action-carousel__button.swiper-button-disabled {
    color: #8E8E8E;
}

.action-carousel__button .glass {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.action-carousel__button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* ---------------------------------------------
   Next Section
   --------------------------------------------- */
.next-section-wrapper {
    padding: 1.5em;
}

.next-section {
    padding: 6em 3em 8em;
    background: #378C9E;
    position: relative;
    overflow: hidden;
    border-radius: 2em;
}

.next-section__glass {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 90%;
    width: 60%;
    height: 200%;
    z-index: 2;
    opacity: 1;
    margin: auto;
    backdrop-filter: blur(2px);
    transform: rotate(25deg);
    opacity: .5;
    border: 1px solid rgba(255, 255, 255, .3);
}

.next-section__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: 90%;
    z-index: 1;
    opacity: 1;
}

.next-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.next-section__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4em;
    align-items: center;
    position: relative;
    z-index: 1;
}

.next-section__left {
    grid-column: 1 / span 5;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.next-section__title {
    margin: 0;
    line-height: 0.85;
    background: linear-gradient(to right, #FFFFFF 20%, #CECECE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.next-section__description {
    line-height: 1.6;
    margin: 0;
}

.next-section__button {
    display: inline-flex;
    padding: 1.125em 2.5em;
    background-color: #012B3B;
    border-radius: 3em;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.next-section__button:hover {
    background-color: #014052;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.next-section__right {
    grid-column: 8 / span 5;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.next-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5em;
    padding: 2em;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: url(#refractionFilter5) blur(5px) brightness(1.1) saturate(1.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    box-shadow: 0px 44px 44px rgba(3, 24, 33, 0.1);
    position: relative;
    overflow: hidden;
}

.broadcast-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.35);
    mask: linear-gradient(337deg, rgba(255, 255, 255, 1) 0%, rgba(1, 43, 59, 0) 50%, rgba(255, 255, 255, 1) 100%);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.next-feature .glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.next-feature__icon {
    flex-shrink: 0;
    transform: translateY(0.5em);
}

.icon-placeholder {
    width: 3.5em;
    height: 3.5em;
    border-radius: 0.5em;
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.next-feature__text {
    margin: 0;
    line-height: 1.5;
    padding-top: 0.5em;
}

/* ---------------------------------------------
   Global Impact Section
   --------------------------------------------- */
.global-impact-wrapper {
    padding: 1.5em;
}

.global-impact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6em 3em;
    position: relative;
    overflow: hidden;
    background: #eeeeee;
    border-radius: 2em;
    position: relative;
}

.global-impact__glass {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 95%;
    width: 60%;
    height: 200%;
    z-index: 3;
    opacity: 1;
    margin: auto;
    backdrop-filter: blur(2px);
    transform: rotate(25deg);
    opacity: .5;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, .3);
}

.global-impact__glass2 {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 85%;
    width: 10%;
    height: 200%;
    z-index: 2;
    opacity: 1;
    margin: auto;
    backdrop-filter: blur(10px);
    transform: rotate(25deg);
    opacity: .5;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, .3);
}

.global-impact__content {
    display: flex;
    flex-direction: column;
    gap: 2em;
    position: relative;
    z-index: 2;
}

.global-impact__holder {
    display: flex;
}

.global-impact__world-map {
    position: absolute;
    top: 12em;
    right: -4em;
    width: 75%;
}

.global-impact__title {
    margin: 0;
    line-height: 0.85;
    background: linear-gradient(to right, #012735 40%, #001118 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0;
    flex: 1 1 50%;
}

.global-impact__holder p {
    flex: 1 1 50%;
    padding-right: 13em;
    max-width: 100%;
    margin-top: 2em;
}

.global-impact__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, minmax(70px, auto));
    gap: 4em;
    position: relative;
    margin-top: -4em;
}

.global-impact__map {
    grid-column: 4 / span 9;
    grid-row: 1 / span 4;
    position: relative;
    z-index: 1;
    min-height: 300px;
    /* Placeholder styling - remove when map is added */
    background: url('images/map-dots.svg') center center no-repeat;
    background-size: contain;
    opacity: 0.5;
}

.global-impact__card {
    border-radius: 1.5em;
    padding: 2.4em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    backdrop-filter: url(#refractionFilterGlobal) blur(5px) brightness(1.1) saturate(1.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    box-shadow: 0px 44px 44px rgba(3, 24, 33, 0.1);
    position: relative;
    overflow: hidden;
}

.global-impact__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.35);
    mask: linear-gradient(337deg, rgba(255, 255, 255, 1) 0%, rgba(1, 43, 59, 0) 50%, rgba(255, 255, 255, 1) 100%);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.global-impact__card .glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.global-impact__card--languages {
    grid-column: 2 / span 6;
    grid-row: 2 / span 2;
    justify-content: center;
    text-align: center;
    z-index: 2;
    height: 17em;
}

.global-impact__stat {
    margin: 0;
    line-height: 1;
}

.global-impact__stat-text {
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.global-impact__description {
    grid-column: 1 / span 5;
    grid-row: 4 / span 1;
    margin-top: -6em;
    display: flex;
    align-items: flex-start;
}

.global-impact__paragraph {
    margin: 0;
    line-height: 1.6;
}

.global-impact__card--testimony {
    grid-column: 8 / span 5;
    grid-row: 3 / span 2;
    background: #378C9E;
    border: none;
    box-shadow: 0 44px 44px rgba(0, 0, 0, 0.09);
    z-index: 2;
}

.global-impact__card--testimony::before {
    display: none;
}

.global-impact__quote {
    margin: 0;
    font-style: italic;
}

.global-impact__testimony-text {
    margin: 0;
    line-height: 1.6;
}

.global-impact__author {
    margin: 0;
    margin-top: 0.5em;
}

/* ---------------------------------------------
   Impact Together Section (Copy of Hero)
   --------------------------------------------- */
.impact-together {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6em 3em;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(1, 43, 59, 0.15) 49px,
            rgba(1, 43, 59, 0.15) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(1, 43, 59, 0.15) 49px,
            rgba(1, 43, 59, 0.15) 50px
        );
    background-size: 50px 50px;
    position: relative;
    overflow: hidden;
}

.impact-together::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 100%);
}

.impact-together__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 90%;
    z-index: 2;
    opacity: 1;
}

.impact-together__content {
    display: flex;
    flex-direction: column;
    gap: 4em;
}

.impact-together__title {
    text-align: center;
    margin: 0;
    opacity: 0;
    background: linear-gradient(to right, #012735 40%, #001118 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.impact-together__body {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.875em;
    align-items: end;
    margin-top: -6em;
    position: relative;
}

.impact-together__video {
    width: 100%;
    position: relative;
    grid-column: 5 / span 4;
    grid-row: 2 / span 2;
    align-self: end;
    transform: translatex(-8em) !important;
}

.impact-together__video img {
    width: 33em;
    aspect-ratio: 466/304;
    border-radius: 1.5em;
}

.impact-together__image {
    position: absolute;
    grid-column: 3 / span 4;
    grid-row: span 2;
    right: 100%;
    top: 0;
}

.impact-together__image img {
    width: 28em;
    aspect-ratio: 466/304;
    border-radius: 1.5em;
}

.impact-together__text {
    grid-column: 8 / span 5;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding: 3.2em;
    border-radius: 1.5em;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 44px 44px rgba(0, 0, 0, 0.2);
    align-self: end;
    position: relative;
    
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 
        inset 0 0 14px rgba(255, 255, 255, 0.30), 
        inset -1px -3px 2px rgba(255, 255, 255, 0.3), 
        inset 1px 3px 2px rgba(255, 255, 255, 0.3), 
        0 44px 44px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: url(#refractionFilter4) contrast(1.01) brightness(1.1) blur(5px);
    backdrop-filter: url(#refractionFilter4) contrast(1.01) brightness(1.1) blur(5px);
    position: relative;
    z-index: 2;
}

.impact-together__text .glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.impact-together__text::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: inherit;
}

.impact-together__paragraph {
    margin: 0;
}

.impact-together__signature {
    margin: 0;
    margin-top: 1em;
}

.impact-together__sign {
    margin-top: 0.5em;
}

.impact-together__sign img {
    width: auto;
    height: 4em;
    display: block;
}

.impact-together__button {
    display: inline-flex;
    padding: 1.125em 2.5em;
    background-color: #378C9E;
    border-radius: 3em;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

.impact-together__button:hover {
    background-color: #014052;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #FFF;
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .font-title-xl {
        font-size: 5.5em;
        line-height: .8;
        letter-spacing: 0;
        font-family: 'Zuume Bold', sans-serif;
    }
    
    .font-title {
        font-size: 4.2em;
        line-height: .8;
        letter-spacing: 0;
        font-family: 'Zuume Bold', sans-serif;
    }
    
    .font-subtitle-xl {
        font-size: 3.75em;
        line-height: .9;
        letter-spacing: 0;
        font-family: 'Zuume Bold', sans-serif;
    }
    
    .font-subtitle-l {
        font-size: 3em;
        line-height: 1.2;
        letter-spacing: 0;
        font-family: 'Zuume Bold', sans-serif;
    }
    
    .font-subtitle-m {
        font-size: 2.5em;
        line-height: .9;
        letter-spacing: 0;
        font-family: 'Zuume Bold', sans-serif;
    }
    
    .font-subtitle-s {
        font-size: 2em;
        line-height: .9;
        letter-spacing: 0;
        font-family: 'Zuume Bold', sans-serif;
    }
    
    .font-eyebrow-s {
        font-size: .85em;
        letter-spacing: 0.15em;
        line-height: 1;
        text-transform: uppercase;
    }
    
    .font-body-xl {
        font-size: .925em;
        letter-spacing: 0;
        line-height: 1.35em;
    }
    
    .font-body-l {
        font-size: .875em;
        letter-spacing: 0;
        line-height: 1.5em;
    }
    
    .font-body-m {
        font-size: .75em;
        letter-spacing: 0;
        line-height: 1.5em;
        font-family: 'Chivo Mono', monospace;
    }
    
    .font-body-s {
        font-size: 0.875em;
        letter-spacing: 0;
        line-height: 1.375em;
    }
    
    .font-button-m {
        font-size: .925em;
        letter-spacing: .05em;
        line-height: 1;
        text-transform: uppercase;
    }
    
    .font-button-s {
        font-size: .75em;
        letter-spacing: .15em;
        line-height: 1;
    }

    .hero-report {
        padding: 4em 2em;
        min-height: auto;
    }
    
    .hero-report__content {
        gap: 3em;
    }

    .hero-report__video {
        /* height: 18em; */
        grid-column: span 12;
    }

    .hero-report__text {
        grid-column: span 12;
        padding: 2em;
    }
    
    .hero-report__body {
        grid-template-columns: 1fr;
        gap: 3em;
        display: flex;
        flex-direction: column-reverse;
        margin-top: -1em;
    }

    .video-player {
        width: 100%;
        height: 100%;
        aspect-ratio: 16/9;
    }

    .impact-together {
        padding: 4em 2em;
    }
    
    .impact-together__content {
        gap: 3em;
    }
    
    .impact-together__body {
        grid-template-columns: 1fr;
        gap: 3em;
    }

    .broadcast-section {
        padding: 6em 2em 8em;
    }
    
    .broadcast-section__content {
        gap: 3em;
        margin-bottom: 0;
    }
    
    .broadcast-section__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2em;
        margin-top: -3em;
    }
    
    .broadcast-card--homes,
    .broadcast-card--hearts,
    .broadcast-card--reach,
    .broadcast-section__body,
    .broadcast-card--testimony {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .network-section {
        padding: 6em 2em 8em;
    }
    
    .network-section__content {
        gap: 3em;
        margin-bottom: 0;
    }
    
    .network-section__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2em;
        display: flex;
        flex-direction: column;
    }
    
    .network-card--users,
    .network-card--minutes,
    .network-card--partners,
    .network-section__description,
    .network-section__image,
    .network-card--testimony {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .network-card--users {
        margin-top: -3em;
    }

    .network-card--minutes {
        margin-top: 0;
    }

    .network-section__image {
        margin-top: 0;
    }

    .resources-section {
        padding: 6em 2em 8em;
    }

    .network-card--partners {
        z-index: 3;
    }
    
    .resources-section__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2em;
    }
    
    .resources-card--teal,
    .resources-section__description,
    .resources-section__stat,
    .resources-section__image,
    .resources-card--navy {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .resources-section__image {
        min-height: 25em;
    }

    .resources-card--teal {
        margin-top: 0;
        transform: translateX(0) !important;
    }

    .resources-section__stat {
        margin-top: 0;
        transform: translateX(0) !important;
    }

    .resources-section__image {
        margin-top: 0;
    }

    .resources-card--navy {
        transform: translateX(0) !important;
    }

    .action-section {
        padding: 6em 2em 8em;
    }
    
    .action-section__grid {
        display: block;
    }

    .action-section__buttons {
        margin-top: 1.5em;
        margin-bottom: 1.5em;
        justify-content: space-between;
    }
    
    .action-section__text,
    .action-section__carousel {
        grid-column: 1 / -1;
    }

    .next-section {
        padding: 2em;
    }
    
    .next-section__grid {
        grid-template-columns: 1fr;
        gap: 3em;
    }
    
    .next-section__left,
    .next-section__right {
        grid-column: 1 / -1;
    }

    .next-section__glass {
        right: 160%;
    }

    .next-section__button {
        padding: 1.125em 0.5em;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .impact-together__body {
        display: flex;
        flex-direction: column-reverse;
        margin-top: -3em;
    }

    .impact-together__text {
        padding: 2em;
    }

    .impact-together__video {
        margin-top: 0;
        transform: translateX(0) !important;
    }

    .impact-together__video img {
        width: 100%;
    }

    .impact-together__image {
        display: none;
    }

    .impact-together__button {
        padding: 1.125em 0.5em;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .global-impact {
        padding: 4em 2em;
        min-height: auto;
    }

    .global-impact__content {
        gap: 3em;
    }

    .global-impact__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2em;
        display: flex;
        flex-direction: column;
    }

    .global-impact__map,
    .global-impact__card--languages,
    .global-impact__description,
    .global-impact__card--testimony {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .global-impact__map {
        display: none;
    }

    .global-impact__glass {
        display: none;
    }

    .global-impact__grid {
        margin-top: 0;
    }

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

    .global-impact__description {
        margin-top: 0;
    }

    .global-impact__card--languages {
        height: auto;
    }

    .global-impact__card--languages br {
        display: none;
    }

    .global-impact__world-map {
        top: 7em;
    }

    .broadcast-card--homes, .broadcast-card--hearts {
        right: 0;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    .hero-report {
        padding: 3em 1.5em;
    }
    
    .hero-report__content {
        gap: 2.5em;
    }
    
    .hero-report__body {
        gap: 2.5em;
    }

    .impact-together {
        padding: 3em 1.5em;
    }
    
    .impact-together__content {
        gap: 2.5em;
    }
    
    .impact-together__body {
        gap: 2.5em;
    }

    .broadcast-section {
        padding: 5em 1.5em 6em;
    }
    
    .broadcast-section__content {
        gap: 2.5em;
    }
    
    .broadcast-section__grid {
        gap: 1.5em;
    }

    .network-section {
        padding: 5em 1.5em 6em;
    }
    
    .network-section__content {
        gap: 2.5em;
    }
    
    .network-section__grid {
        gap: 1.5em;
    }

    .resources-section {
        padding: 5em 1.5em 6em;
    }
    
    .resources-section__grid {
        gap: 2.5em;
    }
    
    .resources-section__image {
        min-height: 20em;
    }

    .action-section {
        padding: 5em 1.5em 6em;
    }
    
    .action-section__grid {
        gap: 2.5em;
    }

    .next-section {
        padding: 2em;
    }
    
    .next-section__grid {
        gap: 2.5em;
    }
    
    .next-feature {
        padding: 1.5em;
    }

    .global-impact {
        padding: 3em 1.5em;
    }

    .global-impact__content {
        gap: 2.5em;
    }

    .global-impact__grid {
        gap: 1.5em;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    .hero-report {
        padding: 2em 1.25em;
    }
    
    .hero-report__content {
        gap: 2em;
    }
    
    .hero-report__body {
        gap: 2em;
    }
    
    .hero-report__sign img {
        height: 3em;
    }

    .impact-together {
        padding: 2em 1.25em;
    }
    
    .impact-together__content {
        gap: 2em;
    }
    
    .impact-together__body {
        gap: 2em;
    }
    
    .impact-together__sign img {
        height: 3em;
    }

    .broadcast-section {
        padding: 4em 1.25em 5em;
    }
    
    .broadcast-section__content {
        gap: 2em;
    }
    
    .broadcast-section__grid {
        gap: 1.25em;
    }
    
    .broadcast-card {
        padding: 1.5em;
    }

    .network-section {
        padding: 4em 1.25em 5em;
    }
    
    .network-section__content {
        gap: 2em;
    }
    
    .network-section__grid {
        gap: 1.25em;
    }
    
    .network-card {
        padding: 2em;
    }
    
    .network-card--testimony {
        padding: 2em;
    }

    .resources-section {
        padding: 4em 1.25em 5em;
    }
    
    .resources-section__grid {
        gap: 2em;
    }
    
    .resources-card {
        padding: 1.5em;
    }
    
    .resources-section__image {
        min-height: 18em;
    }

    .action-section {
        padding: 4em 1.25em 5em;
    }
    
    .action-section__grid {
        gap: 2em;
    }
    
    .action-carousel__navigation {
        bottom: 1.5em;
        left: 1.5em;
        gap: 0.75em;
    }
    
    .action-carousel__button {
        width: 3em;
        height: 3em;
    }

    .next-section {
        padding: 2em;
    }
    
    .next-section__grid {
        gap: 2em;
    }
    
    .next-section__left {
        gap: 1.5em;
    }
    
    .next-feature {
        padding: 1.25em;
        gap: 1em;
    }
    
    .icon-placeholder {
        width: 3em;
        height: 3em;
    }

    .global-impact {
        padding: 2em 1.25em;
    }

    .global-impact__content {
        gap: 2em;
    }

    .global-impact__grid {
        gap: 1.25em;
    }

    .global-impact__card {
        padding: 1.5em;
    }
}
