:root {
--ci360-green-950: #063b28;
--ci360-green-900: #074a31;
--ci360-green-800: #075d3a;
--ci360-green-700: #087443;
--ci360-lime: #8bc53f;
--ci360-lime-soft: #dff0c4;
--ci360-gold: #f3b63f;
--ci360-cream: #f6f8f0;
--ci360-white: #ffffff;
--ci360-ink: #153326;
--ci360-muted: #586c61;
--ci360-line: rgba(6, 59, 40, 0.14);
--ci360-shadow: 0 18px 55px rgba(6, 59, 40, 0.16);
--ci360-radius-sm: 10px;
--ci360-radius: 20px;
--ci360-shell: 1280px;
--ci360-header-height: 92px;
}

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

html {
scroll-behavior: smooth;
}

body {
margin: 0;
background: var(--ci360-white);
color: var(--ci360-ink);
font-family:
Inter,
ui-sans-serif,
system-ui,
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
sans-serif;
font-size: 16px;
line-height: 1.65;
}

body.menu-open {
overflow: hidden;
}

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

a {
color: inherit;
}

button,
input,
select,
textarea {
font: inherit;
}

.ci360-shell {
width: min(calc(100% - 40px), var(--ci360-shell));
margin-inline: auto;
}

.ci360-skip-link {
position: fixed;
top: 12px;
left: 12px;
z-index: 9999;
padding: 10px 16px;
border-radius: 8px;
background: var(--ci360-white);
color: var(--ci360-green-950);
font-weight: 800;
transform: translateY(-160%);
transition: transform 180ms ease;
}

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

.ci360-site-header {
position: relative;
z-index: 100;
background: var(--ci360-white);
box-shadow: 0 8px 30px rgba(6, 59, 40, 0.08);
}

.ci360-topbar {
background: var(--ci360-green-950);
color: rgba(255, 255, 255, 0.92);
font-size: 13px;
}

.ci360-topbar-inner {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 38px;
gap: 24px;
}

.ci360-topbar p {
margin: 0;
font-weight: 700;
}

.ci360-topbar-contact {
display: flex;
align-items: center;
gap: 10px;
}

.ci360-topbar a {
text-decoration: none;
}

.ci360-topbar a:hover,
.ci360-topbar a:focus-visible {
text-decoration: underline;
}

.ci360-main-header {
background: rgba(255, 255, 255, 0.98);
}

.ci360-header-inner {
display: flex;
align-items: center;
min-height: var(--ci360-header-height);
gap: 22px;
}

.ci360-brand {
flex: 0 0 auto;
}

.ci360-brand-link,
.custom-logo-link {
display: block;
line-height: 0;
}

.ci360-brand-logo,
.custom-logo {
width: auto;
max-width: 205px;
max-height: 72px;
object-fit: contain;
}

.ci360-primary-navigation {
flex: 1 1 auto;
margin-left: auto;
}

.ci360-menu {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 2px;
margin: 0;
padding: 0;
list-style: none;
}

.ci360-menu > li {
position: relative;
}

.ci360-menu a {
display: flex;
align-items: center;
min-height: 46px;
padding: 8px 10px;
border-radius: 8px;
color: var(--ci360-green-950);
font-size: 14px;
font-weight: 750;
line-height: 1.25;
text-decoration: none;
transition:
background-color 160ms ease,
color 160ms ease;
}

.ci360-menu a:hover,
.ci360-menu a:focus-visible,
.ci360-menu .current-menu-item > a,
.ci360-menu .current-menu-ancestor > a {
background: var(--ci360-cream);
color: var(--ci360-green-700);
outline: none;
}

.ci360-menu > .menu-item-has-children > a::after {
content: "";
width: 7px;
height: 7px;
margin-left: 7px;
border-right: 2px solid currentColor;
border-bottom: 2px solid currentColor;
transform: translateY(-2px) rotate(45deg);
}

.ci360-menu .sub-menu {
position: absolute;
top: calc(100% + 8px);
left: 50%;
z-index: 120;
width: 245px;
margin: 0;
padding: 10px;
border: 1px solid var(--ci360-line);
border-radius: 14px;
background: var(--ci360-white);
box-shadow: var(--ci360-shadow);
list-style: none;
opacity: 0;
pointer-events: none;
transform: translate(-50%, 8px);
transition:
opacity 160ms ease,
transform 160ms ease;
}

.ci360-menu .sub-menu::before {
content: "";
position: absolute;
top: -10px;
left: 0;
right: 0;
height: 12px;
}

.ci360-menu li:hover > .sub-menu,
.ci360-menu li:focus-within > .sub-menu {
opacity: 1;
pointer-events: auto;
transform: translate(-50%, 0);
}

.ci360-menu .sub-menu a {
min-height: 40px;
padding: 9px 11px;
font-size: 13px;
}

.ci360-header-cta {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 10px 18px;
border-radius: 10px;
background: var(--ci360-lime);
color: var(--ci360-green-950);
font-size: 14px;
font-weight: 850;
text-decoration: none;
box-shadow: 0 10px 24px rgba(139, 197, 63, 0.28);
transition:
transform 160ms ease,
box-shadow 160ms ease;
}

.ci360-header-cta:hover,
.ci360-header-cta:focus-visible {
transform: translateY(-2px);
box-shadow: 0 14px 30px rgba(139, 197, 63, 0.35);
outline: none;
}

.ci360-menu-toggle {
display: none;
align-items: center;
gap: 9px;
padding: 8px 10px;
border: 1px solid var(--ci360-line);
border-radius: 9px;
background: var(--ci360-white);
color: var(--ci360-green-950);
font-weight: 800;
cursor: pointer;
}

.ci360-menu-toggle-lines {
display: grid;
gap: 4px;
}

.ci360-menu-toggle-lines span {
display: block;
width: 21px;
height: 2px;
border-radius: 5px;
background: currentColor;
transition:
transform 180ms ease,
opacity 180ms ease;
}

.ci360-menu-toggle[aria-expanded="true"] .ci360-menu-toggle-lines span:nth-child(1) {
transform: translateY(6px) rotate(45deg);
}

.ci360-menu-toggle[aria-expanded="true"] .ci360-menu-toggle-lines span:nth-child(2) {
opacity: 0;
}

.ci360-menu-toggle[aria-expanded="true"] .ci360-menu-toggle-lines span:nth-child(3) {
transform: translateY(-6px) rotate(-45deg);
}

.ci360-main {
min-height: 50vh;
}

.ci360-hero {
position: relative;
overflow: hidden;
background: var(--ci360-green-950);
color: var(--ci360-white);
}

.ci360-slides {
position: relative;
min-height: clamp(570px, 72vh, 760px);
}

.ci360-slide {
position: absolute;
inset: 0;
visibility: hidden;
opacity: 0;
pointer-events: none;
transition:
opacity 700ms ease,
visibility 700ms ease;
}

.ci360-slide.is-active {
position: relative;
visibility: visible;
opacity: 1;
pointer-events: auto;
}

.ci360-slide-image {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1.025);
transition: transform 7s ease;
}

.ci360-slide.is-active .ci360-slide-image {
transform: scale(1);
}

.ci360-slide-shade {
position: absolute;
inset: 0;
background:
linear-gradient(
90deg,
rgba(4, 37, 24, 0.92) 0%,
rgba(4, 37, 24, 0.78) 37%,
rgba(4, 37, 24, 0.34) 68%,
rgba(4, 37, 24, 0.2) 100%
),
linear-gradient(
0deg,
rgba(4, 37, 24, 0.48) 0%,
transparent 50%
);
}

.ci360-slide-inner {
position: relative;
z-index: 2;
display: flex;
align-items: center;
min-height: clamp(570px, 72vh, 760px);
padding-top: 72px;
padding-bottom: 110px;
}

.ci360-slide-content {
width: min(720px, 67%);
}

.ci360-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0 0 18px;
color: var(--ci360-lime-soft);
font-size: 13px;
font-weight: 850;
letter-spacing: 0.15em;
line-height: 1.3;
text-transform: uppercase;
}

.ci360-eyebrow::before {
content: "";
width: 38px;
height: 3px;
border-radius: 10px;
background: var(--ci360-lime);
}

.ci360-slide h1,
.ci360-slide h2 {
max-width: 780px;
margin: 0;
color: var(--ci360-white);
font-size: clamp(42px, 5.4vw, 76px);
font-weight: 850;
letter-spacing: -0.045em;
line-height: 0.99;
text-wrap: balance;
}

.ci360-slide-text {
max-width: 680px;
margin: 25px 0 0;
color: rgba(255, 255, 255, 0.9);
font-size: clamp(17px, 1.8vw, 21px);
line-height: 1.55;
}

.ci360-hero-actions {
display: flex;
flex-wrap: wrap;
gap: 13px;
margin-top: 32px;
}

.ci360-button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 52px;
padding: 12px 22px;
border: 2px solid transparent;
border-radius: 10px;
font-size: 15px;
font-weight: 850;
line-height: 1.2;
text-align: center;
text-decoration: none;
transition:
transform 160ms ease,
background-color 160ms ease,
border-color 160ms ease,
color 160ms ease;
}

.ci360-button:hover,
.ci360-button:focus-visible {
transform: translateY(-2px);
outline: none;
}

.ci360-button-primary {
background: var(--ci360-lime);
color: var(--ci360-green-950);
}

.ci360-button-primary:hover,
.ci360-button-primary:focus-visible {
background: var(--ci360-white);
}

.ci360-button-secondary {
border-color: rgba(255, 255, 255, 0.72);
background: rgba(6, 59, 40, 0.28);
color: var(--ci360-white);
backdrop-filter: blur(8px);
}

.ci360-button-secondary:hover,
.ci360-button-secondary:focus-visible {
border-color: var(--ci360-white);
background: var(--ci360-white);
color: var(--ci360-green-950);
}

.ci360-hero-controls {
position: absolute;
right: 0;
bottom: 31px;
left: 0;
z-index: 5;
}

.ci360-hero-controls-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.ci360-slider-arrows {
display: flex;
gap: 9px;
}

.ci360-slider-arrow {
display: inline-flex;
align-items: center;
justify-content: center;
width: 46px;
height: 46px;
border: 1px solid rgba(255, 255, 255, 0.48);
border-radius: 50%;
background: rgba(6, 59, 40, 0.44);
color: var(--ci360-white);
font-size: 21px;
cursor: pointer;
backdrop-filter: blur(8px);
transition:
background-color 160ms ease,
border-color 160ms ease,
transform 160ms ease;
}

.ci360-slider-arrow:hover,
.ci360-slider-arrow:focus-visible {
border-color: var(--ci360-white);
background: var(--ci360-white);
color: var(--ci360-green-950);
transform: translateY(-2px);
outline: none;
}

.ci360-slider-dots {
display: flex;
align-items: center;
gap: 9px;
}

.ci360-slider-dot {
width: 11px;
height: 11px;
padding: 0;
border: 2px solid rgba(255, 255, 255, 0.78);
border-radius: 50%;
background: transparent;
cursor: pointer;
transition:
width 180ms ease,
border-radius 180ms ease,
background-color 180ms ease;
}

.ci360-slider-dot.is-active {
width: 32px;
border-radius: 20px;
background: var(--ci360-lime);
border-color: var(--ci360-lime);
}

.ci360-slider-dot:focus-visible {
outline: 3px solid rgba(255, 255, 255, 0.7);
outline-offset: 3px;
}

.ci360-trust-strip {
position: relative;
z-index: 10;
background: var(--ci360-white);
border-bottom: 1px solid var(--ci360-line);
box-shadow: 0 12px 36px rgba(6, 59, 40, 0.06);
}

.ci360-trust-grid {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ci360-trust-grid article {
position: relative;
min-height: 126px;
padding: 25px 22px;
}

.ci360-trust-grid article + article::before {
content: "";
position: absolute;
top: 25px;
bottom: 25px;
left: 0;
width: 1px;
background: var(--ci360-line);
}

.ci360-trust-grid strong,
.ci360-trust-grid span {
display: block;
}

.ci360-trust-grid strong {
color: var(--ci360-green-800);
font-size: 16px;
font-weight: 850;
line-height: 1.3;
}

.ci360-trust-grid span {
margin-top: 6px;
color: var(--ci360-muted);
font-size: 13px;
line-height: 1.45;
}

.ci360-page-content,
.ci360-standard-page {
padding: 80px 0;
}

.ci360-prose {
max-width: 900px;
}

.ci360-prose h1,
.ci360-prose h2,
.ci360-prose h3 {
color: var(--ci360-green-950);
line-height: 1.15;
}

.ci360-site-footer {
background: var(--ci360-green-950);
color: rgba(255, 255, 255, 0.82);
}

.ci360-footer-main {
padding: 70px 0 55px;
}

.ci360-footer-grid {
display: grid;
grid-template-columns: 1.55fr 0.8fr 0.9fr 1fr;
gap: 54px;
}

.ci360-footer-logo {
width: auto;
max-width: 210px;
max-height: 90px;
margin-bottom: 21px;
object-fit: contain;
background: var(--ci360-white);
border-radius: 10px;
padding: 8px;
}

.ci360-footer-about > p {
max-width: 440px;
margin: 0;
}

.ci360-footer-grid h2 {
margin: 0 0 20px;
color: var(--ci360-white);
font-size: 17px;
font-weight: 850;
}

.ci360-footer-grid ul {
margin: 0;
padding: 0;
list-style: none;
}

.ci360-footer-grid li + li {
margin-top: 9px;
}

.ci360-footer-grid a {
color: rgba(255, 255, 255, 0.82);
text-decoration: none;
}

.ci360-footer-grid a:hover,
.ci360-footer-grid a:focus-visible {
color: var(--ci360-lime);
text-decoration: underline;
}

.ci360-footer-grid address {
font-style: normal;
}

.ci360-footer-grid address p {
margin: 0 0 10px;
}

.ci360-nests {
display: grid;
gap: 3px;
margin-top: 23px !important;
padding-top: 18px;
border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ci360-nests strong {
color: var(--ci360-lime);
font-size: 15px;
letter-spacing: 0.08em;
}

.ci360-nests span {
font-size: 13px;
}

.ci360-footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.13);
background: rgba(0, 0, 0, 0.12);
font-size: 13px;
}

.ci360-footer-bottom-inner {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 68px;
gap: 24px;
}

.ci360-footer-bottom p {
margin: 0;
}

.ci360-footer-bottom a {
color: rgba(255, 255, 255, 0.78);
text-decoration: none;
}

.ci360-footer-bottom a:hover,
.ci360-footer-bottom a:focus-visible {
color: var(--ci360-lime);
text-decoration: underline;
}

@media (max-width: 1180px) {
.ci360-header-inner {
gap: 14px;
}

.ci360-menu a {
padding-inline: 7px;
font-size: 13px;
}

.ci360-header-cta {
padding-inline: 13px;
}

.ci360-footer-grid {
grid-template-columns: 1.4fr 1fr 1fr;
}

.ci360-footer-about {
grid-column: 1 / -1;
}
}

@media (max-width: 1020px) {
:root {
--ci360-header-height: 78px;
}

.ci360-topbar {
display: none;
}

.ci360-header-inner {
position: relative;
}

.ci360-brand {
margin-right: auto;
}

.ci360-brand-logo,
.custom-logo {
max-width: 176px;
max-height: 62px;
}

.ci360-menu-toggle {
display: inline-flex;
order: 2;
}

.ci360-header-cta {
order: 1;
}

.ci360-primary-navigation {
position: fixed;
top: var(--ci360-header-height);
right: 0;
bottom: 0;
z-index: 200;
width: min(390px, 92vw);
margin: 0;
padding: 20px;
overflow-y: auto;
background: var(--ci360-white);
box-shadow: -20px 20px 55px rgba(6, 59, 40, 0.22);
visibility: hidden;
opacity: 0;
transform: translateX(105%);
transition:
transform 220ms ease,
opacity 220ms ease,
visibility 220ms ease;
}

.ci360-primary-navigation.is-open {
visibility: visible;
opacity: 1;
transform: translateX(0);
}

.ci360-menu {
display: block;
}

.ci360-menu > li {
border-bottom: 1px solid var(--ci360-line);
}

.ci360-menu a {
justify-content: space-between;
min-height: 48px;
padding: 11px 5px;
font-size: 15px;
}

.ci360-menu .sub-menu {
position: static;
width: auto;
margin: 0 0 10px 13px;
padding: 0 0 0 13px;
border: 0;
border-left: 2px solid var(--ci360-lime);
border-radius: 0;
box-shadow: none;
opacity: 1;
pointer-events: auto;
transform: none;
}

.ci360-menu .sub-menu a {
min-height: 40px;
font-size: 13px;
}

.ci360-menu li:hover > .sub-menu,
.ci360-menu li:focus-within > .sub-menu {
transform: none;
}

.ci360-slide-content {
width: min(760px, 79%);
}

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

.ci360-trust-grid article:nth-child(4),
.ci360-trust-grid article:nth-child(5) {
border-top: 1px solid var(--ci360-line);
}
}

@media (max-width: 760px) {
.ci360-shell {
width: min(calc(100% - 28px), var(--ci360-shell));
}

.ci360-header-cta {
display: none;
}

.ci360-slide-shade {
background:
linear-gradient(
90deg,
rgba(4, 37, 24, 0.9) 0%,
rgba(4, 37, 24, 0.68) 70%,
rgba(4, 37, 24, 0.48) 100%
),
linear-gradient(
0deg,
rgba(4, 37, 24, 0.66) 0%,
transparent 65%
);
}

.ci360-slides,
.ci360-slide-inner {
min-height: 670px;
}

.ci360-slide-inner {
align-items: flex-end;
padding-top: 90px;
padding-bottom: 125px;
}

.ci360-slide-content {
width: 100%;
}

.ci360-slide h1,
.ci360-slide h2 {
font-size: clamp(39px, 12vw, 58px);
}

.ci360-slide-text {
font-size: 17px;
}

.ci360-hero-actions {
display: grid;
grid-template-columns: 1fr;
width: min(100%, 340px);
}

.ci360-button {
width: 100%;
}

.ci360-trust-grid {
grid-template-columns: 1fr;
}

.ci360-trust-grid article {
min-height: 0;
padding: 20px 4px;
}

.ci360-trust-grid article + article::before {
top: 0;
right: 0;
bottom: auto;
width: auto;
height: 1px;
}

.ci360-trust-grid article:nth-child(4),
.ci360-trust-grid article:nth-child(5) {
border-top: 0;
}

.ci360-footer-grid {
grid-template-columns: 1fr 1fr;
gap: 38px 28px;
}

.ci360-footer-about {
grid-column: 1 / -1;
}

.ci360-footer-bottom-inner {
align-items: flex-start;
flex-direction: column;
justify-content: center;
padding-block: 18px;
}
}

@media (max-width: 520px) {
.ci360-brand-logo,
.custom-logo {
max-width: 155px;
}

.ci360-menu-toggle-label {
display: none;
}

.ci360-slides,
.ci360-slide-inner {
min-height: 690px;
}

.ci360-slider-arrows {
order: 2;
}

.ci360-slider-dots {
order: 1;
}

.ci360-footer-grid {
grid-template-columns: 1fr;
}

.ci360-footer-about {
grid-column: auto;
}
}

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

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

.ci360-slide-image {
transform: none !important;
}
}

/* =========================================================

/* =========================================================
   CI360 CHA MAMA CARD V2
   Contained image card and bright institutional surfaces
   ========================================================= */

.ci360-cha-feature {
padding: clamp(54px, 6vw, 78px) 0;
background:
radial-gradient(
circle at 8% 20%,
rgba(140, 198, 63, 0.13),
transparent 28rem
),
linear-gradient(
180deg,
#f8fbf5 0%,
#eef7e6 100%
);
}

.ci360-cha-spotlight {
display: grid;
grid-template-columns:
minmax(0, 1.16fr)
minmax(300px, 0.84fr);
gap: clamp(24px, 4vw, 42px);
align-items: center;
width: 100%;
margin-inline: auto;
padding: clamp(24px, 3vw, 34px);
background: #ffffff;
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 28px;
box-shadow: 0 22px 58px rgba(15, 79, 53, 0.1);
}

.ci360-cha-copy {
padding: 4px 0 4px clamp(2px, 1vw, 10px);
}

.ci360-cha-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0 0 13px;
color: #5d9f28;
font-size: 0.74rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.ci360-cha-eyebrow::before {
width: 32px;
height: 3px;
content: "";
background: #8cc63f;
border-radius: 999px;
}

.ci360-cha-copy h2 {
max-width: 610px;
margin: 0;
color: #173c31;
font-size: clamp(2rem, 3vw, 2.85rem);
line-height: 1.08;
letter-spacing: -0.035em;
}

.ci360-cha-intro {
max-width: 660px;
margin: 17px 0 0;
color: #52675d;
font-size: clamp(0.98rem, 1.25vw, 1.06rem);
line-height: 1.7;
}

.ci360-cha-benefits {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
margin-top: 22px;
}

.ci360-cha-benefit {
min-width: 0;
padding: 14px;
background:
linear-gradient(
145deg,
#fbfdf9 0%,
#f1f8eb 100%
);
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 16px;
}

.ci360-cha-benefit span {
display: grid;
width: 32px;
height: 32px;
margin-bottom: 11px;
place-items: center;
color: #ffffff;
background:
linear-gradient(
145deg,
#68a92f,
#0f4f35
);
border-radius: 10px;
font-size: 0.68rem;
font-weight: 900;
}

.ci360-cha-benefit h3 {
margin: 0;
color: #173c31;
font-size: 0.9rem;
line-height: 1.3;
}

.ci360-cha-benefit p {
margin: 6px 0 0;
color: #63736b;
font-size: 0.77rem;
line-height: 1.48;
}

.ci360-cha-actions {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 14px 22px;
margin-top: 24px;
}

.ci360-cha-actions .ci360-button {
width: auto;
min-width: 166px;
min-height: 46px;
padding: 11px 19px;
}

.ci360-cha-text-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: #0f6844;
font-size: 0.88rem;
font-weight: 850;
line-height: 1.3;
text-decoration: none;
}

.ci360-cha-text-link span {
font-size: 1.2rem;
line-height: 1;
transition: transform 180ms ease;
}

.ci360-cha-text-link:hover,
.ci360-cha-text-link:focus-visible {
color: #0f4f35;
text-decoration: underline;
text-underline-offset: 4px;
}

.ci360-cha-text-link:hover span,
.ci360-cha-text-link:focus-visible span {
transform: translateX(4px);
}

.ci360-cha-visual {
display: flex;
align-items: center;
justify-content: center;
}

.ci360-cha-image-card {
width: min(380px, 100%);
margin: 0;
padding: 12px;
background:
linear-gradient(
145deg,
#f5faef 0%,
#e8f3dd 100%
);
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 22px;
box-shadow: 0 15px 36px rgba(15, 79, 53, 0.1);
}

.ci360-cha-image-card img {
display: block;
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
object-position: center;
border-radius: 16px;
}

.ci360-cha-image-card figcaption {
padding: 14px 7px 5px;
}

.ci360-cha-image-card figcaption span {
display: block;
color: #68a92f;
font-size: 0.7rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.13em;
text-transform: uppercase;
}

.ci360-cha-image-card figcaption p {
margin: 6px 0 0;
color: #29483a;
font-size: 0.88rem;
font-weight: 750;
line-height: 1.45;
}

@media (max-width: 940px) {
.ci360-cha-spotlight {
grid-template-columns: 1fr;
width: min(760px, 100%);
}

.ci360-cha-copy {
padding: 4px;
}

.ci360-cha-visual {
justify-content: flex-start;
}

.ci360-cha-image-card {
width: min(430px, 100%);
}
}

@media (max-width: 680px) {
.ci360-cha-feature {
padding: 44px 0 52px;
}

.ci360-cha-spotlight {
gap: 26px;
padding: 20px;
border-radius: 22px;
}

.ci360-cha-copy h2 {
font-size: clamp(1.78rem, 8vw, 2.25rem);
}

.ci360-cha-benefits {
grid-template-columns: 1fr;
}

.ci360-cha-benefit {
display: grid;
grid-template-columns: 34px minmax(0, 1fr);
grid-template-areas:
"number title"
"number text";
column-gap: 11px;
padding: 12px;
}

.ci360-cha-benefit span {
grid-area: number;
margin: 0;
}

.ci360-cha-benefit h3 {
grid-area: title;
align-self: end;
}

.ci360-cha-benefit p {
grid-area: text;
margin-top: 3px;
}

.ci360-cha-actions {
align-items: stretch;
flex-direction: column;
}

.ci360-cha-actions .ci360-button,
.ci360-cha-text-link {
width: 100%;
justify-content: center;
}

.ci360-cha-image-card {
width: 100%;
border-radius: 19px;
}

.ci360-cha-image-card img {
border-radius: 14px;
}
}

@media (prefers-reduced-motion: reduce) {
.ci360-cha-text-link span {
transition: none;
}
}

/* =========================================================
   CI360 WHO WE ARE NESTS HOME SECTION
   ========================================================= */

.ci360-about-home {
padding: clamp(22px, 3vw, 38px) 0 clamp(58px, 7vw, 88px);
background:
linear-gradient(
180deg,
#eef7e6 0%,
#f8fbf5 100%
);
}

.ci360-about-home-card {
display: grid;
grid-template-columns:
minmax(310px, 0.82fr)
minmax(0, 1.18fr);
gap: clamp(28px, 4vw, 48px);
align-items: start;
width: 100%;
padding: clamp(26px, 3.5vw, 40px);
background: #ffffff;
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 28px;
box-shadow: 0 22px 58px rgba(15, 79, 53, 0.09);
}

.ci360-about-home-visual {
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: flex-start;
}

.ci360-about-home-visual .ci360-about-home-eyebrow {
margin-bottom: 14px;
}

.ci360-about-home-image-card {
width: min(430px, 100%);
margin: 0;
padding: 12px;
background:
linear-gradient(
145deg,
#f5faef 0%,
#e7f3da 100%
);
border: 1px solid rgba(15, 79, 53, 0.13);
border-radius: 22px;
box-shadow: 0 15px 36px rgba(15, 79, 53, 0.09);
}

.ci360-about-home-image-card img {
display: block;
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
object-position: center;
border-radius: 16px;
}

.ci360-about-home-image-card figcaption {
padding: 14px 7px 5px;
}

.ci360-about-home-image-card figcaption span {
display: block;
color: #68a92f;
font-size: 0.7rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.13em;
text-transform: uppercase;
}

.ci360-about-home-image-card figcaption p {
margin: 6px 0 0;
color: #29483a;
font-size: 0.86rem;
font-weight: 700;
line-height: 1.45;
}

.ci360-about-home-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0 0 12px;
color: #5d9f28;
font-size: 0.74rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.ci360-about-home-eyebrow::before {
width: 32px;
height: 3px;
content: "";
background: #8cc63f;
border-radius: 999px;
}

.ci360-about-home-copy h2 {
max-width: 680px;
margin: 0;
color: #173c31;
font-size: clamp(2rem, 3vw, 2.85rem);
line-height: 1.08;
letter-spacing: -0.035em;
}

.ci360-about-home-intro {
max-width: 720px;
margin: 17px 0 0;
color: #52675d;
font-size: clamp(0.96rem, 1.2vw, 1.04rem);
line-height: 1.68;
}

.ci360-nests-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
margin-top: 22px;
}

.ci360-nests-card {
display: grid;
grid-template-columns: 38px minmax(0, 1fr);
gap: 11px;
align-items: start;
padding: 13px;
background:
linear-gradient(
145deg,
#fcfefb 0%,
#f1f8eb 100%
);
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 15px;
}

.ci360-nests-card-sustain {
grid-column: 1 / -1;
}

.ci360-nests-card > span {
display: grid;
width: 38px;
height: 38px;
place-items: center;
color: #ffffff;
background:
linear-gradient(
145deg,
#6baa31,
#0f4f35
);
border-radius: 12px;
font-size: 0.78rem;
font-weight: 900;
}

.ci360-nests-card h3 {
margin: 1px 0 0;
color: #173c31;
font-size: 0.9rem;
line-height: 1.3;
}

.ci360-nests-card p {
margin: 4px 0 0;
color: #63736b;
font-size: 0.76rem;
line-height: 1.43;
}

.ci360-about-home-actions {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 14px 18px;
width: min(430px, 100%);
margin-top: 18px;
}

.ci360-about-home-actions .ci360-button {
width: auto;
min-width: 172px;
min-height: 46px;
padding: 11px 19px;
}

.ci360-about-home-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: #0f6844;
font-size: 0.87rem;
font-weight: 850;
line-height: 1.3;
text-decoration: none;
}

.ci360-about-home-link span {
font-size: 1.2rem;
transition: transform 180ms ease;
}

.ci360-about-home-link:hover,
.ci360-about-home-link:focus-visible {
color: #0f4f35;
text-decoration: underline;
text-underline-offset: 4px;
}

.ci360-about-home-link:hover span,
.ci360-about-home-link:focus-visible span {
transform: translateX(4px);
}

@media (max-width: 980px) {
.ci360-about-home-card {
grid-template-columns: 1fr;
}

.ci360-about-home-visual {
justify-content: flex-start;
}

.ci360-about-home-image-card {
width: min(470px, 100%);
}
}

@media (max-width: 680px) {
.ci360-about-home {
padding: 18px 0 52px;
}

.ci360-about-home-card {
gap: 28px;
padding: 20px;
border-radius: 22px;
}

.ci360-about-home-image-card {
width: 100%;
border-radius: 19px;
}

.ci360-about-home-image-card img {
border-radius: 14px;
}

.ci360-about-home-copy h2 {
font-size: clamp(1.78rem, 8vw, 2.25rem);
}

.ci360-nests-grid {
grid-template-columns: 1fr;
}

.ci360-nests-card-sustain {
grid-column: auto;
}

.ci360-about-home-actions {
align-items: stretch;
flex-direction: column;
}

.ci360-about-home-actions .ci360-button,
.ci360-about-home-link {
width: 100%;
justify-content: center;
}
}

@media (prefers-reduced-motion: reduce) {
.ci360-about-home-link span {
transition: none;
}
}

/* =========================================================
   CI360 PROGRAMME PATHWAYS HOME SECTION
   Five institutional programme-family cards
   ========================================================= */

.ci360-programmes-home {
padding: clamp(22px, 3vw, 38px) 0 clamp(62px, 7vw, 90px);
background:
linear-gradient(
180deg,
#f8fbf5 0%,
#eef7e6 100%
);
}

.ci360-programmes-home-panel {
width: 100%;
padding: clamp(28px, 3.5vw, 42px);
background: #ffffff;
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 28px;
box-shadow: 0 22px 58px rgba(15, 79, 53, 0.09);
}

.ci360-programmes-home-header {
display: grid;
grid-template-columns:
minmax(0, 1.1fr)
minmax(280px, 0.9fr);
gap: clamp(24px, 4vw, 48px);
align-items: end;
margin-bottom: 28px;
}

.ci360-programmes-home-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0 0 12px;
color: #5d9f28;
font-size: 0.74rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.ci360-programmes-home-eyebrow::before {
width: 32px;
height: 3px;
content: "";
background: #8cc63f;
border-radius: 999px;
}

.ci360-programmes-home-header h2 {
max-width: 760px;
margin: 0;
color: #173c31;
font-size: clamp(2rem, 3vw, 2.85rem);
line-height: 1.08;
letter-spacing: -0.035em;
}

.ci360-programmes-home-header > p {
max-width: 520px;
margin: 0;
color: #52675d;
font-size: 0.98rem;
line-height: 1.65;
}

.ci360-programmes-grid {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 16px;
}

.ci360-programme-card {
display: flex;
grid-column: span 2;
min-width: 0;
flex-direction: column;
padding: 11px;
background:
linear-gradient(
145deg,
#ffffff 0%,
#f7fbf3 100%
);
border: 1px solid rgba(15, 79, 53, 0.13);
border-radius: 22px;
box-shadow: 0 13px 30px rgba(15, 79, 53, 0.07);
}

.ci360-programme-card-wide {
grid-column: span 3;
}

.ci360-programme-media {
padding: 7px;
overflow: hidden;
background:
linear-gradient(
145deg,
#eef7e6,
#e2f0d5
);
border: 1px solid rgba(15, 79, 53, 0.1);
border-radius: 17px;
}

.ci360-programme-media img {
display: block;
width: 100%;
aspect-ratio: 16 / 9;
object-fit: cover;
object-position: center;
border-radius: 12px;
}

.ci360-programme-placeholder {
position: relative;
display: flex;
min-height: 0;
aspect-ratio: 16 / 9;
align-items: center;
justify-content: center;
flex-direction: column;
overflow: hidden;
color: #ffffff;
background:
linear-gradient(
135deg,
#0f4f35 0%,
#267248 62%,
#8cc63f 100%
);
border-radius: 12px;
isolation: isolate;
}

.ci360-programme-placeholder::before,
.ci360-programme-placeholder::after {
position: absolute;
content: "";
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 50%;
z-index: -1;
}

.ci360-programme-placeholder::before {
width: 180px;
height: 180px;
right: -64px;
top: -82px;
}

.ci360-programme-placeholder::after {
width: 120px;
height: 120px;
bottom: -58px;
left: -36px;
}

.ci360-programme-placeholder span {
font-size: clamp(2rem, 4vw, 3.3rem);
font-weight: 900;
line-height: 1;
letter-spacing: 0.05em;
}

