/********** RSA CSS **********/
:root {
    --bs-tertiary: #00A89D;
    --site-font-sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --site-font-display: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    --site-bg: #f3f7f5;
    --site-surface: #ffffff;
    --site-surface-muted: #f7faf8;
    --site-border: #d8e5e1;
    --site-text: #20322e;
    --site-muted: #5a7069;
    --site-shadow-sm: 0 14px 32px rgba(8, 25, 22, .08);
    --site-shadow-lg: 0 24px 56px rgba(8, 25, 22, .14);
    --site-radius-sm: 12px;
    --site-radius-md: 18px;
    --site-radius-lg: 24px;
    --site-gutter: clamp(1rem, 3vw, 2.75rem);
    --site-section-space: clamp(3.25rem, 6vw, 5.5rem);
}

html {
    scroll-behavior: smooth;
}

body.site-shell {
    font-family: var(--site-font-sans);
    color: var(--site-text);
    background:
        radial-gradient(circle at top left, rgba(0, 168, 157, .08), transparent 24%),
        linear-gradient(180deg, #f8fbfa 0%, var(--site-bg) 100%);
}

:focus-visible {
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100000;
    padding: .5rem 1rem;
    border-radius: 0 0 .25rem 0;
    background: var(--bs-primary);
    color: #fff;
    font-weight: 600;
}

.spinner-border--lg {
    width: 3rem;
    height: 3rem;
}

.footer-newsletter {
    max-width: 320px;
}

body.site-shell h1,
body.site-shell h2,
body.site-shell h3,
body.site-shell h4,
body.site-shell h5,
body.site-shell h6,
body.site-shell .display-1,
body.site-shell .display-5,
body.site-shell .display-6 {
    font-family: var(--site-font-display);
    letter-spacing: -.02em;
    color: var(--site-text);
}

body.site-shell p,
body.site-shell li,
body.site-shell label,
body.site-shell input,
body.site-shell select,
body.site-shell textarea,
body.site-shell button {
    font-family: var(--site-font-sans);
}

body.site-shell p,
body.site-shell li {
    color: #425954;
    line-height: 1.7;
}

body.site-shell .container,
body.site-shell .container-lg,
body.site-shell .container-xl,
body.site-shell .container-xxl {
    max-width: 1160px;
}

body.site-shell .container-fluid.py-5,
body.site-shell .container-xxl.py-5,
body.site-shell .container.py-5 {
    padding-top: var(--site-section-space) !important;
    padding-bottom: var(--site-section-space) !important;
}

body.site-shell .bg-light {
    background-color: var(--site-surface-muted) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    min-height: 48px;
    border-radius: 999px;
    padding: .8rem 1.35rem;
    font-weight: 600;
    transition: .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.form-check-input:focus-visible {
    outline: 3px solid rgba(0, 168, 157, .18);
    outline-offset: 2px;
}

.form-status {
    display: none;
    margin-bottom: 1rem;
    padding: .9rem 1rem;
    border-radius: var(--site-radius-md);
    font-size: .95rem;
    line-height: 1.5;
}

.form-status.is-success {
    display: block;
    background: rgba(25, 135, 84, .12);
    color: #0f5132;
    border: 1px solid rgba(25, 135, 84, .2);
}

.form-status.is-error {
    display: block;
    background: rgba(220, 53, 69, .12);
    color: #842029;
    border: 1px solid rgba(220, 53, 69, .2);
}

.newsletter-honeypot {
    position: absolute;
    left: -5000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

body.site-shell .btn-primary {
    box-shadow: 0 14px 28px rgba(13, 110, 253, .18);
}

body.site-shell .btn-secondary {
    box-shadow: 0 14px 28px rgba(11, 77, 67, .16);
}

body.site-shell .form-control,
body.site-shell .form-select {
    min-height: 52px;
    border: 1px solid var(--site-border);
    border-radius: 16px;
    padding: .85rem 1rem;
    box-shadow: none;
}

body.site-shell textarea.form-control {
    min-height: 140px;
}

body.site-shell .form-control:focus,
body.site-shell .form-select:focus {
    border-color: var(--bs-tertiary);
    box-shadow: 0 0 0 .2rem rgba(0, 168, 157, .14);
}

/*** Top Bar ***/
.top-bar {
    min-height: 0;
    padding: 1.05rem var(--site-gutter) 0.75rem;
}

.top-bar h6 {
    letter-spacing: 1px;
}

.top-bar .row {
    min-height: 0;
}

body.site-shell .top-bar a {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
}

body.site-shell .top-bar img {
    width: auto;
    max-height: clamp(70px, 7vw, 92px);
}

/*** Nav Bar ***/
.nav-bar {
    padding: 0 var(--site-gutter) 1.15rem;
    transition: .2s ease;
}

.nav-bar.is-scrolled {
    padding: 0.35rem var(--site-gutter) 0.55rem;
}

body.site-shell .navbar {
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--site-shadow-sm);
    border-radius: 22px;
    padding-top: .35rem;
    padding-bottom: .35rem;
}

body.site-shell .navbar-collapse {
    align-items: center;
}

.navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: .95rem 1rem;
    color: var(--bs-dark);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    border-radius: 999px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
    background: rgba(255, 255, 255, .14);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .top-bar {
        padding: 0.8rem 1rem 0.5rem;
    }

    .nav-bar {
        padding: 0 1rem 0.85rem;
    }

    .nav-bar.is-scrolled {
        padding: 0.3rem 1rem 0.65rem;
    }

    .navbar .navbar-nav .nav-link {
        padding: .8rem 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header Carousel ***/
.header-carousel {
    position: relative;
    background: url() center center no-repeat;
    background-size: cover;
}

.home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 22%, rgba(0, 168, 157, .18), transparent 34%),
        linear-gradient(180deg, #f8fbfa 0%, #eef7f4 100%);
}

.home-hero.py-5 {
    padding-top: clamp(0.5rem, 1.5vw, 1.25rem) !important;
    padding-bottom: clamp(0.5rem, 1.5vw, 1.25rem) !important;
}

.home-hero .container.py-5 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.home-hero .row {
    min-height: 0;
}

body.site-shell .carousel-text {
    max-width: 34rem;
}

.home-hero .carousel-text {
    max-width: none;
    position: relative;
    z-index: 2;
}

.home-hero .display-1,
.home-hero__title {
    max-width: none;
    margin-bottom: clamp(1.5rem, 3.5vw, 2.5rem) !important;
    font-size: clamp(2rem, 4.5vw, 2.45rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-transform: none;
}

.home-hero__wheel-wrap {
    display: grid;
    min-height: 0;
    place-items: center center;
}

.home-hero__wheel {
    width: 140%;
    max-width: none;
    margin-left: -20%;
    margin-right: -10%;
    aspect-ratio: 1;
    object-fit: contain;
    animation: homeHeroWheelSpin 42s linear infinite;
    filter: drop-shadow(0 24px 42px rgba(8, 25, 22, .14));
    transform-origin: center;
}

@keyframes homeHeroWheelSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__wheel {
        animation: none;
    }
}

@media (max-width: 991.98px) {
    .home-hero .row {
        min-height: 0;
        text-align: center;
    }

    .home-hero .carousel-text {
        margin: 0 auto;
    }

    .home-hero .display-1 {
        max-width: 20ch;
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero .d-flex {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .home-hero.py-5 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.75rem !important;
    }

    .home-hero .display-1 {
        max-width: 18ch;
        font-size: clamp(2.25rem, 12vw, 3.15rem);
    }

    .home-hero__wheel-wrap {
        min-height: 19.5rem;
    }

    .home-hero__wheel {
        width: min(92vw, 24rem);
    }
}

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

.page-header {
    background: url() center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
}

body.site-shell .section-title {
    color: var(--bs-primary) !important;
}

body.site-shell .rounded,
body.site-shell .rounded-3,
body.site-shell .rounded-4 {
    border-radius: var(--site-radius-md) !important;
}

body.site-shell .shadow-sm,
body.site-shell .partner-card,
body.site-shell .magazine-summary-card,
body.site-shell .partner-form-card,
body.site-shell .partner-info-card,
body.site-shell .magazine-form-card,
body.site-shell .solar-stat {
    border: 1px solid var(--site-border);
    box-shadow: var(--site-shadow-sm);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/*** About ***/
.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}

.about-page .about-hero {
    max-width: 900px;
    margin: 0 auto;
}

.about-page .about-hero__copy {
    max-width: 760px;
    margin: 0 auto;
}

.about-page .about-story__closing {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-secondary);
}

.about-page .about-card,
.about-page .about-value,
.about-page .about-problem,
.about-page .about-solution {
    border: 1px solid #dce6f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
}

.about-page .about-card {
    height: 100%;
    padding: 2rem;
}

.about-page .about-card__eyebrow {
    margin-bottom: .85rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about-page .about-card h3,
.about-page .about-problem h3,
.about-page .about-solution h3,
.about-page .about-value h4 {
    color: var(--bs-secondary);
}

.about-page .about-list {
    margin: 0;
    padding-left: 1.15rem;
}

.about-page .about-list li {
    margin-bottom: .75rem;
    color: #5d6780;
}

.about-page .about-list li:last-child {
    margin-bottom: 0;
}

.about-page .about-principle__quote {
    margin: 1rem 0;
    font-weight: 600;
    color: var(--bs-secondary);
}

.about-page .about-value {
    height: 100%;
    padding: 1.25rem;
}

.about-page .about-value h4 {
    font-size: 1rem;
    margin-bottom: .5rem;
}

.about-page .about-value p {
    margin-bottom: 0;
    color: #5d6780;
}

.about-page .about-problem {
    height: 100%;
    padding: 1.75rem;
}

.about-page .about-problem__number {
    margin-bottom: .85rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about-page .about-solution {
    padding: 2rem;
    border-left: 4px solid var(--bs-primary);
    background: linear-gradient(135deg, #f7fbfa 0%, #eef7f4 100%);
}

.about-page .about-solution__item {
    height: 100%;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(13, 31, 92, .08);
    border-radius: 12px;
    background: rgba(255, 255, 255, .8);
    color: #5d6780;
}

.about-page .about-solution__item strong {
    display: block;
    margin-bottom: .35rem;
    color: var(--bs-secondary);
}

/*** Debate ***/
.debate-page .debate-hero {
    max-width: 920px;
    margin: 0 auto;
}

.debate-page .debate-hero__question {
    max-width: 860px;
    margin: 0 auto;
    color: var(--bs-secondary);
}

.debate-page .debate-hero__copy {
    max-width: 760px;
    margin: 0 auto;
}

.debate-page .debate-motion,
.debate-page .debate-panel,
.debate-page .debate-card,
.debate-page .debate-feature,
.debate-page .debate-why-item,
.debate-page .debate-utility {
    border: 1px solid #dce6f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
}

.debate-page .debate-motion {
    padding: 2rem;
    border-left: 4px solid var(--bs-primary);
    background: linear-gradient(135deg, #f7fbfa 0%, #eef7f4 100%);
}

.debate-page .debate-motion h2 {
    margin-bottom: 0;
    color: var(--bs-secondary);
    font-size: clamp(1.55rem, 2vw, 2.15rem);
    line-height: 1.45;
}

.debate-page .debate-panel,
.debate-page .debate-card,
.debate-page .debate-feature {
    padding: 2rem;
}

.debate-page .debate-feature--primary {
    border-left: 4px solid var(--bs-primary);
    background: linear-gradient(135deg, #f7fbfa 0%, #ffffff 100%);
}

.debate-page .debate-why-item {
    height: 100%;
    padding: 1.4rem;
}

.debate-page .debate-utility {
    padding: 1.5rem 1.75rem;
}

.debate-page .debate-eyebrow {
    margin-bottom: .85rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.debate-page .debate-card h3,
.debate-page .debate-feature h3,
.debate-page .debate-feature h2,
.debate-page .debate-panel h2,
.debate-page .debate-why-item h3,
.debate-page .debate-utility h3 {
    color: var(--bs-secondary);
}

.debate-page .debate-why-item h3 {
    font-size: 1rem;
    margin-bottom: .55rem;
}

.debate-page .debate-card p:last-child,
.debate-page .debate-feature p:last-child,
.debate-page .debate-why-item p:last-child,
.debate-page .debate-panel p:last-child,
.debate-page .debate-utility p:last-child {
    margin-bottom: 0;
}

.debate-page .debate-why-item p,
.debate-page .debate-card p,
.debate-page .debate-panel p,
.debate-page .debate-feature p,
.debate-page .debate-utility p {
    color: #5d6780;
}

.debate-page .debate-utility .btn-link {
    font-weight: 600;
}

.debate-recap-page .recap-date {
    font-weight: 600;
    color: #5d6780;
}

.debate-recap-page .debate-back-link {
    font-weight: 600;
}

.debate-recap-page .recap-speakers {
    color: #5d6780;
}

.debate-recap-page .recap-verdict {
    font-weight: 600;
    color: var(--bs-secondary);
}

.debate-recap-page .recap-quote {
    margin: 1.25rem 0 0;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    border-left: 3px solid var(--bs-primary);
    border-radius: 12px;
    background: rgba(247, 251, 250, .9);
}

.debate-recap-page .recap-quote p {
    margin-bottom: .75rem;
    color: var(--bs-secondary);
    font-weight: 500;
}

.debate-recap-page .recap-quote cite {
    display: block;
    font-style: normal;
    color: #5d6780;
}

.debate-recap-page .recap-quote--standalone {
    margin-top: 0;
}

@media (max-width: 991.98px) {

    .debate-page .debate-motion,
    .debate-page .debate-panel,
    .debate-page .debate-card,
    .debate-page .debate-feature {
        padding: 1.5rem;
    }
}

/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url() center center no-repeat;
    background-size: cover;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

.service-item a {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    transition: .5s;
}

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    border-bottom: 2px solid var(--bs-primary);
}

/*** Banner ***/
.banner .banner-inner {
    position: relative;
    background: url() center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url() center center no-repeat;
    background-size: cover;
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    transition: .5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    color: var(--bs-secondary);
    background: var(--bs-white);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}

/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
    background: linear-gradient(rgba(5, 19, 17, .97), rgba(5, 19, 17, .97)), url() center center no-repeat;
    background-size: cover;
}

.footer h4 {
    color: var(--bs-white) !important;
}

.footer p,
.footer a,
.footer i {
    color: var(--bs-white);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: .65rem;
    padding: 0;
    text-align: left;
    color: var(--bs-tertiary);
    font-weight: normal;
    text-transform: none;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

body.site-shell .footer .form-control {
    min-height: 50px;
    border-radius: 999px;
}

body.site-shell .back-to-top {
    border-radius: 999px;
    box-shadow: var(--site-shadow-sm);
}

/* partners on home page */
.partners-scroll-wrapper {
    overflow-x: auto;
    padding: 10px 0;
    text-align: center;
}

.partners-scroll {
    display: flex;
    gap: 40px;
    align-items: center;
    min-width: max-content;
    justify-content: center;
}

.partner-logo img {
    max-height: 45px;
    /* UN-style small logos */
    width: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Partner's cards for partner page */
.partner-card {
    border: 1px solid #eee;
    padding: 25px;
    height: 100%;
    background: #fff;
    text-align: left;
}

.partner-card img {
    max-height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.partner-card h5 {
    margin-bottom: 10px;
}

.partner-card a {
    font-weight: 600;
    text-decoration: none;
}

/*** Solar Cohort Page ***/
.solar-page .solar-hero {
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 217, 92, .22), transparent 30%),
        linear-gradient(135deg, rgba(247, 249, 248, 0.86), rgba(255, 255, 255, 0.92));
    color: #fff;
    padding: 4.5rem 0;
}

.solar-page .solar-kicker {
    color: #0f6f5f;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
    font-weight: 600;
}

.solar-page .solar-hero h1,
.solar-page .solar-hero .lead,
.solar-page .solar-hero p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, .24);
}

.solar-page .solar-pill {
    display: inline-block;
    padding: .38rem .8rem;
    border-radius: 999px;
    border: 1px solid #dde5e4;
    background: #ffffff;
    color: #0f3f47;
    font-size: .83rem;
    font-weight: 600;
}

.solar-page .solar-hero-media {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow: 0 18px 30px rgba(0, 0, 0, .22);
}

.solar-page .solar-note {
    border-left: 4px solid #f2c34f;
    background: #fffdf6;
    border-radius: 10px;
}

.solar-page .solar-section-media,
.solar-page .solar-module-media,
.solar-page .solar-outcome-media {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e1ebe7;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.solar-page .solar-section-media img,
.solar-page .solar-module-media img,
.solar-page .solar-outcome-media img {
    height: 240px;
    object-fit: cover;
}

.solar-page .solar-facts {
    background: #f8fbfa;
}

.solar-page .solar-stat {
    height: 100%;
    border: 1px solid #d7e6e2;
    border-radius: 10px;
    background: #fff;
    padding: 1rem 1.1rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .05);
}

.solar-page .solar-stat strong {
    display: block;
    color: var(--bs-secondary);
    margin-bottom: .35rem;
}

.solar-page .solar-stat span {
    color: #29413a;
    font-size: .94rem;
}

.solar-page .solar-flip-card {
    height: 300px;
    perspective: 1000px;
}

.solar-page .solar-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .8s;
    transform-style: preserve-3d;
}

.solar-page .solar-flip-card:hover .solar-flip-inner,
.solar-page .solar-flip-card:focus-within .solar-flip-inner {
    transform: rotateY(180deg);
}

.solar-page .solar-flip-front,
.solar-page .solar-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    border: 1px solid #d7e6e2;
    padding: 1.15rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .07);
}

.solar-page .solar-flip-front {
    background: #ffffff;
}

.solar-page .solar-flip-back {
    background: #fffdf8;
    color: #213533;
    transform: rotateY(180deg);
    border-left: 4px solid #f2c34f;
}

.solar-page .solar-flip-back h6 {
    color: var(--bs-secondary);
}

.solar-page .solar-flip-back ul {
    margin-bottom: 0;
    padding-left: 1rem;
}

.solar-page .solar-flip-back li {
    margin-bottom: .38rem;
}

.solar-page .solar-mod-week {
    margin-bottom: .5rem;
    color: #0f6f5f;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 700;
}

.solar-page .solar-apply-block {
    background: #f7faf8;
}

.solar-page .solar-cta {
    position: relative;
}

.solar-page .solar-cta::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd95c, transparent);
}

