/* ============================================
   Reports Page Styles
   ============================================ */

/* ============================================
   Page Hero (Subpage style)
   ============================================ */

   .page-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    padding-top: 140px; /* Account for absolute positioned header */
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 991px) {
    .page-hero {
        padding-top: 80px; /* Mobile header is fixed, different height */
        min-height: 350px;
    }
}

@media (min-width: 768px) {
    .page-hero {
        min-height: 320px;
    }
}

@media (min-width: 1920px) {
    .page-hero {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}

.page-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}

@media (min-width: 1920px) {
    .page-hero__background {
        left: calc(50% - 50vw);
        right: calc(50% - 50vw);
        width: 100vw;
    }
}

.page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 20%, rgba(0, 0, 0, 0.60) 80%);
}

.page-hero__content {
    position: relative;
    z-index: 4;
    width: 100%;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .page-hero__content {
        padding-bottom: 80px;
    }
}

@media (min-width: 1920px) {
    /*.page-hero__content {
        max-width: 1920px;
        margin: 0 auto;
    }*/
    
    /*.page-hero__content .container {
        max-width: 1440px;
    }*/
}

.page-hero__inner {
    display: inline-block;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 32px;
    max-width: 720px;
}
@media (max-width: 767px) {
    .page-hero__inner {
       width: 100%;
    }
}
@media (min-width: 768px) {
    .page-hero__inner {
        padding: 32px 40px;
        max-width: 800px;
    }
}

.page-hero__title {
    font-size: 36px;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.8px;
}

@media (min-width: 768px) {
    .page-hero__title {
        font-size: 60px;
        margin-bottom: 12px;
    }
}

.page-hero__subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (min-width: 768px) {
    .page-hero__subtitle {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .page-hero__curve {
        display: none;
    }
    .page-hero__content {
        padding-bottom: 0px;
    }
    .page-hero__content .container {
        padding: 0px;
    }
    .page-hero__inner.page-hero__inner--flat {
        padding:  20px;
    }
}
.page-hero__curve {
    position: absolute;
    bottom: -1px;
    right: 0;
    z-index: 4;
    pointer-events: none;
}

.page-hero__curve-img {
    display: block;
    width: auto;
    height: 100px;
}

@media (min-width: 768px) {
    .page-hero__curve-img {
        height: 130px;
    }
}

@media (min-width: 1200px) {
    .page-hero__curve-img {
        height: 160px;
    }
}

.page-hero__curve svg {
    width: 100%;
    height: 100%;
}

/* Flat Hero (no background image) */
.page-hero.page-hero--flat {
    z-index: 1;
    background-color: #101828;
    min-height: 240px;
}

@media (min-width: 768px) {
    .page-hero.page-hero--flat {
        min-height: 280px;
    }
}

.page-hero__inner--flat {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    display: block;
    max-width: none;
}

/* Dark header for subpages */
.site-header--dark {
    position: absolute;
    top: 40px;
    background-color: transparent;
}

@media (max-width: 991px) {
    .site-header--dark {
        top: 0;
        position: fixed;
        background-color: transparent;
    }
}

/* ============================================
   Reports Page Layout
   ============================================ */

.reports-page {
    padding: 0 0 80px;
    background-color: #FFFFFF;
    margin-top: -80px;
    position: relative;
}

/* Override Bootstrap container for filters to extend left */
.reports-page > .container {
    max-width: 100%;
    padding-left: 0;
}

@media (min-width: 992px) {
    .reports-page > .container {
        max-width: calc(var(--bs-container-lg, 960px) + ((100vw - var(--bs-container-lg, 960px)) / 2));
        margin-left: 0;
        margin-right: auto;
        padding-right: calc(var(--bs-gutter-x, 0.75rem) * 0.5);
    }
}

@media (min-width: 1200px) {
    .reports-page > .container {
        max-width: calc(var(--bs-container-xl, 1140px) + ((100vw - var(--bs-container-xl, 1140px)) / 2));
    }
}

@media (min-width: 1400px) {
    .reports-page > .container {
        max-width: calc(var(--bs-container-xxl, 1320px) + ((100vw - var(--bs-container-xxl, 1320px)) / 2));
    }
}

@media (min-width: 1920px) {
    .reports-page {
        max-width: 1920px;
        margin: 0 auto;
    }
    
    .reports-page > .container {
        max-width: 1440px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Using Bootstrap grid - .row > .col-lg-3 + .col-lg-9 */

/* ============================================
   Sidebar Filters
   ============================================ */

.reports-page aside {
    position: relative;
    z-index: 4;
    margin-top: 60px;
}

.reports-filters {
    border-radius: 0 24px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 11.25%, #FFF 100%), linear-gradient(0deg, #FFF3D6 0%, #FFF3D6 100%), #FFF;
    padding: 32px 24px 32px 24px;
    height: fit-content;
    margin-top: -10px;
}

@media (min-width: 992px) {
    .reports-filters {
        /* Extend to left edge of viewport */
        margin-left: calc(-1 * ((100vw - var(--bs-container-lg, 960px)) / 2));
        padding-left: calc(((100vw - var(--bs-container-lg, 960px)) / 2) + 24px);
    }
}

@media (min-width: 1200px) {
    .reports-filters {
        margin-left: calc(-1 * ((100vw - var(--bs-container-xl, 1140px)) / 2));
        padding-left: calc(((100vw - var(--bs-container-xl, 1140px)) / 2) + 24px);
    }
}

@media (min-width: 1400px) {
    .reports-filters {
        margin-left: calc(-1 * ((100vw - var(--bs-container-xxl, 1320px)) / 2));
        padding-left: calc(((100vw - var(--bs-container-xxl, 1320px)) / 2) + 24px);
    }
}

@media (min-width: 1920px) {
    .reports-filters {
        /* In Full HD, extend to left edge of 1440px container */
        margin-left: calc(-1 * ((1440px - 1280px) / 2));
        padding-left: calc(((1440px - 1280px) / 2) + 24px);
    }
}

@media (max-width: 991px) {
    /* Hide desktop filters on mobile - use mobile filter panel instead */
    .reports-filters {
        display: none;
    }
    
    /* Hide the sidebar column on mobile */
    .reports-page > .container > .row > .col-lg-3 {
        display: none;
    }
    
    /* Make main content full width on mobile */
    .reports-page > .container > .row > .col-lg-9 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .reports-page > .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Hide desktop sort controls on mobile */
    .reports-header__sort {
        display: none !important;
    }
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group:last-of-type {
    margin-bottom: 24px;
}

.filter-group__label {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
}

/* Filter Search Input */
.filter-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background: #FFF;
}

.filter-search__icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #D03801;
}

.filter-search__input {
    flex: 1;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    color: #101828;
    outline: none;
    background: transparent;
    min-width: 0;
}

.filter-search__input::placeholder {
    color: #9CA3AF;
}

/* Filter Date Inputs */
.filter-date {
    margin-bottom: 12px;
}

.filter-date:last-child {
    margin-bottom: 0;
}

.filter-date__label {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.filter-date__input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-shadow: 0 1px 2px 0 rgba(29, 41, 61, 0.05);
}

.filter-date__icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--colors-text-text-fg-warning-subtle, #D97706);
}

.filter-date__input {
    flex: 1;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    outline: none;
    background: transparent;
    min-width: 0;
    width: 100%;
    cursor: pointer;
}

.filter-date__input::placeholder {
    color: #4A5565;
}

/* Date input specific styling */
.filter-date__input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.filter-date__input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    filter: invert(24%) sepia(91%) saturate(2214%) hue-rotate(14deg) brightness(95%) contrast(101%);
}

