/* ============================================
   Content Detail Pages (shared detail page styles)
   Generic classes for reuse across all detail pages
   Keep listing styles out of here.
   ============================================ */

/* Content Hero - Generic hero section for detail pages */
.content-hero,
.report-hero {
    padding: 0;
    background: var(--colors-background-bg-secondary-soft, #F9FAFB);
    overflow: hidden;
}

.content-hero__inner,
.report-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.content-hero__inner .content-hero__cta {
    margin-bottom: 0px;
}
@media (max-width: 991px) {
    .content-hero__inner .content-hero__cta {
        margin-bottom: 24px !important;
    }
    .content-hero__inner,
    .report-hero__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }
    
    .content-hero__media,
    .report-hero__media {
        order: -1;
    }
    
    .content-hero__content,
    .report-hero__content {
        order: 1;
    }
}

.content-hero__content,
.report-hero__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 0;
}
@media (max-width: 767px) {
    .content-hero__content,
    .report-hero__content {
       padding-bottom: 24px;
    }
}
.content-hero__content > *:last-child,
.report-hero__content > *:last-child {
    margin-bottom: 0;
}

.content-hero__title,
.report-hero__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.4px;
    color: #101828;
    margin: 0;
}

@media (max-width: 767px) {
    .content-hero__title,
    .report-hero__title {
        font-size: 32px;
    }
}

.content-hero__description,
.report-hero__description {
    color: #4A5565;
    font-family: var(--font-body);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.18px;
    margin: 0;
}
@media screen and (max-width: 767px) {
    .content-hero__description,
    .report-hero__description {
        font-size: 16px;
        line-height: 24px;
    }
}
.content-hero__download,
.report-hero__download {
    margin-top: 8px;
    margin-bottom: 0;
    align-self: flex-start;
}

.content-hero__download-size,
.report-hero__download-size {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}

/* Image: no padding in hero column */
.content-hero__media,
.report-hero__media {
    padding: 0;
}

@media (max-width: 991px) {
    .content-hero__media,
    .report-hero__media {
        width: 100vw;
        margin-left: -24px;
        margin-right: -24px;
        overflow: hidden;
    }
    
    .content-hero__image,
    .report-hero__image {
        width: 100%;
    }
    
    .content-hero__image > img,
    .report-hero__image > img {
        width: 100%;
    }
}

.content-hero__image,
.report-hero__image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

/* Background overlay: dark tint over hero image (e.g. from Figma overlay layer) */
/*.content-hero__image::after,*/
/*.report-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(16, 24, 40, 0.45) 0%, rgba(16, 24, 40, 0.25) 100%);
    pointer-events: none;
}*/

/* Optional icon overlay: centered on top of hero image (use interchangeably per page) */
.content-hero__icon,
.report-hero__icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.content-hero__icon img,
.content-hero__icon svg,
.report-hero__icon img,
.report-hero__icon svg {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .content-hero__image,
    .report-hero__image {
        height: 300px;
    }
}

.content-hero__image > img,
.report-hero__image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-hero__image-overlay,
.report-hero__image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    text-align: right;
    background: linear-gradient(0deg, rgba(181, 143, 0, 0.62) 0%, rgba(181, 143, 0, 0.62) 100%);
}

.content-hero__image-text,
.report-hero__image-text {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
}

.content-hero__image-text::after,
.report-hero__image-text::after {
    content: "";
    display: block;
    width: 140px;
    height: 2px;
    background: rgba(255, 243, 214, 0.95);
    margin: 12px 0 0 auto;
}

@media (max-width: 767px) {
    .content-hero__image,
    .report-hero__image {
        height: 220px;
    }

    .content-hero__image-text,
    .report-hero__image-text {
        font-size: 28px;
    }
}

/* Hero variant: text only (submissions, annual reports) */
.content-hero__inner--text-only,
.report-hero__inner--text-only {
    grid-template-columns: 1fr;
    max-width: 1040px;
    padding: 32px 0 48px 0;
}

/* 404 page hero: extra top spacing so title/description aren't too close to header */
.content-hero--page-not-found .content-hero__inner {
    padding-top: 200px;
}

/* User login page hero: same extra top spacing */
.content-hero--user-login .content-hero__inner {
    padding-top: 200px;
}

.content-hero__date,
.report-hero__date {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--colors-text-text-body, #4A5565);
    margin: 0;
}
.content-hero__inner .content-hero__date {
    color: var(--color-text-text-body-subtle);
}
/* Social Share (inline version) - Generic */
.content-share,
.report-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid #E5E7EB;
    margin-top: 32px;
}

.content-share__label,
.report-share__label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4A5565;
}

.content-share__icons,
.report-share__icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-share__link,
.report-share__link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A5565;
    transition: color 0.2s;
}

.content-share__link:hover,
.report-share__link:hover {
    color: #0276CF;
}

/* Sidebar share variant - all on one line, left aligned - Generic */
.content-sidebar__section.content-sidebar__share,
.report-sidebar__section.report-sidebar__share {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: var(--spacing-6, 24px) var(--spacing-5, 20px) !important;
    border-top: 1px solid #E5E7EB;
    border-bottom: none;
}

.content-sidebar__section.content-sidebar__share:last-child,
.report-sidebar__section.report-sidebar__share:last-child {
    padding-bottom: var(--spacing-6, 24px) !important;
}

.content-sidebar__share .content-share__label,
.report-sidebar__share .report-share__label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4A5565;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-share__icon-label,
.report-share__icon-label {
    width: 16px;
    height: 16px;
}