@media (max-width: 991.98px) {
    .solar-page .solar-hero {
        padding: 3.2rem 0;
    }

    .solar-page .solar-hero h1 {
        font-size: 2rem;
    }

    .solar-page .solar-hero .lead {
        font-size: 1.05rem;
    }

    .solar-page .solar-section-media img,
    .solar-page .solar-module-media img,
    .solar-page .solar-outcome-media img {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .solar-page .solar-flip-card {
        height: auto;
        perspective: none;
    }

    .solar-page .solar-flip-inner {
        transform: none !important;
        display: grid;
        gap: .9rem;
    }

    .solar-page .solar-flip-front,
    .solar-page .solar-flip-back {
        position: relative;
        transform: none;
        height: auto;
        min-height: 0;
        padding: 1rem;
    }

    .solar-page .solar-hero {
        padding: 2.8rem 0;
    }

    .solar-page .solar-pill {
        font-size: .78rem;
    }

    .solar-page .solar-section-media img,
    .solar-page .solar-module-media img,
    .solar-page .solar-outcome-media img {
        height: 190px;
    }
}

/*** Youth Power for a Sustainable Future Page ***/
.ypfsf-page {
    background: #ffffff;
}

.ypfsf-page h1,
.ypfsf-page h2,
.ypfsf-page h3,
.ypfsf-page h4,
.ypfsf-page h5,
.ypfsf-page h6 {
    letter-spacing: 0;
}

.ypfsf-page .ypfsf-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(110deg, rgba(8, 25, 22, .9) 0%, rgba(8, 25, 22, .76) 48%, rgba(45, 134, 89, .56) 100%),
        url("../images/youth engagement.jpg") center / cover;
}

