:root {
    --jcar-navy: #0b1030;
    --jcar-navy-2: #070a1f;
    --jcar-blue: #4c82c3;
    --jcar-border: #cfd6e4;
    --jcar-bg: #f3f5f9;
    --jcar-link: #1f4fbf;
    --jcar-card: #ffffff;
    --jcar-soft: #eef2f7;
    --jcar-soft-2: #f6f8fb;
    --jcar-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

html {
    font-size: 17px;
}

@media (max-width: 576px) {
    html {
        font-size: 16px;
    }
}

body,
.jcar-body {
    background: var(--jcar-bg);
}

.jcar-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.jcar-main {
    flex: 1;
}

.jcar-container {
    width: 100%;
    max-width: 2000px;
    margin-inline: auto;
    padding-inline: clamp(12px, 2vw, 28px);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    z-index: 9999;
    background: #fff;
    padding: 8px 12px;
    border: 2px solid #000;
    border-radius: 6px;
}

    .skip-link:focus {
        left: 8px;
    }

h1, .h1 {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
}

h2, .h2 {
    font-size: 1.8rem;
}

.jcar-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0b1030;
}

.jcar-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.jcar-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11,16,48,0.20), rgba(11,16,48,0.08));
    pointer-events: none;
}

@media (max-width: 768px) {
    .jcar-hero {
        height: 64px;
    }
}

@media (max-width: 576px) {
    .jcar-hero {
        height: 56px;
    }
}

.jcar-titlebar {
    background: linear-gradient(180deg, var(--jcar-navy), var(--jcar-navy-2));
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.jcar-titlebar-inner {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.jcar-site-title {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    line-height: 1.15;
    display: inline-flex;
    align-items: center;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    max-width: 75%;
}

    .jcar-site-title:hover,
    .jcar-site-title:focus {
        color: #fff;
        text-decoration: none;
    }

@media (max-width: 992px) {
    .jcar-titlebar-inner {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .jcar-titlebar-inner {
        padding: 10px 0;
    }

    .jcar-site-title {
        max-width: 68%;
        font-size: 0.98rem;
        line-height: 1.1;
    }

    .jcar-menu-toggle {
        padding: 7px 10px;
        font-size: 0.88rem;
    }
}

@media (max-width: 576px) {
    .jcar-site-title {
        max-width: 64%;
        font-size: 0.92rem;
    }
}

.jcar-topnav-desktop {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: flex-end;
}

.jcar-navlink {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 700;
    padding: 6px 2px;
    border-bottom: 3px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}

    .jcar-navlink:hover,
    .jcar-navlink:focus {
        color: #fff;
        border-bottom-color: rgba(255,255,255,0.55);
    }

    .jcar-navlink.active {
        color: #fff;
        border-bottom-color: #fff;
    }


.jcar-menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 700;
    line-height: 1;
}

    .jcar-menu-toggle:hover,
    .jcar-menu-toggle:focus {
        border-color: rgba(255,255,255,0.55);
        color: #fff;
    }

.jcar-menu-icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

    .jcar-menu-icon::before,
    .jcar-menu-icon::after {
        content: "";
        position: absolute;
        left: 0;
        width: 18px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
    }

    .jcar-menu-icon::before {
        top: -6px;
    }

    .jcar-menu-icon::after {
        top: 6px;
    }

.jcar-menu-text {
    font-size: .95rem;
}


.jcar-mobile-nav-wrap {
    display: none;
}

.jcar-topnav-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 0 14px 0;
}

    .jcar-topnav-mobile .jcar-navlink {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

        .jcar-topnav-mobile .jcar-navlink.active {
            border-bottom-color: #fff;
        }


@media (max-width: 992px) {
    .jcar-titlebar-inner {
        gap: 12px;
    }

    .jcar-topnav-desktop {
        display: none;
    }

    .jcar-menu-toggle {
        display: inline-flex;
    }

    .jcar-mobile-nav-wrap {
        display: block;
    }
}

/*@media (max-width: 640px) {
    .jcar-site-title-full {
        display: none;
    }

    .jcar-site-title-short {
        display: inline;
    }

    .jcar-menu-text {
        display: inline;
    }
}*/


.jcar-page {
    padding-block: clamp(20px, 3vw, 40px);
}


.jcar-main-card,
.jcar-widget {
    background: var(--jcar-card);
    border: 1px solid var(--jcar-border);
    border-radius: 12px;
    box-shadow: var(--jcar-shadow);
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .jcar-main-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.10);
        border-color: rgba(11,16,48,0.25);
    }

    .jcar-widget:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.10);
        border-color: rgba(11,16,48,0.25);
    }