.filter-date__input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Filter Checkboxes */
.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.filter-checkbox__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-checkbox__box {
    width: 18px;
    height: 18px;
    border: 1px solid #1E2939;
    border-radius: 2px;
    background: #FFF;
    box-shadow: 0 1px 0.5px 0.05px rgba(29, 41, 61, 0.02);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.filter-checkbox__input:checked + .filter-checkbox__box {
    background: #0276CF;
    border-color: #0276CF;
}

.filter-checkbox__input:checked + .filter-checkbox__box::after {
    content: '';
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.filter-checkbox__label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
}

.filter-checkbox__count {
    color: #9CA3AF;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: nowrap;
}

.filter-actions__submit {
    padding: 10px 16px;
    background-color: #101828;
    color: #FFF;
    border: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-actions__submit:hover {
    background-color: #020618;
}

.filter-actions__reset {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-navy);
    cursor: pointer;
    font-weight: 500;   
    padding: 8px 0;
    transition: color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-actions__reset:hover {
    color: #101828;
}

/* ============================================
   Reports Content Area
   ============================================ */

.reports-content {
    min-width: 0;
    padding-top: 132px;
    padding-left: 48px;
}

@media (max-width: 991px) {
    .reports-content {
        padding-left: 0;
        padding-top: 124px;
    }
}

.reports-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .reports-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

/* Mobile filter bar takes full width within header */
.reports-header .mobile-filter-bar,
.submissions-header .mobile-filter-bar,
.news-header .mobile-filter-bar,
.events-header .mobile-filter-bar {
    width: 100%;
    margin-top: 8px;
}

.reports-header__count {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-text-body-subtle);
    margin: 0;
}

.reports-header__count strong {
    color: #101828;
}

.reports-header__sort {
    display: flex;
    align-items: center;
    gap: 24px;
}

.reports-header__sort-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reports-header__sort-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
}

.reports-header__select {
    padding: 8px 32px 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    background: #FFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%230276CF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 1px 2px 0 rgba(29, 41, 61, 0.05);
}

/* ============================================
   Reports Grid
   ============================================ */

.reports-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .reports-grid:not(.reports-grid--carousel) {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Carousel mode - show one at a time on mobile */
.reports-grid.reports-grid--carousel {
    display: flex;
    overflow: hidden;
    gap: 0;
}

/* On mobile, always show one at a time */
@media (max-width: 991px) {
    .reports-grid.reports-grid--carousel {
        display: flex !important;
        grid-template-columns: none !important;
        width: 100%;
    }
    
    .reports-grid.reports-grid--carousel .report-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        flex-shrink: 0;
        display: none !important;
    }
    
    .reports-grid.reports-grid--carousel .report-card.report-card--active {
        display: flex !important;
    }
    
    .reports-grid.reports-grid--carousel .report-card__content {
        padding: 16px;
    }
    
    .reports-grid.reports-grid--carousel .report-card__title {
        font-size: 16px;
    }
    
    .reports-grid.reports-grid--carousel .report-card__text {
        font-size: 13px;
    }
}

/* On desktop, show all cards in grid */
@media (min-width: 992px) {
    .reports-grid.reports-grid--carousel {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px;
    }
    
    .reports-grid.reports-grid--carousel .report-card {
        display: flex !important;
        min-width: auto;
    }
}

/* Reports Section */
.reports-section {
    padding: 64px 0;
    background: linear-gradient(0deg, #020304 0%, #1C2E4A 100%);
}

.reports-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 24px;
}

.reports-section__titles {
    flex: 1;
}

.reports-section__title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

@media (min-width: 768px) {
    .reports-section__title {
        font-size: 48px;
    }
}

.reports-section__subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.reports-section__nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reports-nav__btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--color-white);
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reports-nav__btn:hover:not(:disabled) {
    opacity: 0.8;
}

.reports-nav__btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.reports-nav__count {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-white);
    min-width: 50px;
    text-align: center;
}

.reports-section__actions {
    text-align: center;
}

/* ============================================
   Report Card (Homepage - Dark Background)
   ============================================ */

.report-card {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.report-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #E5E7EB;
}

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

.report-card__content {
    padding: 24px 24px 16px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Text styling inherited by child paragraphs */
.report-card__text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #4A5565;
    margin-bottom: 12px;
    flex: 1;
}

.report-card__text p {
    margin: 0 0 12px 0;
}

.report-card__text p:last-child {
    margin-bottom: 0;
}

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

@media (min-width: 768px) {
    .report-card__title {
        font-size: 20px;
    }
}

.report-card__footer {
    border-top: 1px solid var(--color-gray-200);
    padding-top: 12px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.report-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;
    margin: 0;
    padding: 0;
}

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

.report-card__link svg {
    width: 20px;
    height: 20px;
}

.report-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.report-card__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: #004F3B;
    text-decoration: none;
}

/* ============================================
   Report Card (Listing Style)
   ============================================ */

.report-card-listing {
    background-color: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
    display: flex;
    flex-direction: column;
}

.report-card-listing__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #E5E7EB;
}

.report-card-listing__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-card-listing__tag {
    position: absolute;
    top: 0;
    left: 24px;
    display: flex;
    padding: 4px 6px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: var(--color-bg-warm, #FFF3D6);
    color: #771D1D;
    text-align: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    border-radius: 0;
}

.report-card-listing__tag svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.report-card-listing__content {
    padding: 24px 24px 0 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.report-card-listing__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #101828;
    margin-bottom: 12px;
}
.report-card-listing__title a:hover {
    text-decoration: underline;
}
@media (min-width: 768px) {
    .report-card-listing__title {
        font-size: 20px;
    }
}

.report-card-listing__text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #4A5565;
    margin-bottom: 20px;
}

.report-card-listing__footer {
    border-top: 1px solid var(--color-gray-200);
    margin: auto -24px 0 -24px;
    padding: 16px 24px 16px 24px;
}

.report-card-listing__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;
}

.report-card-listing__link:hover {
    color: #0276CF;
}

.report-card-listing__link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Listing Page Layout
   ============================================ */

.listing-page {
    padding: 64px 0;
    background-color: #F4F4F4;
}

.listing-page__layout {
    display: grid;
    gap: 32px;
}

@media (min-width: 992px) {
    .listing-page__layout {
        grid-template-columns: 280px 1fr;
        gap: 48px;
    }
}

/* ============================================
   Listing Sidebar
   ============================================ */

.listing-sidebar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 11.25%, #FFF 100%), #FFF3D6;
    border-radius: 24px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

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

.listing-sidebar__section:last-child {
    margin-bottom: 0;
}

.listing-sidebar__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 16px;
}

.listing-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.listing-sidebar__list li {
    margin-bottom: 8px;
}

.listing-sidebar__list li:last-child {
    margin-bottom: 0;
}

.listing-sidebar__link {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    text-decoration: none;
    transition: color 0.2s;
}

.listing-sidebar__link:hover,
.listing-sidebar__link--active {
    color: #0276CF;
}

/* ============================================
   Listing Main
   ============================================ */

.listing-main {
    min-width: 0;
}

.listing-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #101828;
    margin-bottom: 24px;
}

.listing-section-title--past {
    margin-top: 48px;
}

/* ============================================
   Submissions Listing Grid
   ============================================ */

/* ============================================
   Submissions Page Layout
   ============================================ */

.submissions-page {
    padding: 0 0 80px;
    background-color: #FFFFFF;
    margin-top: -80px;
    position: relative;
}

/* Override Bootstrap container for filters to extend left */
.submissions-page > .container {
    max-width: 100%;
    padding-left: 0;
}

@media (min-width: 992px) {
    .submissions-page > .container {
        max-width: calc(var(--bs-container-lg, 960px) + ((100vw - var(--bs-container-lg, 960px)) / 2));
        margin-left: 0;
        margin-right: auto;
        padding-right: calc(var(--bs-gutter-x, 0.75rem) * 0.5);
    }
}

@media (min-width: 1200px) {
    .submissions-page > .container {
        max-width: calc(var(--bs-container-xl, 1140px) + ((100vw - var(--bs-container-xl, 1140px)) / 2));
    }
}

@media (min-width: 1400px) {
    .submissions-page > .container {
        max-width: calc(var(--bs-container-xxl, 1320px) + ((100vw - var(--bs-container-xxl, 1320px)) / 2));
    }
}

.submissions-page aside {
    position: relative;
    z-index: 4;
    margin-top: 60px;
}

/* ============================================
   Submissions Filters (same style as Reports)
   ============================================ */

.submissions-filters {
    border-radius: 0 24px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 11.25%, #FFF 100%), linear-gradient(0deg, #FFF3D6 0%, #FFF3D6 100%), #FFF;
    padding: 32px 24px 32px 24px;
    height: fit-content;
    margin-top: -10px;
}

@media (min-width: 992px) {
    .submissions-filters {
        margin-left: calc(-1 * ((100vw - var(--bs-container-lg, 960px)) / 2));
        padding-left: calc(((100vw - var(--bs-container-lg, 960px)) / 2) + 24px);
    }
}