.content-sidebar__share .content-share__icons,
.report-sidebar__share .report-share__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Sidebar share - circular white icons with border */
.content-sidebar__share .content-share__link,
.report-sidebar__share .report-share__link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    border: 1px solid #E5E7EB;
    border-radius: 9999px;
    padding: 0;
    transition: all 0.2s;
}

.content-sidebar__share .content-share__link:hover,
.report-sidebar__share .report-share__link:hover {
    border-color: #0276CF;
}

.content-sidebar__share .content-share__icon,
.report-sidebar__share .report-share__icon {
    width: 20px;
    height: 20px;
    display: block;
}

/* Form submit button - full width in sidebar - Generic */
.content-sidebar__accordion-content .form-submit,
.report-sidebar__accordion-content .form-submit {
    width: 100%;
    background: #101828;
    border-color: #101828;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-sidebar__accordion-content .form-submit:hover,
.report-sidebar__accordion-content .form-submit:hover {
    background: #0276CF;
    border-color: #0276CF;
}

/* Related item variant: text only (no image, no content wrapper) */
.related-item--text-only {
    display: flex;
    flex-direction: column;
    padding: 0 24px 24px 24px;
}

.related-item--text-only .related-item__date {
    margin-bottom: 8px;
}

.related-item--text-only .related-item__title {
    margin: 0 0 12px 0;
}

.related-item--text-only .related-item__text {
    flex: 1;
    margin: 0 0 16px 0;
}

.related-item--text-only .related-item__link {
    margin-top: auto;
}

/* Main layout - Generic */
.content-detail-page,
.report-detail-page {
    padding: 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Add padding to main content column so vertical line extends full length */
.content-detail-page .col-lg-8,
.report-detail-page .col-lg-8 {
    padding-bottom: 0px;
}
@media (min-width: 992px) {
    .content-detail-page .col-lg-8,
    .report-detail-page .col-lg-8 {
        padding-bottom: 80px;
    }
}
.content-detail-page .row,
.report-detail-page .row {
    --bs-gutter-x: 48px;
}

@media (max-width: 991px) {
    .content-detail-page .row,
    .report-detail-page .row {
        --bs-gutter-x: 0px;
    }
}

@media (min-width: 992px) {
    .content-detail-page > .container > .row,
    .report-detail-page > .container > .row {
        align-items: stretch;
    }
    
    .content-detail__sidebar,
    .report-detail__sidebar {
        display: flex;
        flex-direction: column;
    }
    
    .content-detail__sidebar .content-sidebar,
    .report-detail__sidebar .report-sidebar {
        flex: 1;
    }
}

/* Section typography - Generic content sections */
.content-section:first-child,
.report-section:first-child {
    margin-bottom: 48px;
    padding-top: 56px;
}
.content-section,
.report-section {
margin-bottom: 32px;
}
.content-section:last-child,
.report-section:last-child {
    margin-bottom: 0;
}

.content-section__title,
.report-section__title,
.content-section h2 {
    color: var(--colors-text-text-heading, #101828);
    font-family: var(--font-heading);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.4px;
    margin: 0 0 24px 0;
}
@media screen and (max-width: 767px) {
    .content-section__title,
    .report-section__title {
        font-size: 24px;
    }
}

/* H3 styles within content-section */
.content-section h3 {
    color: var(--colors-text-text-heading, #101828);
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 16px 0;
}

/* H4 styles within content-section */
.content-section h4 {
    color: var(--colors-text-text-heading, #101828);
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 16px 0;
}
.content-section__content,
.report-section__content {
    font-family: var(--font-body);
}

.content-section__content p,
.report-section__content p {
    margin: 0 0 16px 0;
    color: var(--colors-text-text-body, #4A5565);
    font-family: var(--font-body);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

@media screen and (max-width: 767px) {
    .content-section__content p,
    .report-section__content p {
        font-size: 14px;
        line-height: 20px;
    }
}
/* Lead paragraph - only the first paragraph in the first content section gets lead styling */
.content-detail-page .content-section:first-of-type .content-section__content > p:first-of-type,
.content-detail-page .report-section:first-of-type .report-section__content > p:first-of-type {
    color: var(--colors-text-text-black, #101828);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.18px;
}
@media screen and (max-width: 767px) {
    .content-detail-page .content-section:first-of-type .content-section__content > p:first-of-type,
    .content-detail-page .report-section:first-of-type .report-section__content > p:first-of-type {
        font-size: 16px;
        line-height: 24px;
    }
}
.content-section__content p:last-child,
.report-section__content p:last-child {
    margin-bottom: 0;
}

.content-section__content a,
.report-section__content a {
    color: var(--color-blue);
    text-decoration: underline;
}

.content-section__content a:hover,
.report-section__content a:hover {
    color: #000;
    
}

/* ============================================
   Site Index
   ============================================ */

.site-index {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.site-index__section {
    border-bottom: 1px solid var(--colors-border-border-base-medium, #E5E7EB);
    padding-bottom: 32px;
}

.site-index__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.site-index__category {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: #101828;
    margin: 0 0 24px 0;
}

.site-index__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .site-index__list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
}

.site-index__link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-blue, #0276CF);
    text-decoration: none;
    display: inline-block;
    padding: 8px 0;
    transition: color var(--transition), text-decoration var(--transition);
}

.site-index__link:hover {
    color: #0266B3;
    text-decoration: underline;
}

/* Featured image - Generic */
.content-image,
.report-image {
    margin: 40px 0;
}

.content-image img,
.report-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.content-image__caption,
.report-image__caption {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-gray-600);
    margin-top: 12px;
}

/* Tabs - Generic */
.content-tabs,
.report-tabs {
    margin-top: 24px;
}

.content-tabs__list,
.report-tabs__list {
    display: flex;
    align-items: stretch;
}

@media (max-width: 767px) {
    .content-tabs__list,
    .report-tabs__list {
        flex-direction: column;
    }
    
    /* Hide the panels container on mobile - content will be inserted after each tab */
    .content-tabs__panels,
    .report-tabs__panels {
        display: none;
    }
    
    .content-tabs__tab,
    .report-tabs__tab {
        width: 100%;
        flex: none;
        border-right: none;
        border-radius: 0;
    }
    
    /* First tab - rounded top corners on mobile */
    .content-tabs__tab:first-child,
    .report-tabs__tab:first-child {
        border-radius: 8px 8px 0 0;
    }
    
    /* No rounded corners on last tab */
    .content-tabs__tab:last-child,
    .report-tabs__tab:last-child {
        border-radius: 0 !important;
        border-right: 1px solid #FFF !important;
    }
    
    /* Active tab on mobile */
    .content-tabs__tab--active,
    .report-tabs__tab--active {
        border-radius: 0;
        border: none;
    }
    
    .content-tabs__tab--active:first-child,
    .report-tabs__tab--active:first-child {
        border-radius: 8px 8px 0 0;
    }
    
    /* Mobile accordion panel - inserted after active tab */
    .content-tabs__mobile-panel,
    .report-tabs__mobile-panel {
        display: block;
        padding: 24px 16px;
        background: var(--colors-background-bg-secondary, #F9FAFB);
        border: 1px solid var(--colors-border-border-base-strong, #E5E7EB);
        border-top: none;
    }
    
    .content-tabs__mobile-panel p,
    .report-tabs__mobile-panel p {
        margin: 0;
        color: var(--colors-text-text-body, #4A5565);
        font-family: Satoshi, sans-serif;
        font-size: 16px;
        line-height: 24px;
    }
    
    .content-tabs__mobile-panel ol,
    .report-tabs__mobile-panel ol {
        margin: 0;
        padding: 0;
        padding-left: 24px;
        list-style: decimal;
    }
    
    .content-tabs__mobile-panel li,
    .report-tabs__mobile-panel li {
        color: var(--colors-text-text-body, #4A5565);
        font-family: Satoshi, sans-serif;
        font-size: 16px;
        line-height: 24px;
    }
    
    /* When mobile panel is after the last tab, give it rounded bottom corners */
    .content-tabs__tab:last-child + .content-tabs__mobile-panel,
    .report-tabs__tab:last-child + .report-tabs__mobile-panel {
        border-radius: 0 0 8px 8px;
    }
}

.content-tabs__tab,
.report-tabs__tab {
    display: flex;
    padding: var(--spacing-4, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-15, 6px);
    flex: 1 0 0;
    border: none;
    background: var(--darker-blue, #1C398E);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    border-right: var(--border-border-width-border, 1px) solid var(--colors-border-border-base-strong, #E5E7EB);
    transition: background var(--transition), color var(--transition);
    box-shadow: 0 1px 0.5px 0.05px rgba(29, 41, 61, 0.02);
}

/* First tab - rounded top corners */
.content-tabs__tab:first-child,
.report-tabs__tab:first-child {
    border-radius: var(--border-border-radius-rounded, 8px) var(--border-border-radius-rounded, 8px) 0 0;
}

/* Last tab - rounded top-right corner */
.content-tabs__tab:last-child,
.report-tabs__tab:last-child {
    border-radius: 0 var(--border-border-radius-rounded, 8px) 0 0;
    border-right: none;
}

/* Mobile tab border radius handled in main mobile media query above */

.content-tabs__tab:hover,
.report-tabs__tab:hover {
    background: var(--darker-blue, #1C398E);
    color: var(--color-white);
}

/* Active tab - light background with dark text */
.content-tabs__tab--active,
.content-tabs__tab--active:hover,
.report-tabs__tab--active,
.report-tabs__tab--active:hover {
    display: flex;
    padding: var(--spacing-45, 18px) var(--spacing-4, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-15, 6px);
    flex: 1 0 0;
    margin-top: -4px;
    padding-top: calc(var(--spacing-45, 18px) + 4px);
    border-radius: var(--border-border-radius-rounded, 8px) var(--border-border-radius-rounded, 8px) 0 0;
    border: 1px solid var(--colors-border-border-base-strong, #E5E7EB);
    background: linear-gradient(0deg, var(--colors-background-bg-secondary, #F9FAFB) 0%, var(--colors-background-bg-secondary, #F9FAFB) 100%), var(--darker-blue, #1C398E);
    color: var(--darker-blue, #1C398E);
    box-shadow: none;
    border-right: 1px solid var(--colors-border-border-base-strong, #E5E7EB);
}

/* Active tab when it's the last tab - adjust border-radius */
.content-tabs__tab--active:last-child,
.report-tabs__tab--active:last-child {
    border-radius: var(--border-border-radius-rounded, 8px) var(--border-border-radius-rounded, 8px) 0 0;
    border-right: 1px solid var(--colors-border-border-base-strong, #E5E7EB);
}

/* Chevron icon in tabs */
.content-tabs__chevron,
.report-tabs__chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    display: none; /* Hidden on desktop by default */
}

@media (max-width: 767px) {
    .content-tabs__chevron,
    .report-tabs__chevron {
        display: block;
    }
}

/* Active tab - chevron points up (rotated 180deg) */
.content-tabs__tab--active .content-tabs__chevron,
.report-tabs__tab--active .report-tabs__chevron {
    transform: rotate(180deg);
}

/* Inactive tab - chevron points down (default, no rotation) */
.content-tabs__tab:not(.content-tabs__tab--active) .content-tabs__chevron,
.report-tabs__tab:not(.report-tabs__tab--active) .report-tabs__chevron {
    transform: rotate(0deg);
}

.content-tabs__panel,
.report-tabs__panel {
    display: none;
    padding: var(--spacing-8, 32px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-35, 14px);
    align-self: stretch;
    border: 1px solid var(--colors-border-border-base-strong, #E5E7EB);
    border-top: none;
    background: var(--colors-background-bg-secondary, #F9FAFB);
    border-radius: 0 0 var(--border-border-radius-rounded, 8px) var(--border-border-radius-rounded, 8px);
    margin-top: -1px; /* Connect with active tab border */
}

.content-tabs__panel--active,
.report-tabs__panel--active {
    display: flex;
}

.content-tabs__list-content,
.report-tabs__list-content {
    margin: 0;
    padding: 0;
    list-style: decimal;
    padding-left: 24px;
    color: var(--colors-text-text-body, #4A5565);
    font-family: Satoshi;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.content-tabs__list-content li,
.report-tabs__list-content li {
    margin-bottom: 0;
    color: var(--colors-text-text-body, #4A5565);
    font-family: Satoshi;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.content-tabs__panel p,
.report-tabs__panel p {
    margin: 0;
    color: var(--colors-text-text-body, #4A5565);
    font-family: Satoshi;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

/* Sidebar - Generic */
.content-sidebar,
.report-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 64px;
    border-left: 1px solid #E5E7EB;
    min-height: 100%;
}

/* Share section sticks to bottom of sidebar */
.content-sidebar__share,
.report-sidebar__share {
    margin-top: auto;
}
@media (max-width: 767px) {
    .content-sidebar,
    .report-sidebar {
        border-left:none;
    }
    .content-sidebar__section,
    .report-sidebar__section {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .related-item {
        padding-left: 12px;
    }
    .related-item__image {
        padding-left: 0px !important;
    }
    
    .related-item--text-only {
        padding-right: 0px !important;
        
    }
    
    .related-item__link,
    .related-item__content {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    
}
.content-sidebar__section,
.report-sidebar__section {
    padding: 0 20px 24px 20px;
    border-bottom: 1px solid var(--color-gray-200);
    position: relative;
}
/* Mobile only  */
@media (max-width: 767px) {
    .content-sidebar__cta {
        padding: 24px 0px 24px 0px !important;
        border-top: 1px solid var(--color-gray-200);
        position: relative;
    }
    .content-sidebar__cta::before {
        content: '';
        position: absolute;
        top: -4px;
        left: 0;
        right: 0;
        height: 8px;
        
        background-repeat: no-repeat;
        background-size: 4px 8px;
        display: block !important;
    }
    .content-sidebar__cta::before,
    .content-sidebar__cta::after,
    .content-sidebar__section::after,
    .content-sidebar__share::after,
    .report-sidebar__share::after {
        background-image: 
            url("data:image/svg+xml,%3Csvg width='4' height='8' viewBox='0 0 4 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 L4 4 L0 8 Z' fill='%23E5E7EB'/%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg width='4' height='8' viewBox='0 0 4 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 0 L0 4 L4 8 Z' fill='%23E5E7EB'/%3E%3C/svg%3E") !important;
        background-position: left center, right center !important;
    }
}

/* end mobile only */
@media (min-width: 768px) {
    .content-sidebar__cta::after {
        background-image: none !important;
    }
}
.content-sidebar__section::after,
.content-sidebar__share::after,
.report-sidebar__share::after,
.content-sidebar__section.content-sidebar__share::after,
.report-sidebar__section.report-sidebar__share::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 8px;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='4' height='8' viewBox='0 0 4 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 0 L0 4 L4 8 Z' fill='%23E5E7EB'/%3E%3C/svg%3E");
    background-position:  right center;
    background-repeat: no-repeat;
    background-size: 4px 8px;
    display: block !important;
}
.content-sidebar__section.content-sidebar__share::after,
.report-sidebar__section.report-sidebar__share::after {
    bottom:unset !important;
    top:-4px !important;
}
.content-sidebar__section:first-child,
.report-sidebar__section:first-child {
    padding-top: 0;
}

.content-sidebar__section:last-child,
.report-sidebar__section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
@media (min-width: 768px) {
    .content-sidebar__cta,
    .report-sidebar__cta {
        border-bottom: none;
        padding-bottom: 0;
    }
    .content-sidebar__cta a,
    .report-sidebar__cta a {
     width: 100%;
    }
}

.content-sidebar__section:last-child::before,
.report-sidebar__section:last-child::before,
.content-sidebar__section:last-child::after,
.report-sidebar__section:last-child::after {
    display: none;
}


.content-sidebar__accordion-content-text {
    margin-bottom: 24px;
    line-height: 1.4;
    font-weight: 400;
    color: black;
    font-size: 14px;
}
/* Remove border from accordion section when it contains the form */
.content-sidebar__section:has(.content-sidebar__accordion--open),
.report-sidebar__section:has(.report-sidebar__accordion--open),
.content-sidebar__section:has(.content-sidebar__accordion),
.report-sidebar__section:has(.content-sidebar__accordion) {
    border-bottom: none;
    padding-bottom: 0;
}

.content-sidebar__section:has(.content-sidebar__accordion--open)::before,
.report-sidebar__section:has(.report-sidebar__accordion--open)::before,
.content-sidebar__section:has(.content-sidebar__accordion--open)::after,
.report-sidebar__section:has(.report-sidebar__accordion--open)::after,
.content-sidebar__section:has(.content-sidebar__accordion)::after,
.report-sidebar__section:has(.content-sidebar__accordion)::after {
    display: none !important;
}

.content-sidebar__title,
.report-sidebar__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-text-body-subtle);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.content-tag,
.report-tag {
    display: flex;
    padding: 4px 6px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: #ECFDF5;
    border: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--colors-text-text-fg-success-strong, #004F3B);
    text-decoration: none;
}

.content-sidebar__tags,
.report-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.content-sidebar__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-sidebar__link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-blue, #0276CF);
    text-decoration: none;
    transition: color var(--transition);
}

.content-sidebar__link:hover {
    color: #0266B3;
    text-decoration: underline;
}

/* Annual Report Cover in Sidebar */
.content-sidebar__cover {
    padding: 0 20px 24px 20px;
    border-bottom: 1px solid var(--color-gray-200);
}

.content-sidebar__cover-img {
    width: 155px;
    height: auto;
    box-shadow: 0 25px 50px -12px rgba(29, 41, 61, 0.25);
}

/* Member Photo in Sidebar */
.content-sidebar__photo {
    position: relative;
    margin-bottom: 24px;
    padding: 0 20px;
    max-width: 155px;
}

.content-sidebar__photo-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    box-shadow: 0 25px 50px -12px rgba(29, 41, 61, 0.25);
}

.content-sidebar__linkedin {
    position: absolute;
    bottom: 0;
    right: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #0072B1;
    box-shadow: 0 1px 2px 0 rgba(29, 41, 61, 0.05);
}

.content-sidebar__linkedin svg {
    width: 24px;
    height: 24px;
}

/* Roles List in Sidebar */
.content-sidebar__section--roles {
    border: none;
    padding-bottom: 24px;
}

.content-sidebar__roles {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.content-sidebar__roles li {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-gray-700);
    margin-bottom: 8px;
}

.content-sidebar__roles li:last-child {
    margin-bottom: 0;
}

/* Member Hero Styles */
.content-hero--member {
    background: #F9FAFB;
  
}

.content-hero__role {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1px;
    color: var(--color-gray-700);
    margin: 0;
}

.content-hero__position {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-gray-600);
    margin: 0;
}

.content-sidebar__accordion,
.report-sidebar__accordion {
    margin-left:-20px;
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: #E8F4FC;
    padding: 24px;
    transition: background 0.3s ease, padding 0.3s ease;
}
@media (max-width: 767px) {
    .content-sidebar__accordion,
    .report-sidebar__accordion {
        margin-left:0px;
    }
}
/* Accordion icon container - circular white background */
.content-sidebar__accordion-icon-container,
.report-sidebar__accordion-icon-container {
    display: flex;
    padding: 16px;
    align-items: center;
    gap: 10px;
    border-radius: 99px;
    background: #FFF;
    width: fit-content;
    margin-bottom: 16px;
}

.content-sidebar__accordion-icon-container img,
.report-sidebar__accordion-icon-container img {
    width: 24px;
    height: 24px;
    display: block;
}

.content-sidebar__accordion-toggle,
.report-sidebar__accordion-toggle {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--typography-font-family-font-base, Satoshi);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.14px;
    text-transform: uppercase;
    color: #101828;
}

.content-sidebar__accordion--open .content-sidebar__accordion-toggle,
.report-sidebar__accordion--open .report-sidebar__accordion-toggle {
    background: transparent;
}

.content-sidebar__accordion-toggle svg,
.report-sidebar__accordion-toggle svg {
    color: var(--color-blue);
}

/* Chevron icon in accordion toggle */
.content-sidebar__accordion-toggle .content-sidebar__accordion-icon,
.report-sidebar__accordion-toggle .report-sidebar__accordion-icon {
    margin-left: auto;
    color: var(--color-gray-600);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-sidebar__accordion--open .content-sidebar__accordion-toggle .content-sidebar__accordion-icon,
.report-sidebar__accordion--open .report-sidebar__accordion-toggle .report-sidebar__accordion-icon {
    transform: rotate(180deg);
}

.content-sidebar__accordion-content,
.report-sidebar__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.content-sidebar__accordion--open,
.report-sidebar__accordion--open {
    background: linear-gradient(0deg, #FFF 0%, #E8F4FC 88.75%);
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}

.content-sidebar__accordion--open .content-sidebar__accordion-content,
.report-sidebar__accordion--open .report-sidebar__accordion-content {
    max-height: 2000px;
    padding: 0;
    opacity: 1;
}

/* Related items background + cards */
.related-items {
    padding: 80px 0;
    background-color: var(--color-bg-warm);
    position: relative;
}
@media (max-width: 767px) {
    .related-items {
        padding: 40px 0;
    }
}
/* Line extending from sidebar to related items is now handled by .report-sidebar::before */

.related-items__title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.4px;
    color: #101828;
    margin-bottom: 32px;
}

.related-items__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 0;
}

@media (max-width: 991px) {
    .related-items__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .related-items__grid {
        grid-template-columns: 1fr;
    }
}

.related-item {
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    border-left: 1px solid var(--color-gray-200);
}


.related-item__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    padding-left: 20px;
}

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

.related-item__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.related-item__date {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-text-body-subtle);
    margin-bottom: 8px;
    display: block;
}

.related-item__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.related-item__meta-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-text-body-subtle);
    margin-bottom: 8px;
}
.related-item__meta-icon {
    width: 16px;
    height: 16px;
    display: block;
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1352%) hue-rotate(194deg) brightness(99%) contrast(101%)
}
.related-item__meta-badge:first-child {
    margin-right:-1px;
}
.related-item__meta-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-text-body-subtle);
    margin-bottom: 8px;
    padding: 2px 6px;
    border: 1px solid #E5E7EB;
    
    background: #F9FAFB;
}
.related-item__meta-badge-icon {
    width: 16px;
    height: 16px;
    display: block;
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1352%) hue-rotate(194deg) brightness(99%) contrast(101%)
}
.related-item__footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}
.related-item__meta-badges {
    display: flex;
    align-items: center;
    gap: 0;
}   

@media (max-width: 767px) {
    .related-item__title {
        font-size: 18px;
    }
}

.related-item__title a:hover {
    text-decoration: underline;
}
.related-item__text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-text-body-subtle);
    margin: 0 0 16px 0;
}

@media (max-width: 767px) {
    .related-item__text {
        font-size: 14px;
        font-weight: 400;
    }
}
.related-item__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-blue-dark);
    text-decoration: none;
}
@media (max-width: 767px) {
    .related-item__link {
        font-size: 16px;
        font-weight: 700;
    }
}
.related-item__link:hover {
    color: var(--color-blue);
}

/* ============================================
   Member Detail Page Styles
   ============================================ */

/* Member Hero */
.member-hero {
    padding: 32px 0 48px;
    background: #FDF8F3;
}

.member-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.member-hero__name {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: #101828;
    margin: 0;
}

@media (max-width: 767px) {
    .member-hero__name {
        font-size: 32px;
    }
}

.member-hero__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    margin: 0;
}

.member-hero__position {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #4A5565;
    margin: 0;
}

/* Member Detail Page */
.member-detail-page {
    padding: 48px 0;
    background: #fff;
}

.member-section {
    margin-bottom: 32px;
}

.member-section__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 24px;
}

.member-section__content {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #4A5565;
}

.member-section__content p {
    margin: 0 0 20px;
}

.member-section__content p:last-child {
    margin-bottom: 0;
}

/* Member Sidebar */
.member-detail__sidebar {
    position: relative;
}

.member-sidebar {
    position: sticky;
    top: 24px;
}

.member-sidebar__photo {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 24px;
}

.member-sidebar__photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.member-sidebar__linkedin {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #0A66C2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.member-sidebar__linkedin:hover {
    background: #004182;
}

.member-sidebar__linkedin svg {
    width: 20px;
    height: 20px;
}

.member-sidebar__section {
    margin-bottom: 24px;
}

.member-sidebar__title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4A5565;
    margin: 0 0 12px;
}

.member-sidebar__roles {
    list-style: disc;
    margin: 0;
    padding-left: 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #101828;
    line-height: 1.6;
}

.member-sidebar__roles li {
    margin-bottom: 8px;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.social-share__label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4A5565;
}

.social-share__icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-share__link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A5565;
    transition: color 0.2s;
}

.social-share__link:hover {
    color: #0276CF;
}

/* Contributions Section */
.contributions {
    padding: 60px 0 80px;
    background: #F9FAFB;
}

.contributions__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: #101828;
    margin: 0 0 32px;
}

.contributions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .contributions__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .contributions__grid {
        grid-template-columns: 1fr;
    }
}

/* Contribution Card */
.contribution-card {
    background: #fff;
    overflow: hidden;
}

.contribution-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.contribution-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contribution-card__content {
    padding: 20px;
}

.contribution-card__date {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    color: #4A5565;
    margin-bottom: 8px;
}

.contribution-card__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 12px;
    line-height: 1.3;
}

.contribution-card__text {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    line-height: 1.6;
    margin: 0 0 16px;
}

.contribution-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #1C398E;
    text-decoration: none;
    transition: color 0.2s;
}