.jcar-section-header,
.jcar-widget-header {
    background: linear-gradient(180deg, var(--jcar-navy), var(--jcar-navy-2));
    color: #fff;
    padding: 12px 16px;
    font-weight: 900;
}

.jcar-section-body {
    padding: 16px;
}

.jcar-widget-body {
    padding: 14px 16px;
}

@media (max-width: 576px) {
    .jcar-main-card,
    .jcar-widget {
        border-radius: 10px;
    }

    .jcar-section-header,
    .jcar-widget-header {
        padding: 10px 14px;
    }

    .jcar-section-body,
    .jcar-widget-body {
        padding: 14px;
    }
}

.jcar-subsection-header {
    background: linear-gradient(90deg, var(--jcar-navy), var(--jcar-blue));
    color: #fff;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(11,16,48,0.10);
}


.jcar-btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border: 1px solid rgba(31,79,191,0.55);
    border-radius: 6px;
    background: #fff;
    color: var(--jcar-link);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

    .jcar-btn-sm:hover,
    .jcar-btn-sm:focus {
        background: #f4f8ff;
        border-color: var(--jcar-link);
        color: #123a97;
        text-decoration: none;
        transform: translateY(-1px);
    }


.jcar-action-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .jcar-action-list li + li {
        margin-top: 8px;
    }

.jcar-action-link {
    display: block;
    padding: 10px 12px;
    border: 1px solid var(--jcar-border);
    border-radius: 8px;
    background: var(--jcar-soft-2);
    color: #234d93;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}

    .jcar-action-link:hover,
    .jcar-action-link:focus {
        background: #edf3ff;
        border-color: rgba(31,79,191,0.35);
        text-decoration: none;
        transform: translateY(-1px);
    }

.jcar-action-link-muted {
    font-size: 0.93rem;
}


.jcar-tile {
    border: 1px solid var(--jcar-border);
    border-radius: 10px;
    padding: 14px;
    height: 100%;
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .jcar-tile:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.10);
        border-color: rgba(31,79,191,0.35);
    }

    .jcar-tile a {
        color: var(--jcar-link);
        font-weight: 700;
        text-decoration: none;
    }

        .jcar-tile a:hover,
        .jcar-tile a:focus {
            text-decoration: underline;
        }

.committee-member-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--jcar-border);
    border-radius: 12px;
    box-shadow: var(--jcar-shadow);
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .committee-member-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.10);
        border-color: rgba(11,16,48,0.20);
    }

.committee-member-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid rgba(11,16,48,0.08);
}

.committee-member-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
}

.committee-member-info {
    padding: 10px 10px 12px;
    background: var(--jcar-soft);
    border-top: 1px solid rgba(11,16,48,0.06);
}