@media (min-width: 1200px) {
    .submissions-filters {
        margin-left: calc(-1 * ((100vw - var(--bs-container-xl, 1140px)) / 2));
        padding-left: calc(((100vw - var(--bs-container-xl, 1140px)) / 2) + 24px);
    }
}

@media (min-width: 1400px) {
    .submissions-filters {
        margin-left: calc(-1 * ((100vw - var(--bs-container-xxl, 1320px)) / 2));
        padding-left: calc(((100vw - var(--bs-container-xxl, 1320px)) / 2) + 24px);
    }
}

@media (max-width: 991px) {
    /* Hide desktop filters on mobile - use mobile filter panel instead */
    .submissions-filters {
        display: none;
    }
    
    /* Hide the sidebar column on mobile */
    .submissions-page > .container > .row > .col-lg-3 {
        display: none;
    }
    
    /* Make main content full width on mobile */
    .submissions-page > .container > .row > .col-lg-9 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .submissions-page > .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Hide desktop sort controls on mobile */
    .submissions-header__sort {
        display: none !important;
    }
    
    .submissions-page aside {
        margin-top: 0;
    }
}

/* ============================================
   Submissions Content Area
   ============================================ */

.submissions-content {
    min-width: 0;
    padding-top: 132px;
    padding-left: 48px;
    background-color: #FFFFFF;
}

@media (max-width: 991px) {
    .submissions-content {
        padding-left: 0;
        padding-top: 124px;
    }
}

.submissions-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .submissions-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.submissions-header__count {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    margin: 0;
}

.submissions-header__count strong {
    color: #101828;
}

.submissions-header__sort {
    display: flex;
    align-items: center;
    gap: 24px;
}

.submissions-header__sort-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.submissions-header__sort-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
}

.submissions-header__select {
    padding: 8px 32px 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    background: #FFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%230276CF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 1px 2px 0 rgba(29, 41, 61, 0.05);
}

/* ============================================
   Submissions Grid with Separators
   ============================================ */

.submissions-grid {
    display: grid;
    gap: 0;
}

@media (min-width: 768px) {
    .submissions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Row divider styling */
.submissions-grid__divider {
    grid-column: 1 / -1;
    border: none;
    height: 1px;
    background-color: #E5E7EB;
    margin: 24px 0;
    opacity: 1;
}

/* ============================================
   Submission Listing Card
   ============================================ */

.submission-card {
    background: #FFFFFF;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #E5E7EB;
}

.submission-card:first-child {
    border-left: 1px solid #E5E7EB;
}

/* Mobile: single column */
@media (max-width: 767px) {
    .submission-card,
    .submission-card:first-child {
        padding: 0px 12px;
        margin-bottom: 32px;
        border-left: 1px solid #E5E7EB;
        border-bottom: none;
    }
    
    .submissions-grid__divider {
        display: none;
    }
    
    .submission-card:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
    }
}

.submission-card__date {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-text-body-subtle);
    margin-bottom: 8px;
}

.submission-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 12px;
    line-height: 1.2;
}
.submission-card__title a:hover {
    text-decoration: underline;
}
.submission-card__text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text-text-body);
    margin-bottom: 16px;
    flex: 1;
}

.submission-card__text p {
    margin: 0 0 12px 0;
}

.submission-card__text p:last-child {
    margin-bottom: 0;
}

.submission-card__link,
.read-more-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;
    transition: color 0.2s;
    margin-top: auto;
}

.submission-card__link:hover,
.read-more-link:hover {
    color: #0276CF;
}

.submission-card__link svg,
.read-more-link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Annual Reports Page
   ============================================ */

.annual-reports-page {
    padding: var(--spacing-12, 48px) 0;
}

.annual-reports-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (min-width: 768px) {
    .annual-reports-grid {
        gap: 20px;
    }
    
    .annual-reports-grid > .annual-report-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 296px;
        max-width: calc(50% - 10px);
    }
}

.annual-reports-grid__row-divider {
    display: none;
}

/* ============================================
   Annual Report Card
   ============================================ */

.annual-report-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    overflow: hidden;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E5E7EB;
}

@media (min-width: 576px) {
    .annual-report-card {
        flex-direction: row;
        gap: 40px;
    }
}

.annual-report-card__image {
    flex-shrink: 0;
    width: 100%;
    max-width: 200px;
    height: auto;
    border: 4px solid #FFFFFF;
    box-shadow: 0px 8px 10px -6px rgba(29, 41, 61, 0.1), 0px 20px 25px -5px rgba(29, 41, 61, 0.1);
}

@media (min-width: 576px) {
    .annual-report-card__image {
        width: 129px;
        height: 182px;
    }
}

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

.annual-report-card__content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 20px;
}

.annual-report-card__heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.annual-report-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.annual-report-card__date {
    color: var(--colors-text-text-body-subtle, #6A7282);
    font-family: Satoshi;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.annual-report-card__title a:hover {
    text-decoration: underline;
}
.annual-report-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: #101828;
    margin: 0;
    line-height: 1.2;
}

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

.annual-report-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #1C398E;
    text-decoration: none;
    transition: color 0.2s;
}

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

.annual-report-card__link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Directors Page
   ============================================ */

.directors-page {
    padding: 64px 0;
    background-color: #FFFFFF;
}

.directors-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 576px) {
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 992px) {
    .directors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* ============================================
   Director Card
   ============================================ */

.director-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 11.25%, #FFF 100%), rgba(177, 218, 244, 0.30);
    padding: 32px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.director-card__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #E5E7EB;
}

.director-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-card__name {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #101828;
    margin: 0 0 10px 0;
}
.director-card__name a:hover {
    text-decoration: underline;
}
.director-card__credentials {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #1C398E;
    margin: 0;
    display: block;
}

.director-card__role {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6A7282;
    border-top: 1px solid #E5E7EB;
    padding-top: 10px;
    margin-top: 10px;
    display: block;
    width: 100%;
}

/* ============================================
   Join Team Section
   ============================================ */

.join-team-section {
    padding: 0;
    background-color: #FFF3D6;
}









.join-team-section__inner {
    display: grid;
    gap: 0;
    align-items: start;
    padding: 0px 0 80px 0;
}

@media (min-width: 768px) {
    .join-team-section__inner {
        grid-template-columns: 1fr 1fr;
    }
}

.join-team-section__content {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) {
    .join-team-section__content {
        padding-left: 0;
        padding-right: 0;
        order: 2;
    }
    
    .join-team-section__image {
        order: 1;
    }
}

@media (min-width: 768px) {
    .join-team-section__content {
        padding: 0 48px 0 0;
    }
}

.join-team-section__title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.4px;
    color: #101828;
    margin: 0 0 16px 0;
}

.join-team-section__text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.18px;
    color: #4A5565;
    margin: 0 0 24px 0;
}
.join-team-section__header {
    padding: 80px 0 0px 0;
}
@media (max-width: 767px) {
    .join-team-section__header {
        padding: 40px 0 0px 0;
    }
    .join-team-section__hr {
        display: none;
    }
    .join-team-section__content {
        margin-top: 20px;
    }
}
.join-team-section__hr {
   
    margin: 0 0 24px 0;
    border: none;
    border-top: 1px solid #D2CBB7;
}

.join-team-section .btn {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 20px;
    gap: 6px;
    width: auto;
    max-width: fit-content;
}

.join-team-section__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

@media (min-width: 768px) {
    .join-team-section__image {
        aspect-ratio: auto;
      
    }
}

.join-team-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Reports Landing Hero
   ============================================ */

.hero--reports .hero__overlay--reports {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 30%, rgba(0, 0, 0, 0.70) 90%);
}

.hero__title--italic {
    font-style: italic;
}

/* ============================================
   Quote Section
   ============================================ */

.quote-section {
    padding: 80px 0;
}
@media screen and (max-width: 767px) {
    .quote-section {
        padding: 40px 0;
    }
}
.quote-section__quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-section__quote p {
    font-family: "Crimson Text";
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    color: var(--colors-text-text-fg-brand-strong, #1C398E);
    line-height: 110%;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .quote-section__quote p {
        font-size: 28px;
    }
}

.quote-section__cite {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    font-style: normal;
    display: block;
    margin-top: 16px;
}

/* ============================================
   Featured Report Section
   ============================================ */

.featured-content-section {
    padding: 0px 0 80px 0;
    
}
@media (max-width: 992px) {
    #main-content.featured-content-section {
        padding-top: 80px;
    }
}