.contribution-card__link:hover {
    color: #0276CF;
}

.contribution-card--horizontal {
    display: flex;
    flex-direction: column;
}

.contribution-card--horizontal .contribution-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contribution-card--horizontal .contribution-card__text {
    flex: 1;
}

/* ============================================
   Submission Detail Page Styles
   ============================================ */

/* Submission Hero */
.submission-hero {
    padding: 32px 0 48px;
    background: #FDF8F3;
}

.submission-hero__inner {
    max-width: 720px;
}

.submission-hero__date {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    margin-bottom: 12px;
}

.submission-hero__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: #101828;
    margin: 0 0 16px;
}

@media (max-width: 767px) {
    .submission-hero__title {
        font-size: 28px;
    }
}

.submission-hero__description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #4A5565;
    margin: 0 0 24px;
}

.submission-hero__download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Submission Detail Page */
.submission-detail-page {
    padding: 48px 0;
    background: #fff;
}

.submission-section {
    margin-bottom: 32px;
}

.submission-section__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 24px;
}

.submission-section__content {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #4A5565;
}

.submission-section__content p {
    margin: 0 0 20px;
}

.submission-section__content ul {
    margin: 0 0 20px;
    padding-left: 20px;
}

.submission-section__content li {
    margin-bottom: 12px;
}