.ci360-programme-placeholder small {
margin-top: 8px;
font-size: 0.72rem;
font-weight: 850;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.ci360-programme-card-body {
display: flex;
min-height: 0;
flex: 1;
flex-direction: column;
padding: 16px 6px 6px;
}

.ci360-programme-tag {
align-self: flex-start;
padding: 5px 9px;
color: #336d28;
background: #e9f5dd;
border-radius: 999px;
font-size: 0.66rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.ci360-programme-card h3 {
margin: 13px 0 0;
color: #173c31;
font-size: 1.06rem;
line-height: 1.3;
}

.ci360-programme-card-body > p {
margin: 9px 0 0;
color: #5d6d65;
font-size: 0.82rem;
line-height: 1.55;
}

.ci360-programme-card ul {
display: grid;
gap: 6px;
margin: 15px 0 18px;
padding: 0;
list-style: none;
}

.ci360-programme-card li {
position: relative;
padding-left: 16px;
color: #40584d;
font-size: 0.76rem;
line-height: 1.4;
}

.ci360-programme-card li::before {
position: absolute;
width: 6px;
height: 6px;
left: 0;
top: 0.48em;
content: "";
background: #8cc63f;
border-radius: 50%;
}

.ci360-programme-card-body > a {
display: inline-flex;
align-items: center;
align-self: flex-start;
gap: 8px;
margin-top: auto;
color: #0f6844;
font-size: 0.8rem;
font-weight: 900;
line-height: 1.3;
text-decoration: none;
}

.ci360-programme-card-body > a span {
font-size: 1.1rem;
transition: transform 180ms ease;
}

.ci360-programme-card-body > a:hover,
.ci360-programme-card-body > a:focus-visible {
color: #0f4f35;
text-decoration: underline;
text-underline-offset: 4px;
}

.ci360-programme-card-body > a:hover span,
.ci360-programme-card-body > a:focus-visible span {
transform: translateX(4px);
}

.ci360-programmes-home-actions {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 14px 22px;
margin-top: 28px;
}

.ci360-programmes-home-actions .ci360-button {
width: auto;
min-width: 188px;
min-height: 46px;
padding: 11px 19px;
}

.ci360-programmes-home-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: #0f6844;
font-size: 0.87rem;
font-weight: 850;
line-height: 1.3;
text-decoration: none;
}

.ci360-programmes-home-link span {
font-size: 1.2rem;
transition: transform 180ms ease;
}

.ci360-programmes-home-link:hover,
.ci360-programmes-home-link:focus-visible {
color: #0f4f35;
text-decoration: underline;
text-underline-offset: 4px;
}

.ci360-programmes-home-link:hover span,
.ci360-programmes-home-link:focus-visible span {
transform: translateX(4px);
}

@media (max-width: 1020px) {
.ci360-programmes-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ci360-programme-card,
.ci360-programme-card-wide {
grid-column: auto;
}

.ci360-programme-card:last-child {
grid-column: 1 / -1;
}
}

@media (max-width: 760px) {
.ci360-programmes-home-header {
grid-template-columns: 1fr;
align-items: start;
}

.ci360-programmes-home-header > p {
max-width: 700px;
}
}

@media (max-width: 680px) {
.ci360-programmes-home {
padding: 18px 0 52px;
}

.ci360-programmes-home-panel {
padding: 20px;
border-radius: 22px;
}

.ci360-programmes-home-header {
margin-bottom: 22px;
}

.ci360-programmes-home-header h2 {
font-size: clamp(1.78rem, 8vw, 2.25rem);
}

.ci360-programmes-grid {
grid-template-columns: 1fr;
}

.ci360-programme-card:last-child {
grid-column: auto;
}

.ci360-programme-card {
border-radius: 19px;
}

.ci360-programmes-home-actions {
align-items: stretch;
flex-direction: column;
}

.ci360-programmes-home-actions .ci360-button,
.ci360-programmes-home-link {
width: 100%;
justify-content: center;
}
}

@media (prefers-reduced-motion: reduce) {
.ci360-programme-card-body > a span,
.ci360-programmes-home-link span {
transition: none;
}
}

/* =========================================================
   CI360 TRANSFORMATION IN ACTION HOME SECTION
   Image, verified outcomes and institutional actions
   ========================================================= */

.ci360-transformation-home {
padding: clamp(22px, 3vw, 38px) 0 clamp(62px, 7vw, 90px);
background:
linear-gradient(
180deg,
#eef7e6 0%,
#f8fbf5 100%
);
}

.ci360-transformation-panel {
width: 100%;
padding: clamp(28px, 3.5vw, 42px);
background: #ffffff;
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 28px;
box-shadow: 0 22px 58px rgba(15, 79, 53, 0.09);
}

.ci360-transformation-grid {
display: grid;
grid-template-columns:
minmax(310px, 0.78fr)
minmax(0, 1.22fr);
gap: clamp(30px, 4vw, 52px);
align-items: start;
}

.ci360-transformation-visual {
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: flex-start;
}

.ci360-transformation-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0 0 14px;
color: #5d9f28;
font-size: 0.74rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.ci360-transformation-eyebrow::before {
width: 32px;
height: 3px;
content: "";
background: #8cc63f;
border-radius: 999px;
}

.ci360-transformation-image-card {
width: min(430px, 100%);
margin: 0;
padding: 11px;
background:
linear-gradient(
145deg,
#f5faef 0%,
#e7f3da 100%
);
border: 1px solid rgba(15, 79, 53, 0.13);
border-radius: 22px;
box-shadow: 0 15px 36px rgba(15, 79, 53, 0.09);
}

.ci360-transformation-image-card img {
display: block;
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
object-position: center;
border-radius: 16px;
}

.ci360-transformation-image-card figcaption {
padding: 14px 7px 5px;
}

.ci360-transformation-image-card figcaption span {
display: block;
color: #68a92f;
font-size: 0.7rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.13em;
text-transform: uppercase;
}

.ci360-transformation-image-card figcaption p {
margin: 6px 0 0;
color: #29483a;
font-size: 0.86rem;
font-weight: 700;
line-height: 1.45;
}

.ci360-transformation-actions {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 14px 18px;
width: min(430px, 100%);
margin-top: 18px;
}

.ci360-transformation-actions .ci360-button {
width: auto;
min-width: 166px;
min-height: 46px;
padding: 11px 19px;
}

.ci360-transformation-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: #0f6844;
font-size: 0.87rem;
font-weight: 850;
line-height: 1.3;
text-decoration: none;
}

.ci360-transformation-link span {
font-size: 1.2rem;
transition: transform 180ms ease;
}

.ci360-transformation-link:hover,
.ci360-transformation-link:focus-visible {
color: #0f4f35;
text-decoration: underline;
text-underline-offset: 4px;
}

.ci360-transformation-link:hover span,
.ci360-transformation-link:focus-visible span {
transform: translateX(4px);
}

.ci360-transformation-content {
min-width: 0;
padding-top: 27px;
}

.ci360-transformation-content h2 {
max-width: 760px;
margin: 0;
color: #173c31;
font-size: clamp(2rem, 3.1vw, 2.9rem);
line-height: 1.08;
letter-spacing: -0.035em;
}

.ci360-transformation-intro {
max-width: 760px;
margin: 17px 0 0;
color: #52675d;
font-size: 0.98rem;
line-height: 1.68;
}

.ci360-transformation-outcomes {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 11px;
margin-top: 24px;
}

.ci360-transformation-card {
display: grid;
grid-template-columns: 42px minmax(0, 1fr);
gap: 12px;
align-items: start;
padding: 15px;
background:
linear-gradient(
145deg,
#fcfefb 0%,
#f0f7ea 100%
);
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 16px;
}

.ci360-transformation-card > span {
display: grid;
width: 42px;
height: 42px;
place-items: center;
color: #ffffff;
background:
linear-gradient(
145deg,
#6baa31,
#0f4f35
);
border-radius: 13px;
font-size: 0.7rem;
font-weight: 900;
letter-spacing: 0.03em;
}

.ci360-transformation-card h3 {
margin: 1px 0 0;
color: #173c31;
font-size: 0.93rem;
line-height: 1.34;
}

.ci360-transformation-card p {
margin: 6px 0 0;
color: #607069;
font-size: 0.78rem;
line-height: 1.5;
}

@media (max-width: 980px) {
.ci360-transformation-grid {
grid-template-columns: 1fr;
}

.ci360-transformation-image-card,
.ci360-transformation-actions {
width: min(480px, 100%);
}

.ci360-transformation-content {
padding-top: 0;
}
}

@media (max-width: 680px) {
.ci360-transformation-home {
padding: 18px 0 52px;
}

.ci360-transformation-panel {
padding: 20px;
border-radius: 22px;
}

.ci360-transformation-content h2 {
font-size: clamp(1.78rem, 8vw, 2.25rem);
}

.ci360-transformation-image-card {
width: 100%;
border-radius: 19px;
}

.ci360-transformation-image-card img {
border-radius: 14px;
}

.ci360-transformation-outcomes {
grid-template-columns: 1fr;
}

.ci360-transformation-actions {
align-items: stretch;
flex-direction: column;
}

.ci360-transformation-actions .ci360-button,
.ci360-transformation-link {
width: 100%;
justify-content: center;
}
}

@media (prefers-reduced-motion: reduce) {
.ci360-transformation-link span {
transition: none;
}
}

/* =========================================================
   CI360 STORIES OF TRANSFORMATION HOME SECTION
   Featured portrait YouTube story with provisional profile
   ========================================================= */

.ci360-stories-home {
padding: clamp(22px, 3vw, 38px) 0 clamp(62px, 7vw, 90px);
background:
linear-gradient(
180deg,
#f8fbf5 0%,
#eef7e6 100%
);
}

.ci360-stories-home-panel {
width: 100%;
padding: clamp(28px, 3.5vw, 42px);
background: #ffffff;
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 28px;
box-shadow: 0 22px 58px rgba(15, 79, 53, 0.09);
}

.ci360-stories-home-grid {
display: grid;
grid-template-columns:
minmax(0, 1.2fr)
minmax(290px, 0.8fr);
gap: clamp(34px, 5vw, 64px);
align-items: center;
}

.ci360-stories-home-content {
min-width: 0;
}

.ci360-stories-home-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0 0 13px;
color: #5d9f28;
font-size: 0.74rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.ci360-stories-home-eyebrow::before {
width: 32px;
height: 3px;
content: "";
background: #8cc63f;
border-radius: 999px;
}

.ci360-stories-home-content h2 {
max-width: 730px;
margin: 0;
color: #173c31;
font-size: clamp(2rem, 3.25vw, 3rem);
line-height: 1.08;
letter-spacing: -0.035em;
}

.ci360-stories-home-intro {
max-width: 720px;
margin: 17px 0 0;
color: #52675d;
font-size: 0.98rem;
line-height: 1.68;
}

.ci360-stories-home-points {
display: grid;
gap: 10px;
max-width: 720px;
margin-top: 24px;
}

.ci360-stories-home-points > div {
display: grid;
grid-template-columns: 40px minmax(0, 1fr);
gap: 12px;
align-items: start;
padding: 13px 14px;
background:
linear-gradient(
145deg,
#fcfefb 0%,
#f0f7ea 100%
);
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 15px;
}

.ci360-stories-home-points > div > span {
display: grid;
width: 40px;
height: 40px;
place-items: center;
color: #ffffff;
background:
linear-gradient(
145deg,
#6baa31,
#0f4f35
);
border-radius: 12px;
font-size: 0.68rem;
font-weight: 900;
}

.ci360-stories-home-points p {
margin: 0;
color: #607069;
font-size: 0.8rem;
line-height: 1.5;
}

.ci360-stories-home-points strong {
display: block;
margin-bottom: 3px;
color: #173c31;
font-size: 0.87rem;
line-height: 1.35;
}

.ci360-stories-home-actions {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 14px 20px;
margin-top: 24px;
}

.ci360-stories-home-actions .ci360-button {
width: auto;
min-width: 176px;
min-height: 46px;
padding: 11px 19px;
}

.ci360-stories-home-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: #0f6844;
font-size: 0.87rem;
font-weight: 850;
line-height: 1.3;
text-decoration: none;
}

.ci360-stories-home-link span {
font-size: 1rem;
transition: transform 180ms ease;
}

.ci360-stories-home-link:hover,
.ci360-stories-home-link:focus-visible {
color: #0f4f35;
text-decoration: underline;
text-underline-offset: 4px;
}

.ci360-stories-home-link:hover span,
.ci360-stories-home-link:focus-visible span {
transform: translate(3px, -2px);
}

.ci360-stories-video-column {
display: flex;
justify-content: center;
}

.ci360-stories-video-card {
width: min(330px, 100%);
padding: 11px;
background:
linear-gradient(
145deg,
#f5faef 0%,
#e5f2d8 100%
);
border: 1px solid rgba(15, 79, 53, 0.14);
border-radius: 24px;
box-shadow: 0 17px 42px rgba(15, 79, 53, 0.1);
}

.ci360-stories-video-label {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 4px 6px 10px;
}

.ci360-stories-video-label span {
color: #347229;
font-size: 0.69rem;
font-weight: 900;
letter-spacing: 0.12em;
text-transform: uppercase;
}

.ci360-stories-video-label small {
color: #63736b;
font-size: 0.69rem;
font-weight: 750;
}

.ci360-stories-video-frame {
position: relative;
width: 100%;
aspect-ratio: 9 / 16;
overflow: hidden;
background: #173c31;
border-radius: 17px;
}

.ci360-stories-video-frame iframe {
position: absolute;
width: 100%;
height: 100%;
inset: 0;
border: 0;
}

.ci360-stories-video-caption {
padding: 14px 7px 5px;
}

.ci360-stories-video-caption span {
display: block;
color: #68a92f;
font-size: 0.69rem;
font-weight: 900;
letter-spacing: 0.12em;
text-transform: uppercase;
}

.ci360-stories-video-caption p {
margin: 6px 0 0;
color: #29483a;
font-size: 0.82rem;
font-weight: 700;
line-height: 1.48;
}

@media (max-width: 940px) {
.ci360-stories-home-grid {
grid-template-columns: 1fr;
align-items: start;
}

.ci360-stories-video-column {
justify-content: flex-start;
}

.ci360-stories-video-card {
width: min(340px, 100%);
}
}

@media (max-width: 680px) {
.ci360-stories-home {
padding: 18px 0 52px;
}

.ci360-stories-home-panel {
padding: 20px;
border-radius: 22px;
}

.ci360-stories-home-content h2 {
font-size: clamp(1.78rem, 8vw, 2.25rem);
}

.ci360-stories-home-actions {
align-items: stretch;
flex-direction: column;
}

.ci360-stories-home-actions .ci360-button,
.ci360-stories-home-link {
width: 100%;
justify-content: center;
}

.ci360-stories-video-column {
justify-content: center;
}

.ci360-stories-video-card {
width: min(310px, 100%);
border-radius: 20px;
}
}

@media (prefers-reduced-motion: reduce) {
.ci360-stories-home-link span {
transition: none;
}
}

/* =========================================================
   CI360 FEATURED MEDIA COVERAGE HOME SECTION
   One independent institutional media feature
   ========================================================= */

.ci360-media-home {
padding: clamp(22px, 3vw, 38px) 0 clamp(62px, 7vw, 90px);
background:
linear-gradient(
180deg,
#eef7e6 0%,
#f8fbf5 100%
);
}

.ci360-media-home-panel {
width: 100%;
padding: clamp(28px, 3.5vw, 42px);
background: #ffffff;
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 28px;
box-shadow: 0 22px 58px rgba(15, 79, 53, 0.09);
}

.ci360-media-home-grid {
display: grid;
grid-template-columns:
minmax(310px, 0.82fr)
minmax(0, 1.18fr);
gap: clamp(32px, 4.5vw, 56px);
align-items: center;
}

.ci360-media-home-visual {
display: flex;
align-items: flex-start;
flex-direction: column;
}

.ci360-media-home-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0 0 14px;
color: #5d9f28;
font-size: 0.74rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.ci360-media-home-eyebrow::before {
width: 32px;
height: 3px;
content: "";
background: #8cc63f;
border-radius: 999px;
}

.ci360-media-home-image-card {
width: min(450px, 100%);
margin: 0;
padding: 11px;
background:
linear-gradient(
145deg,
#f5faef 0%,
#e7f3da 100%
);
border: 1px solid rgba(15, 79, 53, 0.13);
border-radius: 22px;
box-shadow: 0 15px 36px rgba(15, 79, 53, 0.09);
}

.ci360-media-home-image-card img {
display: block;
width: 100%;
aspect-ratio: 16 / 10;
object-fit: cover;
object-position: center;
border-radius: 16px;
}

.ci360-media-home-image-card figcaption {
padding: 14px 7px 5px;
}

.ci360-media-home-image-card figcaption span {
display: block;
color: #68a92f;
font-size: 0.69rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.13em;
text-transform: uppercase;
}

.ci360-media-home-image-card figcaption p {
margin: 6px 0 0;
color: #29483a;
font-size: 0.85rem;
font-weight: 700;
line-height: 1.48;
}

.ci360-media-home-content {
min-width: 0;
}

.ci360-media-home-meta {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 9px 15px;
margin-bottom: 14px;
}

.ci360-media-home-meta span {
display: inline-flex;
align-items: center;
padding: 6px 10px;
color: #346d2a;
background: #e9f5dd;
border-radius: 999px;
font-size: 0.69rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.ci360-media-home-meta time {
color: #697870;
font-size: 0.78rem;
font-weight: 750;
}

.ci360-media-home-content h2 {
max-width: 770px;
margin: 0;
color: #173c31;
font-size: clamp(2rem, 3.2vw, 2.95rem);
line-height: 1.08;
letter-spacing: -0.035em;
}

.ci360-media-home-intro {
max-width: 760px;
margin: 17px 0 0;
color: #52675d;
font-size: 0.98rem;
line-height: 1.68;
}

.ci360-media-home-themes {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
margin-top: 23px;
}

.ci360-media-home-themes article {
display: grid;
grid-template-columns: 38px minmax(0, 1fr);
gap: 10px;
align-items: start;
padding: 13px;
background:
linear-gradient(
145deg,
#fcfefb 0%,
#f0f7ea 100%
);
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 15px;
}

.ci360-media-home-themes article > span {
display: grid;
width: 38px;
height: 38px;
place-items: center;
color: #ffffff;
background:
linear-gradient(
145deg,
#6baa31,
#0f4f35
);
border-radius: 12px;
font-size: 0.67rem;
font-weight: 900;
}

.ci360-media-home-themes h3 {
margin: 1px 0 0;
color: #173c31;
font-size: 0.84rem;
line-height: 1.35;
}

.ci360-media-home-themes p {
margin: 5px 0 0;
color: #607069;
font-size: 0.74rem;
line-height: 1.48;
}

.ci360-media-home-actions {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 14px 20px;
margin-top: 24px;
}

.ci360-media-home-actions .ci360-button {
width: auto;
min-width: 196px;
min-height: 46px;
padding: 11px 19px;
}

.ci360-media-home-actions .ci360-button span {
margin-left: 5px;
font-size: 0.95rem;
}

.ci360-media-home-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: #0f6844;
font-size: 0.87rem;
font-weight: 850;
line-height: 1.3;
text-decoration: none;
}

.ci360-media-home-link span {
font-size: 1.2rem;
transition: transform 180ms ease;
}

.ci360-media-home-link:hover,
.ci360-media-home-link:focus-visible {
color: #0f4f35;
text-decoration: underline;
text-underline-offset: 4px;
}

.ci360-media-home-link:hover span,
.ci360-media-home-link:focus-visible span {
transform: translateX(4px);
}

@media (max-width: 1060px) {
.ci360-media-home-themes {
grid-template-columns: 1fr;
}
}

@media (max-width: 940px) {
.ci360-media-home-grid {
grid-template-columns: 1fr;
align-items: start;
}

.ci360-media-home-image-card {
width: min(500px, 100%);
}
}

@media (max-width: 680px) {
.ci360-media-home {
padding: 18px 0 52px;
}

.ci360-media-home-panel {
padding: 20px;
border-radius: 22px;
}

.ci360-media-home-content h2 {
font-size: clamp(1.78rem, 8vw, 2.25rem);
}

.ci360-media-home-image-card {
width: 100%;
border-radius: 19px;
}

.ci360-media-home-image-card img {
border-radius: 14px;
}

.ci360-media-home-actions {
align-items: stretch;
flex-direction: column;
}

.ci360-media-home-actions .ci360-button,
.ci360-media-home-link {
width: 100%;
justify-content: center;
}
}

@media (prefers-reduced-motion: reduce) {
.ci360-media-home-link span {
transition: none;
}
}

/* =========================================================
   CI360 PARTNERS SUPPORT AND FINAL CTA
   Logo-free partnership and support area
   ========================================================= */

.ci360-partners-home {
padding: clamp(22px, 3vw, 38px) 0 clamp(66px, 7vw, 96px);
background:
linear-gradient(
180deg,
#f8fbf5 0%,
#edf6e5 100%
);
}

.ci360-partners-panel {
width: 100%;
padding: clamp(28px, 3.5vw, 42px);
background: #ffffff;
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 28px;
box-shadow: 0 22px 58px rgba(15, 79, 53, 0.09);
}

.ci360-partners-heading {
display: grid;
grid-template-columns:
minmax(0, 0.95fr)
minmax(0, 1.05fr);
gap: clamp(28px, 4vw, 52px);
align-items: end;
}

.ci360-partners-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0 0 13px;
color: #5d9f28;
font-size: 0.74rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.ci360-partners-eyebrow::before {
width: 32px;
height: 3px;
content: "";
background: #8cc63f;
border-radius: 999px;
}

.ci360-partners-heading h2 {
max-width: 690px;
margin: 0;
color: #173c31;
font-size: clamp(2rem, 3.25vw, 3rem);
line-height: 1.08;
letter-spacing: -0.035em;
}

.ci360-partners-intro {
max-width: 720px;
margin: 0;
color: #52675d;
font-size: 0.98rem;
line-height: 1.72;
}

.ci360-partners-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
margin-top: 30px;
}

.ci360-partner-card {
display: grid;
grid-template-columns: 46px minmax(0, 1fr);
gap: 14px;
align-items: start;
padding: 20px;
background:
linear-gradient(
145deg,
#fcfefb 0%,
#eff7e8 100%
);
border: 1px solid rgba(15, 79, 53, 0.12);
border-radius: 19px;
transition:
transform 180ms ease,
box-shadow 180ms ease,
border-color 180ms ease;
}

.ci360-partner-card:hover {
transform: translateY(-3px);
border-color: rgba(93, 159, 40, 0.3);
box-shadow: 0 15px 34px rgba(15, 79, 53, 0.09);
}

.ci360-partner-number {
display: grid;
width: 46px;
height: 46px;
place-items: center;
color: #ffffff;
background:
linear-gradient(
145deg,
#75b938,
#0f4f35
);
border-radius: 14px;
font-size: 0.72rem;
font-weight: 900;
}

.ci360-partner-label {
margin: 1px 0 7px;
color: #68a92f;
font-size: 0.68rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.12em;
text-transform: uppercase;
}

.ci360-partner-card h3 {
margin: 0;
color: #173c31;
font-size: 1rem;
line-height: 1.38;
}

.ci360-partner-card p:not(.ci360-partner-label) {
margin: 10px 0 0;
color: #607069;
font-size: 0.81rem;
line-height: 1.58;
}

.ci360-partner-card a {
display: inline-flex;
align-items: center;
gap: 7px;
margin-top: 15px;
color: #0f6844;
font-size: 0.8rem;
font-weight: 850;
line-height: 1.3;
text-decoration: none;
}

.ci360-partner-card a span {
font-size: 1rem;
transition: transform 180ms ease;
}

.ci360-partner-card a:hover,
.ci360-partner-card a:focus-visible {
color: #0f4f35;
text-decoration: underline;
text-underline-offset: 4px;
}

.ci360-partner-card a:hover span,
.ci360-partner-card a:focus-visible span {
transform: translateX(4px);
}

.ci360-final-cta {
display: grid;
grid-template-columns:
minmax(0, 1.25fr)
minmax(250px, 0.75fr);
gap: clamp(28px, 4vw, 52px);
align-items: center;
margin-top: 18px;
padding: clamp(28px, 4vw, 46px);
overflow: hidden;
color: #ffffff;
background:
radial-gradient(
circle at top right,
rgba(156, 216, 79, 0.27),
transparent 35%
),
linear-gradient(
135deg,
#0e4a33 0%,
#176543 100%
);
border-radius: 24px;
box-shadow: 0 20px 46px rgba(15, 79, 53, 0.18);
}

.ci360-final-cta-eyebrow {
margin: 0 0 11px;
color: #b8e77f;
font-size: 0.71rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.ci360-final-cta h3 {
max-width: 790px;
margin: 0;
color: #ffffff;
font-size: clamp(1.8rem, 3vw, 2.7rem);
line-height: 1.1;
letter-spacing: -0.03em;
}

.ci360-final-cta-content > p:not(.ci360-final-cta-eyebrow) {
max-width: 760px;
margin: 15px 0 0;
color: rgba(255, 255, 255, 0.82);
font-size: 0.94rem;
line-height: 1.66;
}

.ci360-final-cta-values {
display: flex;
flex-wrap: wrap;
gap: 7px;
margin-top: 20px;
}

.ci360-final-cta-values span {
display: inline-flex;
align-items: center;
min-height: 29px;
padding: 5px 10px;
color: #efffe2;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.16);
border-radius: 999px;
font-size: 0.68rem;
font-weight: 800;
}

.ci360-final-cta-actions {
display: grid;
gap: 10px;
}

.ci360-final-cta-primary,
.ci360-final-cta-secondary,
.ci360-final-cta-contact {
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
min-height: 47px;
padding: 11px 17px;
border-radius: 13px;
font-size: 0.82rem;
font-weight: 900;
line-height: 1.3;
text-align: center;
text-decoration: none;
transition:
transform 180ms ease,
background 180ms ease,
border-color 180ms ease;
}

.ci360-final-cta-primary {
color: #173c31;
background: #a7dc62;
border: 1px solid #a7dc62;
}

.ci360-final-cta-primary:hover,
.ci360-final-cta-primary:focus-visible {
color: #173c31;
background: #b9e87c;
transform: translateY(-2px);
}

.ci360-final-cta-secondary {
color: #ffffff;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.34);
}

.ci360-final-cta-secondary:hover,
.ci360-final-cta-secondary:focus-visible {
color: #ffffff;
background: rgba(255, 255, 255, 0.16);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
}

.ci360-final-cta-contact {
gap: 8px;
min-height: 38px;
padding: 8px 12px;
color: #dff6c5;
background: transparent;
border: 0;
}

.ci360-final-cta-contact:hover,
.ci360-final-cta-contact:focus-visible {
color: #ffffff;
text-decoration: underline;
text-underline-offset: 4px;
}

@media (max-width: 1060px) {
.ci360-partners-grid {
grid-template-columns: 1fr;
}

.ci360-partner-card {
grid-template-columns: 46px minmax(0, 1fr);
}
}

@media (max-width: 900px) {
.ci360-partners-heading,
.ci360-final-cta {
grid-template-columns: 1fr;
}

.ci360-final-cta-actions {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ci360-final-cta-contact {
grid-column: 1 / -1;
}
}

@media (max-width: 680px) {
.ci360-partners-home {
padding: 18px 0 54px;
}

.ci360-partners-panel {
padding: 20px;
border-radius: 22px;
}

.ci360-partners-heading h2 {
font-size: clamp(1.78rem, 8vw, 2.25rem);
}

.ci360-partner-card {
grid-template-columns: 40px minmax(0, 1fr);
padding: 16px;
}

.ci360-partner-number {
width: 40px;
height: 40px;
border-radius: 12px;
}

.ci360-final-cta {
padding: 25px 20px;
border-radius: 20px;
}

.ci360-final-cta h3 {
font-size: clamp(1.65rem, 7.5vw, 2.1rem);
}

.ci360-final-cta-actions {
grid-template-columns: 1fr;
}

.ci360-final-cta-contact {
grid-column: auto;
}
}

@media (prefers-reduced-motion: reduce) {
.ci360-partner-card,
.ci360-partner-card a span,
.ci360-final-cta-primary,
.ci360-final-cta-secondary {
transition: none;
}
}


/* CI360 ABOUT HERO STYLES START */
/* =========================================================
   CI360 ABOUT HERO
   ========================================================= */

.ci360-about-page {
	overflow: clip;
}

.ci360-about-hero {
	position: relative;
	isolation: isolate;
	padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 7rem);
	overflow: hidden;
	color: #ffffff;
	background:
		radial-gradient(
			circle at 82% 18%,
			rgba(239, 185, 70, 0.22),
			transparent 30%
		),
		linear-gradient(
			135deg,
			#123f35 0%,
			#17614f 55%,
			#0d342c 100%
		);
}

.ci360-about-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.14;
	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.2) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.2) 1px,
			transparent 1px
		);
	background-size: 44px 44px;
	mask-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.72),
		transparent 88%
	);
}

.ci360-about-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	gap: clamp(2.5rem, 6vw, 5.5rem);
	align-items: center;
}

.ci360-about-hero-content {
	max-width: 760px;
}

.ci360-about-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 1.2rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 1.3;
	text-transform: uppercase;
	color: #f4cf75;
}

.ci360-about-eyebrow::before {
	content: "";
	width: 2rem;
	height: 2px;
	background: currentColor;
}

.ci360-about-hero h1 {
	max-width: 13ch;
	margin: 0;
	font-size: clamp(2.65rem, 6vw, 5.35rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 0.99;
	color: #ffffff;
	text-wrap: balance;
}

.ci360-about-intro {
	max-width: 680px;
	margin: 1.6rem 0 0;
	font-size: clamp(1.1rem, 2vw, 1.42rem);
	font-weight: 650;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.96);
}

.ci360-about-summary {
	max-width: 650px;
	margin: 1rem 0 0;
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.76);
}

.ci360-about-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

.ci360-about-hero .ci360-button {
	display: inline-flex;
	min-height: 3.15rem;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease;
}

.ci360-about-hero .ci360-button:hover {
	transform: translateY(-2px);
}

.ci360-about-hero .ci360-button-primary {
	color: #153f35;
	background: #f4cf75;
}

.ci360-about-hero .ci360-button-primary:hover {
	color: #0d342c;
	background: #ffe19a;
}

.ci360-about-hero .ci360-button-secondary {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.44);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
}

.ci360-about-hero .ci360-button-secondary:hover {
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.15);
}

.ci360-about-hero .ci360-button:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 4px;
}

.ci360-about-focus {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1.65rem;
}

.ci360-about-focus span {
	display: inline-flex;
	align-items: center;
	min-height: 2rem;
	padding: 0.42rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.19);
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 750;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.88);
	background: rgba(255, 255, 255, 0.07);
}

.ci360-about-hero-visual {
	position: relative;
	width: min(100%, 590px);
	justify-self: end;
	padding: 0 0 clamp(1.1rem, 2.5vw, 2rem)
		clamp(1.1rem, 2.5vw, 2rem);
}

.ci360-about-image-card {
	position: relative;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: clamp(1.3rem, 3vw, 2.2rem);
	background: #ffffff;
	box-shadow: 0 32px 70px rgba(2, 25, 21, 0.42);
}

.ci360-about-hero-image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
}

.ci360-about-image-card figcaption {
	display: grid;
	gap: 0.25rem;
	padding: 1rem 1.15rem 1.15rem;
	color: #173f35;
	background: #ffffff;
}

.ci360-about-image-card figcaption strong {
	font-size: 0.98rem;
	line-height: 1.35;
}

.ci360-about-image-card figcaption span {
	font-size: 0.86rem;
	line-height: 1.5;
	color: #60716b;
}

.ci360-about-nests {
	position: absolute;
	left: 0;
	bottom: 0;
	display: grid;
	gap: 0.2rem;
	max-width: min(88%, 390px);
	padding: 1rem 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 1rem;
	color: #173f35;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 18px 42px rgba(2, 25, 21, 0.25);
	backdrop-filter: blur(12px);
}

.ci360-about-nests strong {
	font-size: 0.82rem;
	letter-spacing: 0.14em;
	line-height: 1.2;
	color: #b47217;
}

.ci360-about-nests span {
	font-size: 0.78rem;
	font-weight: 750;
	line-height: 1.45;
}

@media (max-width: 980px) {
	.ci360-about-hero-grid {
		grid-template-columns: 1fr;
	}

	.ci360-about-hero h1 {
		max-width: 15ch;
	}

	.ci360-about-hero-visual {
		width: min(100%, 680px);
		justify-self: start;
	}
}

@media (max-width: 700px) {
	.ci360-about-hero {
		padding-top: 4.4rem;
	}

	.ci360-about-hero h1 {
		font-size: clamp(2.4rem, 12vw, 3.75rem);
	}

	.ci360-about-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.ci360-about-hero .ci360-button {
		width: 100%;
	}

	.ci360-about-hero-visual {
		padding-left: 0;
		padding-bottom: 0;
	}

	.ci360-about-hero-image {
		aspect-ratio: 4 / 4.4;
	}

	.ci360-about-nests {
		position: relative;
		max-width: none;
		margin: 0.85rem 0 0;
	}
}