@media (min-width: 992px) {
    

    .featured-content-section {
        padding: 24px 0 80px 0;
    }
}
.featured-content-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .featured-content-section__inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        border-top: 1px solid var(--colors-border-border-base-medium, #E5E7EB);
    padding-top: 24px;

    }
}

.featured-content-section__content {
    order: 2;
    border-top: 1px solid var(--color-border-border-base);
    padding-top: 24px;
}

.featured-content-section__image {
    position: relative;
    order: 1;
}

@media (min-width: 992px) {
    .featured-content-section__content {
        order: 1;
        border-top: none;
        padding-top: 0;
    }
    
    .featured-content-section__image {
        order: 2;
    }
}

.featured-content-section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #0276CF;
    margin-bottom: 12px;
}

.featured-content-section__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: #101828;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .featured-content-section__title {
        font-size: 40px;
    }
}

.featured-content-section__text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: #4A5565;
    margin-bottom: 24px;
}

.featured-content-section__image > img {
    width: 100%;
    height: auto;
    display: block;
}

/* Optional icon overlay on featured section image (centered, 80×80) */
.featured-content-section__icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

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

.featured-content-section__video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.featured-content-section__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   Theme Page - Scoped Styles
   ============================================ */

/* Remove default padding-top from sections */
.theme-page .featured-content-section {
    padding-top: 0;
}

/* 80px gap between hero and first section */
.theme-page .hero--reports + .featured-content-section {
    margin-top: 80px;
}

/* Horizontal divider lines above each section (no extra padding) */
.theme-page .featured-content-section__inner {
    border-top: 1px solid var(--colors-border-border-base-medium, #E5E7EB);
    padding-top: 24px;
}

/* Reversed layout modifier (opt-in) - image left, content right on desktop */
@media (min-width: 992px) {
    .featured-content-section--reversed .featured-content-section__content {
        order: 2;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .featured-content-section--reversed .featured-content-section__image {
        order: 1;
    }
}

/* Theme Details Page Specific Styles */
.theme-details-page .featured-content-section {
    padding-top: 80px;
}

@media (min-width: 992px) {
    .theme-details-page .featured-content-section--reversed .featured-content-section__content {
        padding-left: 0;
    }
}

/* Dark gradient wrapper for combined sections */
.dark-gradient-wrapper {
    background: linear-gradient(180deg, #101828 0%, #1D2E4C 100%);
    padding: 80px 0;
}

/* Dark variant modifier for featured-content-section */
.featured-content-section--dark {
    background: #101929;
    padding: 80px 0;
}

/* No background/padding when inside wrapper */
.dark-gradient-wrapper .featured-content-section--no-bg {
    background: transparent;
    padding: 0;
    padding-bottom: 64px;
}

.dark-gradient-wrapper .acola-reports-section--no-bg {
    background: transparent;
    padding: 0;
}

@media (min-width: 992px) {
    .dark-gradient-wrapper .featured-content-section--no-bg {
        padding-bottom: 80px;
    }
    
    .dark-gradient-wrapper .acola-reports-section--no-bg {
        padding-top: 80px;
    }
}

.featured-content-section--dark .featured-content-section__inner {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.featured-content-section--dark .featured-content-section__title {
    color: #FFFFFF;
}

.featured-content-section--dark .featured-content-section__title a {
    color: #FFFFFF;
}

.featured-content-section--dark .featured-content-section__text {
    color: #FFFFFF;
}

.featured-content-section--dark .read-more-link {
    color: #279CF5;
}

.featured-content-section--dark .read-more-link svg path {
    fill: #279CF5;
}

/* ============================================
   Carousel Header Component (Reusable)
   ============================================ */

.carousel-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.carousel-header__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.4px;
    color: #101828;
    margin: 0;
}

@media (min-width: 768px) {
    .carousel-header__title {
        font-size: 48px;
    }
}

/* Dark variant for dark backgrounds */
.carousel-header--dark .carousel-header__title {
    color: #FFFFFF;
}

.carousel-header__controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.carousel-header__indicator {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #4A5565;
    white-space: nowrap;
}

.carousel-header--dark .carousel-header__indicator {
    color: #FFFFFF;
}

.carousel-header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
}

.carousel-header__btn:hover {
    opacity: 0.7;
}

.carousel-header__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-header__btn svg,
.carousel-header__btn img {
    width: 32px;
    height: 32px;
    display: block;
}

.carousel-header__btn path {
    fill: #4A5565;
}

.carousel-header--dark .carousel-header__btn path {
    fill: #FFFFFF;
}

.featured-report-section {
    padding: 64px 0;
    background-color: #FFFFFF;
}

.featured-report-section__inner {
    display: grid;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .featured-report-section__inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.featured-report-section__image {
    border-radius: 0;
    overflow: hidden;
    background-color: #E5E7EB;
}

.featured-report-section__image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-report-section__label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0276CF;
    margin-bottom: 8px;
    display: block;
}

.featured-report-section__title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #101828;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .featured-report-section__title {
        font-size: 36px;
    }
}

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

/* ============================================
   ACOLA Reports Section
   ============================================ */

.acola-reports-section {
    padding: 80px 0;
    
    background: linear-gradient(0deg, #020304 0%, #1C2E4A 100%);
}

.acola-reports-section__header {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

@media (min-width: 992px) {
    .acola-reports-section__header {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }
}

.acola-reports-section__title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: #FFFFFF;
    margin: 0;
}

@media (min-width: 768px) {
    .acola-reports-section__title {
        font-size: 48px;
    }
}

.acola-reports-section__intro {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255);
    margin: 0;
}

.acola-reports-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 576px) {
    .acola-reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .acola-reports-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.acola-reports-section__actions {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* ============================================
   ACOLA Report Card
   ============================================ */

.acola-report-card {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.acola-report-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #E5E7EB;
}

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

.acola-report-card__content {
    padding: 24px 24px 16px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.acola-report-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 12px;
    line-height: 1.3;
}

.acola-report-card__title a:hover {
    text-decoration: underline;
}
.acola-report-card__text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #4A5565;
    margin-bottom: 12px;
    flex: 1;
}

.acola-report-card__footer {
    border-top: 1px solid var(--color-gray-200);
    padding-top: 12px;
    margin-top: auto;
}

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

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

.acola-report-card__link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Project Partners Section
   ============================================ */

.project-partners-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    
}

.project-partners-section__header {
    margin-bottom: 64px;
    padding-top: 24px;
    border-top: 1px solid var(--colors-border-border-base-medium, #E5E7EB);
}

@media (min-width: 768px) {
    .project-partners-section__header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }
}

.project-partners-section__title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: #101828;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .project-partners-section__title {
        font-size: 48px;
        margin-bottom: 0;
    }
}

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

.project-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: center;
    justify-items: center;
}

@media (min-width: 576px) {
    .project-partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (min-width: 992px) {
    .project-partners-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 48px;
    }
}

.project-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.project-partner:hover {
    opacity: 0.7;
}

.project-partner img {
    width: auto;
    height: 80px;
    object-fit: contain;
}

/* ============================================
   News Listing Grid
   ============================================ */

/* ============================================
   News Page Layout
   ============================================ */

.news-page {
    padding: 0 0 80px;
    background-color: #FFFFFF;
    margin-top: -80px;
    position: relative;
}

/* Override Bootstrap container for filters to extend left */
.news-page > .container {
    max-width: 100%;
    padding-left: 0;
}

@media (min-width: 992px) {
    .news-page > .container {
        max-width: calc(var(--bs-container-lg, 960px) + ((100vw - var(--bs-container-lg, 960px)) / 2));
        margin-left: 0;
        margin-right: auto;
        padding-right: calc(var(--bs-gutter-x, 0.75rem) * 0.5);
    }
}

@media (min-width: 1200px) {
    .news-page > .container {
        max-width: calc(var(--bs-container-xl, 1140px) + ((100vw - var(--bs-container-xl, 1140px)) / 2));
    }
}

@media (min-width: 1400px) {
    .news-page > .container {
        max-width: calc(var(--bs-container-xxl, 1320px) + ((100vw - var(--bs-container-xxl, 1320px)) / 2));
    }
}