.submission-section__content a {
    color: #0276CF;
    text-decoration: underline;
}

.submission-section__content a:hover {
    color: #1C398E;
}

/* Submission Sidebar */
.submission-detail__sidebar {
    position: relative;
}

.submission-sidebar {
    position: sticky;
    top: 24px;
}

.submission-sidebar__section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E7EB;
}

.submission-sidebar__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.submission-sidebar__title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4A5565;
    margin: 0 0 12px;
}

.submission-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.submission-tag {
    display: inline-block;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #0276CF;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #0276CF;
    text-decoration: none;
    transition: all 0.2s;
}

.submission-tag:hover {
    background: #0276CF;
    color: #fff;
}

/* Submission Sidebar Accordion */
.submission-sidebar__accordion {
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.submission-sidebar__accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    background: #F9FAFB;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.submission-sidebar__accordion-toggle:hover {
    background: #F3F4F6;
}

.submission-sidebar__accordion-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #101828;
}

.submission-sidebar__accordion-icon {
    color: #4A5565;
    transition: transform 0.2s;
}

.submission-sidebar__accordion--open .submission-sidebar__accordion-icon {
    transform: rotate(180deg);
}

.submission-sidebar__accordion-content {
    padding: 16px;
    display: none;
}

.submission-sidebar__accordion--open .submission-sidebar__accordion-content {
    display: block;
}