@media (max-width: 480px) {
	.ci360-about-hero {
		padding-top: 3.75rem;
		padding-bottom: 3.75rem;
	}

	.ci360-about-hero-grid {
		gap: 2.15rem;
	}

	.ci360-about-focus {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ci360-about-focus span {
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ci360-about-hero .ci360-button {
		transition: none;
	}

	.ci360-about-hero .ci360-button:hover {
		transform: none;
	}
}
/* CI360 ABOUT HERO STYLES END */


/* CI360 ABOUT COMPACT LAYOUT START */

.ci360-about-page .ci360-about-hero {
	min-height: auto;
	padding: clamp(3.25rem, 5vw, 4.5rem) 0 clamp(3rem, 4vw, 4rem);
	overflow: hidden;
}

.ci360-about-page .ci360-about-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
}

.ci360-about-page .ci360-about-hero-content {
	max-width: 660px;
}

.ci360-about-page .ci360-about-hero h1 {
	max-width: 650px;
	margin: 0 0 1.25rem;
	font-size: clamp(2.8rem, 4vw, 3.75rem);
	line-height: 1;
	letter-spacing: -0.045em;
}

.ci360-about-page .ci360-about-intro {
	max-width: 620px;
	margin: 0 0 0.8rem;
	font-size: clamp(1.05rem, 1.4vw, 1.22rem);
	line-height: 1.55;
}

.ci360-about-page .ci360-about-summary {
	max-width: 610px;
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.7;
}

.ci360-about-page .ci360-about-actions {
	margin-top: 1.55rem;
}

.ci360-about-page .ci360-about-focus {
	margin-top: 1.35rem;
}

.ci360-about-page .ci360-about-hero-visual {
	width: 100%;
	max-width: 470px;
	justify-self: end;
}

.ci360-about-page .ci360-about-image-card {
	width: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: 24px;
}

.ci360-about-page .ci360-about-hero-image {
	display: block;
	width: 100%;
	height: clamp(300px, 30vw, 390px);
	object-fit: cover;
	object-position: center;
}

.ci360-about-page .ci360-about-image-card figcaption {
	display: grid;
	gap: 0.18rem;
	padding: 0.85rem 1.05rem 0.95rem;
}

.ci360-about-page .ci360-about-image-card figcaption strong {
	font-size: 0.95rem;
	line-height: 1.35;
}

.ci360-about-page .ci360-about-image-card figcaption span {
	font-size: 0.83rem;
	line-height: 1.45;
}

.ci360-about-page .ci360-about-nests {
	position: static !important;
	inset: auto !important;
	transform: none !important;
	width: 100% !important;
	margin: 0.8rem 0 0 !important;
	padding: 0.8rem 0.95rem !important;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.7rem 1rem;
	border-radius: 15px;
}

.ci360-about-page .ci360-about-nests strong {
	flex: 0 0 auto;
}

.ci360-about-page .ci360-about-nests span {
	line-height: 1.4;
	text-align: right;
}

.ci360-about-page .ci360-about-foundation {
	padding: clamp(3.75rem, 6vw, 5.75rem) 0;
	background: #f6f8f3;
}

.ci360-about-page .ci360-about-foundation-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
	gap: clamp(2.5rem, 4.5vw, 4.5rem);
	align-items: center;
}

.ci360-about-page .ci360-about-foundation-visual {
	position: relative;
	width: 100%;
	max-width: 470px;
}

.ci360-about-page .ci360-about-foundation-image-card {
	width: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 20px 48px rgba(12, 63, 45, 0.12);
}

.ci360-about-page .ci360-about-foundation-image {
	display: block;
	width: 100%;
	height: clamp(290px, 29vw, 360px);
	object-fit: cover;
	object-position: center;
}

.ci360-about-page .ci360-about-foundation-note {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	display: grid;
	gap: 0.22rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 14px 30px rgba(12, 63, 45, 0.13);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.ci360-about-page .ci360-about-foundation-note strong {
	font-size: 0.94rem;
	line-height: 1.3;
	color: #0f4937;
}

.ci360-about-page .ci360-about-foundation-note span {
	font-size: 0.84rem;
	line-height: 1.45;
	color: #426358;
}

.ci360-about-page .ci360-about-foundation-content {
	max-width: 720px;
}

.ci360-about-page .ci360-about-foundation-content h2 {
	max-width: 690px;
	margin: 0 0 1.15rem;
	font-size: clamp(2.05rem, 3.25vw, 2.85rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #123f32;
}

.ci360-about-page .ci360-about-foundation-content > p:not(.ci360-about-eyebrow) {
	margin: 0 0 0.9rem;
	font-size: 0.98rem;
	line-height: 1.7;
	color: #35594e;
}

.ci360-about-page .ci360-about-foundation-points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 1.55rem;
}

.ci360-about-page .ci360-about-foundation-points article {
	position: relative;
	min-height: 178px;
	padding: 1.1rem 1.05rem 1.15rem;
	border: 1px solid rgba(12, 79, 56, 0.12);
	border-radius: 17px;
	background: #ffffff;
	box-shadow: 0 10px 26px rgba(12, 63, 45, 0.07);
}

.ci360-about-page .ci360-about-foundation-points article > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.15rem;
	height: 2.15rem;
	margin-bottom: 0.8rem;
	padding: 0 0.5rem;
	border-radius: 999px;
	background: #e7f2e8;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #0f5a3f;
}

.ci360-about-page .ci360-about-foundation-points h3 {
	margin: 0 0 0.5rem;
	font-size: 0.98rem;
	line-height: 1.35;
	color: #153f33;
}

.ci360-about-page .ci360-about-foundation-points p {
	margin: 0;
	font-size: 0.87rem;
	line-height: 1.55;
	color: #4f6b61;
}

.ci360-about-page .ci360-about-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.4rem;
	font-weight: 800;
	text-decoration: none;
}

.ci360-about-page .ci360-about-text-link::after {
	content: "→";
	transition: transform 180ms ease;
}

.ci360-about-page .ci360-about-text-link:hover::after,
.ci360-about-page .ci360-about-text-link:focus-visible::after {
	transform: translateX(4px);
}

@media (max-width: 1080px) {
	.ci360-about-page .ci360-about-hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(310px, 0.82fr);
		gap: 2.25rem;
	}

	.ci360-about-page .ci360-about-hero h1 {
		font-size: clamp(2.7rem, 5vw, 3.45rem);
	}

	.ci360-about-page .ci360-about-foundation-grid {
		grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
		gap: 2.5rem;
	}

	.ci360-about-page .ci360-about-foundation-points {
		grid-template-columns: 1fr;
	}

	.ci360-about-page .ci360-about-foundation-points article {
		min-height: 0;
	}
}