@media (min-width: 1920px) {
    .news-page {
        max-width: 1920px;
        margin: 0 auto;
    }
    
    .news-page > .container {
        max-width: 1440px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}

.news-page aside {
    position: relative;
    z-index: 4;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .news-page > .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Hide the sidebar column on mobile */
    .news-page > .container > .row > .col-lg-3 {
        display: none;
    }
    
    /* Make main content full width on mobile */
    .news-page > .container > .row > .col-lg-9 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================================
   News Content Area
   ============================================ */

.news-content {
    min-width: 0;
    padding-top: 132px;
    padding-left: 48px;
}

@media (max-width: 991px) {
    .news-content {
        padding-left: 0;
        padding-top: 124px;
    }
}

.news-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .news-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

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

.news-header__count strong {
    font-weight: 600;
    color: #101828;
}

.news-header__sort {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 991px) {
    .news-header__sort {
        display: none;
    }
}

.news-header__sort-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-header__sort-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
}

.news-header__select {
    padding: 8px 32px 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    background: #FFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%230276CF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 1px 2px 0 rgba(29, 41, 61, 0.05);
}

.news-listing-grid {
    display: grid;
    row-gap: 24px;
}

@media (min-width: 768px) {
    .news-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 32px;
    }
}

/* ============================================
   News Listing Card
   ============================================ */

.news-listing-card {
    background: #FFFFFF;
    overflow: hidden;
    border-left: 1px solid var(--colors-border-border-base-medium, #E5E7EB);
    padding-left: 20px;
    padding-right: 20px;
}

.news-listing-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #E5E7EB;
}

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

.news-listing-card__content {
    padding: 24px 0;
}

.news-listing-card__date {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-text-body-subtle);
    margin-bottom: 8px;
    display: block;
}

.news-listing-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}
.news-listing-card__title a:hover {
    text-decoration: underline;
}
.news-listing-card__text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-text-body-subtle);
    margin-bottom: 16px;
}

.news-listing-card__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;
    transition: color 0.2s;
}

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

.news-listing-card__link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Events Page Layout
   ============================================ */

.events-page {
    padding: 0 0 80px;
    background-color: #FFFFFF;
    margin-top: -80px;
    position: relative;
}

/* Override Bootstrap container for filters to extend left */
.events-page > .container {
    max-width: 100%;
    padding-left: 0;
}

@media (min-width: 992px) {
    .events-page > .container {
        max-width: calc(var(--bs-container-lg, 960px) + ((100vw - var(--bs-container-lg, 960px)) / 2));
        margin-left: 0;
        margin-right: auto;
        padding-right: calc(var(--bs-gutter-x, 0.75rem) * 0.5);
    }
}

@media (min-width: 1200px) {
    .events-page > .container {
        max-width: calc(var(--bs-container-xl, 1140px) + ((100vw - var(--bs-container-xl, 1140px)) / 2));
    }
}

@media (min-width: 1400px) {
    .events-page > .container {
        max-width: calc(var(--bs-container-xxl, 1320px) + ((100vw - var(--bs-container-xxl, 1320px)) / 2));
    }
}

@media (min-width: 1920px) {
    .events-page {
        max-width: 1920px;
        margin: 0 auto;
    }
    
    .events-page > .container {
        max-width: 1440px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}

/* ============================================
   Events Filters Sidebar
   ============================================ */

.events-page aside {
    position: relative;
    z-index: 4;
    margin-top: 60px;
}

.events-filters {
    border-radius: 0 24px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 11.25%, #FFF 100%), linear-gradient(0deg, #FFF3D6 0%, #FFF3D6 100%), #FFF;
    padding: 32px 24px 32px 24px;
    height: fit-content;
    margin-top: -10px;
}

@media (min-width: 992px) {
    .events-filters {
        /* Extend to left edge of viewport */
        margin-left: calc(-1 * ((100vw - var(--bs-container-lg, 960px)) / 2));
        padding-left: calc(((100vw - var(--bs-container-lg, 960px)) / 2) + 24px);
    }
}

@media (min-width: 1920px) {
    .events-filters {
        /* In Full HD, extend to left edge of 1440px container */
        margin-left: calc(-1 * ((1440px - 1280px) / 2));
        padding-left: calc(((1440px - 1280px) / 2) + 24px);
    }
}

@media (min-width: 1200px) {
    .events-filters {
        margin-left: calc(-1 * ((100vw - var(--bs-container-xl, 1140px)) / 2));
        padding-left: calc(((100vw - var(--bs-container-xl, 1140px)) / 2) + 24px);
    }
}

@media (min-width: 1400px) {
    .events-filters {
        margin-left: calc(-1 * ((100vw - var(--bs-container-xxl, 1320px)) / 2));
        padding-left: calc(((100vw - var(--bs-container-xxl, 1320px)) / 2) + 24px);
    }
}

@media (max-width: 991px) {
    /* Hide desktop filters on mobile - use mobile filter panel instead */
    .events-filters {
        display: none;
    }
    
    /* Hide the sidebar column on mobile */
    .events-page > .container > .row > .col-lg-3 {
        display: none;
    }
    
    /* Make main content full width on mobile */
    .events-page > .container > .row > .col-lg-9 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .events-page > .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ============================================
   Events Content Area
   ============================================ */

.events-content {
    min-width: 0;
    padding-top: 132px;
    padding-left: 48px;
}

@media (max-width: 991px) {
    .events-content {
        padding-left: 0;
        padding-top: 124px;
    }
}

.events-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .events-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.events-header__count {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    margin: 0;
}

.events-header__sort {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 991px) {
    .events-header__sort {
        display: none;
    }
}

.events-header__sort-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.events-header__sort-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
}

.events-sort {
    padding: 8px 32px 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    background: #FFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%230276CF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    transition: border-color 0.2s;
    box-shadow: 0 1px 2px 0 rgba(29, 41, 61, 0.05);
}

.events-sort:hover {
    border-color: #0276CF;
}

.events-sort:focus {
    border-color: #0276CF;
}

/* ============================================
   Events Listing Grid
   ============================================ */

.events-listing-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ============================================
   Event Card
   ============================================ */

.event-card {
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    padding: 24px 0;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: flex-start;
}

.event-card:first-child {
    padding-top: 0;
}

.event-card:last-child {
    border-bottom: 1px solid #E5E7EB;
}

@media (max-width: 767px) {
    .event-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.event-card__image {
    width: 240px;
    flex-shrink: 0;
    overflow: hidden;
    background: #F4F4F4;
}

@media (max-width: 767px) {
    .event-card__image {
        width: 100%;
    }
}

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

.event-card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.event-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: var(--colors-text-text-heading, #101828);
    margin: 0;
}
.event-card__title a:hover {
    text-decoration: underline;
}
.event-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-navy);
    margin: 0;
}

.event-card__meta-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #0276CF;
}

/* Fix icon color for SVG images - convert to blue #0276CF */
.event-card__meta img.event-card__meta-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(2000%) hue-rotate(195deg) brightness(0.95) contrast(1.1);
}

.event-card__description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-600);
    margin: 0;
}

.event-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
}

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

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

.event-card__link svg {
    width: 20px;
    height: 20px;
}

.event-card__badges {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
    flex-wrap: nowrap;
}

.event-badge {
    display: 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;
}

.event-badge:not(:last-child) {
    border-right: none;
}

.event-badge__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


/* ============================================
   Reports Page - Report Series
   ============================================ */

.report-series-section {
    padding: 64px 0 0;
    background-color: #F4F4F4;
}

.report-series-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .report-series-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.report-series-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 11.25%, #FFF 100%), rgba(177, 218, 244, 0.30);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.2s;
}

.report-series-card:hover {
    transform: translateY(-4px);
}

.report-series-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 12px;
}
.report-series-card__title a:hover {
    text-decoration: underline;
}
.report-series-card__text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #4A5565;
    margin-bottom: 16px;
    flex: 1;
}

.report-series-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #1C398E;
}

.report-series-card__link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Reports Listing Grid
   ============================================ */

.reports-listing-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .reports-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* ============================================
   Report Listing Card
   ============================================ */

.report-listing-card {
    background: #FFFFFF;
    overflow: hidden;
}

.report-listing-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #E5E7EB;
}

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

.report-listing-card__content {
    padding: 24px;
}

.report-listing-card__series {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0276CF;
    margin-bottom: 8px;
    display: block;
}

.report-listing-card__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 12px;
    line-height: 1.3;
}
.report-listing-card__title a:hover {
    text-decoration: underline;
}
.report-listing-card__text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #4A5565;
    margin-bottom: 16px;
}

.report-listing-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;
}

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