.ypfsf-page .ypfsf-hero h1,
.ypfsf-page .ypfsf-hero p {
    color: #ffffff;
}

.ypfsf-page .ypfsf-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    max-width: 100%;
    padding: .48rem .9rem;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    font-size: .86rem;
    font-weight: 700;
}

.ypfsf-page .ypfsf-hero-copy {
    max-width: 760px;
}

.ypfsf-page .ypfsf-section-eyebrow {
    color: var(--bs-primary);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ypfsf-page .ypfsf-panel,
.ypfsf-page .ypfsf-stat,
.ypfsf-page .ypfsf-metric-card,
.ypfsf-page .ypfsf-phase-card,
.ypfsf-page .ypfsf-video-card,
.ypfsf-page .ypfsf-interview-card,
.ypfsf-page .ypfsf-capstone-card,
.ypfsf-page .ypfsf-note {
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-sm);
    background: #ffffff;
    box-shadow: var(--site-shadow-sm);
}

.ypfsf-page .ypfsf-panel,
.ypfsf-page .ypfsf-metric-card,
.ypfsf-page .ypfsf-phase-card,
.ypfsf-page .ypfsf-video-card,
.ypfsf-page .ypfsf-interview-card,
.ypfsf-page .ypfsf-capstone-card,
.ypfsf-page .ypfsf-note {
    height: 100%;
    padding: clamp(1.25rem, 2vw, 1.75rem);
}