@media (max-width: 820px) {
	.ci360-about-page .ci360-about-hero {
		padding: 3rem 0 3.25rem;
	}

	.ci360-about-page .ci360-about-hero-grid,
	.ci360-about-page .ci360-about-foundation-grid {
		grid-template-columns: 1fr;
	}

	.ci360-about-page .ci360-about-hero-content,
	.ci360-about-page .ci360-about-foundation-content {
		max-width: none;
	}

	.ci360-about-page .ci360-about-hero-visual,
	.ci360-about-page .ci360-about-foundation-visual {
		width: 100%;
		max-width: 580px;
		justify-self: center;
	}

	.ci360-about-page .ci360-about-foundation-content {
		order: 1;
	}

	.ci360-about-page .ci360-about-foundation-visual {
		order: 2;
	}

	.ci360-about-page .ci360-about-hero-image {
		height: clamp(300px, 58vw, 390px);
	}

	.ci360-about-page .ci360-about-foundation-image {
		height: clamp(280px, 56vw, 360px);
	}

	.ci360-about-page .ci360-about-foundation-points {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.ci360-about-page .ci360-about-hero h1 {
		font-size: clamp(2.45rem, 11vw, 3.15rem);
	}

	.ci360-about-page .ci360-about-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ci360-about-page .ci360-about-actions .ci360-button {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.ci360-about-page .ci360-about-focus {
		gap: 0.5rem;
	}

	.ci360-about-page .ci360-about-nests {
		align-items: flex-start;
		flex-direction: column;
	}

	.ci360-about-page .ci360-about-nests span {
		text-align: left;
	}

	.ci360-about-page .ci360-about-foundation {
		padding: 3.5rem 0;
	}

	.ci360-about-page .ci360-about-foundation-content h2 {
		font-size: clamp(1.95rem, 8.5vw, 2.5rem);
	}

	.ci360-about-page .ci360-about-foundation-points {
		grid-template-columns: 1fr;
	}

	.ci360-about-page .ci360-about-foundation-note {
		position: static;
		margin-top: 0.8rem;
		background: #ffffff;
	}

	.ci360-about-page .ci360-about-foundation-image-card {
		border-radius: 21px;
	}
}

@media (max-width: 480px) {
	.ci360-about-page .ci360-about-hero {
		padding-top: 2.5rem;
	}

	.ci360-about-page .ci360-about-hero-image {
		height: 280px;
	}

	.ci360-about-page .ci360-about-foundation-image {
		height: 260px;
	}

	.ci360-about-page .ci360-about-image-card,
	.ci360-about-page .ci360-about-foundation-image-card {
		border-radius: 19px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ci360-about-page .ci360-about-text-link::after {
		transition: none;
	}
}

/* CI360 ABOUT COMPACT LAYOUT END */


/* =========================================================
   CI360 FOUNDATION CTA SPACING START
   ========================================================= */

.ci360-about-page
.ci360-about-foundation-visual
.ci360-about-text-link {
display: inline-flex;
align-items: center;
margin-top: 48px;
position: relative;
z-index: 2;
}

@media (max-width: 820px) {
.ci360-about-page
.ci360-about-foundation-visual
.ci360-about-text-link {
-top: 24px;
}
}

/* =========================================================
   CI360 FOUNDATION CTA SPACING END
   ========================================================= */


/* CI360 FOUNDATION FLOW R6 START */

.ci360-about-page .ci360-about-foundation-visual
.ci360-about-foundation-note {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 2;
    margin: -58px 1rem 0 !important;
}

.ci360-about-page .ci360-about-foundation-visual
.ci360-about-text-link {
    margin-top: 28px !important;
}

@media (max-width: 820px) {
    .ci360-about-page .ci360-about-foundation-visual
    .ci360-about-foundation-note {
        position: static !important;
        margin: 0.8rem 0 0 !important;
    }

    .ci360-about-page .ci360-about-foundation-visual
    .ci360-about-text-link {
        margin-top: 20px !important;
    }
}

/* CI360 FOUNDATION FLOW R6 END */


/* =========================================================
   CI360 ABOUT N.E.S.T.S. AND SHARED FOUNDATION START
   ========================================================= */

.ci360-about-page .ci360-about-nests-section {
	padding: clamp(4.5rem, 7vw, 6.75rem) 0;
	background:
		radial-gradient(circle at 12% 12%, rgba(244, 193, 67, 0.15), transparent 30%),
		linear-gradient(135deg, #0f4937 0%, #123f33 56%, #0c3329 100%);
	color: #ffffff;
}

.ci360-about-page .ci360-about-nests-section .ci360-about-eyebrow {
	color: #f4c143;
}

.ci360-about-page .ci360-about-section-heading {
	display: grid;
	gap: 1rem;
	max-width: 760px;
	margin: 0 auto 2.4rem;
	text-align: center;
}

.ci360-about-page .ci360-about-section-heading h2 {
	margin: 0;
	font-size: clamp(2.1rem, 4vw, 3.65rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
	color: #ffffff;
}

.ci360-about-page .ci360-about-section-heading > p:not(.ci360-about-eyebrow) {
	max-width: 660px;
	margin: 0 auto;
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.78);
}

.ci360-about-page .ci360-about-nests-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1rem;
}

.ci360-about-page .ci360-about-value-card {
	position: relative;
	min-height: 220px;
	padding: 1.5rem 1.3rem 1.4rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.ci360-about-page .ci360-about-value-card::before {
	display: grid;
	width: 2.35rem;
	height: 2.35rem;
	margin-bottom: 1.4rem;
	place-items: center;
	border-radius: 999px;
	background: #f4c143;
	color: #123f33;
	font-size: 0.82rem;
	font-weight: 900;
}

.ci360-about-page .ci360-about-value-card:nth-child(1)::before {
	content: "N";
}

.ci360-about-page .ci360-about-value-card:nth-child(2)::before {
	content: "E";
}

.ci360-about-page .ci360-about-value-card:nth-child(3)::before {
	content: "S";
}

.ci360-about-page .ci360-about-value-card:nth-child(4)::before {
	content: "T";
}

.ci360-about-page .ci360-about-value-card:nth-child(5)::before {
	content: "S";
}

.ci360-about-page .ci360-about-value-card h3 {
	margin: 0 0 0.7rem;
	font-size: 1.18rem;
	line-height: 1.25;
	color: #ffffff;
}

.ci360-about-page .ci360-about-value-card p {
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
}

.ci360-about-page .ci360-about-shared-foundation {
	padding: clamp(4.5rem, 7vw, 6.75rem) 0;
	background: #f3f6f1;
}

.ci360-about-page .ci360-about-shared-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: start;
}

.ci360-about-page .ci360-about-shared-intro {
	position: sticky;
	top: 2rem;
}

.ci360-about-page .ci360-about-shared-intro h2 {
	max-width: 620px;
	margin: 0 0 1.15rem;
	font-size: clamp(2.15rem, 4vw, 3.55rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: #0f4937;
}

.ci360-about-page .ci360-about-shared-intro > p:not(.ci360-about-eyebrow) {
	max-width: 610px;
	margin: 0;
	font-size: 1rem;
	line-height: 1.75;
	color: #426358;
}

.ci360-about-page .ci360-about-ai-foundation {
	margin-top: 1.8rem;
	padding: 1.45rem 1.5rem;
	border: 1px solid rgba(244, 193, 67, 0.4);
	border-radius: 18px;
	background: #fffaf0;
	box-shadow: 0 14px 32px rgba(15, 73, 55, 0.08);
}

.ci360-about-page .ci360-about-ai-foundation h3 {
	margin: 0 0 0.6rem;
	font-size: 1.12rem;
	line-height: 1.35;
	color: #0f4937;
}

.ci360-about-page .ci360-about-ai-foundation p {
	margin: 0;
	font-size: 0.94rem;
	line-height: 1.7;
	color: #426358;
}

.ci360-about-page .ci360-about-shared-topics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.ci360-about-page .ci360-about-shared-topics article {
	min-height: 178px;
	padding: 1.35rem;
	border: 1px solid rgba(15, 73, 55, 0.1);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 32px rgba(15, 73, 55, 0.07);
}

.ci360-about-page .ci360-about-shared-topics article::before {
	content: "";
	display: block;
	width: 2.25rem;
	height: 0.22rem;
	margin-bottom: 1rem;
	border-radius: 999px;
	background: #f4c143;
}

.ci360-about-page .ci360-about-shared-topics h3 {
	margin: 0 0 0.55rem;
	font-size: 1.05rem;
	line-height: 1.35;
	color: #0f4937;
}

.ci360-about-page .ci360-about-shared-topics p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.65;
	color: #4b6b61;
}

@media (max-width: 1080px) {
	.ci360-about-page .ci360-about-nests-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ci360-about-page .ci360-about-value-card:nth-child(4),
	.ci360-about-page .ci360-about-value-card:nth-child(5) {
		min-height: 190px;
	}

	.ci360-about-page .ci360-about-shared-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.ci360-about-page .ci360-about-shared-intro {
		position: static;
	}

	.ci360-about-page .ci360-about-shared-intro h2,
	.ci360-about-page .ci360-about-shared-intro > p:not(.ci360-about-eyebrow) {
		max-width: 760px;
	}
}

@media (max-width: 760px) {
	.ci360-about-page .ci360-about-nests-section,
	.ci360-about-page .ci360-about-shared-foundation {
		padding: 4rem 0;
	}

	.ci360-about-page .ci360-about-section-heading {
		margin-bottom: 1.8rem;
		text-align: left;
	}

	.ci360-about-page .ci360-about-section-heading > p:not(.ci360-about-eyebrow) {
		margin-left: 0;
	}

	.ci360-about-page .ci360-about-nests-grid,
	.ci360-about-page .ci360-about-shared-topics {
		grid-template-columns: 1fr;
	}

	.ci360-about-page .ci360-about-value-card,
	.ci360-about-page .ci360-about-value-card:nth-child(4),
	.ci360-about-page .ci360-about-value-card:nth-child(5),
	.ci360-about-page .ci360-about-shared-topics article {
		min-height: 0;
	}

	.ci360-about-page .ci360-about-value-card {
		padding: 1.35rem 1.25rem;
	}

	.ci360-about-page .ci360-about-value-card::before {
		margin-bottom: 1rem;
	}

	.ci360-about-page .ci360-about-ai-foundation {
		padding: 1.25rem;
	}
}

@media (max-width: 480px) {
	.ci360-about-page .ci360-about-section-heading h2,
	.ci360-about-page .ci360-about-shared-intro h2 {
		font-size: 2.1rem;
	}

	.ci360-about-page .ci360-about-value-card,
	.ci360-about-page .ci360-about-shared-topics article {
		border-radius: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ci360-about-page .ci360-about-value-card,
	.ci360-about-page .ci360-about-shared-topics article {
		scroll-behavior: auto;
	}
}

/* =========================================================
   CI360 ABOUT N.E.S.T.S. AND SHARED FOUNDATION END
   ========================================================= */


/* CI360 ABOUT FINAL CTA STYLES START */

.ci360-about-final-cta {
  padding: clamp(3.5rem, 7vw, 5.75rem) 0;
  background:
    radial-gradient(circle at top right, rgba(226, 179, 77, 0.18), transparent 34rem),
    linear-gradient(135deg, #123f34 0%, #0c3028 100%);
  color: #ffffff;
}

.ci360-about-final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.ci360-about-final-cta-inner::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(226, 179, 77, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.ci360-about-final-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.ci360-about-final-cta .ci360-about-eyebrow {
  margin-bottom: 0.8rem;
  color: #f0c86d;
}

.ci360-about-final-cta h2 {
  margin: 0;
  max-width: 15ch;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.ci360-about-final-cta-copy > p:last-child {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.ci360-about-final-cta-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  min-width: min(100%, 15rem);
}

.ci360-about-final-cta-actions .ci360-button {
  justify-content: center;
  width: 100%;
  white-space: nowrap;
}

.ci360-about-final-cta-actions .ci360-button-primary {
  border-color: #e0b34d;
  background: #e0b34d;
  color: #17362d;
}

.ci360-about-final-cta-actions .ci360-button-primary:hover,
.ci360-about-final-cta-actions .ci360-button-primary:focus-visible {
  border-color: #f0c86d;
  background: #f0c86d;
  color: #102a23;
}

.ci360-about-final-cta-actions .ci360-button-secondary {
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #ffffff;
}

.ci360-about-final-cta-actions .ci360-button-secondary:hover,
.ci360-about-final-cta-actions .ci360-button-secondary:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #123f34;
}

.ci360-about-final-cta-note {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .ci360-about-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .ci360-about-final-cta-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 620px) {
  .ci360-about-final-cta {
    padding: 3rem 0;
  }

  .ci360-about-final-cta-inner {
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1.15rem;
  }

  .ci360-about-final-cta h2 {
    max-width: none;
  }

  .ci360-about-final-cta-actions {
    grid-template-columns: 1fr;
  }

  .ci360-about-final-cta-note {
    padding-top: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ci360-about-final-cta-actions .ci360-button {
    transition: none;
  }
}

/* CI360 ABOUT FINAL CTA STYLES END */


/* CI360 ABOUT PALETTE REBALANCE R1 START */

/*
 * Keep the footer as the page's deepest green.
 * Rebalance the About hero, N.E.S.T.S. and final CTA
 * around the fresher greens used by the logo and 503 page.
 */

.ci360-about-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(243, 190, 61, 0.13), transparent 30%),
    linear-gradient(118deg, #1f684b 0%, #2f7d4b 52%, #4c9143 100%) !important;
}

.ci360-about-hero::before,
.ci360-about-hero::after {
  opacity: 0.42 !important;
}

.ci360-about-nests-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(92, 169, 54, 0.10), transparent 28%),
    linear-gradient(180deg, #f3f8f0 0%, #e9f3e7 100%) !important;
  color: #174c38 !important;
}

.ci360-about-nests-section .ci360-about-eyebrow {
  color: #a8650a !important;
}

.ci360-about-nests-section h2,
.ci360-about-nests-section h3 {
  color: #174c38 !important;
}

.ci360-about-nests-section .ci360-about-section-heading > p:not(.ci360-about-eyebrow) {
  color: #4f685b !important;
}

.ci360-about-nests-section .ci360-about-value-card {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(35, 106, 64, 0.18) !important;
  box-shadow: 0 16px 34px rgba(24, 76, 56, 0.08) !important;
  color: #345646 !important;
}

.ci360-about-nests-section .ci360-about-value-card::before {
  background: #f5bd3d !important;
  color: #174c38 !important;
}

.ci360-about-nests-section .ci360-about-value-card p {
  color: #4f685b !important;
}

.ci360-about-final-cta {
  background:
    radial-gradient(circle at 6% 80%, rgba(92, 169, 54, 0.10), transparent 28%),
    linear-gradient(180deg, #eef6eb 0%, #e6f1e3 100%) !important;
}

.ci360-about-final-cta .ci360-about-final-cta-inner {
  background:
    radial-gradient(circle at 96% 88%, rgba(245, 189, 61, 0.17), transparent 26%),
    linear-gradient(118deg, #5ba934 0%, #3d8a3d 52%, #246b40 100%) !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
  box-shadow: 0 22px 48px rgba(24, 76, 56, 0.16) !important;
}

.ci360-about-final-cta .ci360-about-final-cta-inner::before,
.ci360-about-final-cta .ci360-about-final-cta-inner::after {
  opacity: 0.46 !important;
}

.ci360-about-final-cta .ci360-about-final-cta-copy,
.ci360-about-final-cta .ci360-about-final-cta-note {
  color: rgba(255, 255, 255, 0.88) !important;
}

.ci360-about-final-cta .ci360-about-final-cta-copy h2 {
  color: #ffffff !important;
}

.ci360-about-final-cta .ci360-about-eyebrow {
  color: #ffe29a !important;
}

/* CI360 ABOUT PALETTE REBALANCE R1 END */

/* =========================================================
   CI360 WHY 360 PAGE STYLES R1 START
   ========================================================= */

.ci360-why360 {
    overflow: clip;
    background: #ffffff;
}

.ci360-why360-section {
    padding: clamp(4.5rem, 7vw, 6.75rem) 0;
}

.ci360-why360 .ci360-eyebrow {
    margin-bottom: 1rem;
}

.ci360-why360-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(4.25rem, 7vw, 6.75rem) 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 18%, rgba(245, 189, 61, 0.20), transparent 28%),
        linear-gradient(118deg, #1f684b 0%, #2f7d4b 52%, #4c9143 100%);
}

.ci360-why360-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 92%);
}

.ci360-why360-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.ci360-why360-hero-copy {
    max-width: 720px;
}

.ci360-why360-hero h1 {
    max-width: 13ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.8rem, 5.4vw, 4.9rem);
    font-weight: 850;
    letter-spacing: -0.05em;
    line-height: 0.99;
    text-wrap: balance;
}

.ci360-why360-lead {
    max-width: 660px;
    margin: 1.45rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    line-height: 1.65;
}

.ci360-why360-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.ci360-why360-actions .ci360-button {
    width: auto;
    min-width: 182px;
    border-radius: 999px;
}

.ci360-why360-nests {
    display: inline-flex;
    align-items: center;
    margin: 1.4rem 0 0;
    padding: 0.62rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.10);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.35;
    backdrop-filter: blur(8px);
}

.ci360-why360-hero-media {
    position: relative;
    width: min(100%, 560px);
    margin: 0;
    justify-self: end;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: clamp(1.35rem, 3vw, 2.25rem);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 70px rgba(11, 55, 38, 0.28);
    backdrop-filter: blur(10px);
}

.ci360-why360-hero-media img {
    display: block;
    width: 100%;
    height: clamp(330px, 39vw, 500px);
    object-fit: cover;
    object-position: center;
    border-radius: calc(clamp(1.35rem, 3vw, 2.25rem) - 0.5rem);
}

.ci360-why360-challenge {
    background:
        radial-gradient(circle at 8% 10%, rgba(139, 197, 63, 0.10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f5f8f2 100%);
}

.ci360-why360-section-heading {
    max-width: 790px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.ci360-why360-section-heading .ci360-eyebrow {
    color: #5d9f28;
}

.ci360-why360-section-heading h2,
.ci360-why360-feature-copy h2,
.ci360-why360-tree-copy h2,
.ci360-why360-opportunity-copy h2,
.ci360-why360-final-cta-copy h2 {
    margin: 0;
    color: #123f32;
    font-size: clamp(2.1rem, 4vw, 3.55rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-wrap: balance;
}

.ci360-why360-section-heading > p:not(.ci360-eyebrow) {
    max-width: 690px;
    margin: 1rem auto 0;
    color: #4f685b;
    font-size: 1rem;
    line-height: 1.75;
}

.ci360-why360-card-grid {
    display: grid;
    gap: 1rem;
}

.ci360-why360-card-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ci360-why360-card-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ci360-why360-card {
    position: relative;
    min-height: 245px;
    padding: 1.5rem 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(15, 73, 55, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(15, 73, 55, 0.08);
}

.ci360-why360-card::after {
    content: "";
    position: absolute;
    right: -2.2rem;
    bottom: -2.2rem;
    width: 7rem;
    height: 7rem;
    border: 1px solid rgba(139, 197, 63, 0.20);
    border-radius: 50%;
}

.ci360-why360-card-number,
.ci360-why360-opportunity-number {
    display: inline-grid;
    min-width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 1.15rem;
    place-items: center;
    padding: 0 0.55rem;
    border-radius: 999px;
    background: #e9f3df;
    color: #236b40;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.ci360-why360-card h3,
.ci360-why360-opportunity-card h3,
.ci360-why360-response-item h3,
.ci360-why360-tree-step h3 {
    margin: 0 0 0.65rem;
    color: #153f33;
    font-size: 1.08rem;
    line-height: 1.35;
}

.ci360-why360-card p,
.ci360-why360-opportunity-card p,
.ci360-why360-response-item p,
.ci360-why360-tree-step p {
    margin: 0;
    color: #4f6b61;
    font-size: 0.92rem;
    line-height: 1.65;
}

.ci360-why360-response {
    background: #eef5ea;
}

.ci360-why360-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.ci360-why360-feature-copy {
    max-width: 760px;
}

.ci360-why360-feature-copy .ci360-eyebrow {
    color: #5d9f28;
}

.ci360-why360-section-intro {
    max-width: 690px;
    margin: 1rem 0 0;
    color: #426358;
    font-size: 1rem;
    line-height: 1.75;
}

.ci360-why360-response-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.ci360-why360-response-item {
    min-height: 170px;
    padding: 1.25rem;
    border: 1px solid rgba(15, 73, 55, 0.10);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(15, 73, 55, 0.07);
}

.ci360-why360-response-item::before {
    content: "";
    display: block;
    width: 2.25rem;
    height: 0.22rem;
    margin-bottom: 0.95rem;
    border-radius: 999px;
    background: #f4c143;
}

.ci360-why360-feature-media {
    width: min(100%, 520px);
    margin: 0;
    justify-self: end;
    padding: 0.7rem;
    border: 1px solid rgba(15, 73, 55, 0.12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 52px rgba(15, 73, 55, 0.12);
}

.ci360-why360-feature-media img {
    display: block;
    width: 100%;
    height: clamp(320px, 35vw, 455px);
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
}

.ci360-why360-tree {
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 16%, rgba(245, 189, 61, 0.17), transparent 28%),
        linear-gradient(118deg, #2f7d4b 0%, #246b40 52%, #1f5b3b 100%);
}

.ci360-why360-tree-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.ci360-why360-tree-copy .ci360-eyebrow {
    color: #ffe29a;
}

.ci360-why360-tree-copy h2 {
    color: #ffffff;
}

.ci360-why360-tree-copy > p:not(.ci360-eyebrow) {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.75;
}

.ci360-why360-tree-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ci360-why360-tree-step {
    min-height: 185px;
    padding: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 14px 30px rgba(13, 52, 41, 0.12);
    backdrop-filter: blur(8px);
}

.ci360-why360-tree-step > span {
    display: inline-grid;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 1rem;
    place-items: center;
    border-radius: 999px;
    background: #f4c143;
    color: #174c38;
    font-size: 0.8rem;
    font-weight: 900;
}

.ci360-why360-tree-step h3 {
    color: #ffffff;
}

.ci360-why360-tree-step p {
    color: rgba(255, 255, 255, 0.76);
}

.ci360-why360-opportunity {
    background:
        radial-gradient(circle at 10% 16%, rgba(244, 193, 67, 0.12), transparent 28%),
        #f7f8f2;
}

.ci360-why360-opportunity-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(2.25rem, 5vw, 4.75rem);
    align-items: center;
    margin-bottom: 2rem;
}

.ci360-why360-opportunity-copy {
    max-width: 720px;
}

.ci360-why360-opportunity-copy .ci360-eyebrow {
    color: #a8650a;
}

.ci360-why360-opportunity-copy > p:not(.ci360-eyebrow) {
    max-width: 660px;
    margin: 1rem 0 0;
    color: #4f685b;
    line-height: 1.75;
}

.ci360-why360-opportunity-media {
    width: min(100%, 500px);
    margin: 0;
    justify-self: end;
    padding: 0.7rem;
    border: 1px solid rgba(15, 73, 55, 0.12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 46px rgba(15, 73, 55, 0.11);
}

.ci360-why360-opportunity-media img {
    display: block;
    width: 100%;
    height: clamp(280px, 30vw, 390px);
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
}

.ci360-why360-opportunity-card {
    min-height: 205px;
    padding: 1.4rem 1.3rem;
    border: 1px solid rgba(15, 73, 55, 0.10);
    border-radius: 19px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(15, 73, 55, 0.07);
}

.ci360-why360-final-cta {
    padding: clamp(3.5rem, 7vw, 5.75rem) 0;
    background:
        radial-gradient(circle at 8% 82%, rgba(92, 169, 54, 0.10), transparent 28%),
        linear-gradient(180deg, #eef6eb 0%, #e6f1e3 100%);
}

.ci360-why360-final-cta-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1.75rem, 4vw, 4rem);
    align-items: center;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3.25rem);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 24px;
    color: #ffffff;
    background:
        radial-gradient(circle at 96% 88%, rgba(245, 189, 61, 0.17), transparent 26%),
        linear-gradient(118deg, #5ba934 0%, #3d8a3d 52%, #246b40 100%);
    box-shadow: 0 22px 48px rgba(24, 76, 56, 0.16);
}

.ci360-why360-final-cta-panel::after {
    content: "";
    position: absolute;
    right: -5rem;
    bottom: -6rem;
    width: 15rem;
    height: 15rem;
    border: 1px solid rgba(255, 226, 154, 0.34);
    border-radius: 50%;
    pointer-events: none;
}

.ci360-why360-final-cta-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.ci360-why360-final-cta-copy .ci360-eyebrow {
    color: #ffe29a;
}

.ci360-why360-final-cta-copy h2 {
    max-width: 15ch;
    color: #ffffff;
}

.ci360-why360-final-cta-copy > p:not(.ci360-eyebrow) {
    max-width: 650px;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
}

.ci360-why360-final-cta .ci360-why360-actions {
    position: relative;
    z-index: 1;
    display: grid;
    min-width: min(100%, 15rem);
    margin-top: 0;
}

.ci360-why360-final-cta .ci360-why360-actions .ci360-button {
    width: 100%;
    white-space: nowrap;
}

@media (max-width: 1080px) {
    .ci360-why360-hero-grid,
    .ci360-why360-feature-grid,
    .ci360-why360-opportunity-intro {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
        gap: 2.25rem;
    }

    .ci360-why360-card-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ci360-why360-tree-panel {
        grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
    }
}

@media (max-width: 820px) {
    .ci360-why360-hero-grid,
    .ci360-why360-feature-grid,
    .ci360-why360-tree-panel,
    .ci360-why360-opportunity-intro,
    .ci360-why360-final-cta-panel {
        grid-template-columns: 1fr;
    }

    .ci360-why360-hero-copy,
    .ci360-why360-feature-copy,
    .ci360-why360-opportunity-copy {
        max-width: none;
    }

    .ci360-why360-hero-media,
    .ci360-why360-feature-media,
    .ci360-why360-opportunity-media {
        width: min(100%, 640px);
        justify-self: center;
    }

    .ci360-why360-tree-copy {
        max-width: 720px;
    }

    .ci360-why360-final-cta .ci360-why360-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
}

@media (max-width: 680px) {
    .ci360-why360-section {
        padding: 3.75rem 0;
    }

    .ci360-why360-hero {
        padding: 3.5rem 0;
    }

    .ci360-why360-hero h1 {
        font-size: clamp(2.45rem, 11vw, 3.3rem);
    }

    .ci360-why360-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ci360-why360-actions .ci360-button {
        width: 100%;
    }

    .ci360-why360-card-grid-four,
    .ci360-why360-card-grid-three,
    .ci360-why360-response-list,
    .ci360-why360-tree-steps,
    .ci360-why360-final-cta .ci360-why360-actions {
        grid-template-columns: 1fr;
    }

    .ci360-why360-card,
    .ci360-why360-response-item,
    .ci360-why360-tree-step,
    .ci360-why360-opportunity-card {
        min-height: 0;
    }

    .ci360-why360-section-heading {
        margin-bottom: 1.8rem;
        text-align: left;
    }

    .ci360-why360-section-heading > p:not(.ci360-eyebrow) {
        margin-left: 0;
    }

    .ci360-why360-hero-media img,
    .ci360-why360-feature-media img,
    .ci360-why360-opportunity-media img {
        height: 310px;
    }

    .ci360-why360-final-cta {
        padding: 3rem 0;
    }

    .ci360-why360-final-cta-panel {
        padding: 1.5rem;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .ci360-why360-hero {
        padding: 3rem 0;
    }

    .ci360-why360-hero h1,
    .ci360-why360-section-heading h2,
    .ci360-why360-feature-copy h2,
    .ci360-why360-tree-copy h2,
    .ci360-why360-opportunity-copy h2,
    .ci360-why360-final-cta-copy h2 {
        font-size: 2.05rem;
    }

    .ci360-why360-hero-media,
    .ci360-why360-feature-media,
    .ci360-why360-opportunity-media {
        padding: 0.5rem;
        border-radius: 20px;
    }

    .ci360-why360-hero-media img,
    .ci360-why360-feature-media img,
    .ci360-why360-opportunity-media img {
        height: 270px;
        border-radius: 15px;
    }

    .ci360-why360-nests {
        align-items: flex-start;
        border-radius: 16px;
    }

    .ci360-why360-card,
    .ci360-why360-response-item,
    .ci360-why360-tree-step,
    .ci360-why360-opportunity-card {
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ci360-why360 .ci360-button {
        transition: none;
    }

    .ci360-why360 .ci360-button:hover,
    .ci360-why360 .ci360-button:focus-visible {
        transform: none;
    }
}

/* =========================================================
   CI360 WHY 360 PAGE STYLES R1 END
   ========================================================= */

/* =========================================================
   CI360 WHY 360 HERO COMPACT ALIGNMENT R2 START
   Align the Why 360 hero with the compact About hero.
   ========================================================= */

.ci360-why360 .ci360-why360-hero {
    min-height: auto;
    padding: clamp(3.25rem, 5vw, 4.5rem) 0 clamp(3rem, 4vw, 4rem);
}

.ci360-why360 .ci360-why360-hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
    gap: clamp(2rem, 4vw, 4rem);
}

.ci360-why360 .ci360-why360-hero-copy {
    max-width: 660px;
}

.ci360-why360 .ci360-why360-hero h1 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(2.8rem, 4vw, 3.75rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.ci360-why360 .ci360-why360-lead {
    max-width: 620px;
    margin: 1.25rem 0 0;
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    line-height: 1.55;
}

.ci360-why360 .ci360-why360-actions {
    margin-top: 1.55rem;
}

.ci360-why360 .ci360-why360-nests {
    margin-top: 1.35rem;
}

.ci360-why360 .ci360-why360-hero-media {
    width: 100%;
    max-width: 470px;
    justify-self: end;
    padding: 0.7rem;
    border-radius: 24px;
}

.ci360-why360 .ci360-why360-hero-media img {
    width: 100%;
    height: clamp(300px, 30vw, 390px);
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
}

@media (max-width: 1080px) {
    .ci360-why360 .ci360-why360-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(310px, 0.82fr);
        gap: 2.25rem;
    }

    .ci360-why360 .ci360-why360-hero h1 {
        font-size: clamp(2.7rem, 5vw, 3.45rem);
    }
}

@media (max-width: 820px) {
    .ci360-why360 .ci360-why360-hero {
        padding: 3rem 0 3.25rem;
    }

    .ci360-why360 .ci360-why360-hero-grid {
        grid-template-columns: 1fr;
    }

    .ci360-why360 .ci360-why360-hero-copy {
        max-width: none;
    }

    .ci360-why360 .ci360-why360-hero-media {
        width: 100%;
        max-width: 580px;
        justify-self: center;
    }

    .ci360-why360 .ci360-why360-hero-media img {
        height: clamp(300px, 58vw, 390px);
    }
}

@media (max-width: 680px) {
    .ci360-why360 .ci360-why360-hero h1 {
        font-size: clamp(2.45rem, 11vw, 3.15rem);
    }

    .ci360-why360 .ci360-why360-hero-media {
        padding: 0.6rem;
        border-radius: 21px;
    }

    .ci360-why360 .ci360-why360-hero-media img {
        height: 300px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .ci360-why360 .ci360-why360-hero {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .ci360-why360 .ci360-why360-hero h1 {
        font-size: clamp(2.25rem, 10vw, 2.85rem);
    }

    .ci360-why360 .ci360-why360-hero-media img {
        height: 280px;
    }
}

/* =========================================================
   CI360 WHY 360 HERO COMPACT ALIGNMENT R2 END
   ========================================================= */


/* =========================================================
   CI360 OUR PROGRAMS R1 START
   ========================================================= */

.ci360-programs-page {
    overflow: clip;
    background:
        linear-gradient(
            180deg,
            #f7faf6 0,
            #ffffff 34rem,
            #ffffff 100%
        );
    color: var(--ci360-ink, #173426);
}

.ci360-programs-page *,
.ci360-programs-page *::before,
.ci360-programs-page *::after {
    box-sizing: border-box;
}

.ci360-programs-page img {
    display: block;
    width: 100%;
    max-width: 100%;
}

.ci360-programs-page a {
    text-underline-offset: 0.2em;
}

.ci360-programs-section {
    position: relative;
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.ci360-programs-heading {
    max-width: 52rem;
    margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.ci360-programs-heading h2,
.ci360-programs-foundation__intro h2,
.ci360-programs-experience h2,
.ci360-programs-cta h2 {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.ci360-programs-heading > p:last-child,
.ci360-programs-foundation__intro > p,
.ci360-programs-experience p,
.ci360-programs-cta p {
    margin: 1.25rem 0 0;
    max-width: 44rem;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.75;
    color: #52665b;
}

.ci360-programs-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(6rem, 10vw, 10rem) 0 clamp(5rem, 9vw, 8rem);
    background:
        radial-gradient(
            circle at 84% 20%,
            rgba(238, 185, 44, 0.2),
            transparent 28rem
        ),
        radial-gradient(
            circle at 14% 84%,
            rgba(45, 126, 73, 0.22),
            transparent 32rem
        ),
        linear-gradient(135deg, #0f3222, #17523a 58%, #1f6948);
    color: #ffffff;
}

.ci360-programs-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
        );
    background-size: 54px 54px;
    mask-image: linear-gradient(
        to bottom,
        #000,
        transparent 82%
    );
}

.ci360-programs-hero__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(18rem, 0.75fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
}

.ci360-programs-hero h1 {
    margin: 0;
    max-width: 15ch;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.ci360-programs-hero__lead {
    max-width: 46rem;
    margin: 1.75rem 0 0;
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.ci360-programs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.25rem;
}

.ci360-programs-hero .ci360-button--primary {
    background: #f2c248;
    border-color: #f2c248;
    color: #173426;
}

.ci360-programs-hero .ci360-button--secondary {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.ci360-programs-hero__panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2rem 5rem rgba(4, 24, 15, 0.25);
    backdrop-filter: blur(14px);
}

.ci360-programs-stat {
    padding: 1.25rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.09);
}

.ci360-programs-stat strong {
    display: block;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.05em;
    color: #f4ca5c;
}

.ci360-programs-stat span {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

.ci360-programs-hero__panel > p {
    grid-column: 1 / -1;
    margin: 0.35rem 0 0;
    padding: 1rem 0.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.ci360-programs-pathways {
    background: #ffffff;
}

.ci360-programs-pathway-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
}

.ci360-programs-pathway-card {
    grid-column: span 4;
    overflow: hidden;
    border: 1px solid #dfe9e2;
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 1rem 2.5rem rgba(25, 67, 45, 0.08);
}

.ci360-programs-pathway-card:nth-child(4),
.ci360-programs-pathway-card:nth-child(5) {
    grid-column: span 6;
}

.ci360-programs-pathway-card__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e9f0eb;
}

.ci360-programs-pathway-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.ci360-programs-pathway-card:hover
.ci360-programs-pathway-card__media img {
    transform: scale(1.035);
}

.ci360-programs-pathway-card__body {
    padding: clamp(1.25rem, 2.5vw, 1.8rem);
}

.ci360-programs-pathway-card__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2d7649;
}

.ci360-programs-pathway-card__meta strong {
    color: #735b17;
}

.ci360-programs-pathway-card h3 {
    margin: 0;
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.ci360-programs-pathway-card p {
    margin: 0.9rem 0 1.25rem;
    line-height: 1.7;
    color: #5b6a62;
}

.ci360-programs-pathway-card a,
.ci360-program-card a {
    font-weight: 800;
    color: #1d6842;
}

.ci360-programs-foundation {
    background:
        linear-gradient(
            135deg,
            rgba(228, 241, 231, 0.9),
            rgba(250, 246, 227, 0.85)
        );
}

.ci360-programs-foundation__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: end;
}

.ci360-programs-launch-course {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
    margin-top: clamp(2.5rem, 5vw, 4.5rem);
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 1.75rem;
    background: #173d2a;
    color: #ffffff;
    box-shadow: 0 1.5rem 4rem rgba(18, 62, 41, 0.18);
}

.ci360-programs-launch-course__label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f0c45a;
}

.ci360-programs-launch-course h3 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.ci360-programs-launch-course p {
    margin: 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.ci360-programs-foundation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    margin-top: 1.25rem;
}

.ci360-programs-foundation-card {
    position: relative;
    padding: 1.7rem;
    border: 1px solid rgba(47, 102, 67, 0.15);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.76);
}

.ci360-programs-foundation-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.1rem;
    border-radius: 999px;
    background: #dbeadd;
    font-size: 0.78rem;
    font-weight: 900;
    color: #256541;
}

.ci360-programs-foundation-card h3 {
    margin: 0;
    font-size: 1.14rem;
    line-height: 1.3;
}

.ci360-programs-foundation-card p {
    margin: 0.75rem 0 0;
    line-height: 1.65;
    color: #5b6a62;
}

.ci360-programs-catalogue {
    background: #ffffff;
}

.ci360-programs-group {
    scroll-margin-top: 7rem;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid #e2eae4;
    border-radius: 2rem;
    background: #fbfcfb;
}

.ci360-programs-group + .ci360-programs-group {
    margin-top: 1.5rem;
}

.ci360-programs-group__intro {
    display: grid;
    grid-template-columns: minmax(15rem, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.ci360-programs-group__media {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 1.35rem;
    background: #e4ece6;
}

.ci360-programs-group__media img {
    height: 100%;
    object-fit: cover;
}

.ci360-programs-group__copy h3 {
    margin: 0;
    max-width: 22ch;
    font-size: clamp(1.8rem, 3.7vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.ci360-programs-group__copy > p:last-child {
    margin: 1rem 0 0;
    max-width: 42rem;
    line-height: 1.75;
    color: #5c6d63;
}

.ci360-programs-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ci360-program-card {
    display: grid;
    grid-template-columns: 4.4rem minmax(0, 1fr);
    gap: 1.15rem;
    align-items: start;
    padding: clamp(1.25rem, 3vw, 1.8rem);
    border: 1px solid #dfe8e1;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 0.75rem 2rem rgba(26, 70, 47, 0.055);
}

/* CI360 PROGRAMME CARD ICONS R1 START */
.ci360-program-card__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.ci360-program-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    border: 1px solid rgba(42, 114, 72, 0.14);
    border-radius: 1.2rem;
    background:
        linear-gradient(
            145deg,
            #f2f8f3,
            #e2eee5
        );
    color: #236a43;
}

.ci360-program-card__icon svg {
    width: 2.35rem;
    height: 2.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ci360-program-card__number {
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #8a722f;
}
/* CI360 PROGRAMME CARD ICONS R1 END */

.ci360-program-card h4 {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.25;
}

.ci360-program-card p {
    margin: 0.7rem 0 1rem;
    line-height: 1.65;
    color: #5a6a61;
}

.ci360-programs-experience {
    background: #f5f8f5;
}

.ci360-programs-experience__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
}

.ci360-programs-experience__list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ci360-programs-experience__list li {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #dce6de;
    border-radius: 1rem;
    background: #ffffff;
    font-weight: 750;
}

.ci360-programs-experience__list li::before {
    position: absolute;
    top: 50%;
    left: 1.1rem;
    width: 0.8rem;
    height: 0.8rem;
    content: "";
    border-radius: 999px;
    background: #eabf4f;
    transform: translateY(-50%);
    box-shadow: 0 0 0 0.35rem rgba(234, 191, 79, 0.17);
}

.ci360-programs-nests {
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(234, 191, 79, 0.15),
            transparent 24rem
        ),
        linear-gradient(135deg, #123523, #1c5b3d);
    color: #ffffff;
}

.ci360-programs-heading--light > p:last-child {
    color: rgba(255, 255, 255, 0.75);
}

.ci360-programs-nests-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.ci360-programs-nest-card {
    min-height: 100%;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
}

.ci360-programs-nest-card > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.15rem;
    border-radius: 999px;
    background: #edc352;
    font-size: 1.05rem;
    font-weight: 900;
    color: #183726;
}

.ci360-programs-nest-card h3 {
    margin: 0;
    font-size: 1.3rem;
}

.ci360-programs-nest-card p {
    margin: 0.75rem 0 0;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
}

.ci360-programs-cta {
    background:
        linear-gradient(
            135deg,
            #f4e6ac,
            #f4c957 55%,
            #eab43d
        );
}

.ci360-programs-cta__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.ci360-programs-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
}

.ci360-programs-cta .ci360-button {
    justify-content: center;
}

.ci360-programs-cta .ci360-button--primary {
    background: #173d2a;
    border-color: #173d2a;
    color: #ffffff;
}

.ci360-programs-cta .ci360-button--secondary {
    border-color: rgba(23, 61, 42, 0.35);
    color: #173d2a;
}

.ci360-programs-cta__phone {
    display: block;
    padding: 0.65rem;
    text-align: center;
    font-weight: 850;
    color: #173d2a;
}

#digital-pathway,
#practical-pathway,
#climate-pathway,
#creative-pathway,
#enterprise-pathway,
#programme-pathways {
    scroll-margin-top: 7rem;
}

@media (max-width: 1080px) {
    .ci360-programs-hero__grid,
    .ci360-programs-foundation__intro,
    .ci360-programs-experience__grid,
    .ci360-programs-cta__grid {
        grid-template-columns: 1fr;
    }

    .ci360-programs-pathway-card,
    .ci360-programs-pathway-card:nth-child(4),
    .ci360-programs-pathway-card:nth-child(5) {
        grid-column: span 6;
    }

    .ci360-programs-foundation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .ci360-programs-section {
        padding: 4.25rem 0;
    }

    .ci360-programs-hero {
        padding: 5rem 0 4.5rem;
    }

    .ci360-programs-hero__panel,
    .ci360-programs-launch-course,
    .ci360-programs-group__intro,
    .ci360-programs-card-grid {
        grid-template-columns: 1fr;
    }

    .ci360-programs-pathway-card,
    .ci360-programs-pathway-card:nth-child(4),
    .ci360-programs-pathway-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .ci360-programs-foundation-grid,
    .ci360-programs-nests-grid {
        grid-template-columns: 1fr;
    }

    .ci360-programs-group {
        padding: 1rem;
        border-radius: 1.4rem;
    }

    .ci360-program-card {
        grid-template-columns: 1fr;
    }

    .ci360-program-card__visual {
        flex-direction: row;
        justify-content: flex-start;
    }

    .ci360-programs-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ci360-programs-actions .ci360-button {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ci360-programs-pathway-card__media img {
        transition: none;
    }
}

/* =========================================================
   CI360 OUR PROGRAMS R1 END
   ========================================================= */

/* =========================================================
   CI360 OUR PROGRAMS R2 VISUAL REVISION START
   ========================================================= */

/* Compact hero aligned with the other principal page heroes. */
.ci360-programs-hero {
    padding:
        clamp(4.25rem, 6.5vw, 6.5rem)
        0
        clamp(3.75rem, 5.5vw, 5.5rem);
}

.ci360-programs-hero__grid {
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.ci360-programs-hero h1 {
    max-width: 13ch;
    font-size: clamp(3rem, 5vw, 4.75rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.ci360-programs-hero__lead {
    max-width: 42rem;
    font-size: clamp(1rem, 1.35vw, 1.14rem);
}

/* Institutional foundation and catalogue introductions. */
.ci360-programs-foundation-summary,
.ci360-programs-catalogue-card {
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.6rem;
    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(238, 185, 44, 0.2),
            transparent 17rem
        ),
        linear-gradient(135deg, #103b29, #17543a);
    box-shadow: 0 1.6rem 4rem rgba(14, 49, 34, 0.14);
    color: #ffffff;
}

.ci360-programs-foundation-summary {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.ci360-programs-catalogue-card {
    margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.ci360-programs-foundation-summary__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: end;
}

.ci360-programs-foundation-summary .ci360-kicker,
.ci360-programs-catalogue-card .ci360-kicker {
    color: #f2c95c;
}

.ci360-programs-foundation-summary h2,
.ci360-programs-catalogue-card h2 {
    margin: 0.75rem 0 0;
    max-width: 18ch;
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.ci360-programs-foundation-summary p:last-child,
.ci360-programs-catalogue-card > p:last-child {
    margin: 0;
    max-width: 48rem;
    font-size: clamp(1rem, 1.35vw, 1.13rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.84);
}

.ci360-programs-catalogue-card > p:last-child {
    margin-top: 1.25rem;
}

/* Keep programme pathways text-led rather than image-led. */
.ci360-programs-group__intro {
    grid-template-columns: minmax(10rem, 0.38fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

.ci360-programs-group__media {
    width: 100%;
    max-width: 18rem;
}

.ci360-programs-group__media img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* Make the programme and application action the card focus. */
.ci360-program-card__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.ci360-program-card__apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2.9rem;
    margin-top: auto;
    padding: 0.78rem 1.05rem;
    border: 1px solid #1d6842;
    border-radius: 999px;
    background: #1d6842;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

.ci360-program-card__apply:hover,
.ci360-program-card__apply:focus-visible {
    transform: translateY(-2px);
    border-color: #154d31;
    background: #154d31;
    color: #ffffff !important;
}

#mandatory-training,
#programme-offerings,
.ci360-programs-group {
    scroll-margin-top: 6rem;
}

@media (max-width: 780px) {
    .ci360-programs-hero {
        padding: 3.75rem 0 3.5rem;
    }

    .ci360-programs-hero h1 {
        max-width: 12ch;
        font-size: clamp(2.75rem, 12vw, 4rem);
    }

    .ci360-programs-foundation-summary__grid {
        grid-template-columns: 1fr;
    }

    .ci360-programs-group__intro {
        grid-template-columns: 1fr;
    }

    .ci360-programs-group__media {
        max-width: 14rem;
    }

    .ci360-program-card__apply {
        width: 100%;
    }
}

/* =========================================================
   CI360 OUR PROGRAMS R2 VISUAL REVISION END
   ========================================================= */

/* =========================================================
   CI360 OUR PROGRAMS R3 VISUAL REVISION START
   ========================================================= */

/*
 * Visual revision following logged-in review:
 * - compact inner-page hero scale
 * - green institutional palette without a deep-blue treatment
 * - programme catalogue preserved
 * - full N.E.S.T.S. block removed from this page
 * - final CTA aligned with the About and Why 360 page family
 */

.ci360-programs-page {
    background: #f5f8f3;
}

.ci360-programs-hero {
    padding:
        clamp(3.25rem, 5vw, 4.5rem)
        0
        clamp(3rem, 4.5vw, 4rem);
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(245, 189, 61, 0.18),
            transparent 29%
        ),
        linear-gradient(
            118deg,
            #1f684b 0%,
            #2f7d4b 52%,
            #4c9143 100%
        );
}

.ci360-programs-hero::after {
    opacity: 0.12;
}

.ci360-programs-hero__grid {
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(18rem, 0.88fr);
    gap: clamp(2rem, 4vw, 4rem);
}

.ci360-programs-hero__copy {
    max-width: 680px;
}

.ci360-programs-hero h1 {
    max-width: 650px;
    margin-bottom: 1.25rem;
    font-size: clamp(2.8rem, 4vw, 3.75rem);
    line-height: 1;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.ci360-programs-hero__lead {
    max-width: 620px;
    margin-top: 0;
    font-size: clamp(1.02rem, 1.4vw, 1.2rem);
    line-height: 1.6;
}

.ci360-programs-actions {
    margin-top: 1.55rem;
}

/* Final CTA aligned with the accepted inner-page CTA system. */

.ci360-programs-final-cta {
    padding: clamp(3.5rem, 7vw, 5.75rem) 0;
    background:
        linear-gradient(
            180deg,
            #f3f7f1 0%,
            #e8f2e5 100%
        );
}

.ci360-programs-final-cta__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1.75rem, 4vw, 4rem);
    align-items: center;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3.25rem);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 24px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 96% 88%,
            rgba(245, 189, 61, 0.17),
            transparent 26%
        ),
        linear-gradient(
            118deg,
            #5ba934 0%,
            #3d8a3d 52%,
            #246b40 100%
        );
    box-shadow: 0 22px 48px rgba(24, 76, 56, 0.16);
}

.ci360-programs-final-cta__panel::after {
    position: absolute;
    right: -5rem;
    bottom: -6rem;
    width: 15rem;
    height: 15rem;
    content: "";
    border: 1px solid rgba(255, 226, 154, 0.34);
    border-radius: 50%;
    pointer-events: none;
}

.ci360-programs-final-cta__copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.ci360-programs-final-cta .ci360-kicker {
    margin-bottom: 1rem;
    color: #ffe29a;
}

.ci360-programs-final-cta__copy h2 {
    max-width: 15ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.15rem, 4vw, 3.55rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.ci360-programs-final-cta__copy > p:not(.ci360-kicker) {
    max-width: 650px;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
}

.ci360-programs-final-cta__actions {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.75rem;
    min-width: min(100%, 15rem);
}

.ci360-programs-final-cta__actions .ci360-button {
    width: 100%;
    min-height: 3rem;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    white-space: nowrap;
}

.ci360-programs-final-cta__actions .ci360-button--primary {
    color: #123f33;
    background: #f4c143;
}

.ci360-programs-final-cta__actions .ci360-button--primary:hover,
.ci360-programs-final-cta__actions .ci360-button--primary:focus-visible {
    color: #0d342c;
    background: #ffe19a;
}

.ci360-programs-final-cta__actions .ci360-button--secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.08);
}

.ci360-programs-final-cta__actions .ci360-button--secondary:hover,
.ci360-programs-final-cta__actions .ci360-button--secondary:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.16);
}

.ci360-programs-final-cta__note {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.55;
}

.ci360-programs-final-cta__note a {
    margin-left: 0.35rem;
    color: #ffffff;
    font-weight: 850;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

@media (max-width: 900px) {
    .ci360-programs-hero__grid {
        grid-template-columns: 1fr;
    }

    .ci360-programs-hero__copy {
        max-width: none;
    }

    .ci360-programs-hero__panel {
        width: min(100%, 38rem);
    }

    .ci360-programs-final-cta__panel {
        grid-template-columns: 1fr;
    }

    .ci360-programs-final-cta__actions {
        width: min(100%, 22rem);
    }
}

@media (max-width: 680px) {
    .ci360-programs-hero {
        padding: 3rem 0 3.25rem;
    }

    .ci360-programs-hero h1 {
        max-width: 14ch;
        font-size: clamp(2.4rem, 10vw, 3rem);
    }

    .ci360-programs-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ci360-programs-actions .ci360-button {
        width: 100%;
        justify-content: center;
    }

    .ci360-programs-final-cta {
        padding: 3.25rem 0;
    }

    .ci360-programs-final-cta__panel {
        gap: 1.6rem;
        padding: 1.6rem;
        border-radius: 20px;
    }

    .ci360-programs-final-cta__copy h2 {
        font-size: clamp(2rem, 9vw, 2.65rem);
    }

    .ci360-programs-final-cta__actions {
        width: 100%;
    }

    .ci360-programs-final-cta__note a {
        display: inline-block;
        margin: 0.25rem 0 0;
    }
}

/* =========================================================
   CI360 OUR PROGRAMS R3 VISUAL REVISION END
   ========================================================= */

/* =========================================================
   CI360 APPLY FOR TRAINING R1 START
   ========================================================= */
/* =========================================================
   360 CLIMATE INSTITUTES
   APPLY FOR TRAINING — R1
   ========================================================= */

.ci360-apply-page {
    background: #f5f8f5;
    color: #17332a;
}

.ci360-apply-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.75rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6.5rem);
    background:
        radial-gradient(circle at 88% 15%, rgba(34, 139, 94, 0.14), transparent 30rem),
        linear-gradient(135deg, #edf7f1 0%, #f7faf7 58%, #eef5ef 100%);
    border-bottom: 1px solid rgba(22, 91, 65, 0.12);
}

.ci360-apply-hero::after {
    content: "";
    position: absolute;
    right: -7rem;
    bottom: -10rem;
    width: 24rem;
    height: 24rem;
    border: 1px solid rgba(34, 139, 94, 0.13);
    border-radius: 50%;
    box-shadow:
        0 0 0 3.25rem rgba(34, 139, 94, 0.035),
        0 0 0 6.5rem rgba(34, 139, 94, 0.025);
    pointer-events: none;
}

.ci360-apply-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: center;
}

.ci360-apply-hero__copy {
    max-width: 51rem;
}

.ci360-apply-hero h1 {
    max-width: 48rem;
    margin: 0.8rem 0 1.35rem;
    color: #17332a;
    font-size: clamp(2.7rem, 4.2vw, 3.8rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.ci360-apply-hero__lead {
    max-width: 46rem;
    margin: 0;
    color: #4d625b;
    font-size: clamp(1.04rem, 1.35vw, 1.18rem);
    line-height: 1.75;
}

.ci360-apply-hero__selection {
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    margin: 1.7rem 0 0;
    padding: 0.9rem 1.1rem;
    background: #ffffff;
    border: 1px solid rgba(22, 91, 65, 0.16);
    border-left: 0.3rem solid #178154;
    border-radius: 0.9rem;
    box-shadow: 0 0.85rem 2rem rgba(21, 69, 51, 0.08);
}

.ci360-apply-hero__selection span {
    color: #60736c;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ci360-apply-hero__selection strong {
    color: #17332a;
    font-size: 0.98rem;
}

.ci360-apply-hero__summary {
    padding: clamp(1.55rem, 3vw, 2.2rem);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(22, 91, 65, 0.14);
    border-radius: 1.35rem;
    box-shadow: 0 1.4rem 3.5rem rgba(21, 69, 51, 0.1);
    backdrop-filter: blur(0.5rem);
}

.ci360-apply-hero__summary > p {
    margin: 1.25rem 0 0;
    padding-top: 1.25rem;
    color: #52675f;
    line-height: 1.68;
    border-top: 1px solid rgba(22, 91, 65, 0.12);
}

.ci360-apply-summary-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: center;
}

.ci360-apply-summary-item + .ci360-apply-summary-item {
    margin-top: 0.95rem;
}

.ci360-apply-summary-item strong {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    color: #ffffff;
    background: #178154;
    border-radius: 0.85rem;
    font-size: 1.15rem;
}

.ci360-apply-summary-item span {
    color: #263f36;
    font-weight: 700;
    line-height: 1.35;
}

.ci360-apply-section {
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.ci360-apply-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.72fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
}

.ci360-apply-form-card,
.ci360-apply-guide-card,
.ci360-apply-contact-card,
.ci360-apply-programmes-link {
    border: 1px solid rgba(22, 91, 65, 0.12);
    border-radius: 1.25rem;
    box-shadow: 0 1.15rem 3rem rgba(24, 65, 49, 0.075);
}

.ci360-apply-form-card {
    padding: clamp(1.5rem, 4vw, 3rem);
    background: #ffffff;
}

.ci360-apply-form-heading {
    max-width: 43rem;
    margin-bottom: 2rem;
}

.ci360-apply-form-heading h2,
.ci360-apply-notice h2,
.ci360-apply-guide-card h2,
.ci360-apply-contact-card h2 {
    margin: 0.55rem 0 0.8rem;
    color: #17332a;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ci360-apply-form-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.ci360-apply-form-heading > p:last-child,
.ci360-apply-guide-card > p,
.ci360-apply-contact-card > p {
    color: #5d7069;
    line-height: 1.7;
}

.ci360-application-form {
    position: relative;
}

.ci360-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1.2rem;
}

.ci360-form-field {
    min-width: 0;
}

.ci360-form-field--full {
    grid-column: 1 / -1;
}

.ci360-form-field label {
    display: block;
    margin-bottom: 0.48rem;
    color: #203d33;
    font-size: 0.92rem;
    font-weight: 750;
}

.ci360-form-field label span,
.ci360-form-consent span[aria-hidden="true"] {
    color: #b4432c;
}

.ci360-form-field input,
.ci360-form-field select,
.ci360-form-field textarea {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.78rem 0.9rem;
    color: #17332a;
    background: #fbfdfb;
    border: 1px solid #cbd8d0;
    border-radius: 0.72rem;
    box-shadow: inset 0 1px 0 rgba(16, 65, 46, 0.025);
    font: inherit;
    line-height: 1.45;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.ci360-form-field textarea {
    min-height: 10rem;
    resize: vertical;
}

.ci360-form-field input:hover,
.ci360-form-field select:hover,
.ci360-form-field textarea:hover {
    border-color: #9eb5a8;
}

.ci360-form-field input:focus,
.ci360-form-field select:focus,
.ci360-form-field textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #178154;
    box-shadow: 0 0 0 0.22rem rgba(23, 129, 84, 0.14);
}

.ci360-form-field small {
    display: block;
    margin-top: 0.45rem;
    color: #6c7d76;
    font-size: 0.8rem;
    line-height: 1.5;
}

.ci360-form-consent {
    display: grid;
    grid-template-columns: 1.25rem 1fr;
    gap: 0.72rem;
    align-items: start;
    margin: 1.6rem 0 0;
    padding: 1rem 1.05rem;
    color: #40564e;
    background: #f1f7f3;
    border: 1px solid rgba(22, 91, 65, 0.13);
    border-radius: 0.8rem;
    line-height: 1.55;
    cursor: pointer;
}

.ci360-form-consent input {
    width: 1.15rem;
    height: 1.15rem;
    margin: 0.15rem 0 0;
    accent-color: #178154;
}

.ci360-apply-submit-row {
    display: flex;
    gap: 1rem 1.4rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.6rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(22, 91, 65, 0.12);
}

.ci360-apply-submit-row .ci360-button {
    min-width: 12.5rem;
    justify-content: center;
}

.ci360-apply-submit-row p {
    max-width: 22rem;
    margin: 0;
    color: #718079;
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: right;
}

.ci360-apply-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.ci360-apply-notice {
    margin-bottom: 1.65rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: 1rem;
}

.ci360-apply-notice--error {
    color: #6f2c20;
    background: #fff4f1;
    border: 1px solid #edc5bc;
}

.ci360-apply-notice--error h3 {
    margin: 0 0 0.65rem;
    color: #7b2e20;
}

.ci360-apply-notice--error ul {
    margin: 0;
    padding-left: 1.25rem;
}

.ci360-apply-notice--success {
    color: #29473b;
    background: #edf8f1;
    border: 1px solid #b8ddc7;
}

.ci360-apply-notice__kicker {
    margin: 0;
    color: #178154;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ci360-apply-reference {
    display: inline-flex;
    flex-direction: column;
    gap: 0.18rem;
    margin: 0.7rem 0 1.35rem;
    padding: 0.8rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(22, 91, 65, 0.16);
    border-radius: 0.75rem;
}

.ci360-apply-reference span {
    color: #64766e;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ci360-apply-reference strong {
    color: #17332a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1rem;
}

.ci360-apply-sidebar {
    display: grid;
    gap: 1.25rem;
    position: sticky;
    top: 7rem;
}

.ci360-apply-guide-card,
.ci360-apply-contact-card {
    padding: clamp(1.35rem, 3vw, 2rem);
    background: #ffffff;
}

.ci360-apply-steps {
    display: grid;
    gap: 1.1rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.ci360-apply-steps li {
    display: grid;
    grid-template-columns: 2.45rem 1fr;
    gap: 0.85rem;
    align-items: start;
}

.ci360-apply-steps li > span {
    display: grid;
    place-items: center;
    width: 2.45rem;
    height: 2.45rem;
    color: #ffffff;
    background: #178154;
    border-radius: 0.72rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.ci360-apply-steps strong {
    display: block;
    color: #244238;
    line-height: 1.35;
}

.ci360-apply-steps p {
    margin: 0.28rem 0 0;
    color: #687a73;
    font-size: 0.88rem;
    line-height: 1.55;
}

.ci360-apply-contact-card {
    color: #ffffff;
    background: linear-gradient(145deg, #116c49 0%, #0b5b3c 100%);
    border-color: transparent;
}

.ci360-apply-contact-card .ci360-eyebrow,
.ci360-apply-contact-card h2,
.ci360-apply-contact-card > p {
    color: #ffffff;
}

.ci360-apply-contact-card > p {
    opacity: 0.86;
}

.ci360-apply-contact-card a {
    display: block;
    width: fit-content;
    margin-top: 0.75rem;
    color: #ffffff;
    font-weight: 750;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

.ci360-apply-programmes-link {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    padding: 1.15rem 1.25rem;
    color: #17332a;
    background: #eef5f0;
    text-decoration: none;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.ci360-apply-programmes-link span {
    color: #63766e;
    font-size: 0.82rem;
}

.ci360-apply-programmes-link strong {
    color: #126f4a;
}

.ci360-apply-programmes-link:hover,
.ci360-apply-programmes-link:focus-visible {
    transform: translateY(-0.15rem);
    border-color: rgba(23, 129, 84, 0.34);
    box-shadow: 0 1.35rem 3rem rgba(24, 65, 49, 0.11);
}

@media (max-width: 960px) {
    .ci360-apply-hero__grid,
    .ci360-apply-layout {
        grid-template-columns: 1fr;
    }

    .ci360-apply-hero__summary {
        max-width: 38rem;
    }

    .ci360-apply-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ci360-apply-programmes-link {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .ci360-apply-hero {
        padding-top: 3.6rem;
        padding-bottom: 3.6rem;
    }

    .ci360-apply-hero h1 {
        font-size: clamp(2.3rem, 11vw, 3rem);
    }

    .ci360-form-grid,
    .ci360-apply-sidebar {
        grid-template-columns: 1fr;
    }

    .ci360-form-field--full,
    .ci360-apply-programmes-link {
        grid-column: auto;
    }

    .ci360-apply-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .ci360-apply-submit-row .ci360-button {
        width: 100%;
    }

    .ci360-apply-submit-row p {
        max-width: none;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ci360-form-field input,
    .ci360-form-field select,
    .ci360-form-field textarea,
    .ci360-apply-programmes-link {
        transition: none;
    }
}

/* =========================================================
   CI360 APPLY FOR TRAINING R1 END
   ========================================================= */

/* CI360 EVENTS LANDING PAGE START - STAGE 6E-1 */
/* =========================================================
   EVENTS LANDING PAGE
   Light surfaces, restrained headings and compact imagery.
   ========================================================= */

.ci360-events-page {
	background: #ffffff;
	color: #1d2f29;
}

.ci360-events-hero {
	padding: clamp(3rem, 6vw, 4.75rem) 0;
	background: linear-gradient(135deg, #eff7f1 0%, #fbfdf9 100%);
	border-bottom: 1px solid rgba(39, 100, 76, 0.12);
}

.ci360-events-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
	gap: clamp(1.75rem, 4vw, 3.75rem);
	align-items: center;
}

.ci360-events-hero__copy {
	max-width: 760px;
}

.ci360-events-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 0.9rem;
	color: #277451;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ci360-events-eyebrow::before {
	width: 1.5rem;
	height: 2px;
	content: "";
	background: #7eaa45;
	border-radius: 999px;
}

.ci360-events-hero h1 {
	max-width: 760px;
	margin: 0;
	color: #183b2d;
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.ci360-events-hero__lead {
	max-width: 700px;
	margin: 1.2rem 0 0;
	color: #4d625a;
	font-size: clamp(1rem, 1.7vw, 1.12rem);
	line-height: 1.72;
}

.ci360-events-hero__actions,
.ci360-events-feature-card__actions,
.ci360-events-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1.1rem;
	align-items: center;
}

.ci360-events-hero__actions {
	margin-top: 1.65rem;
}

.ci360-events-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: #205f43;
	font-size: 0.95rem;
	font-weight: 800;
	text-decoration: none;
}

.ci360-events-text-link span {
	transition: transform 180ms ease;
}

.ci360-events-text-link:hover,
.ci360-events-text-link:focus-visible {
	color: #183b2d;
	text-decoration: underline;
	text-underline-offset: 0.25rem;
}

.ci360-events-text-link:hover span,
.ci360-events-text-link:focus-visible span {
	transform: translateX(0.2rem);
}

.ci360-events-hero__summary {
	padding: clamp(1.25rem, 2.5vw, 1.8rem);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(39, 100, 76, 0.16);
	border-radius: 1rem;
	box-shadow: 0 14px 34px rgba(30, 75, 57, 0.07);
}

.ci360-events-summary__label {
	margin: 0 0 0.9rem;
	color: #183b2d;
	font-size: 0.92rem;
	font-weight: 800;
}

.ci360-events-hero__summary ul {
	display: grid;
	gap: 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ci360-events-hero__summary li {
	position: relative;
	padding-left: 1.25rem;
	color: #53665f;
	font-size: 0.94rem;
	line-height: 1.5;
}

.ci360-events-hero__summary li::before {
	position: absolute;
	top: 0.5rem;
	left: 0;
	width: 0.45rem;
	height: 0.45rem;
	content: "";
	background: #7eaa45;
	border-radius: 50%;
}

.ci360-events-featured,
.ci360-events-purpose,
.ci360-events-cta {
	padding: clamp(3.4rem, 6vw, 5.5rem) 0;
}

.ci360-events-featured {
	background: #ffffff;
}

.ci360-events-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 0.62fr);
	gap: clamp(1.4rem, 3.5vw, 3rem);
	align-items: end;
	margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem);
}

.ci360-events-section-heading h2,
.ci360-events-cta h2 {
	margin: 0;
	color: #183b2d;
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	letter-spacing: -0.025em;
	line-height: 1.16;
}

.ci360-events-section-heading > p,
.ci360-events-cta p {
	margin: 0;
	color: #596c64;
	font-size: 1rem;
	line-height: 1.68;
}

.ci360-events-feature-card {
	display: grid;
	grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
	overflow: hidden;
	background: #f7faf7;
	border: 1px solid rgba(39, 100, 76, 0.13);
	border-radius: 1.1rem;
	box-shadow: 0 16px 38px rgba(30, 75, 57, 0.06);
}

.ci360-events-feature-card__media {
	min-height: 100%;
	margin: 0;
	background: #edf5ef;
}

.ci360-events-feature-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 320px;
	object-fit: cover;
	object-position: center;
}

.ci360-events-feature-card__content {
	padding: clamp(1.5rem, 3.5vw, 2.6rem);
}

.ci360-events-feature-card__tag {
	display: inline-flex;
	margin: 0 0 0.9rem;
	padding: 0.38rem 0.68rem;
	color: #246749;
	background: #e9f4ec;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ci360-events-feature-card h3 {
	margin: 0;
	color: #183b2d;
	font-size: clamp(1.45rem, 2.5vw, 1.9rem);
	line-height: 1.2;
}

.ci360-events-feature-card__content > p:not(.ci360-events-feature-card__tag) {
	margin: 0.95rem 0 0;
	color: #596c64;
	line-height: 1.68;
}

.ci360-events-feature-card__points {
	display: grid;
	gap: 0.6rem;
	margin: 1.2rem 0 0;
	padding: 0;
	list-style: none;
}

.ci360-events-feature-card__points li {
	position: relative;
	padding-left: 1.4rem;
	color: #3f564d;
	font-size: 0.95rem;
	line-height: 1.52;
}

.ci360-events-feature-card__points li::before {
	position: absolute;
	top: 0.43rem;
	left: 0;
	width: 0.52rem;
	height: 0.52rem;
	content: "";
	background: #7eaa45;
	border-radius: 50%;
}

.ci360-events-feature-card__actions {
	margin-top: 1.5rem;
}

.ci360-events-purpose {
	background: #f7faf7;
	border-top: 1px solid rgba(39, 100, 76, 0.08);
	border-bottom: 1px solid rgba(39, 100, 76, 0.08);
}

.ci360-events-purpose__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.ci360-events-purpose-card {
	padding: clamp(1.3rem, 2.5vw, 1.8rem);
	background: #ffffff;
	border: 1px solid rgba(39, 100, 76, 0.12);
	border-radius: 0.95rem;
}

.ci360-events-purpose-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin-bottom: 0.9rem;
	color: #246749;
	background: #e9f4ec;
	border-radius: 50%;
	font-size: 0.75rem;
	font-weight: 900;
}

.ci360-events-purpose-card h3 {
	margin: 0;
	color: #183b2d;
	font-size: 1.12rem;
}

.ci360-events-purpose-card p {
	margin: 0.65rem 0 0;
	color: #596c64;
	font-size: 0.94rem;
	line-height: 1.62;
}

.ci360-events-cta {
	background: #ffffff;
}

.ci360-events-cta__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(1.4rem, 4vw, 3.5rem);
	align-items: center;
	padding: clamp(1.6rem, 3.5vw, 2.6rem);
	background: linear-gradient(135deg, #f0f7f2 0%, #fafcf7 100%);
	border: 1px solid rgba(39, 100, 76, 0.14);
	border-radius: 1.05rem;
}

.ci360-events-cta__panel > div:first-child {
	max-width: 720px;
}

.ci360-events-cta p {
	margin-top: 0.8rem;
}

.ci360-events-cta__actions {
	justify-content: flex-end;
}

@media (max-width: 900px) {
	.ci360-events-hero__grid,
	.ci360-events-section-heading,
	.ci360-events-feature-card,
	.ci360-events-cta__panel {
		grid-template-columns: 1fr;
	}

	.ci360-events-hero__summary {
		max-width: 620px;
	}

	.ci360-events-feature-card__media img {
		height: 280px;
		max-height: 280px;
	}

	.ci360-events-purpose__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ci360-events-cta__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.ci360-events-hero {
		padding: 2.8rem 0;
	}

	.ci360-events-hero h1 {
		font-size: clamp(1.9rem, 9vw, 2.35rem);
	}

	.ci360-events-featured,
	.ci360-events-purpose,
	.ci360-events-cta {
		padding: 3.1rem 0;
	}

	.ci360-events-purpose__grid {
		grid-template-columns: 1fr;
	}

	.ci360-events-feature-card__media img {
		height: 220px;
		max-height: 220px;
	}

	.ci360-events-hero__actions,
	.ci360-events-feature-card__actions,
	.ci360-events-cta__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.ci360-events-hero__actions .ci360-button,
	.ci360-events-feature-card__actions .ci360-button,
	.ci360-events-cta__actions .ci360-button {
		justify-content: center;
		width: 100%;
	}
}
/* CI360 EVENTS LANDING PAGE END - STAGE 6E-1 */


/* === 360 EVENTS R2 START === */
/* EVENTS R2 START */
.ci360-events-r2{--e-green:#176b4d;--e-deep:#124f3b;--e-soft:#eaf5ed;--e-pale:#f6faf7;--e-gold:#d99a2b;--e-gold-soft:#fff5df;--e-ink:#19362d;--e-copy:#536960;--e-border:#d6e5d9;--e-white:#fff;color:var(--e-ink);background:var(--e-white)}
.ci360-events-r2,.ci360-events-r2 *{box-sizing:border-box}
.ci360-events-r2 img{display:block;max-width:100%}
.ci360-events-r2__shell{width:min(1180px,calc(100% - 40px));margin-inline:auto}
.ci360-events-r2__hero{padding:clamp(54px,7vw,90px) 0;background:linear-gradient(135deg,#f7fbf8 0%,var(--e-soft) 62%,#fff8e9 100%);border-bottom:1px solid var(--e-border)}
.ci360-events-r2__hero-grid{display:grid;grid-template-columns:minmax(0,.92fr) minmax(440px,1.08fr);gap:clamp(34px,6vw,72px);align-items:center}
.ci360-events-r2__hero-copy{max-width:620px}
.ci360-events-r2__eyebrow{margin:0 0 12px;color:var(--e-green);font-size:.77rem;font-weight:800;letter-spacing:.13em;line-height:1.4;text-transform:uppercase}
.ci360-events-r2 h1,.ci360-events-r2 h2,.ci360-events-r2 h3{margin-top:0;color:var(--e-ink);font-family:inherit;letter-spacing:-.025em}
.ci360-events-r2 h1{max-width:680px;margin-bottom:0;font-size:clamp(2.25rem,5vw,3.5rem);line-height:1.04}
.ci360-events-r2 h2{margin-bottom:0;font-size:clamp(1.85rem,3.6vw,2.7rem);line-height:1.12}
.ci360-events-r2 h3{margin-bottom:0;font-size:clamp(1.12rem,2vw,1.4rem);line-height:1.28}
.ci360-events-r2__lead{max-width:660px;margin:22px 0 0;color:var(--e-copy);font-size:clamp(1.02rem,1.5vw,1.14rem);line-height:1.78}
.ci360-events-r2__actions{display:flex;flex-wrap:wrap;gap:13px;align-items:center;margin-top:28px}
.ci360-events-r2__button{display:inline-flex;min-height:48px;align-items:center;justify-content:center;padding:12px 21px;border:1px solid transparent;border-radius:999px;font-size:.94rem;font-weight:750;line-height:1.25;text-align:center;text-decoration:none;transition:transform .16s ease,box-shadow .16s ease,background-color .16s ease,border-color .16s ease}
.ci360-events-r2__button:hover,.ci360-events-r2__button:focus-visible{transform:translateY(-2px)}
.ci360-events-r2__button:focus-visible,.ci360-events-r2__text-link:focus-visible,.ci360-events-r2__story-image:focus-visible{outline:3px solid rgba(217,154,43,.42);outline-offset:4px}
.ci360-events-r2__button--primary{color:var(--e-white);background:var(--e-green);box-shadow:0 12px 28px rgba(23,107,77,.18)}
.ci360-events-r2__button--primary:hover,.ci360-events-r2__button--primary:focus-visible{color:var(--e-white);background:var(--e-deep)}
.ci360-events-r2__button--secondary{color:var(--e-deep);background:rgba(255,255,255,.74);border-color:rgba(23,107,77,.28)}
.ci360-events-r2__button--secondary:hover,.ci360-events-r2__button--secondary:focus-visible{color:var(--e-deep);background:var(--e-white);border-color:var(--e-green)}
.ci360-events-r2__hero-media{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(170px,.8fr);grid-template-rows:repeat(2,minmax(180px,1fr));gap:14px;min-height:420px}
.ci360-events-r2__hero-figure{position:relative;min-width:0;margin:0;overflow:hidden;border:5px solid rgba(255,255,255,.92);border-radius:22px;background:var(--e-soft);box-shadow:0 18px 48px rgba(25,54,45,.14)}
.ci360-events-r2__hero-figure--main{grid-row:1/span 2}
.ci360-events-r2__hero-figure img{width:100%;height:100%;object-fit:cover}
.ci360-events-r2__hero-figure figcaption{position:absolute;right:12px;bottom:12px;padding:7px 11px;border-radius:999px;color:var(--e-ink);background:rgba(255,255,255,.9);font-size:.72rem;font-weight:800;letter-spacing:.04em;line-height:1.2}
.ci360-events-r2__section{padding:clamp(60px,7vw,94px) 0}
.ci360-events-r2__section--tint{background:var(--e-pale);border-block:1px solid var(--e-border)}
.ci360-events-r2__latest-grid{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);gap:clamp(36px,6vw,76px);align-items:center}
.ci360-events-r2__latest-media{position:relative;overflow:hidden;border-radius:24px;background:var(--e-soft);box-shadow:0 20px 55px rgba(25,54,45,.13)}
.ci360-events-r2__latest-media img{width:100%;aspect-ratio:1.55/1;object-fit:cover}
.ci360-events-r2__latest-copy{max-width:590px}
.ci360-events-r2__latest-copy>p:not(.ci360-events-r2__eyebrow):not(.ci360-events-r2__date),.ci360-events-r2__section-heading>p:not(.ci360-events-r2__eyebrow),.ci360-events-r2__impact-heading>p:not(.ci360-events-r2__eyebrow),.ci360-events-r2__cta>div>p:not(.ci360-events-r2__eyebrow):not(.ci360-events-r2__nest){color:var(--e-copy);font-size:1rem;line-height:1.75}
.ci360-events-r2__date,.ci360-events-r2__meta{margin:0 0 10px;color:var(--e-green);font-size:.76rem;font-weight:800;letter-spacing:.09em;line-height:1.4;text-transform:uppercase}
.ci360-events-r2__latest-copy h2{max-width:610px;margin-bottom:18px}
.ci360-events-r2__checklist{display:grid;gap:10px;margin:22px 0 0;padding:0;list-style:none}
.ci360-events-r2__checklist li{position:relative;padding-left:30px;color:var(--e-copy);line-height:1.55}
.ci360-events-r2__checklist li::before{position:absolute;top:.16em;left:0;display:grid;width:20px;height:20px;place-items:center;border-radius:50%;content:"✓";color:var(--e-white);background:var(--e-green);font-size:.72rem;font-weight:900}
.ci360-events-r2__text-link{display:inline-flex;gap:8px;align-items:center;color:var(--e-deep);font-size:.94rem;font-weight:800;line-height:1.4;text-decoration:none}
.ci360-events-r2__text-link:hover{color:var(--e-green)}
.ci360-events-r2__text-link span{transition:transform .16s ease}
.ci360-events-r2__text-link:hover span{transform:translateX(4px)}
.ci360-events-r2__section-heading{max-width:760px;margin-bottom:40px}
.ci360-events-r2__section-heading h2,.ci360-events-r2__impact-heading h2{margin-bottom:15px}
.ci360-events-r2__timeline{position:relative;display:grid;gap:18px}
.ci360-events-r2__timeline::before{position:absolute;top:34px;bottom:34px;left:30px;width:2px;content:"";background:var(--e-border)}
.ci360-events-r2__timeline-item{position:relative;display:grid;grid-template-columns:62px minmax(0,1fr);gap:24px;padding:26px 28px 26px 0;border:1px solid var(--e-border);border-radius:18px;background:var(--e-white);box-shadow:0 8px 24px rgba(25,54,45,.055)}
.ci360-events-r2__timeline-marker{z-index:1;display:grid;width:60px;height:60px;place-items:center;border:6px solid var(--e-pale);border-radius:50%;color:var(--e-white);background:var(--e-green);font-size:.78rem;font-weight:900}
.ci360-events-r2__timeline-item h3{margin-bottom:9px}
.ci360-events-r2__timeline-item p:not(.ci360-events-r2__meta){max-width:850px;margin:0 0 13px;color:var(--e-copy);line-height:1.68}
.ci360-events-r2__theme-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.ci360-events-r2__theme-card{position:relative;min-height:250px;padding:28px 24px;overflow:hidden;border:1px solid var(--e-border);border-radius:19px;background:var(--e-white);box-shadow:0 12px 34px rgba(25,54,45,.065)}
.ci360-events-r2__theme-card::after{position:absolute;right:-34px;bottom:-46px;width:120px;height:120px;border-radius:50%;content:"";background:var(--e-soft)}
.ci360-events-r2__theme-number{position:relative;z-index:1;display:inline-flex;margin-bottom:38px;color:var(--e-gold);font-size:.78rem;font-weight:900;letter-spacing:.08em}
.ci360-events-r2__theme-card h3,.ci360-events-r2__theme-card p{position:relative;z-index:1}
.ci360-events-r2__theme-card h3{margin-bottom:12px}
.ci360-events-r2__theme-card p{margin:0;color:var(--e-copy);line-height:1.65}
.ci360-events-r2__section--stories{background:linear-gradient(180deg,#fffdf8 0%,#fff 100%);border-top:1px solid #f0e4c8}
.ci360-events-r2__story-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.ci360-events-r2__story-card{overflow:hidden;border:1px solid var(--e-border);border-radius:20px;background:var(--e-white);box-shadow:0 15px 40px rgba(25,54,45,.085)}
.ci360-events-r2__story-image{position:relative;display:block;overflow:hidden;background:var(--e-soft)}
.ci360-events-r2__story-image img{width:100%;aspect-ratio:1.45/1;object-fit:cover;transition:transform .26s ease}
.ci360-events-r2__story-image:hover img{transform:scale(1.025)}
.ci360-events-r2__story-card:nth-child(3) .ci360-events-r2__story-image img{object-position:center 28%}
.ci360-events-r2__play{position:absolute;top:50%;left:50%;display:grid;width:58px;height:58px;place-items:center;padding-left:4px;border:4px solid rgba(255,255,255,.86);border-radius:50%;color:var(--e-white);background:rgba(23,107,77,.88);box-shadow:0 10px 28px rgba(25,54,45,.24);transform:translate(-50%,-50%)}
.ci360-events-r2__story-copy{padding:25px 24px 27px}
.ci360-events-r2__story-copy h3{margin-bottom:11px}
.ci360-events-r2__story-copy>p:not(.ci360-events-r2__meta){min-height:5.2em;margin:0 0 18px;color:var(--e-copy);line-height:1.65}
.ci360-events-r2__impact{padding:clamp(58px,7vw,84px) 0;background:var(--e-soft);border-block:1px solid var(--e-border)}
.ci360-events-r2__impact-heading{max-width:760px;margin-bottom:34px}
.ci360-events-r2__impact-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:15px}
.ci360-events-r2__impact-item{display:flex;min-height:170px;flex-direction:column;justify-content:center;padding:25px 22px;border:1px solid rgba(23,107,77,.14);border-radius:17px;background:rgba(255,255,255,.78)}
.ci360-events-r2__impact-item strong{color:var(--e-deep);font-size:clamp(2rem,4vw,3rem);line-height:1}
.ci360-events-r2__impact-item span{margin-top:10px;color:var(--e-ink);font-weight:800;line-height:1.35}
.ci360-events-r2__impact-item small{margin-top:6px;color:var(--e-copy);line-height:1.35}
.ci360-events-r2__cta{display:grid;grid-template-columns:minmax(0,1.2fr) auto;gap:36px;align-items:center;padding:clamp(32px,5vw,54px);border:1px solid var(--e-border);border-radius:24px;background:linear-gradient(135deg,var(--e-pale),var(--e-gold-soft));box-shadow:0 18px 48px rgba(25,54,45,.08)}
.ci360-events-r2__cta h2{max-width:760px;margin-bottom:14px}
.ci360-events-r2__cta>div>p{max-width:780px;margin-bottom:0}
.ci360-events-r2__nest{margin-top:17px;color:var(--e-deep);font-weight:800;line-height:1.55}
.ci360-events-r2__actions--cta{justify-content:flex-end;margin-top:0}
@media(max-width:980px){.ci360-events-r2__hero-grid,.ci360-events-r2__latest-grid,.ci360-events-r2__cta{grid-template-columns:1fr}.ci360-events-r2__hero-copy,.ci360-events-r2__latest-copy{max-width:none}.ci360-events-r2__hero-media{min-height:390px}.ci360-events-r2__theme-grid,.ci360-events-r2__impact-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ci360-events-r2__actions--cta{justify-content:flex-start}}
@media(max-width:760px){.ci360-events-r2__shell{width:min(100% - 28px,1180px)}.ci360-events-r2__hero{padding-top:48px}.ci360-events-r2__hero-media{grid-template-columns:repeat(2,minmax(0,1fr));grid-template-rows:240px 170px;min-height:0}.ci360-events-r2__hero-figure--main{grid-column:1/-1;grid-row:auto}.ci360-events-r2__timeline::before{display:none}.ci360-events-r2__timeline-item{grid-template-columns:48px minmax(0,1fr);gap:16px;padding:22px 19px 22px 0}.ci360-events-r2__timeline-marker{width:48px;height:48px;border-width:5px}.ci360-events-r2__story-grid{grid-template-columns:1fr}.ci360-events-r2__story-copy>p:not(.ci360-events-r2__meta){min-height:0}}
@media(max-width:560px){.ci360-events-r2__actions,.ci360-events-r2__actions--cta{align-items:stretch;flex-direction:column}.ci360-events-r2__button{width:100%}.ci360-events-r2__hero-media{grid-template-columns:1fr;grid-template-rows:repeat(3,210px)}.ci360-events-r2__hero-figure--main{grid-column:auto}.ci360-events-r2__theme-grid,.ci360-events-r2__impact-grid{grid-template-columns:1fr}.ci360-events-r2__theme-card{min-height:0}.ci360-events-r2__theme-number{margin-bottom:24px}.ci360-events-r2__cta{padding:27px 21px;border-radius:19px}}
@media(prefers-reduced-motion:reduce){.ci360-events-r2__button,.ci360-events-r2__text-link span,.ci360-events-r2__story-image img{transition:none}.ci360-events-r2__button:hover,.ci360-events-r2__button:focus-visible{transform:none}}
/* EVENTS R2 END */

/* === 360 EVENTS R2 END === */

/* === 360 EVENTS INLINE VIDEO START === */
.ci360-events-r2__video-trigger {
    appearance: none;
    border: 0;
    cursor: pointer;
    font: inherit;
}

button.ci360-events-r2__story-image {
    display: block;
    padding: 0;
    width: 100%;
}

button.ci360-events-r2__text-link {
    background: transparent;
    padding: 0;
    text-align: left;
}

.ci360-events-r2__story-image--playing {
    aspect-ratio: 16 / 9;
    background: #000;
}

.ci360-events-r2__story-image--playing iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
}
/* === 360 EVENTS INLINE VIDEO END === */

/* =========================================================
   EVENTS R3 — SUPPORTER-FIRST RECOGNITION
   ========================================================= */

.ci360-events-r2__section--supporters {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbf8 100%
        );
    border-top: 1px solid var(--e-border);
}

.ci360-events-r2__supporter-grid {
    display: grid;
    gap: 17px;
}

.ci360-events-r2__supporter-grid--people {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ci360-events-r2__supporter-card,
.ci360-events-r2__stakeholder-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--e-border);
    border-radius: 18px;
    background: var(--e-white);
    box-shadow: 0 12px 34px rgba(25, 54, 45, 0.07);
}

.ci360-events-r2__supporter-card img {
    width: 100%;
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
}

.ci360-events-r2__supporter-card > div {
    padding: 20px 19px 23px;
}

.ci360-events-r2__supporter-card h3 {
    margin-bottom: 9px;
    font-size: 1.12rem;
}

.ci360-events-r2__supporter-card p:not(.ci360-events-r2__meta) {
    margin: 0;
    color: var(--e-copy);
    font-size: 0.92rem;
    line-height: 1.62;
}

.ci360-events-r2__supporter-subheading {
    max-width: 760px;
    margin-top: clamp(46px, 6vw, 70px);
    margin-bottom: 28px;
}

.ci360-events-r2__supporter-subheading h3 {
    margin-bottom: 12px;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.ci360-events-r2__supporter-subheading > p:not(.ci360-events-r2__eyebrow) {
    margin: 0;
    color: var(--e-copy);
    line-height: 1.72;
}

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

.ci360-events-r2__stakeholder-card img {
    width: 100%;
    aspect-ratio: 1.48 / 1;
    object-fit: cover;
}

.ci360-events-r2__stakeholder-card > div {
    padding: 21px 20px 23px;
}

.ci360-events-r2__stakeholder-card h3 {
    margin-bottom: 9px;
    font-size: 1.08rem;
}

.ci360-events-r2__stakeholder-card p {
    margin: 0;
    color: var(--e-copy);
    font-size: 0.92rem;
    line-height: 1.62;
}

.ci360-events-r2__supporter-action {
    margin-top: 28px;
}

button.ci360-events-r2__latest-media {
    width: 100%;
    padding: 0;
    border: 0;
    color: inherit;
    cursor: pointer;
    text-align: inherit;
}

.ci360-events-r2__latest-media .ci360-events-r2__play {
    width: 66px;
    height: 66px;
}

.ci360-events-r2__video-media--playing {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.ci360-events-r2__latest-media.ci360-events-r2__video-media--playing {
    aspect-ratio: 1.55 / 1;
}

.ci360-events-r2__video-media--playing iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1080px) {
    .ci360-events-r2__supporter-grid--people {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ci360-events-r2__stakeholder-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .ci360-events-r2__supporter-grid--people {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .ci360-events-r2__supporter-grid--people,
    .ci360-events-r2__stakeholder-grid {
        grid-template-columns: 1fr;
    }

    .ci360-events-r2__supporter-card img {
        aspect-ratio: 1.4 / 1;
    }
}


/* === CI360 CHA MAMA LAUNCH R1 START === */
/* ==========================================================
   CI360 CHA MAMA LAUNCH R1
   Foundation candidate: hero + launch milestone
   ========================================================== */

.ci360-cha-launch {
    --cml-green: #176b4d;
    --cml-deep: #124f3b;
    --cml-ink: #19362d;
    --cml-copy: #536960;
    --cml-soft: #f4f9f5;
    --cml-lime: #8cc63f;
    --cml-gold: #ae7424;
    --cml-border: #d9e6dc;
    --cml-white: #fff;

    color: var(--cml-ink);
    background: var(--cml-white);
}

.ci360-cha-launch,
.ci360-cha-launch * {
    box-sizing: border-box;
}

.ci360-cha-launch img {
    display: block;
    max-width: 100%;
}

.ci360-cha-launch__shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.ci360-cha-launch__hero {
    padding: clamp(52px, 7vw, 82px) 0;
    border-bottom: 1px solid var(--cml-border);
    background:
        radial-gradient(
            circle at 8% 8%,
            rgba(140, 198, 63, .12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fbfdfb 0%,
            #f1f8f3 68%,
            #fffaf0 100%
        );
}

.ci360-cha-launch__hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, .95fr)
        minmax(400px, 1.05fr);
    gap: clamp(34px, 6vw, 70px);
    align-items: center;
}

.ci360-cha-launch__hero-copy {
    max-width: 650px;
}

.ci360-cha-launch__eyebrow {
    margin: 0 0 12px;
    color: var(--cml-green);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ci360-cha-launch h1,
.ci360-cha-launch h2,
.ci360-cha-launch h3 {
    margin-top: 0;
    color: var(--cml-ink);
    font-family: inherit;
    letter-spacing: -.025em;
}

.ci360-cha-launch h1 {
    max-width: 680px;
    margin-bottom: 0;
    font-size: clamp(2.2rem, 4.8vw, 3.45rem);
    line-height: 1.06;
}

.ci360-cha-launch h2 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3.4vw, 2.55rem);
    line-height: 1.13;
}

.ci360-cha-launch h3 {
    margin-bottom: 0;
    font-size: clamp(1.12rem, 2vw, 1.36rem);
    line-height: 1.28;
}

.ci360-cha-launch__lead {
    max-width: 650px;
    margin: 21px 0 0;
    color: var(--cml-copy);
    font-size: clamp(1rem, 1.45vw, 1.12rem);
    line-height: 1.76;
}

.ci360-cha-launch__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0 0;
}

.ci360-cha-launch__meta > div {
    padding: 14px 15px;
    border: 1px solid var(--cml-border);
    border-radius: 15px;
    background: rgba(255, 255, 255, .84);
}

.ci360-cha-launch__meta dt {
    color: var(--cml-copy);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ci360-cha-launch__meta dd {
    margin: 5px 0 0;
    color: var(--cml-deep);
    font-size: .86rem;
    font-weight: 800;
    line-height: 1.4;
}

.ci360-cha-launch__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.ci360-cha-launch__button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .91rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition:
        transform .16s ease,
        background-color .16s ease,
        border-color .16s ease;
}

.ci360-cha-launch__button:hover,
.ci360-cha-launch__button:focus-visible {
    transform: translateY(-2px);
}

.ci360-cha-launch__button--primary {
    color: var(--cml-white);
    background: var(--cml-green);
}

.ci360-cha-launch__button--primary:hover,
.ci360-cha-launch__button--primary:focus-visible {
    color: var(--cml-white);
    background: var(--cml-deep);
}

.ci360-cha-launch__button--secondary {
    color: var(--cml-deep);
    border-color: rgba(23, 107, 77, .28);
    background: rgba(255, 255, 255, .76);
}

.ci360-cha-launch__button--secondary:hover,
.ci360-cha-launch__button--secondary:focus-visible {
    color: var(--cml-deep);
    border-color: var(--cml-green);
    background: var(--cml-white);
}

.ci360-cha-launch__continuity {
    max-width: 650px;
    margin: 24px 0 0;
    padding: 16px 18px;
    border: 1px solid rgba(174, 116, 36, .22);
    border-radius: 16px;
    color: var(--cml-copy);
    background: rgba(255, 251, 242, .85);
    font-size: .88rem;
    line-height: 1.62;
}

.ci360-cha-launch__continuity strong {
    display: block;
    margin-bottom: 3px;
    color: var(--cml-deep);
}

.ci360-cha-launch__hero-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, .92);
    border-radius: 22px;
    background: var(--cml-soft);
    box-shadow: 0 18px 48px rgba(25, 54, 45, .14);
}

.ci360-cha-launch__hero-media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.ci360-cha-launch__hero-media figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--cml-ink);
    background: rgba(255, 255, 255, .92);
    font-size: .7rem;
    font-weight: 800;
    line-height: 1.2;
}

.ci360-cha-launch__section {
    padding: clamp(58px, 7vw, 88px) 0;
}

.ci360-cha-launch__section--soft {
    border-bottom: 1px solid var(--cml-border);
    background: var(--cml-soft);
}

.ci360-cha-launch__section-heading {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
    gap: clamp(28px, 5vw, 62px);
    align-items: end;
    margin-bottom: 34px;
}

.ci360-cha-launch__intro-copy {
    padding: 20px 22px;
    border: 1px solid var(--cml-border);
    border-left: 4px solid var(--cml-lime);
    border-radius: 17px;
    background: rgba(255, 255, 255, .86);
}

.ci360-cha-launch__intro-copy p {
    margin: 0;
    color: var(--cml-copy);
    font-size: .95rem;
    line-height: 1.72;
}

.ci360-cha-launch__intro-copy p + p {
    margin-top: 11px;
}

.ci360-cha-launch__milestone-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ci360-cha-launch__milestone-card {
    overflow: hidden;
    border: 1px solid var(--cml-border);
    border-radius: 19px;
    background: var(--cml-white);
    box-shadow: 0 12px 32px rgba(25, 54, 45, .075);
}

.ci360-cha-launch__milestone-card figure {
    margin: 0;
    overflow: hidden;
    background: #e4eee7;
}

.ci360-cha-launch__milestone-card figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.ci360-cha-launch__milestone-copy {
    padding: 22px 21px 24px;
}

.ci360-cha-launch__card-meta {
    margin: 0 0 9px;
    color: var(--cml-gold);
    font-size: .71rem;
    font-weight: 900;
    letter-spacing: .075em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ci360-cha-launch__milestone-copy > p:not(.ci360-cha-launch__card-meta) {
    margin: 11px 0 0;
    color: var(--cml-copy);
    font-size: .9rem;
    line-height: 1.65;
}

.ci360-cha-launch__gratitude {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-top: 25px;
    padding: 18px 20px;
    border: 1px solid rgba(174, 116, 36, .22);
    border-radius: 16px;
    background: #fffaf1;
}

.ci360-cha-launch__gratitude > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--cml-white);
    background: var(--cml-gold);
    font-weight: 900;
}

.ci360-cha-launch__gratitude p {
    margin: 0;
    color: var(--cml-copy);
    font-size: .9rem;
    line-height: 1.62;
}

.ci360-cha-launch__gratitude strong {
    color: var(--cml-deep);
}

@media (max-width: 920px) {
    .ci360-cha-launch__hero-grid,
    .ci360-cha-launch__section-heading {
        grid-template-columns: 1fr;
    }

    .ci360-cha-launch__hero-copy {
        max-width: none;
    }

    .ci360-cha-launch__milestone-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ci360-cha-launch__milestone-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .ci360-cha-launch__shell {
        width: min(100% - 28px, 1180px);
    }

    .ci360-cha-launch__hero {
        padding-top: 46px;
    }

    .ci360-cha-launch h1 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

    .ci360-cha-launch__meta,
    .ci360-cha-launch__milestone-grid {
        grid-template-columns: 1fr;
    }

    .ci360-cha-launch__milestone-card:last-child {
        grid-column: auto;
    }

    .ci360-cha-launch__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ci360-cha-launch__button {
        width: 100%;
    }

    .ci360-cha-launch__hero-media {
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ci360-cha-launch__button {
        transition: none;
    }

    .ci360-cha-launch__button:hover,
    .ci360-cha-launch__button:focus-visible {
        transform: none;
    }
}
/* === CI360 CHA MAMA LAUNCH R1 END === */

/* === CI360 CHA MAMA LAUNCH R2 CREATIVE START === */
/* ==========================================================
   CI360 CHA MAMA LAUNCH R2
   Creative-expression chapter
   ========================================================== */

.ci360-cha-launch__section--creative {
    background: #fff;
}

.ci360-cha-launch__creative-feature {
    display: grid;
    grid-template-columns:
        minmax(300px, .82fr)
        minmax(0, 1.18fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
    margin-bottom: 28px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid var(--cml-border);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            #f8fbf8 0%,
            #fffaf0 100%
        );
}

.ci360-cha-launch__creative-feature-media {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--cml-soft);
}

.ci360-cha-launch__creative-feature-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 28%;
}

.ci360-cha-launch__creative-feature-copy > p:not(.ci360-cha-launch__card-meta) {
    margin: 12px 0 0;
    color: var(--cml-copy);
    line-height: 1.7;
}

.ci360-cha-launch__creative-note {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    margin-top: 22px;
    padding: 14px;
    border: 1px solid var(--cml-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, .88);
}

.ci360-cha-launch__creative-note img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
}

.ci360-cha-launch__creative-note p {
    margin: 0;
    color: var(--cml-copy);
    font-size: .88rem;
    line-height: 1.6;
}

.ci360-cha-launch__creative-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 19px;
}

.ci360-cha-launch__creative-card {
    overflow: hidden;
    border: 1px solid var(--cml-border);
    border-radius: 18px;
    background: var(--cml-white);
    box-shadow: 0 10px 28px rgba(25, 54, 45, .065);
}

.ci360-cha-launch__creative-card figure {
    margin: 0;
    overflow: hidden;
    background: var(--cml-soft);
}

.ci360-cha-launch__creative-card figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.ci360-cha-launch__creative-card:nth-child(2) figure img {
    object-position: center 28%;
}

.ci360-cha-launch__creative-card > div {
    padding: 20px 19px 22px;
}

.ci360-cha-launch__creative-card h3 {
    font-size: 1.12rem;
}

.ci360-cha-launch__creative-card > div > p:not(.ci360-cha-launch__card-meta) {
    margin: 10px 0 0;
    color: var(--cml-copy);
    font-size: .88rem;
    line-height: 1.63;
}

.ci360-cha-launch__creative-footer {
    display: grid;
    grid-template-columns:
        minmax(240px, .8fr)
        minmax(0, 1.2fr);
    gap: 30px;
    align-items: center;
    margin-top: 26px;
    padding: 23px 24px;
    border: 1px solid rgba(174, 116, 36, .22);
    border-radius: 18px;
    background: #fffaf1;
}

.ci360-cha-launch__creative-footer .ci360-cha-launch__eyebrow {
    margin-bottom: 7px;
}

.ci360-cha-launch__creative-footer h3 {
    margin: 0;
}

.ci360-cha-launch__creative-footer > p {
    margin: 0;
    color: var(--cml-copy);
    font-size: .91rem;
    line-height: 1.65;
}

@media (max-width: 920px) {
    .ci360-cha-launch__creative-feature,
    .ci360-cha-launch__creative-footer {
        grid-template-columns: 1fr;
    }

    .ci360-cha-launch__creative-feature-media {
        max-width: 560px;
    }

    .ci360-cha-launch__creative-feature-media img {
        aspect-ratio: 16 / 10;
    }

    .ci360-cha-launch__creative-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ci360-cha-launch__creative-grid {
        grid-template-columns: 1fr;
    }

    .ci360-cha-launch__creative-note {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .ci360-cha-launch__creative-feature,
    .ci360-cha-launch__creative-footer {
        padding: 20px;
        border-radius: 17px;
    }
}
/* === CI360 CHA MAMA LAUNCH R2 CREATIVE END === */

/* === CI360 CHA MAMA LAUNCH R3 SUPPORTERS START === */
/* ==========================================================
   CI360 CHA MAMA LAUNCH R3
   Guest and supporter recognition
   ========================================================== */

.ci360-cha-launch__section--supporters {
    border-top: 1px solid var(--cml-border);
    background: var(--cml-soft);
}

.ci360-cha-launch__supporter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ci360-cha-launch__supporter-card {
    overflow: hidden;
    border: 1px solid var(--cml-border);
    border-radius: 19px;
    background: var(--cml-white);
    box-shadow: 0 10px 28px rgba(25, 54, 45, .065);
}

.ci360-cha-launch__supporter-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ci360-cha-launch__supporter-card > div {
    padding: 20px 20px 22px;
}

.ci360-cha-launch__supporter-card h3 {
    margin-bottom: 0;
    font-size: 1.12rem;
}

.ci360-cha-launch__supporter-card > div > p:not(.ci360-cha-launch__card-meta) {
    margin: 9px 0 0;
    color: var(--cml-copy);
    font-size: .88rem;
    line-height: 1.62;
}

.ci360-cha-launch__stakeholder-heading {
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid var(--cml-border);
}

.ci360-cha-launch__stakeholder-heading > div {
    max-width: 760px;
}

.ci360-cha-launch__stakeholder-heading .ci360-cha-launch__eyebrow {
    margin-bottom: 8px;
}

.ci360-cha-launch__stakeholder-heading p:last-child {
    margin: 0;
    color: var(--cml-copy);
    font-size: .94rem;
    line-height: 1.68;
}

.ci360-cha-launch__stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.ci360-cha-launch__stakeholder-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--cml-border);
    border-radius: 17px;
    background: rgba(255, 255, 255, .86);
}

.ci360-cha-launch__stakeholder-card img {
    width: 112px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
}

.ci360-cha-launch__stakeholder-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.28;
}