.report-listing-card__link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Listing Pagination
   ============================================ */

.listing-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.listing-pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid var(--color-gray-200);
    border-radius: 4px;
    color: #101828;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}

.listing-pagination__btn:hover {
    background-color: #F4F4F4;
    border-color: #101828;
}

.listing-pagination__btn svg {
    width: 20px;
    height: 20px;
}

.listing-pagination__info {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
}

/* ============================================
   Pagination (Reports page style)
   ============================================ */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-top: 48px;
    margin-top: 24px;
}

.pagination--left {
    justify-content: flex-start;
}

.pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 8px 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #4A5565;
    text-decoration: none;
    border: 1px solid #E5E7EB;
    background: #fff;
    transition: all 0.2s;
    margin-right: -1px;
}

.pagination__link:hover {
    background-color: #F9FAFB;
}

.pagination__numbers {
    display: flex;
    align-items: center;
    gap: 0;
}

.pagination__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #4A5565;
    text-decoration: none;
    border: 1px solid #E5E7EB;
    background: #fff;
    transition: all 0.2s;
    margin-right: -1px;
}

.pagination__number:hover {
    background-color: #F9FAFB;
}

.pagination__number--active {
    background-color: #F9FAFB;
    color: #1447E6;
    font-weight: 500;
}

.pagination__ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    border: 1px solid #E5E7EB;
    background: #fff;
    margin-right: -1px;
}

/* ============================================
   Report Hero Section
   ============================================ */

.report-hero {
    padding: 48px 0;
    background: var(--colors-background-bg-secondary-soft, #F9FAFB);
}

.report-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 991px) {
    .report-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.report-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

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

.report-hero__download-size {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.report-hero__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.report-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-hero__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 32px;
    text-align: right;
    /* Warm overlay treatment to match report cover styling */
    background: linear-gradient(0deg, rgba(181, 143, 0, 0.62) 0%, rgba(181, 143, 0, 0.62) 100%);
}

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

.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) {
    .report-hero__image-text {
        font-size: 28px;
    }
}

/* ============================================
   Report Detail Page
   ============================================ */

.report-detail-page {
    padding: 64px 0 80px;
    background-color: #FFFFFF;
}

.report-detail__main {
    padding-right: 48px;
}

@media (max-width: 991px) {
    .report-detail__main {
        padding-right: 0;
        margin-bottom: 48px;
    }
}

.report-detail__sidebar {
    align-self: flex-start;
}

@media (min-width: 992px) {
    .report-detail__sidebar {
        position: sticky;
        top: 100px;
    }
}

/* ============================================
   Report Section
   ============================================ */

.report-section {
    margin-bottom: 48px;
}

.report-section:last-child {
    margin-bottom: 0;
}

.report-section__title {
    color: var(--colors-text-text-heading, #101828);
    font-family: "Crimson Text";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 30.8px */
    letter-spacing: -0.4px;
    margin-bottom: 24px;
}
.report-section__title a:hover {
    text-decoration: underline;
}
.report-section__heading-five {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 16px;
}

.report-section__content {
    font-family: var(--font-body);
}

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

.report-section__content p:first-child {
    color: var(--colors-text-text-black, #101828);
    font-family: var(--font-body);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    letter-spacing: 0.18px;
}

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

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

.report-section__content a:hover {
    color: #0266B3;
}

/* ============================================
   Report Image
   ============================================ */

.report-image {
    margin: 48px 0;
}

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

.report-image__caption {
    font-family: var(--font-body);
    font-size: 14px;
    color: #6B7280;
    margin-top: 12px;
    text-align: center;
}

/* ============================================
   Report Quote
   ============================================ */

.report-quote {
    margin: 32px 0;
    padding: 32px;
    background-color: #F9FAFB;
    border-left: 4px solid #0276CF;
}

.report-quote__text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    line-height: 1.5;
    color: #101828;
    margin-bottom: 16px;
}

.report-quote__footer {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 16px;
}

.report-quote__author {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #101828;
    font-style: normal;
}

.report-quote__role {
    font-family: var(--font-body);
    font-size: 14px;
    color: #6B7280;
}

/* ============================================
   Report Tabs
   ============================================ */

.report-tabs {
    margin: 48px 0;
}

.report-tabs__list {
    display: flex;
    gap: 0;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    margin-bottom: 24px;
    width: 100%;
    flex-wrap: wrap;
}

.report-tabs__tab {
    padding: 12px 24px;
    border: none;
    background: #FFFFFF;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #4A5565;
    cursor: pointer;
    transition: all 0.2s;
    border-right: 1px solid #E5E7EB;
    white-space: nowrap;
}

.report-tabs__tab:hover {
    color: var(--color-blue-dark);
    background: var(--color-gray-50);
}

.report-tabs__tab--active {
    color: #FFFFFF;
    background: var(--color-blue-dark);
}

.report-tabs__tab--active:hover {
    color: #FFFFFF;
    background: var(--color-blue-dark);
}

.report-tabs__tab:last-child {
    border-right: none;
}

.report-tabs__panel {
    display: none;
}

.report-tabs__panel--active {
    display: block;
}

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

.report-tabs__list-content li {
    margin-bottom: 12px;
}

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

/* ============================================
   Report Video
   ============================================ */

.report-video {
    margin: 48px 0;
}

.report-video__player {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 16px;
}

.report-video__thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 2;
}

.report-video__controls {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.report-video__share,
.report-video__expand {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.report-video__share:hover,
.report-video__expand:hover {
    background: rgba(0, 0, 0, 0.8);
}

.report-video__transcript {
    padding: 8px 16px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #4A5565;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 16px;
}

.report-video__transcript:hover {
    border-color: #0276CF;
    color: #0276CF;
}

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

/* ============================================
   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: var(--spacing-5, 20px) var(--spacing-6, 24px);
    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: var(--border-border-width-border, 1px) solid var(--colors-border-border-base, #E5E7EB);
    background: var(--colors-background-bg-secondary, #F9FAFB);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.content-accordion--open .content-accordion__content {
    max-height: 2000px;
}

.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;
}

/* ============================================
   Report Accordions (backwards compatibility)
   ============================================ */

.report-accordions {
    margin: 48px 0;
}

.report-accordion {
    border-bottom: 1px solid #E5E7EB;
}

.report-accordion:first-child {
    border-top: 1px solid #E5E7EB;
}

.report-accordion__toggle {
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    transition: all 0.2s;
}

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

.report-accordion--open .report-accordion__toggle {
    background: #4A5565;
    color: #FFFFFF;
    padding: 20px 24px;
    margin: 0;
    border-radius: 0;
}

.report-accordion--open .report-accordion__toggle:hover {
    background: #4A5565;
    color: #FFFFFF;
}

.report-accordion__title {
    flex: 1;
}

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

.report-accordion--open .report-accordion__icon {
    transform: rotate(180deg);
    color: #FFFFFF;
}

.report-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.report-accordion--open .report-accordion__content {
    max-height: 2000px;
    padding: 24px 0 24px 0;
}

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

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

/* ============================================
   Report Profiles
   ============================================ */

.report-profiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

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

.report-profile {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.report-profile__image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #F4F4F4;
}

.report-profile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-profile__info {
    flex: 1;
    min-width: 0;
}

.report-profile__name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 4px 0;
}
.report-profile__name a:hover {
    text-decoration: underline;
}
.report-profile__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #4A5565;
    margin: 0 0 4px 0;
}

.report-profile__affiliation {
    font-family: var(--font-body);
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* ============================================
   Report Share
   ============================================ */

.report-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 48px 0;
}

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

.report-share__buttons {
    display: flex;
    gap: 12px;
}

.report-share__button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A5565;
    text-decoration: none;
    transition: all 0.2s;
}

.report-share__button:hover {
    border-color: #0276CF;
    color: #0276CF;
    background: #F0F8FF;
}

/* ============================================
   Report Sidebar
   ============================================ */

.report-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.report-sidebar__section {
    padding-bottom: 32px;
    border-bottom: 1px solid #E5E7EB;
}

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