.ypfsf-page .ypfsf-panel,
.ypfsf-page .ypfsf-phase-card,
.ypfsf-page .ypfsf-interview-card,
.ypfsf-page .ypfsf-capstone-card,
.ypfsf-page .ypfsf-note {
    border-left: 4px solid var(--bs-primary);
}

.ypfsf-page .ypfsf-stat {
    min-height: 132px;
    padding: 1.25rem;
}

.ypfsf-page .ypfsf-stat strong {
    display: block;
    color: var(--bs-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: .6rem;
}

.ypfsf-page .ypfsf-stat span,
.ypfsf-page .ypfsf-phase-date {
    color: var(--site-muted);
    font-weight: 600;
}

.ypfsf-page .ypfsf-metric-card h3,
.ypfsf-page .ypfsf-phase-card h3,
.ypfsf-page .ypfsf-video-card h3,
.ypfsf-page .ypfsf-interview-card h3,
.ypfsf-page .ypfsf-capstone-card h3 {
    color: var(--bs-secondary);
}

.ypfsf-page .ypfsf-phase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--bs-primary);
    color: #ffffff;
    font-weight: 800;
}

.ypfsf-page .ypfsf-video-card {
    overflow: hidden;
    padding: 0;
}

.ypfsf-page .ypfsf-video-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
    color: #ffffff;
    font-size: 2.6rem;
}

.ypfsf-page .ypfsf-video-card-body {
    padding: 1.35rem;
}

.ypfsf-page .ypfsf-quote-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: var(--site-radius-sm);
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
}

.ypfsf-page .ypfsf-quote-card blockquote,
.ypfsf-page .ypfsf-quote-card figcaption {
    color: #ffffff;
}

.ypfsf-page .ypfsf-quote-card blockquote {
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.65;
}