.ci360-cha-launch__stakeholder-card p {
    margin: 7px 0 0;
    color: var(--cml-copy);
    font-size: .82rem;
    line-height: 1.52;
}

.ci360-cha-launch__recognition-band {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    margin-top: 25px;
    padding: 18px 20px;
    border: 1px solid rgba(23, 107, 77, .18);
    border-radius: 17px;
    background: var(--cml-white);
}

.ci360-cha-launch__recognition-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--cml-white);
    background: var(--cml-green);
    font-size: 1.3rem;
    font-weight: 900;
}

.ci360-cha-launch__recognition-band .ci360-cha-launch__card-meta {
    margin-bottom: 4px;
}

.ci360-cha-launch__recognition-band > div:last-child > p:last-child {
    margin: 0;
    color: var(--cml-copy);
    font-size: .89rem;
    line-height: 1.62;
}

@media (max-width: 1040px) {
    .ci360-cha-launch__stakeholder-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .ci360-cha-launch__supporter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ci360-cha-launch__supporter-grid,
    .ci360-cha-launch__stakeholder-grid {
        grid-template-columns: 1fr;
    }

    .ci360-cha-launch__stakeholder-card {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .ci360-cha-launch__stakeholder-card img {
        width: 92px;
        height: 84px;
    }

    .ci360-cha-launch__recognition-band {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 16px;
    }

    .ci360-cha-launch__recognition-mark {
        width: 38px;
        height: 38px;
    }
}
/* === CI360 CHA MAMA LAUNCH R3 SUPPORTERS END === */

/* === CI360 CHA MAMA LAUNCH R4 SIGNING START === */
/* ==========================================================
   CI360 CHA MAMA LAUNCH R4
   Signing and participation moment
   ========================================================== */

.ci360-cha-launch__section--signing {
    border-top: 1px solid var(--cml-border);
    background: #fff;
}

.ci360-cha-launch__signing-story {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(280px, .55fr);
    gap: 18px;
}

.ci360-cha-launch__signing-main,
.ci360-cha-launch__signing-side figure,
.ci360-cha-launch__signing-strip figure {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--cml-soft);
}