.report-sidebar__download {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.report-sidebar__download-size {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

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

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

.report-tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #4A5565;
    text-decoration: none;
    transition: all 0.2s;
}

.report-tag:hover {
    border-color: #0276CF;
    color: #0276CF;
    background: #F0F8FF;
}

.report-sidebar__funding {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.report-sidebar__funding-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.report-sidebar__funding-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.report-sidebar__funding-text {
    font-family: var(--font-body);
    font-size: 12px;
    color: #4A5565;
    margin: 0;
}

.report-sidebar__accordion {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

.report-sidebar__accordion-toggle {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
    background: #F9FAFB;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #101828;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.report-sidebar__accordion-toggle:hover {
    background: #F4F4F4;
}

.report-sidebar__accordion-title {
    flex: 1;
    text-align: left;
}

.report-sidebar__accordion-icon {
    flex-shrink: 0;
    transition: transform 0.2s;
}

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

.report-sidebar__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.report-sidebar__accordion--open .report-sidebar__accordion-content {
    max-height: 2000px;
    padding: 16px;
}

/* ============================================
   Report Briefing Form
   ============================================ */

.report-briefing-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.report-briefing-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.report-briefing-form__label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #101828;
}

.report-briefing-form__input,
.report-briefing-form__textarea {
    padding: 10px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    background: #FFFFFF;
    font-family: var(--font-body);
    font-size: 14px;
    color: #101828;
    outline: none;
    transition: border-color 0.2s;
    box-shadow: 0 1px 2px 0 rgba(29, 41, 61, 0.05);
}

.report-briefing-form__input:focus,
.report-briefing-form__textarea:focus {
    border-color: #0276CF;
}

.report-briefing-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.report-briefing-form__submit {
    width: 100%;
    justify-content: center;
}

.report-briefing-form__disclaimer {
    font-family: var(--font-body);
    font-size: 12px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

.report-briefing-form__disclaimer a {
    color: #0276CF;
    text-decoration: underline;
}

/* ============================================
   Related Items
   ============================================ */

.related-items {
    padding: 80px 0;
    background-color: var(--color-bg-warm);
}

.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__title a:hover {
    text-decoration: underline;
}
.related-items__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@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: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.related-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-item__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

.related-item__content {
    padding: 24px;
}

.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: #101828;
    margin-bottom: 12px;
    line-height: 1.2;
}
.related-item__title a:hover {
    text-decoration: underline;
}
.related-item__text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #4A5565;
    margin-bottom: 16px;
}

.related-item__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;
}

.related-item__link:hover {
    color: #0276CF;
}

.related-item__link svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   BOARD OF DIRECTORS PAGE STYLES
   ======================================== */

.board-page {
    padding: 60px 0 0;
    background: #fff;
}

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

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

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

/* Board Card */
.board-card {
    background: #FDF8F3;
    border-radius: 0;
    padding: 32px;
    text-align: left;
}

.board-card__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #E5E7EB;
    margin-bottom: 20px;
}

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

.board-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
}

.board-card__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.board-card__affiliation {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #0276CF;
    text-decoration: none;
    margin: 0;
    transition: color 0.2s;
}

.board-card__affiliation:hover {
    color: #1C398E;
    text-decoration: underline;
}

.board-card__affiliation--long {
    color: #D97706;
}

.board-card__affiliation--long:hover {
    color: #B45309;
}

.board-card__role {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4A5565;
    margin: 0;
    line-height: 1.5;
}

/* Join Our Team Section */
.join-team {
    padding: 80px 0;
    background: #FDF8F3;
    margin-top: 80px;
}

.join-team__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 767px) {
    .join-team__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.join-team__content {
    max-width: 400px;
}

@media (max-width: 767px) {
    .join-team__content {
        max-width: 100%;
    }
}

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

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

.join-team__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.join-team__image {
    display: flex;
    justify-content: flex-end;
}

.join-team__image img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Search Results Page
   ============================================ */

.search-results-page {
    padding: 48px 0 80px;
    background-color: #FFFFFF;
}

@media (min-width: 1920px) {
    .search-results-page {
        max-width: 1920px;
        margin: 0 auto;
    }
    
    .search-results-page > .container {
        max-width: 1440px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Search Form */
.search-results-form {
    margin-bottom: 32px;
}

@media (min-width: 992px) {
    .search-results-form {
        max-width: 520px; /* 5 columns - matches Figma */
    }
}

.search-results-form__label {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 8px;
}

.search-results-form__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(29, 41, 61, 0.05);
}

.search-results-form__icon {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 1;
    /* Orange color from Figma: rgba(208, 56, 1, 1) = #D03801 */
    filter: brightness(0) saturate(100%) invert(35%) sepia(98%) saturate(2000%) hue-rotate(5deg) brightness(0.9) contrast(1.1);
}

.search-results-form__input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: none;
    border-radius: 4px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    color: #101828;
    outline: none;
    transition: border-color var(--transition);
}

.search-results-form__input:focus {
    outline: none;
}

.search-results-form__input-wrapper:focus-within {
    border-color: #0276CF;
}

/* Hide default Drupal form styling and show custom version */
.search-results-form__drupal-form {
    flex: 1;
    position: relative;
}

.search-results-form__drupal-form .container-inline,
.search-results-form__drupal-form .form-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.search-results-form__drupal-form .form-item,
.search-results-form__drupal-form .js-form-item {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-results-form__drupal-form label {
    display: none !important;
}

.search-results-form__drupal-form .form-search,
.search-results-form__drupal-form input[type="search"],
.search-results-form__drupal-form input[name="keys"] {
    width: 100% !important;
    padding: 10px 12px 10px 40px !important;
    border: none !important;
    border-radius: 4px !important;
    background: transparent !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    color: #101828 !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.search-results-form__drupal-form .button,
.search-results-form__drupal-form .form-submit,
.search-results-form__drupal-form input[type="submit"] {
    display: none !important;
}

/* Results Header */
.search-results-header {
    margin-bottom: 24px;
}

.search-results-header__count {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 28px;
    color: #6A7282;
    margin: 0;
}

.search-results-header__count strong {
    font-weight: 700;
    color: #6A7282;
}

/* Search Results List */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 992px) {
    .search-results-list {
        max-width: 930px; /* 10 columns - matches Figma */
    }
}

/* Search Result Card */
.search-result-card {
    padding: 24px 0;
    border-bottom: 1px solid #E5E7EB;
}

.search-result-card:last-child {
    border-bottom: 1px solid #E5E7EB;
}

.search-result-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #101828;
    margin: 0 0 12px 0;
}

.search-result-card__title a {
    color: #101828;
    text-decoration: none;
    transition: color var(--transition);
}

.search-result-card__title a:hover {
   text-decoration: underline;
}

.search-result-card__description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #4A5565;
    margin: 0 0 12px 0;
}

/* Breadcrumb */
.search-result-card__breadcrumb {
    margin-top: 16px;
}

.search-result-card__breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-result-card__breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-result-card__breadcrumb-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
}

.search-result-card__breadcrumb-separator {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: block;
}

/* All breadcrumb text uses the same style - Satoshi Medium, 14px, #6a7282 */
.search-result-card__breadcrumb-link,
.search-result-card__breadcrumb-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #6A7282;
    text-decoration: none;
}

.search-result-card__breadcrumb-link:hover {
    text-decoration: underline;
}

/* Format Drupal's default search results to match our structure */
.search-results-wrapper {
    display: flex;
    flex-direction: column;
}