/* ============================================
   News Detail Page Styles
   ============================================ */

/* News Hero */
.news-hero {
    position: relative;
    padding: 80px 0;
    background: #1C398E;
    color: #fff;
    overflow: hidden;
}

.news-hero__background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.news-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .news-hero__background {
        width: 100%;
        opacity: 0.3;
    }
}

.news-hero__content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.news-hero__date {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.news-hero__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

@media (max-width: 767px) {
    .news-hero__title {
        font-size: 28px;
    }
}

/* News Detail Page */
.news-detail-page {
    padding: 48px 0;
    background: #fff;
}

.news-section {
    margin-bottom: 32px;
}

.news-section__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 24px;
}

.news-section__content {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #4A5565;
}

.news-section__content p {
    margin: 0 0 20px;
}

.news-section__content a {
    color: #0276CF;
    text-decoration: underline;
}

/* News Image */
.news-image {
    margin: 32px 0;
}

.news-image img {
    width: 100%;
    height: auto;
}

.news-image__caption {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    font-style: italic;
    margin-top: 8px;
}

/* Content Quote - Generic quote/pullquote component for detail pages */
.content-quote,
.news-quote {
    padding: 32px 0 32px 32px;
    border-top: 1px solid var(--colors-border-border-base, #E5E7EB);
    border-left: 1px solid var(--colors-border-border-base, #E5E7EB);
    background: #FFF;
    margin: 32px 0;
}

.content-quote__text,
.news-quote__text {
    color: var(--colors-text-text-fg-brand-strong, #1C398E);
    /* Quote */
    font-family: "Crimson Text";
    font-size: 36px;
    font-style: italic;
    font-weight: 400;
    line-height: 110%; /* 39.6px */
    letter-spacing: -0.4px;
    margin: 0 0 16px;
}

.content-quote__attribution,
.news-quote__attribution {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    margin: 0;
}

.content-quote__attribution strong,
.news-quote__attribution strong {
    color: #101828;
}

.content-quote__attribution a,
.news-quote__attribution a {
    color: var(--colors-text-text-body, #4A5565);
    font-family: var(--typography-font-family-font-base, Satoshi);
    font-size: var(--typography-font-size-text-sm, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-leading-5, 20px);
    text-decoration: none;
}

.content-quote__attribution a:hover,
.news-quote__attribution a:hover {
    color: var(--color-blue, #0276CF);
    text-decoration: underline;
}

/* Content Video - Generic video component for detail pages */
.content-video,
.news-video {
    margin: 32px 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

.content-video__wrapper,
.news-video__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #101828;
}

.content-video__wrapper iframe,
.news-video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.content-video__transcript,
.news-video__transcript {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    background: #000000;
    border-radius: 0;
    color: var(--colors-text-text-white, #FFF);
    font-family: Satoshi;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.content-video__transcript:hover,
.news-video__transcript:hover {
    background: #333333;
}

.content-video__transcript--active,
.news-video__transcript--active {
    background: #333333;
}

.content-video__transcript-content,
.news-video__transcript-content {
    margin-top: 16px;
    padding: 24px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 24px;
    color: #4A5565;
    display: none;
}

.content-video__transcript-content--hidden {
    display: none;
}

.content-video__transcript-content p {
    margin: 0 0 12px 0;
}

.content-video__transcript-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Content Hero Meta (for event details, etc.)
   ============================================ */

.content-hero__meta {
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
}

.content-hero__meta-item {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #E5E7EB;
    width: fit-content;
    color: var(--colors-text-text-heading, #101828);
    text-align: center;
    font-family: Satoshi;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
}

.content-hero__meta-item * {
    color: var(--colors-text-text-heading, #101828);
    font-family: Satoshi;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
}

.content-hero__meta-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    text-align: center;
}

.content-hero__meta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1352%) hue-rotate(194deg) brightness(99%) contrast(101%);
}

.content-hero__meta-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-left: 1px solid #E5E7EB;
    text-align: center;
}

.content-hero__meta-badge-icon {
    width: 14px;
    height: 14px;
    display: block;
}

@media (max-width: 767px) {
    .content-hero__meta-item {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .content-hero__meta-badge {
        border-left: none;
        border-top: 1px solid #E5E7EB;
        width: 100%;
    }
}

.content-hero__badges {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
}

.content-hero__cta {
    align-self: flex-start;
}

/* ============================================
   Content Badge - Generic badge component
   ============================================ */

.content-badge {
    display: inline-flex;
    padding: 2px 6px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: #4A5565;
    white-space: nowrap;
    text-decoration: none;
    margin-left: -1px;
}

.content-badge:first-of-type {
    margin-left: 0;
}

/* ============================================
   Content Person Card - Generic person/profile card
   Horizontal layout: 86px image on left, text on right
   ============================================ */

.content-person-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

@media (max-width: 767px) {
    .content-person-grid {
        grid-template-columns: 1fr;
    }
}

/* Report page: Project Funding & Support grid only – 2 per row */
.content-person-grid--report-funding-two-col {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
    .content-person-grid--report-funding-two-col {
        grid-template-columns: 1fr;
    }
}

.content-person-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 11.25%, #FFF 100%), rgba(177, 218, 244, 0.30);
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.content-person-card__photo {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    overflow: hidden;
    background: #E5E7EB;
    flex-shrink: 0;
}

.content-person-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-person-card__info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.content-person-card__name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #101828;
    margin: 0 0 4px 0;
}
.content-person-card__name a:hover {
    text-decoration: underline;
}
.content-person-card__credentials {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #1C398E;
    margin: 0 0 10px 0;
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border-border-base);
}

.content-person-card__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #6A7282;
    margin: 0;
}

/* ============================================
   Content Sidebar Sponsors
   ============================================ */

.content-sidebar__sponsors {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-sidebar__sponsor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-sidebar__sponsor-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
}

.content-sidebar__sponsor-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #4A5565;
    margin: 0;
}

/* Sponsors Grid - 2x2 layout */
.content-sidebar__sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 4px;
}

.content-sidebar__sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* Add border-top to items in row 2+ (items 3 and 4) */
.content-sidebar__sponsor-item:nth-child(n+3) {
    border-top: 1px solid #E5E7EB;
}

.content-sidebar__sponsor-item .content-sidebar__sponsor-logo {
    width: 100%;
    max-width: 130px;
    height: auto;
    object-fit: contain;
}

/* ============================================
   Related Item Badges
   ============================================ */

.related-item__badges {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    margin-bottom: 16px;
}

/* News Sidebar */
.news-detail__sidebar {
    position: relative;
}

.news-sidebar {
    position: sticky;
    top: 24px;
}

.news-sidebar__section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E7EB;
}