.ci360-cha-launch__signing-main {
    position: relative;
}

.ci360-cha-launch__signing-main img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.ci360-cha-launch__signing-main figcaption {
    position: absolute;
    right: 13px;
    bottom: 13px;
    left: 13px;
    width: fit-content;
    max-width: calc(100% - 26px);
    padding: 8px 11px;
    border-radius: 10px;
    color: var(--cml-ink);
    background: rgba(255, 255, 255, .92);
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.35;
}

.ci360-cha-launch__signing-side {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ci360-cha-launch__signing-side img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.ci360-cha-launch__signing-copy {
    display: grid;
    grid-template-columns:
        minmax(220px, .75fr)
        minmax(0, 1.25fr);
    gap: 28px;
    align-items: center;
    margin-top: 24px;
    padding: 21px 23px;
    border: 1px solid var(--cml-border);
    border-radius: 17px;
    background: var(--cml-soft);
}

.ci360-cha-launch__signing-copy h3 {
    margin: 0;
}

.ci360-cha-launch__signing-copy > p {
    margin: 0;
    color: var(--cml-copy);
    font-size: .9rem;
    line-height: 1.65;
}

.ci360-cha-launch__signing-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.ci360-cha-launch__signing-strip img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.ci360-cha-launch__signing-note {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-top: 20px;
    padding: 17px 19px;
    border: 1px solid rgba(23, 107, 77, .18);
    border-radius: 16px;
    background: #f8fbf8;
}

.ci360-cha-launch__signing-note > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--cml-white);
    background: var(--cml-green);
    font-weight: 900;
}

.ci360-cha-launch__signing-note p {
    margin: 0;
    color: var(--cml-copy);
    font-size: .86rem;
    line-height: 1.58;
}

.ci360-cha-launch__signing-note strong {
    color: var(--cml-deep);
}

@media (max-width: 820px) {
    .ci360-cha-launch__signing-story {
        grid-template-columns: 1fr;
    }

    .ci360-cha-launch__signing-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .ci360-cha-launch__signing-side img {
        aspect-ratio: 16 / 10;
    }

    .ci360-cha-launch__signing-copy {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ci360-cha-launch__signing-side,
    .ci360-cha-launch__signing-strip {
        grid-template-columns: 1fr;
    }

    .ci360-cha-launch__signing-strip img {
        aspect-ratio: 16 / 10;
    }

    .ci360-cha-launch__signing-note {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 15px;
    }

    .ci360-cha-launch__signing-note > span {
        width: 38px;
        height: 38px;
    }
}
/* === CI360 CHA MAMA LAUNCH R4 SIGNING END === */

/* === CI360 CHA MAMA LAUNCH R5 MEDIA START === */
/* ==========================================================
   CI360 CHA MAMA LAUNCH R5
   Media coverage and learner voices
   ========================================================== */

.ci360-cha-launch__section--media {
    border-top: 1px solid var(--cml-border);
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbf8 100%
        );
}

.ci360-cha-launch__media-feature {
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(300px, .82fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
    padding: 18px;
    border: 1px solid var(--cml-border);
    border-radius: 22px;
    background: var(--cml-white);
    box-shadow: 0 14px 38px rgba(25, 54, 45, .075);
}

.ci360-cha-launch__video-trigger {
    appearance: none;
    border: 0;
    cursor: pointer;
    font: inherit;
}

button.ci360-cha-launch__media-feature-poster,
button.ci360-cha-launch__media-poster {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    color: inherit;
    background: var(--cml-soft);
    text-align: inherit;
}

button.ci360-cha-launch__media-feature-poster {
    border-radius: 17px;
}

.ci360-cha-launch__media-feature-poster img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.ci360-cha-launch__media-feature-copy {
    padding: 12px 16px 12px 0;
}

.ci360-cha-launch__media-feature-copy h3 {
    margin-bottom: 12px;
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.ci360-cha-launch__media-feature-copy > p:not(.ci360-cha-launch__card-meta) {
    margin: 0;
    color: var(--cml-copy);
    line-height: 1.68;
}

.ci360-cha-launch__video-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 19px;
    padding: 0;
    color: var(--cml-deep);
    background: transparent;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.4;
    text-align: left;
}

.ci360-cha-launch__video-link:hover {
    color: var(--cml-green);
}

.ci360-cha-launch__video-link span {
    transition: transform .16s ease;
}

.ci360-cha-launch__video-link:hover span {
    transform: translateX(4px);
}

.ci360-cha-launch__media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 22px;
}

.ci360-cha-launch__media-card {
    overflow: hidden;
    border: 1px solid var(--cml-border);
    border-radius: 19px;
    background: var(--cml-white);
    box-shadow: 0 10px 28px rgba(25, 54, 45, .06);
}

.ci360-cha-launch__media-poster img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .22s ease;
}

.ci360-cha-launch__media-poster:hover img {
    transform: scale(1.025);
}

.ci360-cha-launch__media-card:nth-child(3)
.ci360-cha-launch__media-poster img {
    object-position: center 28%;
}

.ci360-cha-launch__video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    padding-left: 4px;
    border: 4px solid rgba(255, 255, 255, .88);
    border-radius: 50%;
    color: var(--cml-white);
    background: rgba(23, 107, 77, .9);
    box-shadow: 0 10px 27px rgba(25, 54, 45, .24);
    transform: translate(-50%, -50%);
}

.ci360-cha-launch__media-feature-poster
.ci360-cha-launch__video-play {
    width: 64px;
    height: 64px;
}

.ci360-cha-launch__media-card-copy {
    padding: 20px 20px 22px;
}

.ci360-cha-launch__media-card-copy h3 {
    margin-bottom: 9px;
    font-size: 1.08rem;
}

.ci360-cha-launch__media-card-copy > p:not(.ci360-cha-launch__card-meta) {
    margin: 0;
    color: var(--cml-copy);
    font-size: .86rem;
    line-height: 1.6;
}

.ci360-cha-launch__media-feature-poster:focus-visible,
.ci360-cha-launch__media-poster:focus-visible,
.ci360-cha-launch__video-link:focus-visible {
    outline: 3px solid rgba(217, 154, 43, .42);
    outline-offset: 4px;
}

.ci360-cha-launch__video-media--playing {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.ci360-cha-launch__media-feature-poster.ci360-cha-launch__video-media--playing {
    aspect-ratio: 16 / 10;
}

.ci360-cha-launch__video-media--playing iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .ci360-cha-launch__media-feature {
        grid-template-columns: 1fr;
    }

    .ci360-cha-launch__media-feature-copy {
        padding: 4px 5px 7px;
    }

    .ci360-cha-launch__media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ci360-cha-launch__media-feature {
        padding: 13px;
        border-radius: 18px;
    }

    .ci360-cha-launch__media-grid {
        grid-template-columns: 1fr;
    }

    .ci360-cha-launch__media-card-copy {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ci360-cha-launch__video-link span,
    .ci360-cha-launch__media-poster img {
        transition: none;
    }
}
/* === CI360 CHA MAMA LAUNCH R5 MEDIA END === */

/* === CI360 CHA MAMA LAUNCH R6 CLOSING START === */
/* ==========================================================
   CI360 CHA MAMA LAUNCH R6
   Compact continuing-mission close
   ========================================================== */

.ci360-cha-launch__section--closing {
    padding-top: clamp(42px, 5vw, 66px);
    padding-bottom: clamp(48px, 6vw, 76px);
    border-top: 1px solid var(--cml-border);
    background: var(--cml-white);
}

.ci360-cha-launch__closing-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(280px, .85fr);
    gap: clamp(30px, 5vw, 64px);
    align-items: center;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(23, 107, 77, .16);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            #f5faf6 0%,
            #fffaf0 100%
        );
    box-shadow: 0 14px 36px rgba(25, 54, 45, .065);
}

.ci360-cha-launch__closing-copy {
    max-width: 720px;
}

.ci360-cha-launch__closing-copy h2 {
    margin-bottom: 14px;
}

.ci360-cha-launch__closing-copy > p:last-child {
    max-width: 680px;
    margin: 0;
    color: var(--cml-copy);
    line-height: 1.72;
}

.ci360-cha-launch__closing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.ci360-cha-launch__closing-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
}

.ci360-cha-launch__closing-button--primary {
    color: var(--cml-white);
    background: var(--cml-green);
    box-shadow: 0 10px 24px rgba(23, 107, 77, .16);
}

.ci360-cha-launch__closing-button--primary:hover,
.ci360-cha-launch__closing-button--primary:focus-visible {
    color: var(--cml-white);
    background: var(--cml-deep);
}

.ci360-cha-launch__closing-button--secondary {
    color: var(--cml-deep);
    border-color: rgba(23, 107, 77, .25);
    background: rgba(255, 255, 255, .82);
}

.ci360-cha-launch__closing-button--secondary:hover,
.ci360-cha-launch__closing-button--secondary:focus-visible {
    border-color: var(--cml-green);
    background: var(--cml-white);
}

.ci360-cha-launch__closing-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 2px;
    color: var(--cml-deep);
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
}

.ci360-cha-launch__closing-link:hover {
    color: var(--cml-green);
}

.ci360-cha-launch__closing-link span {
    transition: transform .16s ease;
}

.ci360-cha-launch__closing-link:hover span {
    transform: translateX(4px);
}

.ci360-cha-launch__closing-button:focus-visible,
.ci360-cha-launch__closing-link:focus-visible {
    outline: 3px solid rgba(217, 154, 43, .42);
    outline-offset: 4px;
}

@media (max-width: 820px) {
    .ci360-cha-launch__closing-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .ci360-cha-launch__closing-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .ci360-cha-launch__closing-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ci360-cha-launch__closing-button {
        width: 100%;
    }

    .ci360-cha-launch__closing-link {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ci360-cha-launch__closing-link span {
        transition: none;
    }
}
/* === CI360 CHA MAMA LAUNCH R6 CLOSING END === */

/* === CI360 CHA MAMA INITIATIVE R1 FOUNDATION START === */
/* ==========================================================
   CI360 CHA MAMA INITIATIVE R1
   Permanent initiative foundation
   ========================================================== */

.ci360-cha-initiative {
    --cm-green: #176b4d;
    --cm-deep: #123f31;
    --cm-ink: #19362d;
    --cm-copy: #50665e;
    --cm-soft: #f4f8f5;
    --cm-pale: #f8fbf8;
    --cm-white: #ffffff;
    --cm-gold: #d99a2b;
    --cm-border: rgba(23, 107, 77, .14);

    color: var(--cm-ink);
    background: var(--cm-white);
}

.ci360-cha-initiative *,
.ci360-cha-initiative *::before,
.ci360-cha-initiative *::after {
    box-sizing: border-box;
}

.ci360-cha-initiative img {
    display: block;
    max-width: 100%;
}

.ci360-cha-initiative__shell {
    width: min(100% - 40px, 1160px);
    margin-inline: auto;
}

.ci360-cha-initiative__hero {
    padding: clamp(52px, 7vw, 86px) 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(140, 198, 63, .13),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faf7 100%
        );
    border-bottom: 1px solid var(--cm-border);
}

.ci360-cha-initiative__hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, .95fr)
        minmax(360px, 1.05fr);
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
}

.ci360-cha-initiative__hero-copy {
    max-width: 620px;
}

.ci360-cha-initiative__eyebrow {
    margin: 0 0 13px;
    color: var(--cm-green);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .09em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ci360-cha-initiative h1,
.ci360-cha-initiative h2,
.ci360-cha-initiative h3 {
    margin-top: 0;
    color: var(--cm-ink);
    font-family: inherit;
    letter-spacing: -.025em;
}

.ci360-cha-initiative h1 {
    max-width: 680px;
    margin-bottom: 0;
    font-size: clamp(2.15rem, 4.8vw, 3.35rem);
    line-height: 1.06;
}

.ci360-cha-initiative h2 {
    margin-bottom: 0;
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    line-height: 1.13;
}

.ci360-cha-initiative h3 {
    margin-bottom: 0;
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    line-height: 1.28;
}

.ci360-cha-initiative__lead {
    max-width: 650px;
    margin: 21px 0 0;
    color: var(--cm-copy);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.76;
}

.ci360-cha-initiative__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 27px;
}

.ci360-cha-initiative__button {
    display: inline-flex;
    min-height: 47px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .91rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
}

.ci360-cha-initiative__button--primary {
    color: var(--cm-white);
    background: var(--cm-green);
    box-shadow: 0 11px 26px rgba(23, 107, 77, .17);
}

.ci360-cha-initiative__button--primary:hover,
.ci360-cha-initiative__button--primary:focus-visible {
    color: var(--cm-white);
    background: var(--cm-deep);
}

.ci360-cha-initiative__button--secondary {
    color: var(--cm-deep);
    border-color: rgba(23, 107, 77, .25);
    background: rgba(255, 255, 255, .78);
}

.ci360-cha-initiative__button--secondary:hover,
.ci360-cha-initiative__button--secondary:focus-visible {
    color: var(--cm-deep);
    border-color: var(--cm-green);
    background: var(--cm-white);
}

.ci360-cha-initiative__button:focus-visible {
    outline: 3px solid rgba(217, 154, 43, .42);
    outline-offset: 4px;
}

.ci360-cha-initiative__hero-note {
    margin: 18px 0 0;
    color: var(--cm-deep);
    font-size: .84rem;
    font-weight: 800;
    line-height: 1.5;
}

.ci360-cha-initiative__hero-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, .94);
    border-radius: 24px;
    background: var(--cm-soft);
    box-shadow: 0 18px 48px rgba(25, 54, 45, .13);
}

.ci360-cha-initiative__hero-media img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
}

.ci360-cha-initiative__hero-media figcaption {
    position: absolute;
    right: 13px;
    bottom: 13px;
    max-width: calc(100% - 26px);
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--cm-ink);
    background: rgba(255, 255, 255, .91);
    font-size: .7rem;
    font-weight: 800;
    line-height: 1.25;
}

.ci360-cha-initiative__section {
    padding: clamp(58px, 7vw, 88px) 0;
}

.ci360-cha-initiative__section--soft {
    background: var(--cm-soft);
    border-block: 1px solid var(--cm-border);
}

.ci360-cha-initiative__why-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(280px, .88fr);
    gap: clamp(32px, 6vw, 70px);
    align-items: center;
}

.ci360-cha-initiative__section-copy {
    max-width: 720px;
}

.ci360-cha-initiative__section-copy h2 {
    max-width: 760px;
    margin-bottom: 19px;
}

.ci360-cha-initiative__section-copy > p:not(.ci360-cha-initiative__eyebrow) {
    margin: 0 0 16px;
    color: var(--cm-copy);
    font-size: 1rem;
    line-height: 1.75;
}

.ci360-cha-initiative__section-copy > p:last-child {
    margin-bottom: 0;
}

.ci360-cha-initiative__need-card {
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid var(--cm-border);
    border-radius: 21px;
    background: var(--cm-white);
    box-shadow: 0 12px 34px rgba(25, 54, 45, .07);
}

.ci360-cha-initiative__need-number {
    display: block;
    margin-bottom: 10px;
    color: var(--cm-green);
    font-size: clamp(2.7rem, 6vw, 4.4rem);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: .95;
}

.ci360-cha-initiative__need-card strong {
    display: block;
    color: var(--cm-ink);
    font-size: 1.15rem;
    line-height: 1.35;
}

.ci360-cha-initiative__need-card p {
    margin: 12px 0 0;
    color: var(--cm-copy);
    font-size: .91rem;
    line-height: 1.65;
}

.ci360-cha-initiative__section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.ci360-cha-initiative__section-heading h2 {
    margin-bottom: 14px;
}

.ci360-cha-initiative__section-heading > p:not(.ci360-cha-initiative__eyebrow) {
    max-width: 690px;
    margin: 0;
    color: var(--cm-copy);
    line-height: 1.72;
}

.ci360-cha-initiative__help-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.ci360-cha-initiative__help-card {
    min-height: 235px;
    padding: 25px 22px;
    border: 1px solid var(--cm-border);
    border-radius: 18px;
    background: var(--cm-white);
    box-shadow: 0 9px 26px rgba(25, 54, 45, .055);
}

.ci360-cha-initiative__help-number {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--cm-gold);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.ci360-cha-initiative__help-card h3 {
    margin-bottom: 10px;
}

.ci360-cha-initiative__help-card p {
    margin: 0;
    color: var(--cm-copy);
    font-size: .9rem;
    line-height: 1.62;
}

@media (max-width: 960px) {
    .ci360-cha-initiative__hero-grid,
    .ci360-cha-initiative__why-grid {
        grid-template-columns: 1fr;
    }

    .ci360-cha-initiative__hero-copy,
    .ci360-cha-initiative__section-copy {
        max-width: none;
    }

    .ci360-cha-initiative__hero-media {
        max-width: 760px;
    }

    .ci360-cha-initiative__help-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .ci360-cha-initiative__shell {
        width: min(100% - 28px, 1160px);
    }

    .ci360-cha-initiative__hero {
        padding-top: 46px;
    }

    .ci360-cha-initiative__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ci360-cha-initiative__button {
        width: 100%;
    }

    .ci360-cha-initiative__hero-media {
        border-width: 4px;
        border-radius: 19px;
    }

    .ci360-cha-initiative__hero-media figcaption {
        position: static;
        max-width: none;
        border-radius: 0;
        background: var(--cm-white);
    }

    .ci360-cha-initiative__help-grid {
        grid-template-columns: 1fr;
    }

    .ci360-cha-initiative__help-card {
        min-height: 0;
    }

    .ci360-cha-initiative__help-number {
        margin-bottom: 22px;
    }
}
/* === CI360 CHA MAMA INITIATIVE R1 FOUNDATION END === */

/* === CI360 CHA MAMA INITIATIVE R2 TRAINING START === */
/* ==========================================================
   CI360 CHA MAMA INITIATIVE R2
   Training and opportunity chapter
   ========================================================== */

.ci360-cha-initiative__section--learning {
    background: var(--cm-pale);
    border-top: 1px solid var(--cm-border);
}

.ci360-cha-initiative__learning-intro {
    display: grid;
    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);
    gap: clamp(30px, 6vw, 70px);
    align-items: end;
    margin-bottom: 34px;
}

.ci360-cha-initiative__learning-intro h2 {
    max-width: 650px;
}

.ci360-cha-initiative__learning-copy {
    max-width: 700px;
}

.ci360-cha-initiative__learning-copy p {
    margin: 0 0 13px;
    color: var(--cm-copy);
    line-height: 1.72;
}

.ci360-cha-initiative__learning-copy p:last-child {
    margin-bottom: 0;
}

.ci360-cha-initiative__pathway-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ci360-cha-initiative__pathway-card {
    padding: 24px 21px;
    border: 1px solid var(--cm-border);
    border-radius: 18px;
    background: var(--cm-white);
}

.ci360-cha-initiative__pathway-index {
    display: block;
    margin-bottom: 28px;
    color: var(--cm-gold);
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.ci360-cha-initiative__pathway-card h3 {
    margin-bottom: 11px;
}

.ci360-cha-initiative__pathway-card p {
    margin: 0;
    color: var(--cm-copy);
    font-size: .89rem;
    line-height: 1.62;
}

.ci360-cha-initiative__shared-learning {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, .85fr);
    gap: 28px;
    align-items: center;
    margin-top: 22px;
    padding: 22px 24px;
    border: 1px solid var(--cm-border);
    border-radius: 18px;
    background: var(--cm-white);
}

.ci360-cha-initiative__shared-label {
    display: block;
    margin-bottom: 6px;
    color: var(--cm-green);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ci360-cha-initiative__shared-learning p {
    margin: 0;
    color: var(--cm-copy);
    font-size: .91rem;
    line-height: 1.65;
}

.ci360-cha-initiative__shared-learning strong {
    color: var(--cm-ink);
}

.ci360-cha-initiative__learning-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

@media (max-width: 960px) {
    .ci360-cha-initiative__learning-intro,
    .ci360-cha-initiative__shared-learning {
        grid-template-columns: 1fr;
    }

    .ci360-cha-initiative__pathway-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ci360-cha-initiative__learning-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .ci360-cha-initiative__pathway-grid {
        grid-template-columns: 1fr;
    }

    .ci360-cha-initiative__shared-learning {
        padding: 20px;
    }

    .ci360-cha-initiative__learning-actions {
        align-items: stretch;
        flex-direction: column;
    }
}
/* === CI360 CHA MAMA INITIATIVE R2 TRAINING END === */

/* === CI360 CHA MAMA INITIATIVE R3 FINAL START === */
/* ==========================================================
   CI360 CHA MAMA INITIATIVE R3
   Launch milestone and engagement close
   ========================================================== */

.ci360-cha-initiative__section--milestone {
    border-top: 1px solid var(--cm-border);
    background: var(--cm-white);
}

.ci360-cha-initiative__milestone-grid {
    display: grid;
    grid-template-columns:
        minmax(320px, .9fr)
        minmax(0, 1.1fr);
    gap: clamp(34px, 6vw, 70px);
    align-items: center;
}

.ci360-cha-initiative__milestone-media {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: var(--cm-soft);
    box-shadow: 0 14px 38px rgba(25, 54, 45, .09);
}

.ci360-cha-initiative__milestone-media img {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
}

.ci360-cha-initiative__milestone-copy {
    max-width: 680px;
}

.ci360-cha-initiative__milestone-copy h2 {
    margin-bottom: 17px;
}

.ci360-cha-initiative__milestone-copy > p:not(.ci360-cha-initiative__eyebrow) {
    margin: 0 0 14px;
    color: var(--cm-copy);
    line-height: 1.72;
}

.ci360-cha-initiative__text-link,
.ci360-cha-initiative__engage-card a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--cm-deep);
    font-weight: 850;
    text-decoration: none;
}

.ci360-cha-initiative__text-link {
    margin-top: 5px;
}

.ci360-cha-initiative__text-link:hover,
.ci360-cha-initiative__engage-card a:hover {
    color: var(--cm-green);
}

.ci360-cha-initiative__text-link span,
.ci360-cha-initiative__engage-card a span {
    transition: transform .16s ease;
}

.ci360-cha-initiative__text-link:hover span,
.ci360-cha-initiative__engage-card a:hover span {
    transform: translateX(4px);
}

.ci360-cha-initiative__text-link:focus-visible,
.ci360-cha-initiative__engage-card a:focus-visible {
    outline: 3px solid rgba(217, 154, 43, .42);
    outline-offset: 4px;
    border-radius: 4px;
}

.ci360-cha-initiative__section--engage {
    padding-top: clamp(52px, 6vw, 74px);
    padding-bottom: clamp(58px, 7vw, 86px);
    border-top: 1px solid var(--cm-border);
    background:
        linear-gradient(
            180deg,
            var(--cm-soft) 0%,
            var(--cm-pale) 100%
        );
}

.ci360-cha-initiative__engage-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.ci360-cha-initiative__engage-heading h2 {
    margin-bottom: 14px;
}

.ci360-cha-initiative__engage-heading > p:not(.ci360-cha-initiative__eyebrow) {
    max-width: 700px;
    margin: 0;
    color: var(--cm-copy);
    line-height: 1.72;
}

.ci360-cha-initiative__engage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ci360-cha-initiative__engage-card {
    display: flex;
    min-height: 245px;
    flex-direction: column;
    padding: 24px 22px;
    border: 1px solid var(--cm-border);
    border-radius: 18px;
    background: var(--cm-white);
    box-shadow: 0 8px 24px rgba(25, 54, 45, .05);
}

.ci360-cha-initiative__engage-label {
    margin-bottom: 25px;
    color: var(--cm-green);
    font-size: .71rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ci360-cha-initiative__engage-card h3 {
    margin-bottom: 10px;
}

.ci360-cha-initiative__engage-card p {
    margin: 0 0 19px;
    color: var(--cm-copy);
    font-size: .9rem;
    line-height: 1.62;
}

.ci360-cha-initiative__engage-card a {
    margin-top: auto;
    font-size: .89rem;
}

@media (max-width: 900px) {
    .ci360-cha-initiative__milestone-grid {
        grid-template-columns: 1fr;
    }

    .ci360-cha-initiative__milestone-media {
        max-width: 720px;
    }

    .ci360-cha-initiative__engage-grid {
        grid-template-columns: 1fr;
    }

    .ci360-cha-initiative__engage-card {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ci360-cha-initiative__text-link span,
    .ci360-cha-initiative__engage-card a span {
        transition: none;
    }
}
/* === CI360 CHA MAMA INITIATIVE R3 FINAL END === */

/* === CI360 NEWS & UPDATES R1 START === */
/* ==========================================================
   CI360 NEWS & UPDATES R1
   Concise editorial destination
   ========================================================== */

.ci360-news {
    --news-green: #176b4d;
    --news-deep: #123f31;
    --news-ink: #19362d;
    --news-copy: #52675f;
    --news-soft: #f4f8f5;
    --news-pale: #f8fbf8;
    --news-white: #ffffff;
    --news-gold: #d99a2b;
    --news-border: rgba(23, 107, 77, .14);

    color: var(--news-ink);
    background: var(--news-white);
}

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

.ci360-news img {
    display: block;
    max-width: 100%;
}

.ci360-news__shell {
    width: min(100% - 40px, 1160px);
    margin-inline: auto;
}

.ci360-news__intro {
    padding: clamp(50px, 6.5vw, 78px) 0;
    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(140, 198, 63, .10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbf8 100%
        );
    border-bottom: 1px solid var(--news-border);
}

.ci360-news__intro-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(250px, .65fr);
    gap: clamp(32px, 6vw, 70px);
    align-items: end;
}

.ci360-news__intro-copy {
    max-width: 760px;
}

.ci360-news__eyebrow {
    margin: 0 0 12px;
    color: var(--news-green);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .09em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ci360-news h1,
.ci360-news h2,
.ci360-news h3 {
    margin-top: 0;
    color: var(--news-ink);
    font-family: inherit;
    letter-spacing: -.025em;
}

.ci360-news h1 {
    max-width: 780px;
    margin-bottom: 0;
    font-size: clamp(2.05rem, 4.4vw, 3.15rem);
    line-height: 1.08;
}

.ci360-news h2 {
    margin-bottom: 0;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.14;
}

.ci360-news h3 {
    margin-bottom: 0;
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.3;
}

.ci360-news__lead {
    max-width: 690px;
    margin: 19px 0 0;
    color: var(--news-copy);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    line-height: 1.72;
}

.ci360-news__intro-note {
    padding: 22px 24px;
    border: 1px solid var(--news-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .84);
}

.ci360-news__intro-note span {
    display: block;
    margin-bottom: 8px;
    color: var(--news-green);
    font-size: .71rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ci360-news__intro-note strong {
    display: block;
    color: var(--news-ink);
    font-size: 1.04rem;
    line-height: 1.35;
}

.ci360-news__intro-note p {
    margin: 7px 0 0;
    color: var(--news-copy);
    font-size: .88rem;
    line-height: 1.55;
}

.ci360-news__section {
    padding: clamp(58px, 7vw, 86px) 0;
}

.ci360-news__section--feature {
    background: var(--news-soft);
    border-bottom: 1px solid var(--news-border);
}

.ci360-news__feature-grid {
    display: grid;
    grid-template-columns:
        minmax(0, .95fr)
        minmax(360px, 1.05fr);
    gap: clamp(34px, 6vw, 68px);
    align-items: center;
}

.ci360-news__feature-copy {
    max-width: 650px;
}

.ci360-news__feature-copy h2 {
    margin-bottom: 18px;
}

.ci360-news__feature-copy > p:not(.ci360-news__eyebrow) {
    margin: 0 0 15px;
    color: var(--news-copy);
    line-height: 1.73;
}

.ci360-news__continuity {
    padding-top: 2px;
}

.ci360-news__continuity strong {
    color: var(--news-deep);
}

.ci360-news__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 25px;
}

.ci360-news__button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 19px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .89rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
}

.ci360-news__button--primary {
    color: var(--news-white);
    background: var(--news-green);
    box-shadow: 0 10px 24px rgba(23, 107, 77, .15);
}

.ci360-news__button--primary:hover,
.ci360-news__button--primary:focus-visible {
    color: var(--news-white);
    background: var(--news-deep);
}

.ci360-news__button--secondary {
    color: var(--news-deep);
    border-color: rgba(23, 107, 77, .24);
    background: var(--news-white);
}

.ci360-news__button--secondary:hover,
.ci360-news__button--secondary:focus-visible {
    color: var(--news-deep);
    border-color: var(--news-green);
}

.ci360-news__button:focus-visible,
.ci360-news__video-trigger:focus-visible,
.ci360-news__events-link:focus-visible,
.ci360-news__recognition-note a:focus-visible {
    outline: 3px solid rgba(217, 154, 43, .40);
    outline-offset: 4px;
}

.ci360-news__feature-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 4px solid var(--news-white);
    border-radius: 22px;
    background: var(--news-white);
    box-shadow: 0 16px 42px rgba(25, 54, 45, .11);
}