.ypfsf-page .ypfsf-partner-band {
    background: linear-gradient(135deg, var(--bs-secondary), #0f7668);
}

.ypfsf-page .ypfsf-partner-band h2,
.ypfsf-page .ypfsf-partner-band h3,
.ypfsf-page .ypfsf-partner-band h4,
.ypfsf-page .ypfsf-partner-band h5,
.ypfsf-page .ypfsf-partner-band p,
.ypfsf-page .ypfsf-partner-band li {
    color: #ffffff;
}

.ypfsf-page .ypfsf-partner-card {
    height: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--site-radius-sm);
    background: rgba(255, 255, 255, .08);
}

.ypfsf-page .ypfsf-check-list,
.ypfsf-page .ypfsf-clean-list {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.ypfsf-page .ypfsf-check-list li,
.ypfsf-page .ypfsf-clean-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: .7rem;
}

.ypfsf-page .ypfsf-check-list li::before,
.ypfsf-page .ypfsf-clean-list li::before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--bs-primary);
}

.ypfsf-page .ypfsf-check-list li::before {
    top: .28rem;
    width: .52rem;
    height: .88rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.ypfsf-page .ypfsf-clean-list li::before {
    top: .74rem;
    width: .42rem;
    height: .42rem;
    border-radius: 999px;
    background: currentColor;
}

.ypfsf-page .ypfsf-partner-band .ypfsf-check-list li::before {
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .ypfsf-page .ypfsf-hero {
        min-height: 460px;
        padding: 3rem 0;
    }

    .ypfsf-page .ypfsf-kicker {
        align-items: flex-start;
        border-radius: var(--site-radius-sm);
    }
}

/*** Partner Form Page ***/
.partner-page .partner-form-hero {
    background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.partner-page .partner-form-card {
    background: #ffffff;
    border: 1px solid #dbe8e4;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .06);
}

.partner-page .partner-fieldset {
    border: 1px solid #dbe8e4;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.partner-page .partner-fieldset legend {
    width: auto;
    padding: 0 .45rem;
    margin-bottom: .6rem;
    font-size: .95rem;
    font-weight: 700;
    color: var(--bs-secondary);
}

.partner-page .partner-check {
    display: inline-flex;
    align-items: flex-start;
    gap: .45rem;
    font-size: .95rem;
    line-height: 1.4;
}

.partner-page .partner-check input {
    margin-top: .2rem;
}

.partner-page .partner-info-card {
    border: 1px solid #dbe8e4;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
}

.partner-page .partner-form-card .form-control:focus,
.partner-page .partner-form-card .form-select:focus {
    border-color: var(--bs-tertiary);
    box-shadow: 0 0 0 .2rem rgba(0, 168, 157, .2);
}

@media (max-width: 767.98px) {
    .partner-page .partner-fieldset {
        padding: .85rem;
    }

    .partner-page .partner-fieldset legend {
        font-size: .9rem;
    }
}

/*** Team Page ***/
.rsa-team-page {
    --team-shadow: 0 18px 40px rgba(8, 25, 22, .04);
    --team-card-shadow: 0 10px 22px rgba(8, 25, 22, .03);
    --team-outline: rgba(13, 110, 253, .12);
    --team-rule: rgba(32, 50, 46, .08);
    --team-portrait-bg: linear-gradient(180deg, #fbfdfc 0%, #eef5f2 100%);
    --team-card-circle-min: 24.5rem;
    --team-card-standard-min: 25.5rem;
    --team-card-ambassador-min: 24.75rem;
    --team-card-executive-min: 30rem;
}

.rsa-team-page h1,
.rsa-team-page h2,
.rsa-team-page h3 {
    font-family: var(--site-font-display);
    letter-spacing: -.015em;
}

.rsa-team-page .team-hero {
    max-width: 60rem;
    margin: 0 auto 3.15rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--team-rule);
    text-align: left;
}

.rsa-team-page .team-hero__eyebrow,
.rsa-team-page .section-kicker,
.rsa-team-page .person-kicker {
    margin: 0 0 .65rem;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--site-muted);
}

.rsa-team-page .team-hero h1 {
    max-width: 16ch;
    margin: 0 auto 1rem;
    color: var(--site-text);
    font-size: clamp(2.35rem, 4vw, 3rem);
    line-height: 1.14;
    text-align: center;
}

.rsa-team-page .hero-text,
.rsa-team-page .section-intro {
    max-width: 64ch;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.78;
    color: var(--site-muted);
}

.rsa-team-page .section-intro {
    margin-bottom: 2.15rem;
}

.rsa-team-page .team-directory {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .8rem;
    margin: 0 0 2.75rem;
}

.rsa-team-page .team-directory__item {
    display: flex;
    align-items: center;
    min-height: 4rem;
    padding: .9rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(32, 50, 46, .08);
    border-radius: var(--site-radius-md);
    box-shadow: var(--team-card-shadow);
    color: var(--site-text);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.rsa-team-page .team-directory__item:hover {
    border-color: rgba(13, 110, 253, .18);
    color: var(--bs-primary);
    transform: translateY(-1px);
}

.rsa-team-page .section {
    margin-bottom: 1.75rem;
    padding: clamp(1.45rem, 2.35vw, 2.45rem);
    background: var(--site-surface);
    border: 1px solid rgba(32, 50, 46, .08);
    border-radius: var(--site-radius-lg);
    box-shadow: var(--team-shadow);
}

.rsa-team-page .section:last-child {
    margin-bottom: 0;
}

.rsa-team-page .section--executive {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

.rsa-team-page .section--advisory {
    background: linear-gradient(180deg, #ffffff 0%, #fafcfc 100%);
}

.rsa-team-page .section-heading {
    margin-bottom: 1.6rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--team-rule);
}

.rsa-team-page .section-heading h2 {
    margin-bottom: .45rem;
    color: var(--bs-primary);
    font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.rsa-team-page .section-heading p {
    margin: 0;
    max-width: 52rem;
    line-height: 1.72;
    color: var(--site-muted);
}

.rsa-team-page .team-grid,
.rsa-team-page .executive-grid,
.rsa-team-page .ambassador-roles,
.rsa-team-page .advisory-layout {
    display: grid;
    gap: 1.15rem;
    grid-auto-rows: 1fr;
    align-items: stretch;
}

.rsa-team-page .executive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rsa-team-page .team-grid--circle {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rsa-team-page .team-grid--standard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rsa-team-page .team-grid--ambassadors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
}

.rsa-team-page .team-subsection+.team-subsection {
    margin-top: 2rem;
    padding-top: 1.7rem;
    border-top: 1px solid var(--team-rule);
}

.rsa-team-page .team-subsection__header {
    margin-bottom: 1.15rem;
}

.rsa-team-page .team-subheading {
    margin: 0 0 .4rem;
    color: var(--bs-primary);
    font-size: 1.1rem;
}

.rsa-team-page .team-subheading-neutral {
    color: var(--site-text);
}

.rsa-team-page .team-subsection__header p,
.rsa-team-page .advisory-copy {
    margin: 0;
    line-height: 1.7;
    color: var(--site-muted);
}

.rsa-team-page .person,
.rsa-team-page .role-card,
.rsa-team-page .advisory-panel {
    height: 100%;
    padding: 1.2rem;
    background: var(--site-surface-muted);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    box-shadow: var(--team-card-shadow);
}

.rsa-team-page .person {
    display: flex;
    min-height: 100%;
}

.rsa-team-page .person--executive {
    min-height: var(--team-card-executive-min);
    padding: clamp(1.25rem, 2vw, 1.5rem);
    background: linear-gradient(180deg, #fbfdfc 0%, #f5f9f7 100%);
    border-color: #d1deda;
}

.rsa-team-page .person:not(.person--executive) {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfc 100%);
}

.rsa-team-page .team-grid--circle>.person {
    min-height: var(--team-card-circle-min);
}

.rsa-team-page .team-grid--standard>.person {
    min-height: var(--team-card-standard-min);
}

.rsa-team-page .team-grid--ambassadors>.person {
    min-height: var(--team-card-ambassador-min);
}

.rsa-team-page .person--executive .person-kicker {
    color: var(--bs-primary);
}

.rsa-team-page .person--compact .person-name {
    font-size: 1.08rem;
}

.rsa-team-page .person--compact .person-role {
    font-size: .94rem;
}

.rsa-team-page .person-shell {
    display: grid;
    grid-template-columns: minmax(104px, 124px) 1fr;
    gap: 1rem;
    align-items: start;
    width: 100%;
    height: 100%;
}

.rsa-team-page .person:not(.person--executive) .person-shell {
    grid-template-columns: 1fr;
    gap: 1.05rem;
}

.rsa-team-page .person--executive .person-shell {
    grid-template-columns: minmax(156px, 192px) 1fr;
    gap: 1.3rem;
}

.rsa-team-page .person-media {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    min-width: 0;
}

.rsa-team-page .person:not(.person--executive) .person-media {
    align-items: flex-start;
}

.rsa-team-page .person-portrait {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 5;
    width: 100%;
    border: 1px solid #d8e4e0;
    border-radius: 16px;
    background: var(--team-portrait-bg);
}

.rsa-team-page .person:not(.person--executive) .person-portrait {
    width: min(100%, 9rem);
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(216, 228, 224, .9);
}

.rsa-team-page .person-portrait--executive {
    min-height: 0;
    aspect-ratio: 4 / 5;
}

.rsa-team-page .person-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.rsa-team-page .person-portrait--placeholder {
    border-style: solid;
    background: linear-gradient(180deg, #fbfcfc 0%, #f3f7f5 100%);
    color: var(--site-muted);
}

.rsa-team-page .person-portrait__initials {
    font-family: var(--site-font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.7rem);
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .62;
}

.rsa-team-page .person-sdgs {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    min-height: 0;
}

.rsa-team-page .person:not(.person--executive) .person-sdgs {
    justify-content: flex-start;
}

.rsa-team-page .person-sdg-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.85rem;
    min-height: 1.55rem;
    padding: 0 .42rem;
    border: 1px solid #d7e3df;
    border-radius: 999px;
    background: rgba(248, 251, 250, .94);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: none;
    color: var(--site-text);
}

.rsa-team-page .person-sdgs--placeholder-only {
    display: none;
}

.rsa-team-page .person-sdgs:not(.person-sdgs--placeholder-only) .person-sdg-chip--placeholder {
    display: none;
}

.rsa-team-page .person-sdg-chip--placeholder {
    display: none;
}

.rsa-team-page .person-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.rsa-team-page .person:not(.person--executive) .person-content {
    align-items: flex-start;
    text-align: left;
}

.rsa-team-page .person-name {
    margin: 0 0 .35rem;
    color: var(--site-text);
    font-size: 1.18rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: calc(1.2em * 2);
}

.rsa-team-page .person--executive .person-name {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    min-height: 0;
}

.rsa-team-page .person-role {
    margin: 0 0 .25rem;
    font-size: .98rem;
    font-weight: 700;
    color: var(--bs-primary);
    line-height: 1.45;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: calc(1.45em * 2);
}

.rsa-team-page .person-location {
    margin: 0 0 .75rem;
    font-size: .9rem;
    color: var(--site-muted);
    overflow-wrap: anywhere;
    min-height: 1.45em;
}

.rsa-team-page .person:not(.person--executive) .person-location {
    margin-bottom: .7rem;
}

.rsa-team-page .person-summary,
.rsa-team-page .person-details__body p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.72;
    color: var(--site-text);
    overflow-wrap: anywhere;
}

.rsa-team-page .person-summary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-width: none;
    min-height: calc(1.72em * 3);
}

.rsa-team-page .person--executive .person-summary {
    -webkit-line-clamp: 4;
    max-width: none;
    min-height: calc(1.72em * 4);
}

.rsa-team-page .person-details {
    margin-top: .9rem;
    width: 100%;
}

.rsa-team-page .person-details summary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    max-width: max-content;
    min-height: 0;
    padding: 0;
    cursor: pointer;
    color: var(--bs-primary);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .02em;
    list-style: none;
    border-radius: 999px;
}

.rsa-team-page .person:not(.person--executive) .person-details summary {
    align-self: flex-start;
}

.rsa-team-page .person-details summary::-webkit-details-marker {
    display: none;
}

.rsa-team-page .person-details summary:hover {
    color: #0a58ca;
}

.rsa-team-page .person-details summary::after {
    content: "+";
    font-size: 1rem;
    line-height: 1;
}

.rsa-team-page .person-details[open] summary::after {
    content: "\2212";
}

.rsa-team-page .person-details__body {
    margin-top: .8rem;
    display: grid;
    gap: .75rem;
    padding-top: .85rem;
    border-top: 1px solid var(--team-rule);
    text-align: left;
}

.rsa-team-page .person-details__body a {
    color: var(--bs-primary);
    text-decoration: underline;
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

.rsa-team-page .person-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    margin-top: auto;
    padding-top: .9rem;
    border-top: 1px solid var(--team-rule);
    min-height: 0;
}

.rsa-team-page .person:not(.person--executive) .person-actions {
    justify-content: flex-start;
}

.rsa-team-page .person-actions--empty {
    display: none;
}

.rsa-team-page .person-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    min-height: 2.5rem;
    padding: 0;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--bs-primary);
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.rsa-team-page .person-action i {
    font-size: .92rem;
}