.news-sidebar__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-sidebar__title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4A5565;
    margin: 0 0 12px;
}

.news-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================
   Annual Report Detail Page Styles
   ============================================ */

/* Annual Report Hero */
.annual-report-hero {
    padding: 32px 0 48px;
    background: #FDF8F3;
}

.annual-report-hero__inner {
    max-width: 720px;
}

.annual-report-hero__date {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    margin-bottom: 12px;
}

.annual-report-hero__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: #101828;
    margin: 0 0 16px;
}

@media (max-width: 767px) {
    .annual-report-hero__title {
        font-size: 28px;
    }
}

.annual-report-hero__description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #4A5565;
    margin: 0 0 24px;
}

.annual-report-hero__download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Annual Report Detail Page */
.annual-report-detail-page {
    padding: 48px 0;
    background: #fff;
}

.annual-report-section {
    margin-bottom: 32px;
}

.annual-report-section__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 24px;
}

.annual-report-section__content {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #4A5565;
}

.annual-report-section__content p {
    margin: 0 0 20px;
}

/* Annual Report Sidebar */
.annual-report-detail__sidebar {
    position: relative;
}

.annual-report-sidebar {
    position: sticky;
    top: 24px;
}

.annual-report-sidebar__cover {
    margin-bottom: 24px;
}