.ci360-news__feature-media img {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
}

.ci360-news__feature-media figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--news-ink);
    background: rgba(255, 255, 255, .92);
    font-size: .69rem;
    font-weight: 800;
    line-height: 1.3;
}

.ci360-news__section-heading {
    max-width: 760px;
    margin-bottom: 31px;
}

.ci360-news__section-heading h2 {
    margin-bottom: 13px;
}

.ci360-news__section-heading > p:not(.ci360-news__eyebrow) {
    max-width: 690px;
    margin: 0;
    color: var(--news-copy);
    line-height: 1.72;
}

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

.ci360-news__recognition-card {
    display: grid;
    grid-template-columns: minmax(185px, .82fr) minmax(0, 1.18fr);
    overflow: hidden;
    border: 1px solid var(--news-border);
    border-radius: 19px;
    background: var(--news-white);
    box-shadow: 0 9px 26px rgba(25, 54, 45, .055);
}

.ci360-news__recognition-card img {
    width: 100%;
    height: 100%;
    min-height: 238px;
    object-fit: cover;
}

.ci360-news__recognition-copy {
    padding: 24px 22px;
    align-self: center;
}

.ci360-news__card-meta {
    margin: 0 0 8px;
    color: var(--news-green);
    font-size: .71rem;
    font-weight: 900;
    letter-spacing: .07em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ci360-news__recognition-copy h3 {
    margin-bottom: 10px;
}

.ci360-news__recognition-copy > p:last-child {
    margin: 0;
    color: var(--news-copy);
    font-size: .9rem;
    line-height: 1.63;
}

.ci360-news__recognition-note {
    display: grid;
    grid-template-columns:
        minmax(190px, .55fr)
        minmax(0, 1.35fr)
        auto;
    gap: 22px;
    align-items: center;
    margin-top: 19px;
    padding: 20px 23px;
    border: 1px solid var(--news-border);
    border-radius: 17px;
    background: var(--news-pale);
}

.ci360-news__recognition-note strong {
    color: var(--news-ink);
    line-height: 1.4;
}

.ci360-news__recognition-note p {
    margin: 0;
    color: var(--news-copy);
    font-size: .88rem;
    line-height: 1.62;
}

.ci360-news__recognition-note a,
.ci360-news__events-link {
    color: var(--news-green);
    font-size: .84rem;
    font-weight: 850;
    line-height: 1.35;
    text-decoration: none;
}

.ci360-news__recognition-note a:hover,
.ci360-news__events-link:hover {
    text-decoration: underline;
}

.ci360-news__section--media {
    background: var(--news-pale);
    border-top: 1px solid var(--news-border);
}

.ci360-news__media-heading {
    display: flex;
    gap: 28px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.ci360-news__media-heading .ci360-news__section-heading {
    margin-bottom: 0;
}

.ci360-news__events-link {
    flex: 0 0 auto;
    padding-bottom: 4px;
}

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

.ci360-news__video-card {
    overflow: hidden;
    border: 1px solid var(--news-border);
    border-radius: 19px;
    background: var(--news-white);
    box-shadow: 0 8px 25px rgba(25, 54, 45, .05);
}

.ci360-news__video-trigger,
.ci360-news__video-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.ci360-news__video-trigger {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
    color: var(--news-ink);
    background:
        radial-gradient(
            circle at 80% 18%,
            rgba(140, 198, 63, .16),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            #f4f8f5 0%,
            #ffffff 100%
        );
    font: inherit;
    text-align: center;
}

.ci360-news__video-trigger:hover {
    background:
        radial-gradient(
            circle at 80% 18%,
            rgba(140, 198, 63, .20),
            transparent 34%
        ),
        #f7faf7;
}

.ci360-news__video-type {
    position: absolute;
    top: 13px;
    left: 14px;
    color: var(--news-green);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.ci360-news__video-play {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    border: 1px solid rgba(23, 107, 77, .18);
    border-radius: 50%;
    color: var(--news-white);
    background: var(--news-green);
    box-shadow: 0 9px 22px rgba(23, 107, 77, .18);
    font-size: 1.05rem;
}

.ci360-news__video-action {
    color: var(--news-deep);
    font-size: .82rem;
    font-weight: 850;
}

.ci360-news__video-media--playing {
    background: #eef3ef;
}

.ci360-news__video-media iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.ci360-news__video-copy {
    padding: 21px 22px 23px;
}

.ci360-news__video-copy h3 {
    margin-bottom: 9px;
}

.ci360-news__video-copy > p:last-child {
    margin: 0;
    color: var(--news-copy);
    font-size: .89rem;
    line-height: 1.62;
}

@media (max-width: 960px) {
    .ci360-news__intro-grid,
    .ci360-news__feature-grid {
        grid-template-columns: 1fr;
    }

    .ci360-news__intro-note {
        max-width: 520px;
    }

    .ci360-news__feature-media {
        max-width: 760px;
    }

    .ci360-news__recognition-grid {
        grid-template-columns: 1fr;
    }

    .ci360-news__recognition-note {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .ci360-news__recognition-card {
        grid-template-columns: 1fr;
    }

    .ci360-news__recognition-card img {
        height: auto;
        min-height: 0;
        aspect-ratio: 1.5 / 1;
    }

    .ci360-news__media-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .ci360-news__video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .ci360-news__shell {
        width: min(100% - 28px, 1160px);
    }

    .ci360-news__intro {
        padding-top: 44px;
    }

    .ci360-news__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ci360-news__button {
        width: 100%;
    }

    .ci360-news__feature-media {
        border-width: 3px;
        border-radius: 18px;
    }

    .ci360-news__feature-media figcaption {
        position: static;
        max-width: none;
        border-radius: 0;
    }

    .ci360-news__recognition-copy,
    .ci360-news__video-copy {
        padding: 20px;
    }

    .ci360-news__recognition-note {
        padding: 19px;
    }
}
/* === CI360 NEWS & UPDATES R1 END === */

/* =========================================================
   CI360 NATIVE YOUTUBE LAYOUT CORRECTION R1
   Preserve established cards and media dimensions
   ========================================================= */

.ci360-native-youtube {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
}

.ci360-native-youtube iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

/* Events: preserve the media dimensions established before conversion. */
.ci360-native-youtube--events-latest {
    aspect-ratio: 1.55 / 1;
}

.ci360-native-youtube--events-story {
    aspect-ratio: 16 / 9;
}

/* News cards were already designed as 16:9 media areas. */
.ci360-native-youtube--news {
    aspect-ratio: 16 / 9;
}

/* Cha Mama media posters were designed at 16:10. */
.ci360-native-youtube--cha-feature,
.ci360-native-youtube--cha-card {
    aspect-ratio: 16 / 10;
}

/*
 * No homepage overrides here.
 * Its established portrait video card and 9:16 player remain unchanged.
 */

/* CI360 NATIVE YOUTUBE LAYOUT CORRECTION R1 END */

/* =========================================================
   CI360 CONTACT + INITIATIVES R1
   ========================================================= */

.ci360-contact-page,
.ci360-initiative-hub {
    --ci360-page-ink: #173c31;
    --ci360-page-copy: #566b61;
    --ci360-page-green: #176b4d;
    --ci360-page-soft: #f4f8f2;
    --ci360-page-line: rgba(23, 107, 77, 0.13);
}

.ci360-contact-page__hero,
.ci360-initiative-hub__hero {
    padding: clamp(58px, 7vw, 88px) 0;
    background: linear-gradient(
        180deg,
        #fbfdfa 0%,
        #f1f8ed 100%
    );
}

.ci360-contact-page__hero-inner,
.ci360-initiative-hub__hero-inner {
    max-width: 850px;
}

.ci360-contact-page__eyebrow,
.ci360-initiative-hub__eyebrow,
.ci360-contact-page__label,
.ci360-initiative-hub__nest {
    margin: 0 0 12px;
    color: var(--ci360-page-green);
    font-size: .74rem;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.ci360-contact-page h1,
.ci360-initiative-hub h1 {
    max-width: 790px;
    margin: 0;
    color: var(--ci360-page-ink);
    font-size: clamp(2.05rem, 4.2vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.ci360-contact-page__lead,
.ci360-initiative-hub__lead {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--ci360-page-copy);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    line-height: 1.72;
}

.ci360-contact-page__details,
.ci360-initiative-hub__current {
    padding: clamp(56px, 7vw, 84px) 0;
    background: #fff;
}

.ci360-contact-page__heading,
.ci360-initiative-hub__heading {
    max-width: 720px;
    margin: 0 0 30px;
}

.ci360-contact-page__heading h2,
.ci360-initiative-hub__heading h2,
.ci360-contact-page__cta h2,
.ci360-initiative-hub__next h2 {
    margin: 0;
    color: var(--ci360-page-ink);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.ci360-contact-page__heading p:last-child,
.ci360-initiative-hub__heading p:last-child,
.ci360-contact-page__cta p,
.ci360-initiative-hub__next p {
    color: var(--ci360-page-copy);
    line-height: 1.7;
}

.ci360-contact-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ci360-contact-page__card,
.ci360-initiative-hub__card {
    position: relative;
    border: 1px solid var(--ci360-page-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(23, 60, 49, .045);
}

.ci360-contact-page__card {
    min-height: 235px;
    padding: 27px;
}

.ci360-contact-page__card-number {
    display: block;
    margin-bottom: 28px;
    color: rgba(23, 107, 77, .38);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.ci360-contact-page__card h3,
.ci360-initiative-hub__card h3 {
    margin: 0 0 10px;
    color: var(--ci360-page-ink);
    font-size: 1.14rem;
}

.ci360-contact-page__card p,
.ci360-initiative-hub__card p {
    color: var(--ci360-page-copy);
    line-height: 1.65;
}

.ci360-contact-page__contact-link,
.ci360-contact-page__text-link {
    color: var(--ci360-page-green);
    font-weight: 800;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.ci360-contact-page__contact-link:hover,
.ci360-contact-page__contact-link:focus-visible,
.ci360-contact-page__text-link:hover,
.ci360-contact-page__text-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ci360-initiative-hub__card {
    display: grid;
    grid-template-columns: minmax(150px, .34fr) minmax(0, 1fr);
    max-width: 880px;
    overflow: hidden;
}

.ci360-initiative-hub__card-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 28px;
    background: #eef7e8;
}

.ci360-initiative-hub__card-mark span {
    color: var(--ci360-page-green);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 850;
    letter-spacing: -.025em;
}

.ci360-initiative-hub__card-copy {
    padding: clamp(28px, 4vw, 42px);
    align-self: center;
}

.ci360-contact-page__cta,
.ci360-initiative-hub__next {
    padding: clamp(48px, 6vw, 70px) 0;
    border-top: 1px solid var(--ci360-page-line);
    background: var(--ci360-page-soft);
}

.ci360-contact-page__cta-inner,
.ci360-initiative-hub__next-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.ci360-contact-page__cta-inner > div,
.ci360-initiative-hub__next-inner > div {
    max-width: 720px;
}

@media (max-width: 820px) {

    .ci360-contact-page__grid {
        grid-template-columns: 1fr;
    }

    .ci360-initiative-hub__card {
        grid-template-columns: 1fr;
    }

    .ci360-initiative-hub__card-mark {
        min-height: 150px;
    }

    .ci360-contact-page__cta-inner,
    .ci360-initiative-hub__next-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 560px) {

    .ci360-contact-page__hero,
    .ci360-initiative-hub__hero {
        padding: 45px 0;
    }

    .ci360-contact-page__details,
    .ci360-initiative-hub__current {
        padding: 47px 0;
    }

    .ci360-contact-page__card,
    .ci360-initiative-hub__card {
        border-radius: 17px;
    }

    .ci360-contact-page__card {
        min-height: 0;
        padding: 22px;
    }

    .ci360-initiative-hub__card-copy {
        padding: 24px 22px;
    }
}

/* CI360 CONTACT + INITIATIVES R1 END */

/* =========================================================
   CHA MAMA LAUNCH — KDIC + CHURCH LEADERSHIP R1
   ========================================================= */

.ci360-cha-launch__kdic-board-heading,
.ci360-cha-launch__kdic-members-heading,
.ci360-cha-launch__church-heading {
    max-width: 760px;
    margin: 34px 0 18px;
}

.ci360-cha-launch__kdic-board-heading h3,
.ci360-cha-launch__church-heading h3 {
    margin: 0 0 8px;
    color: #173c31;
    font-size: clamp(1.15rem, 2vw, 1.42rem);
    line-height: 1.25;
}

.ci360-cha-launch__kdic-board-heading p:last-child,
.ci360-cha-launch__kdic-members-heading p:last-child,
.ci360-cha-launch__church-heading p:last-child {
    margin-bottom: 0;
    color: #5a6d63;
    line-height: 1.65;
}

.ci360-cha-launch__kdic-board-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ci360-cha-launch__kdic-board-card,
.ci360-cha-launch__church-card,
.ci360-cha-launch__kdic-member-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(23, 107, 77, .13);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(23, 60, 49, .045);
}

.ci360-cha-launch__kdic-board-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.ci360-cha-launch__kdic-board-card > div {
    padding: 16px 16px 18px;
}

.ci360-cha-launch__kdic-board-card h3 {
    margin: 4px 0 7px;
    color: #173c31;
    font-size: 1rem;
    line-height: 1.25;
}

.ci360-cha-launch__kdic-board-card > div > p:last-child {
    margin: 0;
    color: #5a6d63;
    font-size: .88rem;
    line-height: 1.55;
}

.ci360-cha-launch__role-secondary {
    margin: -5px 0 8px;
    color: #4d665a;
    font-size: .72rem;
    font-weight: 750;
    line-height: 1.35;
}

.ci360-cha-launch__kdic-member-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.ci360-cha-launch__kdic-member-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.ci360-cha-launch__kdic-member-card figcaption {
    padding: 10px 8px 11px;
    color: #176b4d;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.ci360-cha-launch__church-heading {
    margin-top: 40px;
}

.ci360-cha-launch__church-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 38px;
}

.ci360-cha-launch__church-card {
    display: grid;
    grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
    align-items: stretch;
}

.ci360-cha-launch__church-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 205px;
    object-fit: cover;
}

.ci360-cha-launch__church-card > div {
    align-self: center;
    padding: 20px;
}

.ci360-cha-launch__church-card h3 {
    margin: 3px 0 7px;
    color: #173c31;
    font-size: 1.05rem;
    line-height: 1.28;
}

.ci360-cha-launch__church-card > div > p:last-child {
    margin: 0;
    color: #5a6d63;
    font-size: .9rem;
    line-height: 1.58;
}

@media (max-width: 980px) {

    .ci360-cha-launch__kdic-board-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ci360-cha-launch__kdic-member-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ci360-cha-launch__church-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {

    .ci360-cha-launch__kdic-board-grid {
        grid-template-columns: 1fr;
    }

    .ci360-cha-launch__kdic-member-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ci360-cha-launch__church-card {
        grid-template-columns: 1fr;
    }

    .ci360-cha-launch__church-card img {
        height: auto;
        min-height: 0;
        aspect-ratio: 3 / 2;
    }
}

/* CHA MAMA LAUNCH — KDIC + CHURCH LEADERSHIP R1 END */

/* =========================================================
   PARTNERS & SUPPORT R1
   Page-scoped launch styling
   ========================================================= */

.ci360-partners-page {
    --ci360-partners-green: #0b6a45;
    --ci360-partners-green-dark: #075236;
    --ci360-partners-lime: #8cc63f;
    --ci360-partners-ink: #163326;
    --ci360-partners-muted: #5c6e64;
    --ci360-partners-soft: #f5faf5;
    --ci360-partners-soft-2: #edf7ee;
    --ci360-partners-white: #ffffff;
    --ci360-partners-border: rgba(11, 106, 69, 0.14);
    --ci360-partners-shadow: 0 14px 34px rgba(20, 63, 43, 0.08);

    color: var(--ci360-partners-ink);
    background: var(--ci360-partners-white);
}

.ci360-partners-page__shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.ci360-partners-page__hero {
    padding: 72px 0 64px;
    background:
        radial-gradient(circle at 88% 16%, rgba(140, 198, 63, 0.11), transparent 28%),
        linear-gradient(180deg, #f8fcf7 0%, #ffffff 100%);
    border-bottom: 1px solid var(--ci360-partners-border);
}

.ci360-partners-page__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
    gap: 52px;
    align-items: center;
}

.ci360-partners-page__eyebrow {
    margin: 0 0 12px;
    color: var(--ci360-partners-green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: uppercase;
}

.ci360-partners-page__hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.ci360-partners-page__lead {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--ci360-partners-muted);
    font-size: 1.04rem;
    line-height: 1.78;
}

.ci360-partners-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ci360-partners-page__button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.25;
    text-decoration: none;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

.ci360-partners-page__button:hover {
    transform: translateY(-1px);
}

.ci360-partners-page__button:focus-visible {
    outline: 3px solid rgba(140, 198, 63, 0.42);
    outline-offset: 3px;
}

.ci360-partners-page__button--primary {
    color: #ffffff;
    background: var(--ci360-partners-green);
    box-shadow: 0 8px 20px rgba(11, 106, 69, 0.16);
}

.ci360-partners-page__button--primary:hover {
    color: #ffffff;
    background: var(--ci360-partners-green-dark);
}

.ci360-partners-page__button--secondary {
    color: var(--ci360-partners-green-dark);
    background: #ffffff;
    border-color: rgba(11, 106, 69, 0.2);
}

.ci360-partners-page__button--secondary:hover {
    color: var(--ci360-partners-green-dark);
    border-color: rgba(11, 106, 69, 0.34);
    box-shadow: 0 7px 18px rgba(20, 63, 43, 0.07);
}

.ci360-partners-page__hero-note {
    padding: 28px;
    border: 1px solid var(--ci360-partners-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--ci360-partners-shadow);
}

.ci360-partners-page__note-label {
    margin: 0 0 10px;
    color: var(--ci360-partners-green);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ci360-partners-page__hero-note h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 1.72rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.ci360-partners-page__hero-note p:last-child {
    margin: 14px 0 0;
    color: var(--ci360-partners-muted);
    font-size: 0.94rem;
    line-height: 1.68;
}

.ci360-partners-page__section {
    padding: 72px 0 78px;
}

.ci360-partners-page__section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 34px;
}

.ci360-partners-page__section-heading h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.ci360-partners-page__section-heading > p {
    max-width: 640px;
    margin: 0;
    color: var(--ci360-partners-muted);
    font-size: 0.98rem;
    line-height: 1.74;
}

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

.ci360-partners-page__card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--ci360-partners-border);
    border-radius: 18px;
    background: var(--ci360-partners-white);
    box-shadow: 0 8px 22px rgba(20, 63, 43, 0.055);
}

.ci360-partners-page__logo {
    display: grid;
    min-height: 156px;
    place-items: center;
    margin: 12px 12px 0;
    padding: 18px;
    border-radius: 14px;
    background: var(--ci360-partners-soft);
}

.ci360-partners-page__logo img {
    display: block;
    width: 118px;
    height: 118px;
    max-width: 100%;
    object-fit: contain;
}

.ci360-partners-page__card-copy {
    padding: 17px 18px 20px;
}

.ci360-partners-page__card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: -0.012em;
}

.ci360-partners-page__card p {
    margin: 9px 0 0;
    color: var(--ci360-partners-muted);
    font-size: 0.86rem;
    line-height: 1.58;
}

.ci360-partners-page__closing {
    padding: 0 0 76px;
}

.ci360-partners-page__closing-card {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) auto;
    gap: 40px;
    align-items: center;
    padding: 34px 38px;
    border: 1px solid rgba(11, 106, 69, 0.15);
    border-radius: 24px;
    background:
        linear-gradient(135deg, var(--ci360-partners-soft-2), #fbfdf9);
}

.ci360-partners-page__closing-card h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    line-height: 1.13;
    letter-spacing: -0.025em;
}

.ci360-partners-page__closing-card > div:first-child > p:last-child {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--ci360-partners-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.ci360-partners-page__closing-card .ci360-partners-page__actions {
    justify-content: flex-end;
    margin-top: 0;
}

@media (max-width: 980px) {
    .ci360-partners-page__hero-grid,
    .ci360-partners-page__section-heading {
        grid-template-columns: 1fr;
        gap: 26px;
    }

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

    .ci360-partners-page__closing-card {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ci360-partners-page__closing-card .ci360-partners-page__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .ci360-partners-page__hero {
        padding: 54px 0 50px;
    }

    .ci360-partners-page__section {
        padding: 56px 0 60px;
    }

    .ci360-partners-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ci360-partners-page__logo {
        min-height: 142px;
    }

    .ci360-partners-page__logo img {
        width: 106px;
        height: 106px;
    }
}

@media (max-width: 520px) {
    .ci360-partners-page__shell {
        width: min(100% - 28px, 1180px);
    }

    .ci360-partners-page__hero h1 {
        font-size: 2rem;
    }

    .ci360-partners-page__grid {
        grid-template-columns: 1fr;
    }

    .ci360-partners-page__closing {
        padding-bottom: 56px;
    }

    .ci360-partners-page__closing-card {
        padding: 26px 22px;
    }

    .ci360-partners-page__button {
        width: 100%;
    }
}

/* =========================================================
   PARTNER WITH US + SUPPORT A LEARNER R1
   ========================================================= */

.ci360-engagement-page {
  color: #183526;
  background: #ffffff;
}

.ci360-engagement-page__hero {
  padding: 72px 0 62px;
  background:
    radial-gradient(circle at 90% 15%, rgba(140, 198, 63, 0.16), transparent 34%),
    linear-gradient(180deg, #f7fbf4 0%, #ffffff 100%);
}

.ci360-engagement-page__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 52px;
  align-items: center;
}

.ci360-engagement-page__hero-copy {
  max-width: 760px;
}

.ci360-engagement-page__hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.ci360-engagement-page__lead {
  max-width: 680px;
  margin: 0;
  color: #52675b;
  font-size: 1.08rem;
  line-height: 1.75;
}

.ci360-engagement-page__nest {
  margin: 20px 0 0;
  color: #08713f;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ci360-engagement-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ci360-engagement-page__hero-note {
  padding: 28px;
  border: 1px solid rgba(6, 63, 42, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(6, 63, 42, 0.08);
}

.ci360-engagement-page__hero-note strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1.06rem;
}

.ci360-engagement-page__hero-note p {
  margin: 0;
  color: #52675b;
  line-height: 1.7;
}

.ci360-engagement-page__focus {
  padding: 70px 0;
}

.ci360-engagement-page__focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.ci360-engagement-page__focus-grid article {
  padding: 26px;
  border: 1px solid rgba(6, 63, 42, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(6, 63, 42, 0.06);
}

.ci360-engagement-page__focus-grid h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.ci360-engagement-page__focus-grid p {
  margin: 0;
  color: #52675b;
  line-height: 1.7;
}

.ci360-engagement-page__form-section {
  padding: 72px 0 82px;
  background: #f5faf3;
}

.ci360-engagement-page__form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 46px;
  align-items: start;
}

.ci360-engagement-page__form-intro {
  position: sticky;
  top: 112px;
}

.ci360-engagement-page__form-intro h2 {
  margin: 10px 0 14px;
}

.ci360-engagement-page__form-intro > p:not(.ci360-eyebrow) {
  color: #52675b;
  line-height: 1.72;
}

.ci360-engagement-page__form-note {
  margin-top: 22px;
  padding: 15px 17px;
  border-left: 3px solid #8cc63f;
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.74);
}

.ci360-engagement-page__form-card {
  padding: 30px;
  border: 1px solid rgba(6, 63, 42, 0.13);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(6, 63, 42, 0.07);
}

.ci360-engagement-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ci360-engagement-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ci360-engagement-form__field--wide {
  grid-column: 1 / -1;
}

.ci360-engagement-form__field label {
  color: #183526;
  font-size: 0.94rem;
  font-weight: 700;
}

.ci360-engagement-form__field input,
.ci360-engagement-form__field select,
.ci360-engagement-form__field textarea {
  width: 100%;
  border: 1px solid rgba(6, 63, 42, 0.19);
  border-radius: 13px;
  background: #ffffff;
  color: #183526;
  font: inherit;
}

.ci360-engagement-form__field input,
.ci360-engagement-form__field select {
  min-height: 48px;
  padding: 10px 13px;
}

.ci360-engagement-form__field textarea {
  min-height: 145px;
  padding: 13px;
  resize: vertical;
}

.ci360-engagement-form__field input:focus,
.ci360-engagement-form__field select:focus,
.ci360-engagement-form__field textarea:focus {
  outline: 3px solid rgba(140, 198, 63, 0.22);
  border-color: #08713f;
}

.ci360-engagement-form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  margin: 22px 0;
  color: #52675b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.ci360-engagement-form__consent input {
  margin-top: 4px;
}

.ci360-engagement-form__consent a {
  color: #08713f;
  font-weight: 700;
}

.ci360-engagement-form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.ci360-engagement-form__notice {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 650;
}

.ci360-engagement-form__notice--success {
  border: 1px solid rgba(8, 113, 63, 0.18);
  background: #eff8ef;
  color: #063f2a;
}

.ci360-engagement-form__notice--error {
  border: 1px solid rgba(137, 48, 48, 0.16);
  background: #fff6f4;
  color: #71302d;
}

@media (max-width: 900px) {
  .ci360-engagement-page__hero-inner,
  .ci360-engagement-page__form-layout {
    grid-template-columns: 1fr;
  }

  .ci360-engagement-page__focus-grid {
    grid-template-columns: 1fr;
  }

  .ci360-engagement-page__form-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .ci360-engagement-page__hero {
    padding: 54px 0 46px;
  }

  .ci360-engagement-page__focus,
  .ci360-engagement-page__form-section {
    padding: 54px 0;
  }

  .ci360-engagement-page__form-card {
    padding: 21px;
  }

  .ci360-engagement-form__grid {
    grid-template-columns: 1fr;
  }

  .ci360-engagement-form__field--wide {
    grid-column: auto;
  }
}


/* =========================================================
   GOOGLE RECAPTCHA V2 CHECKBOX — PUBLIC FORMS R1
   ========================================================= */

.ci360-recaptcha {
	margin: 18px 0 14px;
	padding: 14px;
	border: 1px solid rgba(6, 63, 42, 0.14);
	border-radius: 16px;
	background: #f7fbf7;
	overflow-x: auto;
}

.ci360-recaptcha .g-recaptcha {
	min-height: 78px;
}

.ci360-recaptcha__unavailable {
	margin: 0;
	color: #6e281f;
	font-size: 0.95rem;
	line-height: 1.5;
}

.ci360-recaptcha-notice {
	margin: 0 0 18px;
	padding: 12px 14px;
	border: 1px solid rgba(139, 47, 36, 0.22);
	border-radius: 14px;
	background: #fff7f5;
	color: #6e281f;
	font-size: 0.95rem;
	line-height: 1.55;
}

@media (max-width: 380px) {
	.ci360-recaptcha {
		padding: 12px 8px;
	}

	.ci360-recaptcha .g-recaptcha {
		width: 304px;
		min-height: 69px;
		margin-bottom: -9px;
		transform: scale(0.88);
		transform-origin: 0 0;
	}
}

/* =========================================================
   360 CLIMATE INSTITUTES — MURAYAS EVENT R1
   Page 176: /innovation-creativity-and-talent/
   Scoped, light and restrained event storytelling
   ========================================================= */

.ci360-murayas {
  --murayas-green: #0a5a3b;
  --murayas-green-2: #137348;
  --murayas-lime: #8cc63f;
  --murayas-text: #183526;
  --murayas-muted: #5b6f63;
  --murayas-line: rgba(10, 90, 59, 0.14);
  --murayas-soft: #f5faf4;
  --murayas-soft-2: #edf6eb;
  --murayas-white: #ffffff;
  --murayas-radius: 22px;
  --murayas-shadow: 0 14px 34px rgba(20, 62, 42, 0.08);
  color: var(--murayas-text);
  background: var(--murayas-white);
  overflow: hidden;
}

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

.ci360-murayas img {
  display: block;
  width: 100%;
  height: auto;
}

.ci360-murayas h1,
.ci360-murayas h2,
.ci360-murayas h3,
.ci360-murayas p,
.ci360-murayas figure {
  margin-top: 0;
}

.ci360-murayas p {
  color: var(--murayas-muted);
  line-height: 1.72;
}

.ci360-murayas-hero {
  padding: 46px 0 42px;
  background:
    radial-gradient(circle at 90% 10%, rgba(140, 198, 63, 0.12), transparent 32%),
    linear-gradient(180deg, #fbfdf9 0%, #f5faf4 100%);
  border-bottom: 1px solid var(--murayas-line);
}

.ci360-murayas-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.ci360-murayas-kicker,
.ci360-murayas-card-kicker,
.ci360-murayas-purpose-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--murayas-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ci360-murayas-kicker::before,
.ci360-murayas-card-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--murayas-lime);
}

.ci360-murayas-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--murayas-green);
  font-size: clamp(2.05rem, 4.2vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ci360-murayas-lead {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(1.02rem, 1.8vw, 1.14rem);
}

.ci360-murayas-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.ci360-murayas-facts > div {
  padding: 9px 13px;
  border: 1px solid var(--murayas-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--murayas-text);
  font-size: 0.88rem;
  line-height: 1.25;
}

.ci360-murayas-actions,
.ci360-murayas-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ci360-murayas .ci360-btn {
  min-height: 43px;
  padding: 11px 17px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ci360-murayas .ci360-btn:hover {
  transform: translateY(-1px);
}

.ci360-murayas .ci360-btn-primary {
  border: 1px solid var(--murayas-green);
  background: var(--murayas-green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(10, 90, 59, 0.14);
}

.ci360-murayas .ci360-btn-primary:hover {
  background: var(--murayas-green-2);
  color: #fff;
}

.ci360-murayas .ci360-btn-secondary {
  border: 1px solid rgba(10, 90, 59, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: var(--murayas-green);
}

.ci360-murayas .ci360-btn-secondary:hover {
  background: #fff;
  color: var(--murayas-green);
  box-shadow: 0 8px 20px rgba(20, 62, 42, 0.08);
}

.ci360-murayas-hero-media {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--murayas-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--murayas-shadow);
}

.ci360-murayas-hero-media img {
  aspect-ratio: 4 / 3;
  max-height: 370px;
  border-radius: 17px;
  object-fit: cover;
  object-position: center;
}

.ci360-murayas-purpose {
  padding: 52px 0;
  background: #fff;
}

.ci360-murayas-purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.ci360-murayas-purpose h2,
.ci360-murayas-section-heading h2,
.ci360-murayas-feature h2,
.ci360-murayas-cta h2 {
  margin-bottom: 12px;
  color: var(--murayas-green);
  font-size: clamp(1.65rem, 3vw, 2.18rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.ci360-murayas-purpose-card {
  padding: 22px;
  border: 1px solid var(--murayas-line);
  border-radius: var(--murayas-radius);
  background: var(--murayas-soft);
}

.ci360-murayas-purpose-tag {
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(140, 198, 63, 0.14);
}

.ci360-murayas-purpose-card p:last-child {
  margin-bottom: 0;
}

.ci360-murayas-section,
.ci360-murayas-videos {
  padding: 58px 0;
}

.ci360-murayas-section-heading {
  max-width: 790px;
  margin-bottom: 26px;
}

.ci360-murayas-section-heading-narrow {
  max-width: 700px;
}

.ci360-murayas-section-heading > :last-child {
  margin-bottom: 0;
}

.ci360-murayas-grid {
  display: grid;
  gap: 20px;
}

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

.ci360-murayas-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ci360-murayas-card {
  overflow: hidden;
  border: 1px solid var(--murayas-line);
  border-radius: var(--murayas-radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 62, 42, 0.055);
}

.ci360-murayas-card > img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.ci360-murayas-card-body {
  padding: 18px 18px 20px;
}

.ci360-murayas-card-body h3,
.ci360-murayas-moment h3,
.ci360-murayas-video-body h3 {
  margin-bottom: 8px;
  color: var(--murayas-text);
  font-size: 1.08rem;
  line-height: 1.3;
}

.ci360-murayas-card-body p,
.ci360-murayas-moment p,
.ci360-murayas-video-body p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.ci360-murayas-card-compact > img {
  aspect-ratio: 1 / 1;
}

.ci360-murayas-card-compact .ci360-murayas-card-body {
  padding: 15px 15px 17px;
}

.ci360-murayas-feature {
  padding: 54px 0;
  background: #fff;
}

.ci360-murayas-feature-soft {
  background: var(--murayas-soft);
  border-top: 1px solid rgba(10, 90, 59, 0.06);
  border-bottom: 1px solid rgba(10, 90, 59, 0.06);
}

.ci360-murayas-feature-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.ci360-murayas-feature-grid-reverse > :first-child {
  order: 2;
}

.ci360-murayas-feature-grid-reverse > :last-child {
  order: 1;
}

.ci360-murayas-feature figure {
  margin: 0;
}

.ci360-murayas-feature figure img {
  aspect-ratio: 4 / 3;
  max-height: 390px;
  border-radius: var(--murayas-radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--murayas-shadow);
}

.ci360-murayas-feature p:last-child {
  margin-bottom: 0;
}

.ci360-murayas-murayas {
  background: #fff;
}

.ci360-murayas-moment-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

.ci360-murayas-moment {
  overflow: hidden;
  border: 1px solid var(--murayas-line);
  border-radius: var(--murayas-radius);
  background: var(--murayas-soft);
}

.ci360-murayas-moment > img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ci360-murayas-moment-wide > img {
  aspect-ratio: 16 / 10;
}

.ci360-murayas-moment > div {
  padding: 18px;
}

.ci360-murayas-community {
  background: linear-gradient(180deg, #fff 0%, #fbfdf9 100%);
}

.ci360-murayas-videos {
  background: var(--murayas-soft);
  border-top: 1px solid rgba(10, 90, 59, 0.07);
  border-bottom: 1px solid rgba(10, 90, 59, 0.07);
}

.ci360-murayas-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ci360-murayas-video-card {
  overflow: hidden;
  border: 1px solid var(--murayas-line);
  border-radius: var(--murayas-radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 62, 42, 0.055);
}

.ci360-murayas-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8eee9;
}

.ci360-murayas-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ci360-murayas-video-body {
  padding: 18px 18px 20px;
}

.ci360-murayas-cta {
  padding: 58px 0 64px;
  background: #fff;
}

.ci360-murayas-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--murayas-line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 15%, rgba(140, 198, 63, 0.14), transparent 30%),
    var(--murayas-soft);
}

.ci360-murayas-cta-card p {
  max-width: 720px;
  margin-bottom: 0;
}

.ci360-murayas-text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--murayas-green);
  font-weight: 750;
  text-decoration: none;
}

.ci360-murayas-text-link:hover {
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .ci360-murayas-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ci360-murayas-moment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ci360-murayas-moment-wide {
    grid-column: 1 / -1;
  }

  .ci360-murayas-moment-wide > img {
    aspect-ratio: 16 / 8;
    max-height: 390px;
  }
}

@media (max-width: 860px) {
  .ci360-murayas-hero-grid,
  .ci360-murayas-purpose-grid,
  .ci360-murayas-feature-grid,
  .ci360-murayas-cta-card {
    grid-template-columns: 1fr;
  }

  .ci360-murayas-hero-grid {
    gap: 28px;
  }

  .ci360-murayas-hero-media {
    max-width: 680px;
  }

  .ci360-murayas-feature-grid-reverse > :first-child,
  .ci360-murayas-feature-grid-reverse > :last-child {
    order: initial;
  }

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

  .ci360-murayas-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .ci360-murayas-hero {
    padding: 34px 0;
  }

  .ci360-murayas-purpose,
  .ci360-murayas-section,
  .ci360-murayas-feature,
  .ci360-murayas-videos,
  .ci360-murayas-cta {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .ci360-murayas-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
  }

  .ci360-murayas-grid-3,
  .ci360-murayas-grid-4,
  .ci360-murayas-video-grid,
  .ci360-murayas-moment-grid {
    grid-template-columns: 1fr;
  }

  .ci360-murayas-moment-wide {
    grid-column: auto;
  }

  .ci360-murayas-moment-wide > img {
    aspect-ratio: 4 / 3;
  }

  .ci360-murayas-hero-media,
  .ci360-murayas-card,
  .ci360-murayas-moment,
  .ci360-murayas-video-card {
    border-radius: 18px;
  }

  .ci360-murayas-hero-media {
    padding: 9px;
  }

  .ci360-murayas-hero-media img {
    border-radius: 12px;
  }

  .ci360-murayas-facts {
    gap: 8px;
  }

  .ci360-murayas-facts > div {
    font-size: 0.82rem;
  }

  .ci360-murayas-actions,
  .ci360-murayas-cta-actions {
    align-items: stretch;
  }

  .ci360-murayas .ci360-btn {
    justify-content: center;
    text-align: center;
  }
}


.ci360-murayas .ci360-murayas-hero-copy {
  min-width: 0;
}
/* =========================================================
   360 CLIMATE INSTITUTES — EVENTS R3
   All-events summary landing
   Scoped entirely to .ci360-events-r3
   ========================================================= */

.ci360-events-r3 {
  --events-green: #0a5a3b;
  --events-green-2: #137348;
  --events-lime: #8cc63f;
  --events-ink: #183526;
  --events-muted: #5d6f64;
  --events-soft: #f5faf4;
  --events-soft-2: #edf6eb;
  --events-line: rgba(10, 90, 59, 0.13);
  --events-shadow: 0 14px 38px rgba(25, 66, 45, 0.08);
  --events-radius: 24px;

  color: var(--events-ink);
}

.ci360-events-r3 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci360-events-r3__hero {
  padding: clamp(2.6rem, 5vw, 4.6rem) 0 clamp(2.4rem, 4.5vw, 4rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(140, 198, 63, 0.13), transparent 31rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
}

.ci360-events-r3__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4.4rem);
  align-items: center;
}

.ci360-events-r3__hero-copy {
  min-width: 0;
}

.ci360-events-r3__eyebrow {
  margin: 0 0 0.7rem;
  color: var(--events-green-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ci360-events-r3__hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--events-green);
  font-size: clamp(2.05rem, 4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ci360-events-r3__lead {
  max-width: 700px;
  margin: 1.15rem 0 0;
  color: var(--events-muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.ci360-events-r3__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.ci360-events-r3 .ci360-btn {
  min-height: 44px;
}

.ci360-events-r3__hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  min-height: 330px;
  max-height: 390px;
}

.ci360-events-r3__hero-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--events-line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--events-shadow);
}

.ci360-events-r3__hero-photo--main {
  grid-row: 1 / span 2;
}

.ci360-events-r3__hero-photo img {
  min-height: 0;
}

.ci360-events-r3__hero-photo figcaption {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  width: fit-content;
  max-width: calc(100% - 1.4rem);
  padding: 0.48rem 0.68rem;
  border: 1px solid rgba(10, 90, 59, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--events-green);
  box-shadow: 0 8px 20px rgba(20, 60, 40, 0.08);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
  backdrop-filter: blur(5px);
}

.ci360-events-r3__events {
  padding: clamp(3.3rem, 6vw, 5.4rem) 0;
  background: #ffffff;
}

.ci360-events-r3__section-heading {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.ci360-events-r3__section-heading--compact {
  margin-bottom: 1.4rem;
}

.ci360-events-r3__section-heading h2 {
  margin: 0;
  color: var(--events-green);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.ci360-events-r3__section-heading > p:last-child {
  margin: 0.85rem 0 0;
  color: var(--events-muted);
  line-height: 1.7;
}

.ci360-events-r3__event-list {
  display: grid;
  gap: 1rem;
}

.ci360-events-r3__event-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--events-line);
  border-radius: var(--events-radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(25, 66, 45, 0.055);
}

.ci360-events-r3__event-card--linked {
  border-color: rgba(10, 90, 59, 0.18);
}

.ci360-events-r3__event-card--text-led {
  background: var(--events-soft);
}

.ci360-events-r3__event-card--summary {
  background: #fbfdfb;
}

.ci360-events-r3__event-media {
  min-height: 220px;
  overflow: hidden;
  background: var(--events-soft-2);
}

.ci360-events-r3__event-media img {
  aspect-ratio: 4 / 3;
  min-height: 220px;
  max-height: 270px;
}

.ci360-events-r3__event-marker {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 1.5rem;
  background:
    linear-gradient(145deg, rgba(140, 198, 63, 0.16), rgba(10, 90, 59, 0.07)),
    #f7fbf6;
  color: var(--events-green);
  text-align: center;
}

.ci360-events-r3__event-marker span {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.05em;
}

.ci360-events-r3__event-marker strong {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.ci360-events-r3__event-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

.ci360-events-r3__event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  align-items: center;
  margin-bottom: 0.55rem;
  color: var(--events-green-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ci360-events-r3__event-copy h3 {
  max-width: 820px;
  margin: 0;
  color: var(--events-green);
  font-size: clamp(1.28rem, 2.2vw, 1.72rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ci360-events-r3__event-copy > p:not(.ci360-events-r3__archive-note) {
  max-width: 840px;
  margin: 0.75rem 0 0;
  color: var(--events-muted);
  line-height: 1.68;
}

.ci360-events-r3__event-link,
.ci360-events-r3__text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.42rem;
  color: var(--events-green);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.ci360-events-r3__event-link {
  margin-top: 1rem;
}

.ci360-events-r3__event-link:hover,
.ci360-events-r3__event-link:focus-visible,
.ci360-events-r3__text-link:hover,
.ci360-events-r3__text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.ci360-events-r3__archive-note {
  width: fit-content;
  margin: 1rem 0 0;
  padding: 0.48rem 0.68rem;
  border: 1px solid rgba(10, 90, 59, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--events-green);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.ci360-events-r3__values {
  padding: clamp(3rem, 5vw, 4.4rem) 0;
  background: var(--events-soft);
  border-top: 1px solid rgba(10, 90, 59, 0.06);
  border-bottom: 1px solid rgba(10, 90, 59, 0.06);
}

.ci360-events-r3__value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.ci360-events-r3__value-card {
  min-width: 0;
  padding: 1.15rem 1rem;
  border: 1px solid var(--events-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.ci360-events-r3__value-card h3 {
  margin: 0;
  color: var(--events-green);
  font-size: 1rem;
  line-height: 1.25;
}

.ci360-events-r3__value-card p {
  margin: 0.48rem 0 0;
  color: var(--events-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.ci360-events-r3__cta {
  padding: clamp(3.2rem, 6vw, 5rem) 0;
  background: #ffffff;
}

.ci360-events-r3__cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border: 1px solid var(--events-line);
  border-radius: var(--events-radius);
  background:
    linear-gradient(135deg, rgba(140, 198, 63, 0.12), rgba(255, 255, 255, 0.84)),
    var(--events-soft);
  box-shadow: var(--events-shadow);
}

.ci360-events-r3__cta-card h2 {
  max-width: 760px;
  margin: 0;
  color: var(--events-green);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.ci360-events-r3__cta-card p:not(.ci360-events-r3__eyebrow) {
  max-width: 760px;
  margin: 0.75rem 0 0;
  color: var(--events-muted);
  line-height: 1.65;
}

.ci360-events-r3__cta-actions {
  display: flex;
  max-width: 480px;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 1050px) {
  .ci360-events-r3__hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
  }

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

  .ci360-events-r3__cta-card {
    grid-template-columns: 1fr;
  }

  .ci360-events-r3__cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .ci360-events-r3__hero-grid {
    grid-template-columns: 1fr;
  }

  .ci360-events-r3__hero-copy {
    max-width: 760px;
  }

  .ci360-events-r3__hero-media {
    min-height: 300px;
    max-height: 350px;
  }

  .ci360-events-r3__event-card {
    grid-template-columns: minmax(170px, 0.38fr) minmax(0, 0.62fr);
  }

  .ci360-events-r3__event-media,
  .ci360-events-r3__event-marker {
    min-height: 205px;
  }

  .ci360-events-r3__event-media img {
    min-height: 205px;
    max-height: 245px;
  }

  .ci360-events-r3__value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ci360-events-r3__hero {
    padding-top: 2.2rem;
  }

  .ci360-events-r3__hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .ci360-events-r3__hero-actions,
  .ci360-events-r3__cta-actions {
    align-items: stretch;
  }

  .ci360-events-r3__hero-actions .ci360-btn,
  .ci360-events-r3__cta-actions .ci360-btn {
    width: 100%;
    justify-content: center;
  }

  .ci360-events-r3__hero-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(190px, 1.15fr) minmax(135px, 0.85fr);
    min-height: 340px;
    max-height: none;
    gap: 0.65rem;
  }

  .ci360-events-r3__hero-photo--main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .ci360-events-r3__hero-photo figcaption {
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    max-width: calc(100% - 1rem);
    padding: 0.4rem 0.55rem;
    font-size: 0.64rem;
  }

  .ci360-events-r3__event-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ci360-events-r3__event-media {
    min-height: 0;
  }

  .ci360-events-r3__event-media img {
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-height: 260px;
  }

  .ci360-events-r3__event-marker {
    min-height: 145px;
  }

  .ci360-events-r3__event-copy {
    padding: 1.35rem 1.2rem 1.5rem;
  }

  .ci360-events-r3__event-meta {
    font-size: 0.7rem;
  }

  .ci360-events-r3__value-grid {
    grid-template-columns: 1fr;
  }

  .ci360-events-r3__cta-card {
    gap: 1.4rem;
    padding: 1.35rem 1.15rem;
  }

  .ci360-events-r3__text-link {
    margin-top: 0.2rem;
  }
}
/* =========================================================
   360 Climate Institutes — News R2
   Editorial newsroom landing page
   Scoped to .ci360-news-r2
   ========================================================= */

.ci360-news-r2 {
  --news-ink: #173628;
  --news-muted: #5a6e63;
  --news-green: #0b6b3a;
  --news-green-deep: #07502d;
  --news-lime: #8cc63f;
  --news-soft: #f5faf4;
  --news-soft-2: #eef7ed;
  --news-line: rgba(7, 80, 45, 0.14);
  --news-shadow: 0 18px 45px rgba(18, 70, 43, 0.09);
  --news-radius: 24px;
  color: var(--news-ink);
  overflow: hidden;
}

.ci360-news-r2 .ci360-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.ci360-news-r2__hero {
  padding: 72px 0 54px;
  background:
    radial-gradient(circle at 90% 10%, rgba(140, 198, 63, 0.16), transparent 31%),
    linear-gradient(180deg, #fbfef9 0%, #f4faf3 100%);
  border-bottom: 1px solid var(--news-line);
}

.ci360-news-r2__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.ci360-news-r2__hero-copy {
  min-width: 0;
}

.ci360-news-r2__eyebrow {
  margin: 0 0 12px;
  color: var(--news-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ci360-news-r2__hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--news-green-deep);
  font-size: clamp(2.05rem, 4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ci360-news-r2__lead {
  max-width: 730px;
  margin: 20px 0 0;
  color: var(--news-muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.ci360-news-r2__hero-actions,
.ci360-news-r2__featured-actions,
.ci360-news-r2__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ci360-news-r2 .ci360-btn {
  min-height: 44px;
}

.ci360-news-r2__text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--news-green);
  font-weight: 800;
  text-decoration: none;
}

.ci360-news-r2__text-link::after {
  content: "→";
  transition: transform 0.18s ease;
}

.ci360-news-r2__text-link:hover::after,
.ci360-news-r2__text-link:focus-visible::after {
  transform: translateX(3px);
}

.ci360-news-r2__newsroom-note {
  position: relative;
  padding: 26px;
  border: 1px solid var(--news-line);
  border-radius: var(--news-radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--news-shadow);
}

.ci360-news-r2__newsroom-note::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: var(--news-radius) 0 0 var(--news-radius);
  background: var(--news-lime);
}

.ci360-news-r2__newsroom-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--news-green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ci360-news-r2__newsroom-note strong {
  display: block;
  color: var(--news-green-deep);
  font-size: 1.08rem;
  line-height: 1.42;
}

.ci360-news-r2__newsroom-note p {
  margin: 10px 0 0;
  color: var(--news-muted);
  line-height: 1.65;
}

.ci360-news-r2__featured {
  padding: 68px 0;
  background: #fff;
}

.ci360-news-r2__featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.ci360-news-r2__featured-copy {
  min-width: 0;
}

.ci360-news-r2__date,
.ci360-news-r2__story-meta {
  margin: 0 0 10px;
  color: var(--news-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ci360-news-r2__featured h2,
.ci360-news-r2__latest h2,
.ci360-news-r2__cta h2 {
  color: var(--news-green-deep);
  letter-spacing: -0.025em;
}

.ci360-news-r2__featured h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.ci360-news-r2__featured-lead {
  margin: 18px 0 0;
  color: var(--news-ink);
  font-size: 1.08rem;
  line-height: 1.72;
}

.ci360-news-r2__featured-copy > p:not(.ci360-news-r2__date):not(.ci360-news-r2__featured-lead) {
  margin: 16px 0 0;
  color: var(--news-muted);
  line-height: 1.72;
}

.ci360-news-r2__feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.ci360-news-r2__feature-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--news-line);
  border-radius: 999px;
  background: var(--news-soft);
  color: var(--news-green-deep);
  font-size: 0.86rem;
  font-weight: 750;
}

.ci360-news-r2__featured-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--news-line);
  border-radius: var(--news-radius);
  background: var(--news-soft);
  box-shadow: var(--news-shadow);
  overflow: hidden;
}

.ci360-news-r2__featured-media img {
  display: block;
  width: 100%;
  max-width: 420px;
  max-height: 590px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 15px;
}

.ci360-news-r2__latest {
  padding: 68px 0 76px;
  background: var(--news-soft);
  border-block: 1px solid var(--news-line);
}

.ci360-news-r2__section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.ci360-news-r2__section-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  line-height: 1.15;
}

.ci360-news-r2__section-heading p {
  margin: 0;
  color: var(--news-muted);
  line-height: 1.7;
}

.ci360-news-r2__story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ci360-news-r2__story-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
  min-height: 270px;
  border: 1px solid var(--news-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 70, 43, 0.06);
  overflow: hidden;
}

.ci360-news-r2__story-card > img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  max-height: 310px;
  object-fit: cover;
  object-position: center;
  background: #edf5ec;
}

.ci360-news-r2__story-card > img[src$="/Skill-Up.jpg"],
.ci360-news-r2__story-card > img[src$="Skill-Up.jpg"] {
  padding: 12px;
  object-fit: contain;
  background: #edf5ec;
}

.ci360-news-r2__story-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
}

.ci360-news-r2__story-copy h3 {
  margin: 0;
  color: var(--news-green-deep);
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  line-height: 1.28;
}

.ci360-news-r2__story-copy > p:not(.ci360-news-r2__story-meta):not(.ci360-news-r2__brief-label) {
  margin: 13px 0 0;
  color: var(--news-muted);
  line-height: 1.66;
}

.ci360-news-r2__story-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--news-green);
  font-weight: 800;
  text-decoration: none;
}

.ci360-news-r2__story-link::after {
  content: "→";
}

.ci360-news-r2__brief-label {
  display: inline-flex;
  align-self: flex-start;
  margin: auto 0 0;
  padding-top: 18px;
  color: #6b7d72;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ci360-news-r2__story-card:focus-within {
  outline: 3px solid rgba(140, 198, 63, 0.34);
  outline-offset: 3px;
}

.ci360-news-r2__story-card:hover {
  border-color: rgba(7, 80, 45, 0.23);
  box-shadow: 0 18px 42px rgba(18, 70, 43, 0.09);
}

.ci360-news-r2__cta {
  padding: 62px 0 72px;
  background: #fff;
}

.ci360-news-r2__cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--news-line);
  border-radius: var(--news-radius);
  background:
    linear-gradient(135deg, rgba(140, 198, 63, 0.12), rgba(255, 255, 255, 0.96));
}

.ci360-news-r2__cta-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.16;
}

.ci360-news-r2__cta-card p {
  max-width: 720px;
  margin: 13px 0 0;
  color: var(--news-muted);
  line-height: 1.7;
}

.ci360-news-r2__cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 960px) {
  .ci360-news-r2__story-grid {
    grid-template-columns: 1fr;
  }

  .ci360-news-r2__story-card {
    grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 860px) {
  .ci360-news-r2__hero {
    padding-top: 58px;
  }

  .ci360-news-r2__hero-grid,
  .ci360-news-r2__featured-grid,
  .ci360-news-r2__section-heading,
  .ci360-news-r2__cta-card {
    grid-template-columns: 1fr;
  }

  .ci360-news-r2__newsroom-note {
    max-width: 620px;
  }

  .ci360-news-r2__featured-media {
    min-height: 0;
  }

  .ci360-news-r2__featured-media img {
    max-width: 400px;
    max-height: 560px;
  }

  .ci360-news-r2__cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .ci360-news-r2 .ci360-shell {
    width: min(100% - 28px, 1180px);
  }

  .ci360-news-r2__hero {
    padding: 46px 0 40px;
  }

  .ci360-news-r2__featured,
  .ci360-news-r2__latest,
  .ci360-news-r2__cta {
    padding-block: 50px;
  }

  .ci360-news-r2__hero-actions,
  .ci360-news-r2__featured-actions,
  .ci360-news-r2__cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ci360-news-r2__hero-actions .ci360-btn,
  .ci360-news-r2__featured-actions .ci360-btn,
  .ci360-news-r2__cta-actions .ci360-btn {
    width: 100%;
    justify-content: center;
  }

  .ci360-news-r2__featured-media {
    padding: 12px;
  }

  .ci360-news-r2__featured-media img {
    max-width: 100%;
    max-height: none;
  }

  .ci360-news-r2__story-card {
    grid-template-columns: 1fr;
  }

  .ci360-news-r2__story-card > img {
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-height: 260px;
  }

  .ci360-news-r2__story-card > img[src$="/Skill-Up.jpg"],
  .ci360-news-r2__story-card > img[src$="Skill-Up.jpg"] {
    aspect-ratio: 4 / 3;
  }

  .ci360-news-r2__story-copy {
    padding: 21px;
  }

  .ci360-news-r2__cta-card {
    gap: 22px;
  }
}

/* =========================================================
   NEWS R2 — RENDERED MEDIA WRAPPER CORRECTION
   Aligns CSS with the actual figure.story-media DOM.
   ========================================================= */

.ci360-news-r2__story-media {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 270px;
  max-height: 310px;
  margin: 0;
  overflow: hidden;
  background: #edf5ec;
}

.ci360-news-r2__story-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.ci360-news-r2__story-media--photo img {
  object-fit: cover;
  object-position: center;
}

.ci360-news-r2__story-media--poster {
  padding: 12px;
}

.ci360-news-r2__story-media--poster img {
  object-fit: contain;
  object-position: center;
  background: #edf5ec;
}

@media (max-width: 640px) {
  .ci360-news-r2__story-media {
    height: auto;
    min-height: 0;
    max-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .ci360-news-r2__story-media--poster {
    max-height: 420px;
    padding: 10px;
    aspect-ratio: 5 / 6;
  }
}
/* =========================================================
   LEADERSHIP & GOVERNANCE R1
   Scoped launch page styles
   ========================================================= */

.ci360-leadership-r1 {
  --lead-green: #0b5a3a;
  --lead-green-deep: #073f2b;
  --lead-text: #1c3228;
  --lead-muted: #5a6e64;
  --lead-line: rgba(7, 63, 43, 0.13);
  --lead-soft: #f4f8f4;
  --lead-soft-2: #eef6ef;
  --lead-white: #ffffff;
  --lead-shadow: 0 12px 30px rgba(20, 69, 45, 0.07);

  color: var(--lead-text);
  background: var(--lead-white);
}

.ci360-leadership-r1__hero {
  border-bottom: 1px solid var(--lead-line);
  background:
    linear-gradient(
      180deg,
      #f7faf7 0%,
      #ffffff 100%
    );
}

.ci360-leadership-r1__hero-inner {
  padding-top: 64px;
  padding-bottom: 54px;
}

.ci360-leadership-r1__eyebrow {
  margin: 0 0 10px;
  color: var(--lead-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ci360-leadership-r1__hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--lead-green-deep);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.ci360-leadership-r1__intro {
  max-width: 800px;
  margin: 20px 0 0;
  color: var(--lead-muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.ci360-leadership-r1__board {
  padding: 62px 0 72px;
}

.ci360-leadership-r1__section-heading {
  max-width: 820px;
  margin: 0 0 30px;
}

.ci360-leadership-r1__section-heading h2,
.ci360-leadership-r1__governance h2 {
  margin: 0;
  color: var(--lead-green-deep);
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.ci360-leadership-r1__section-heading > p:last-child {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--lead-muted);
  line-height: 1.7;
}

.ci360-leadership-r1__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ci360-leadership-r1__card {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--lead-line);
  border-radius: 18px;
  background: var(--lead-white);
  box-shadow: var(--lead-shadow);
}

.ci360-leadership-r1__portrait {
  width: 142px;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--lead-soft-2);
}

.ci360-leadership-r1__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ci360-leadership-r1__card-copy {
  min-width: 0;
  padding: 3px 0 2px;
}

.ci360-leadership-r1__card-copy h3 {
  margin: 0;
  color: var(--lead-green-deep);
  font-size: 1.16rem;
  line-height: 1.28;
}

.ci360-leadership-r1__role {
  margin: 8px 0 0;
  color: var(--lead-green);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.45;
}

.ci360-leadership-r1__bio {
  margin: 13px 0 0;
  color: var(--lead-muted);
  font-size: 0.93rem;
  line-height: 1.66;
}

.ci360-leadership-r1__governance {
  border-top: 1px solid var(--lead-line);
  border-bottom: 1px solid var(--lead-line);
  background: var(--lead-soft);
}

.ci360-leadership-r1__governance-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
  padding-top: 44px;
  padding-bottom: 48px;
}

.ci360-leadership-r1__governance-inner > p {
  margin: 2px 0 0;
  color: var(--lead-muted);
  line-height: 1.72;
}

@media (max-width: 960px) {
  .ci360-leadership-r1__grid {
    grid-template-columns: 1fr;
  }

  .ci360-leadership-r1__card {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .ci360-leadership-r1__portrait {
    width: 132px;
  }
}

@media (max-width: 720px) {
  .ci360-leadership-r1__hero-inner {
    padding-top: 48px;
    padding-bottom: 42px;
  }

  .ci360-leadership-r1__board {
    padding: 48px 0 54px;
  }

  .ci360-leadership-r1__section-heading {
    margin-bottom: 24px;
  }

  .ci360-leadership-r1__governance-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 38px;
    padding-bottom: 40px;
  }
}

@media (max-width: 560px) {
  .ci360-leadership-r1__hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
  }

  .ci360-leadership-r1__intro {
    font-size: 1rem;
  }

  .ci360-leadership-r1__card {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  .ci360-leadership-r1__portrait {
    width: 118px;
  }

  .ci360-leadership-r1__bio {
    margin-top: 11px;
  }
}

/* LEADERSHIP & GOVERNANCE R1 END */

/* =========================================================
   LEADERSHIP & GOVERNANCE R1 — CHAIRPERSON HIERARCHY R1
   Featured Chairperson followed by the wider Board.
   ========================================================= */

@media (min-width: 961px) {
    .ci360-leadership-r1__card:first-child {
        grid-column: 1 / -1;
        grid-template-columns: 184px minmax(0, 1fr);
        width: min(100%, 980px);
        justify-self: center;
        padding: 1.55rem;
        background: #f7faf7;
        border-color: rgba(6, 63, 42, 0.18);
        box-shadow: 0 16px 36px rgba(6, 63, 42, 0.08);
    }

    .ci360-leadership-r1__card:first-child .ci360-leadership-r1__portrait {
        width: 184px;
    }

    .ci360-leadership-r1__card:first-child .ci360-leadership-r1__card-copy {
        align-self: center;
        padding-block: 0.2rem;
    }

    .ci360-leadership-r1__card:first-child h3 {
        font-size: clamp(1.35rem, 1.9vw, 1.65rem);
    }

    .ci360-leadership-r1__card:first-child .ci360-leadership-r1__role {
        max-width: 760px;
    }

    .ci360-leadership-r1__card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 0.6rem);
        max-width: 620px;
        justify-self: center;
    }
}