.rsa-team-page .person-action:hover {
    background: #f7fbf9;
    border-color: #c8d9d5;
    color: var(--bs-primary);
    transform: translateY(-1px);
}

.rsa-team-page .person-action:focus-visible,
.rsa-team-page .person-details summary:focus-visible {
    outline: 2px solid rgba(13, 110, 253, .35);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, .12);
}

.rsa-team-page .person-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.rsa-team-page .person-action--placeholder {
    display: none;
}

.rsa-team-page .advisory-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .95fr);
    gap: 1.2rem;
    align-items: start;
}

.rsa-team-page .advisory-panel {
    background: linear-gradient(180deg, #fbfcfc 0%, #f7faf9 100%);
}

.rsa-team-page .advisory-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: .8rem;
}

.rsa-team-page .advisory-list li {
    padding: .85rem .95rem;
    background: #ffffff;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-sm);
    font-size: .92rem;
    line-height: 1.58;
}

.rsa-team-page .advisory-list-compact {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.rsa-team-page .advisory-list--members li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.rsa-team-page .advisory-list--members span {
    padding: .2rem .55rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, .08);
    color: var(--bs-primary);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.rsa-team-page .advisory-member-feature {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--team-rule);
    display: grid;
    grid-template-columns: minmax(0, 5.75rem) minmax(0, 1fr);
    gap: .95rem;
    align-items: start;
}