.annual-report-sidebar__cover img {
    width: 100%;
    max-width: 200px;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.annual-report-sidebar__section {
    margin-bottom: 24px;
}

/* ============================================
   Content Accordions
   ============================================ */

.content-accordions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.content-accordion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.content-accordion__toggle {
    display: flex;
    padding: var(--spacing-5, 20px) 0;
    align-items: center;
    gap: var(--spacing-6, 24px);
    align-self: stretch;
    border: none;
    border-bottom: var(--border-border-width-border, 1px) solid var(--colors-border-border-base, #E5E7EB);
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    transition: color 0.2s;
}

.content-accordion__toggle:hover {
    color: #0276CF;
}

.content-accordion__title {
    flex: 1;
    text-align: left;
}

.content-accordion__icon {
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
    color: #101828;
}

.content-accordion--open .content-accordion__icon {
    transform: rotate(180deg);
}

.content-accordion__content {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-3, 12px);
    align-self: stretch;
    border-radius: var(--border-radius-rounded-0, 0) var(--border-radius-rounded-0, 0) 0 0;
    border-bottom: none;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease, opacity 0.2s ease, border-bottom 0.3s ease, background 0.3s ease;
}

.content-accordion--open .content-accordion__content {
    max-height: 2000px;
    padding: var(--spacing-5, 20px) var(--spacing-6, 24px);
    border-bottom: var(--border-border-width-border, 1px) solid var(--colors-border-border-base, #E5E7EB);
    background: var(--colors-background-bg-secondary, #F9FAFB);
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease, opacity 0.3s ease 0.1s, border-bottom 0.3s ease, background 0.3s ease;
}

.content-accordion__content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #4A5565;
    margin: 0;
}

.content-accordion__content p:last-child {
    margin-bottom: 0;
}