.committee-member-name {
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.committee-member-role {
    font-size: 0.88rem;
    color: #475569;
    margin-bottom: 2px;
    font-weight: 600;
}

.committee-member-meta {
    font-size: 0.84rem;
    color: #64748b;
}


.committee-staff-card {
    border: 1px solid var(--jcar-border);
    border-radius: 10px;
    background: var(--jcar-soft-2);
    padding: 12px 14px;
    height: 100%;
}

.jcar-accordion-static {
    border: 1px solid var(--jcar-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--jcar-shadow);
    background: #fff;
}

.jcar-accordion-static-header {
    padding: 1rem 1.2rem;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(90deg, rgba(11,16,48,0.95), rgba(76,130,195,0.95));
}

.jcar-accordion-static-body {
    padding: 1rem;
    background: #f9fbfd;
}

@media (max-width: 576px) {
    .jcar-accordion-static-header {
        padding: 0.9rem 1rem;
    }

    .jcar-accordion-static-body {
        padding: 0.9rem;
    }
}
.jcar-subsection-card {
    border: 1px solid var(--jcar-border);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.jcar-subsection-body {
    padding: 16px;
}


.rulemaking-body p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.rulemaking-body .accordion-item,
.reports-accordion .accordion-item,
.jcar-accordion .accordion-item {
    border: 1px solid var(--jcar-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: var(--jcar-shadow);
}

.rulemaking-body .accordion-button,
.reports-accordion .accordion-button,
.jcar-accordion .accordion-button {
    padding: 1rem 1.2rem;
    font-weight: 800;
    font-size: 1rem;
    background: linear-gradient(90deg, rgba(11,16,48,0.95), rgba(76,130,195,0.95));
    color: #fff;
}

    .rulemaking-body .accordion-button:not(.collapsed),
    .reports-accordion .accordion-button:not(.collapsed),
    .jcar-accordion .accordion-button:not(.collapsed) {
        color: #fff;
        background: linear-gradient(90deg, rgba(11,16,48,0.98), rgba(76,130,195,0.98));
        box-shadow: none;
    }

    .rulemaking-body .accordion-button::after,
    .reports-accordion .accordion-button::after,
    .jcar-accordion .accordion-button::after {
        filter: brightness(0) invert(1);
    }

.rulemaking-body .accordion-body,
.reports-accordion .accordion-body {
    padding: 1.25rem;
}

.timeline-wrap {
    width: 100%;
    padding: 8px 12px;
}

.timeline-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(11,16,48,0.12);
    border-radius: 12px;
    padding: 16px;
    overflow-x: auto;
}

.timeline-img {
    display: block;
    width: min(100%, 1100px);
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
}


@media (max-width: 992px) {
    .timeline-frame {
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .timeline-wrap {
        padding: 4px 0;
    }

    .timeline-frame {
        padding: 10px;
        border-radius: 10px;
    }
}



.reports-body p {
    line-height: 1.8;
}

.reports-callout {
    background: #f8fafc;
    border: 1px solid rgba(11,16,48,0.14);
    border-left: 5px solid var(--jcar-navy);
    border-radius: 12px;
    padding: 14px 16px;
}

.reports-table {
    border-collapse: separate;
    border-spacing: 0;
}

    .reports-table thead th {
        background: rgba(11,16,48,0.05);
        border-bottom: 1px solid rgba(11,16,48,0.15);
        font-weight: 900;
        color: rgba(11,16,48,0.95);
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .reports-table tbody td {
        vertical-align: top;
        padding-top: 14px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(11,16,48,0.08);
    }

.reports-title-list {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

    .reports-title-list li {
        margin-bottom: 6px;
    }

.reports-bullets li {
    margin-bottom: 6px;
}

.reports-table tbody tr:hover {
    background: rgba(31,79,191,0.04);
}


.jcar-footer {
    background: linear-gradient(180deg, var(--jcar-navy), var(--jcar-navy-2));
    color: #fff;
    margin-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.jcar-footer-text {
    color: rgba(255,255,255,0.92);
    font-size: .92rem;
    letter-spacing: .1px;
}

.jcar-footer-links {
    font-size: .92rem;
}

.jcar-footer-copy {
    color: rgba(255,255,255,0.82);
    font-size: .92rem;
    letter-spacing: .2px;
}

.jcar-footer .footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 650;
}

    .jcar-footer .footer-link:hover,
    .jcar-footer .footer-link:focus {
        color: #fff;
        text-decoration: underline;
    }

/*@media (max-width: 1200px) {
    .home-leadership-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    

    .home-leader-image-wrap {
        height: 195px;
    }
}*/

@media (max-width: 768px) {
    .home-leadership-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .committee-member-image-wrap {
        padding: 8px;
    }

    .home-leader-image-wrap {
        height: 180px;
        padding: 10px;
    }
}

@media (max-width: 576px) {


    .committee-member-info {
        padding: 10px 10px 12px;
    }

    .committee-member-name {
        font-size: 0.96rem;
    }

    .jcar-subsection-header {
        padding: 9px 12px;
    }
}
@media (max-width: 768px) {
    .reports-table thead {
        display: none;
    }

    .reports-table,
    .reports-table tbody,
    .reports-table tr,
    .reports-table td {
        display: block;
        width: 100%;
    }

        .reports-table tr {
            border: 1px solid var(--jcar-border);
            border-radius: 12px;
            background: #fff;
            box-shadow: var(--jcar-shadow);
            margin-bottom: 14px;
            overflow: hidden;
        }

        .reports-table td {
            border-bottom: 1px solid rgba(11,16,48,0.08);
            padding: 12px 14px;
        }

            .reports-table td:last-child {
                border-bottom: 0;
            }

            .reports-table td::before {
                content: attr(data-label);
                display: block;
                font-weight: 800;
                color: var(--jcar-navy);
                margin-bottom: 6px;
                font-size: 0.88rem;
            }
}


   
   