@media (max-width: 960px) {
    .ci360-leadership-r1__card:first-child,
    .ci360-leadership-r1__card:last-child {
        width: 100%;
        max-width: none;
    }
}

/* LEADERSHIP & GOVERNANCE R1 — CHAIRPERSON HIERARCHY R1 END */
/* Leadership R1 refinement — enhanced Chairperson feature card */
@media (min-width: 961px) {
  .ci360-leadership-r1__card:first-child {
    background: linear-gradient(135deg, #f8fbf7 0%, #edf5ef 54%, #f9fbf8 100%);
    border-color: rgba(9, 96, 60, 0.16);
    box-shadow: 0 20px 42px rgba(7, 48, 32, 0.08);
    padding: 22px;
  }

  .ci360-leadership-r1__card:first-child .ci360-leadership-r1__portrait {
    width: 208px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(7, 48, 32, 0.12);
  }

  .ci360-leadership-r1__card:first-child .ci360-leadership-r1__card-copy {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(9, 96, 60, 0.10);
    border-radius: 22px;
    padding: 28px 30px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  .ci360-leadership-r1__card:first-child h3 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .ci360-leadership-r1__card:first-child .ci360-leadership-r1__role {
    font-size: 1.02rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}

@media (max-width: 960px) {
  .ci360-leadership-r1__card:first-child {
    background: linear-gradient(180deg, #f8fbf8 0%, #eef5f0 100%);
    padding: 18px;
  }

  .ci360-leadership-r1__card:first-child .ci360-leadership-r1__card-copy {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(9, 96, 60, 0.10);
    border-radius: 18px;
    padding: 20px 18px;
  }
}
/* Leadership R1 refinement — separate Hannah portrait and content panels */
@media (min-width: 961px) {
  .ci360-leadership-r1__card:first-child {
    column-gap: 20px;
    align-items: stretch;
  }

  .ci360-leadership-r1__card:first-child .ci360-leadership-r1__card-copy {
    margin-left: 4px;
  }
}

@media (max-width: 960px) {
  .ci360-leadership-r1__card:first-child {
    row-gap: 14px;
  }
}

/* =========================================================
   CI360 CONTACT ENQUIRY HUB R1
   ========================================================= */

.ci360-contact-r2__pathways {
    padding: clamp(54px, 7vw, 78px) 0;
    background: #fff;
}

.ci360-contact-r2__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ci360-contact-r2__card {
    position: relative;
    min-height: 270px;
    padding: 27px;
    border: 1px solid var(--ci360-page-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(23, 60, 49, .045);
}

.ci360-contact-r2__number {
    display: block;
    margin-bottom: 27px;
    color: rgba(23, 107, 77, .38);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.ci360-contact-r2__card h3 {
    margin: 0 0 10px;
    color: var(--ci360-page-ink);
    font-size: 1.17rem;
    line-height: 1.3;
}

.ci360-contact-r2__card p:not(.ci360-contact-page__label) {
    margin: 0 0 20px;
    color: var(--ci360-page-copy);
    line-height: 1.65;
}

.ci360-contact-r2__enquiry {
    padding: clamp(56px, 7vw, 84px) 0;
    border-top: 1px solid var(--ci360-page-line);
    background: var(--ci360-page-soft);
}

.ci360-contact-r2__enquiry-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .72fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: start;
}

.ci360-contact-r2__form-panel {
    min-width: 0;
}

.ci360-contact-r2__form-panel .ci360-contact-page__heading {
    margin-bottom: 24px;
}

.ci360-contact-r2__visit {
    padding: clamp(28px, 4vw, 38px);
    border: 1px solid var(--ci360-page-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(23, 60, 49, .045);
}

.ci360-contact-r2__visit h2 {
    margin: 0 0 24px;
    color: var(--ci360-page-ink);
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    line-height: 1.18;
    letter-spacing: -.025em;
}

.ci360-contact-r2__address {
    margin: 0;
    color: var(--ci360-page-copy);
    font-style: normal;
    line-height: 1.75;
}

.ci360-contact-r2__address strong {
    color: var(--ci360-page-ink);
}

.ci360-contact-r2__tagline {
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid var(--ci360-page-line);
    border-bottom: 1px solid var(--ci360-page-line);
    color: var(--ci360-page-copy);
    font-size: .98rem;
    font-weight: 650;
    line-height: 1.7;
}

.ci360-contact-r2__contact-list {
    display: grid;
    gap: 17px;
}

.ci360-contact-r2__contact-list > div {
    display: grid;
    gap: 4px;
}

.ci360-contact-r2__contact-list span {
    color: var(--ci360-page-green);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.ci360-contact-r2__contact-list a {
    color: var(--ci360-page-ink);
    font-weight: 750;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.ci360-contact-r2__contact-list a:hover,
.ci360-contact-r2__contact-list a:focus-visible {
    color: var(--ci360-page-green);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ci360-contact-r2__form-panel .ci360-engagement-form {
    margin-top: 0;
}

@media (max-width: 900px) {

    .ci360-contact-r2__cards {
        grid-template-columns: 1fr;
    }

    .ci360-contact-r2__card {
        min-height: 0;
    }

    .ci360-contact-r2__enquiry-grid {
        grid-template-columns: 1fr;
    }

    .ci360-contact-r2__visit {
        max-width: none;
    }
}

@media (max-width: 560px) {

    .ci360-contact-r2__pathways,
    .ci360-contact-r2__enquiry {
        padding: 47px 0;
    }

    .ci360-contact-r2__card,
    .ci360-contact-r2__visit {
        padding: 22px;
        border-radius: 17px;
    }

    .ci360-contact-r2__number {
        margin-bottom: 20px;
    }
}

/* CI360 CONTACT ENQUIRY HUB R1 END */