.rsa-team-page .advisory-member-feature__portrait {
    width: 100%;
    margin: 0;
    border-radius: 14px;
}

.rsa-team-page .advisory-member-feature__content {
    min-width: 0;
}

.rsa-team-page .advisory-member-feature__eyebrow {
    margin: 0 0 .35rem;
    color: var(--site-muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rsa-team-page .advisory-member-feature h4 {
    margin: 0;
    color: var(--site-text);
    font-size: 1rem;
}

.rsa-team-page .advisory-member-feature__role {
    margin: .28rem 0 0;
    color: var(--site-muted);
    line-height: 1.55;
}

.rsa-team-page .advisory-member-feature__credit {
    margin: .5rem 0 0;
    color: var(--site-muted);
    font-size: .76rem;
    line-height: 1.45;
}

.rsa-team-page .ambassador-roles {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 1.65rem 0 1rem;
    gap: .8rem;
}

.rsa-team-page .role-card {
    background: linear-gradient(180deg, #fbfdfc 0%, #f6faf8 100%);
    padding: 1rem 1rem 1.05rem;
    box-shadow: none;
}

.rsa-team-page .role-card h4 {
    margin: 0 0 .7rem;
    color: var(--bs-primary);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.rsa-team-page .role-card p {
    margin: 0;
    color: var(--site-muted);
    font-size: .9rem;
    line-height: 1.65;
}

.rsa-team-page .team-note {
    margin: 0 0 1.75rem;
    text-align: left;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--site-muted);
}

@media (max-width: 1199.98px) {
    .rsa-team-page .team-directory {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rsa-team-page .team-grid--standard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rsa-team-page .team-grid--ambassadors {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rsa-team-page .ambassador-roles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .rsa-team-page .team-directory {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rsa-team-page .executive-grid {
        grid-template-columns: 1fr;
    }

    .rsa-team-page .team-grid--circle {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rsa-team-page .team-grid--standard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rsa-team-page .team-grid--ambassadors {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rsa-team-page .ambassador-roles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rsa-team-page .advisory-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .rsa-team-page .team-hero {
        margin-bottom: 2.6rem;
        padding-bottom: 1.35rem;
    }

    .rsa-team-page .team-hero h1 {
        max-width: none;
    }

    .rsa-team-page .section {
        padding: 1.25rem;
    }

    .rsa-team-page .hero-text,
    .rsa-team-page .section-intro {
        font-size: 1rem;
    }

    .rsa-team-page .team-directory {
        grid-template-columns: 1fr;
        margin-bottom: 2.35rem;
    }

    .rsa-team-page .executive-grid,
    .rsa-team-page .team-grid--circle,
    .rsa-team-page .team-grid--standard,
    .rsa-team-page .team-grid--ambassadors,
    .rsa-team-page .ambassador-roles {
        grid-template-columns: 1fr;
    }

    .rsa-team-page .person--executive .person-shell {
        grid-template-columns: 1fr;
    }

    .rsa-team-page .person--executive,
    .rsa-team-page .team-grid--circle>.person,
    .rsa-team-page .team-grid--standard>.person,
    .rsa-team-page .team-grid--ambassadors>.person {
        min-height: auto;
    }

    .rsa-team-page .person:not(.person--executive) .person-portrait {
        width: min(100%, 8.2rem);
    }

    .rsa-team-page .person--executive .person-media {
        max-width: 180px;
    }

    .rsa-team-page .person-actions {
        gap: .45rem;
    }

    .rsa-team-page .person-name,
    .rsa-team-page .person-role {
        min-height: 0;
    }

    .rsa-team-page .advisory-member-feature {
        grid-template-columns: minmax(0, 5.25rem) minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .rsa-team-page .ambassador-roles {
        grid-template-columns: 1fr;
    }

    .rsa-team-page .person-action {
        width: 2.4rem;
        min-width: 2.4rem;
        height: 2.4rem;
        min-height: 2.4rem;
    }

    .rsa-team-page .advisory-member-feature {
        grid-template-columns: 1fr;
    }

    .rsa-team-page .advisory-member-feature__portrait {
        width: min(100%, 8.25rem);
    }
}

/*** Magazine ***/
.magazine-page .magazine-hero,
.magazine-submit-page .magazine-submit-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(13, 110, 253, .1), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(0, 168, 157, .18), transparent 34%),
        linear-gradient(135deg, #f8fbfa 0%, #eef7f4 100%);
}

.magazine-page .magazine-hero__content,
.magazine-submit-page .magazine-submit-hero__content {
    max-width: 720px;
}

.magazine-page .magazine-hero__media,
.magazine-submit-page .magazine-submit-hero__media {
    position: relative;
}

.magazine-page .magazine-hero__media img,
.magazine-submit-page .magazine-submit-hero__media img {
    width: 100%;
    max-height: 30rem;
    border-radius: var(--site-radius-md);
    box-shadow: var(--site-shadow-lg);
    object-fit: cover;
}

.magazine-page .magazine-hero__media img {
    object-fit: contain;
    background: rgba(255, 255, 255, .55);
}

.magazine-page .magazine-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    background: var(--site-border);
}

.magazine-page .magazine-meta__item {
    padding: 1.1rem .8rem;
    background: #fff;
    text-align: center;
}

.magazine-page .magazine-meta__value {
    display: block;
    color: var(--bs-primary);
    font-size: clamp(1.65rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1;
}

.magazine-page .magazine-meta__label {
    display: block;
    margin-top: .45rem;
    color: var(--site-muted);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.magazine-page .magazine-section {
    padding: var(--site-section-space) 0;
}

.magazine-page .magazine-section+.magazine-section {
    border-top: 1px solid rgba(216, 229, 225, .75);
}

.magazine-page .magazine-section__intro {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.magazine-page .magazine-section__intro p {
    margin-bottom: 0;
}

.magazine-page .magazine-card,
.magazine-submit-page .magazine-form-card,
.magazine-page .magazine-quote,
.magazine-page .magazine-cta {
    height: 100%;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    background: #fff;
    box-shadow: var(--site-shadow-sm);
}

.magazine-page .magazine-card h3,
.magazine-page .magazine-card h4 {
    margin-bottom: .75rem;
}

.magazine-page .magazine-card p:last-child,
.magazine-page .magazine-quote p:last-child {
    margin-bottom: 0;
}

.magazine-page .magazine-kicker,
.magazine-page .magazine-card__eyebrow {
    color: var(--bs-primary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.magazine-page .magazine-card__eyebrow {
    display: block;
    margin-bottom: .8rem;
}

.magazine-page .magazine-accent,
.magazine-submit-page .magazine-accent {
    color: var(--bs-tertiary);
}

.magazine-page .magazine-quote {
    border-left: 6px solid var(--bs-tertiary);
}

.magazine-page .magazine-quote blockquote {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.55;
}

.magazine-page .magazine-quote cite {
    display: block;
    margin-top: 1rem;
    color: var(--bs-primary);
    font-style: normal;
    font-weight: 700;
}

.magazine-page .magazine-format__count {
    color: var(--bs-primary);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.magazine-page .magazine-word-count {
    margin-top: auto;
    color: var(--bs-primary);
    font-weight: 800;
}

.magazine-page .magazine-sdg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: .85rem;
}

.magazine-page .magazine-sdg {
    min-height: 132px;
    padding: 1rem;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-sm);
    background: #fff;
}

.magazine-page .magazine-sdg strong {
    display: block;
    color: var(--site-text);
}

.magazine-page .magazine-sdg small {
    color: var(--site-muted);
}

.magazine-page .magazine-sdg.is-priority {
    border-color: rgba(0, 168, 157, .45);
    background: rgba(0, 168, 157, .06);
}

.magazine-page .magazine-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.magazine-page .magazine-list li {
    position: relative;
    padding: .55rem 0 .55rem 1.35rem;
    border-top: 1px solid rgba(216, 229, 225, .8);
}

.magazine-page .magazine-list li::before {
    position: absolute;
    left: 0;
    color: var(--bs-tertiary);
    content: ">";
    font-weight: 800;
}

.magazine-page .magazine-timeline {
    position: relative;
    display: grid;
    gap: 1.25rem;
}

.magazine-page .magazine-timeline__item {
    position: relative;
    padding: 1.35rem 1.5rem 1.35rem 2rem;
    border: 1px solid var(--site-border);
    border-left: 5px solid var(--bs-tertiary);
    border-radius: var(--site-radius-md);
    background: #fff;
}

.magazine-page .magazine-timeline__date {
    margin-bottom: .3rem;
    color: var(--bs-primary);
    font-weight: 800;
}

.magazine-page .magazine-contact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.magazine-page .magazine-contact__item {
    padding: 1.25rem;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-sm);
    background: #fff;
    text-align: center;
}

.magazine-submit-page .magazine-form-card {
    max-width: 920px;
    margin: 0 auto;
}

.magazine-submit-page .form-label {
    color: var(--site-text);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {

    .magazine-page .magazine-meta,
    .magazine-page .magazine-contact {
        grid-template-columns: 1fr;
    }

    .magazine-page .magazine-section {
        padding: 3rem 0;
    }
}