/* Hide Drupal's default search form completely */
.search-results-page .search-form,
.search-results-wrapper .search-form,
.search-results-page form.search-form {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Style Drupal's search results list */
.search-results-wrapper .search-results {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-results-wrapper .search-results__item {
    padding: 24px 0;
    border-bottom: 1px solid #E5E7EB;
}

.search-results-wrapper .search-results__item:last-child {
    border-bottom: 1px solid #E5E7EB;
}

/* Format search result title */
.search-results-wrapper .search-result__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #101828;
    margin: 0 0 12px 0;
}

.search-results-wrapper .search-result__title a {
    color: #101828;
    text-decoration: none;
    transition: color var(--transition);
}

.search-results-wrapper .search-result__title a:hover {
    text-decoration: underline;
}

/* Format search result snippet/description */
.search-results-wrapper .search-result__snippet {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #4A5565;
    margin: 0 0 12px 0;
}

.search-results-wrapper .search-result__snippet p {
    margin: 0;
}

/* Format search results info (count, etc.) */
.search-results-wrapper .search-results__count {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 28px;
    color: #6A7282;
    margin: 0 0 24px 0;
}

.search-results-wrapper .search-results__count strong {
    font-weight: 700;
    color: #6A7282;
}

/* Hide Drupal's core pager for search; we use a custom pager */
.search-results-wrapper .pager {
    display: none;
}

/* Wrap Drupal's search results in our list structure */
.search-results-wrapper > .search-results,
.search-results-wrapper .item-list__wrapper > .search-results {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 992px) {
    .search-results-wrapper > .search-results,
    .search-results-wrapper .item-list__wrapper > .search-results {
        max-width: 930px;
    }
}

/* ============================================
   Mobile Filter & Sort Panels
   ============================================ */

/* Mobile Filter Bar - visible on mobile only */
.mobile-filter-bar {
    display: flex;
    border: 1px solid var(--color-gray-200, #E5E7EB);
    background: var(--color-white, #FFFFFF);
}

@media (min-width: 992px) {
    .mobile-filter-bar {
        display: none;
    }
}

.mobile-filter-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* Filter button - dark style */
.mobile-filter-bar__btn--filter {
    background: var(--color-gray-900, #09090B);
    color: var(--color-white, #FFFFFF);
}

.mobile-filter-bar__btn--filter:hover {
    background: #1E2939;
}

.mobile-filter-bar__btn--filter svg {
    color: var(--color-white, #FFFFFF);
}

/* Sort button - light style */
.mobile-filter-bar__btn--sort {
    background: transparent;
    color: var(--color-gray-900, #101828);
}

.mobile-filter-bar__btn--sort:hover {
    background: var(--color-gray-50, #F9FAFB);
}

.mobile-filter-bar__btn--sort svg {
    color: var(--color-gray-900, #101828);
}

.mobile-filter-bar__btn:focus-visible {
    outline: 2px solid var(--color-blue, #0276CF);
    outline-offset: -2px;
}

.mobile-filter-bar__btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Panel Overlay */
.mobile-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1999;
}

.mobile-panel-overlay--open {
    opacity: 1;
    visibility: visible;
}

/* Mobile Filter Panel */
.mobile-filter-panel,
.mobile-sort-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: #FFF3D6;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
}

.mobile-filter-panel--open,
.mobile-sort-panel--open {
    transform: translateX(0);
}

/* Panel Header */
.mobile-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}

.mobile-panel__title {
    font-family: var(--font-heading, 'Crimson Text', serif);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.4px;
    color: var(--color-gray-900, #101828);
    margin: 0;
    flex: 1;
}

.mobile-panel__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-panel__close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-panel__close:focus-visible {
    outline: 2px solid var(--color-blue, #0276CF);
    outline-offset: 2px;
}

.mobile-panel__close svg {
    width: 20px;
    height: 20px;
    color: var(--color-gray-900, #101828);
}

/* Panel Content */
.mobile-panel__content,
.mobile-panel__content form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

/* Panel Form Groups */
.mobile-panel__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-panel__group--dates {
    gap: 16px;
}

.mobile-panel__label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: var(--color-gray-900, #101828);
}

.mobile-panel__label--sub {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

/* Panel Input Fields */
.mobile-panel__input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--color-white, #FFFFFF);
    border: 1px solid var(--color-gray-200, #E5E7EB);
    border-radius: 4px;
    box-shadow: 0 1px 2px 0 rgba(29, 41, 61, 0.05);
}

.mobile-panel__input-wrapper--focused {
    border-color: var(--color-gray-900, #101828);
}

.mobile-panel__input-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #D03801;
}

.mobile-panel__input {
    flex: 1;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    color: var(--color-gray-900, #101828);
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
}

.mobile-panel__input::placeholder {
    color: var(--color-gray-500, #6A7282);
}

/* Date input specific styling for mobile panels */
.mobile-panel__input--date {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.mobile-panel__input--date::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    filter: invert(24%) sepia(91%) saturate(2214%) hue-rotate(14deg) brightness(95%) contrast(101%);
}

.mobile-panel__input--date::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Panel Select Fields */
.mobile-panel__select-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--color-white, #FFFFFF);
    border: 1px solid var(--color-gray-200, #E5E7EB);
    border-radius: 4px;
    box-shadow: 0 1px 2px 0 rgba(29, 41, 61, 0.05);
    position: relative;
}

.mobile-panel__select {
    flex: 1;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    color: var(--color-gray-500, #6A7282);
    background: transparent;
    border: none;
    outline: none;
    appearance: none;
    cursor: pointer;
    padding-right: 24px;
}

.mobile-panel__select-icon {
    position: absolute;
    right: 12px;
    width: 16px;
    height: 16px;
    color: var(--color-blue, #0276CF);
    pointer-events: none;
}

/* Panel Checkboxes */
.mobile-panel__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.mobile-panel__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mobile-panel__checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.mobile-panel__checkbox-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--color-white, #FFFFFF);
    border: 1px solid var(--color-gray-900, #1E2939);
    border-radius: 2px;
    flex-shrink: 0;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.mobile-panel__checkbox-input:checked + .mobile-panel__checkbox-box {
    background: var(--color-gray-900, #1E2939);
    border-color: var(--color-gray-900, #1E2939);
}

.mobile-panel__checkbox-box svg {
    width: 12px;
    height: 12px;
    color: white;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.mobile-panel__checkbox-input:checked + .mobile-panel__checkbox-box svg {
    opacity: 1;
}

.mobile-panel__checkbox-input:focus-visible + .mobile-panel__checkbox-box {
    outline: 2px solid var(--color-blue, #0276CF);
    outline-offset: 2px;
}

.mobile-panel__checkbox-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: var(--color-gray-900, #101828);
}

.mobile-panel__checkbox-count {
    color: var(--color-gray-900, #101828);
}

/* Panel CTAs */
.mobile-panel__cta {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
}

.mobile-panel__submit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--color-gray-900, #09090B);
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: var(--color-white, #FFFFFF);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mobile-panel__submit:hover {
    background: #1E2939;
}

.mobile-panel__submit:focus-visible {
    outline: 2px solid var(--color-blue, #0276CF);
    outline-offset: 2px;
}

.mobile-panel__reset {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--color-gray-900, #101828);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mobile-panel__reset:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-panel__reset:focus-visible {
    outline: 2px solid var(--color-blue, #0276CF);
    outline-offset: 2px;
}

.mobile-panel__reset svg {
    width: 16px;
    height: 16px;
}

/* Body scroll lock when panel is open */
body.mobile-panel-open {
    overflow: hidden;
}

/* ============================================
   Related Event Section
   ============================================ */

.related-event-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.related-event-section__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .related-event-section__inner {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }
}

.related-event-section__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.4px;
    flex-shrink: 0;
    width: auto;
    color: #101828;
    margin: 0;
}

@media (min-width: 768px) {
    .related-event-section__title {
        font-size: 48px;
    }
}

@media (min-width: 992px) {
    .related-event-section__title {
        min-width: 320px;
    }
}

.related-event-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .related-event-card {
        flex-direction: row;
        gap: 40px;
    }
}

.related-event-card__image {
    flex-shrink: 0;
    width: 100%;
    max-width: 240px;
    overflow: hidden;
}

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

.related-event-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-event-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #101828;
    margin: 0;
}

.related-event-card__title a {
    color: inherit;
    text-decoration: none;
}

.related-event-card__title a:hover {
    text-decoration: underline;
}

.related-event-card__meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    color: #101828;
}

.related-event-card__meta svg {
    flex-shrink: 0;
}

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

.related-event-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 4px;
}

.related-event-card__badges {
    display: flex;
    gap: 0;
}

.related-event-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    color: #101828;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    margin-right: -1px;
}

.related-event-card__badge svg {
    flex-shrink: 0;
}

.related-event-section__actions {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 64px;
}

.related-event-section__actions::before,
.related-event-section__actions::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background-color: #E5E7EB;
    transform: translateY(-50%);
}

.related-event-section__actions::before {
    left: 0;
    right: calc(50% + 48px + 90px);
}

.related-event-section__actions::after {
    right: 0;
    left: calc(50% + 48px + 90px);
}

@media (max-width: 767px) {
    .related-event-section__actions {
        margin-top: 40px;
    }
    .related-event-section__actions .btn {
        width: 100%;
        justify-content: center;
    }
    .related-event-section__actions::before,
    .related-event-section__actions::after {
        display: none;
    }
}

/* Dark button variant */
.btn--dark {
    background-color: #09090B;
    color: #FFFFFF;
}

.btn--dark:hover {
    background-color: #1a1a1c;
}

