/* Governance pages */
.governance-section-label {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: .42rem .78rem;
    border-radius: 999px;
    background: var(--aou-light);
    color: var(--aou-muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.governance-section-intro {
    max-width: 46rem;
    margin-bottom: 0;
}

.governance-info-card {
    padding: 1.75rem 1.65rem;
    border: 1px solid var(--aou-border);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
}

.governance-info-card h3 {
    color: var(--aou-navy);
    font-size: clamp(1.22rem, 1.5vw, 1.42rem);
    line-height: 1.25;
    letter-spacing: -.02em;
    margin-bottom: 1.15rem;
}

.governance-info-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--aou-muted);
    font-size: .94rem;
    line-height: 1.65;
}

.governance-info-list li + li {
    margin-top: .55rem;
}

.governance-note {
    margin-top: 1rem;
    padding: 1.15rem 2.15rem 1.25rem;
    border-radius: 1.35rem;
    background: var(--aou-cream);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
    color: #7a6a4a;
    font-size: .88rem;
    line-height: 1.65;
}

.governance-note strong {
    color: #5c4e32;
}

.governance-note--accent {
    border-left: 4px solid var(--aou-gold);
    padding-left: 1.35rem;
    color: var(--aou-text);
    font-size: .94rem;
}

.governance-note--accent strong {
    color: var(--aou-navy);
    font-weight: 700;
}

.policy-index-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.policy-index-item {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 1rem 2rem;
    align-items: center;
    padding: 1.15rem 1.35rem;
    border: 1px solid var(--aou-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.policy-index-item:hover,
.policy-index-item:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(199, 164, 90, .45);
    box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
    color: inherit;
}

.policy-index-item__title {
    color: var(--aou-navy);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -.01em;
}

.policy-index-item:hover .policy-index-item__title,
.policy-index-item:focus-visible .policy-index-item__title {
    color: var(--aou-gold);
}

.policy-index-item__desc {
    color: var(--aou-muted);
    font-size: .92rem;
    line-height: 1.6;
    text-align: right;
}

@media (max-width: 767.98px) {
    .policy-index-item {
        grid-template-columns: 1fr;
        gap: .45rem;
        align-items: start;
    }

    .policy-index-item__desc {
        text-align: left;
    }
}

.institutional-profile-table-wrap {
    border: 1px solid var(--aou-border);
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.institutional-profile-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.institutional-profile-table th,
.institutional-profile-table td {
    padding: 1rem 1.35rem;
    border-bottom: 1px solid var(--aou-border);
    vertical-align: top;
    text-align: left;
}

.institutional-profile-table tr:last-child th,
.institutional-profile-table tr:last-child td {
    border-bottom: none;
}

.institutional-profile-table th {
    width: 38%;
    color: var(--aou-navy);
    font-weight: 700;
    font-size: .94rem;
    line-height: 1.5;
}

.institutional-profile-table td {
    color: var(--aou-muted);
    font-size: .94rem;
    line-height: 1.65;
}

@media (max-width: 767.98px) {
    .institutional-profile-table th,
    .institutional-profile-table td {
        display: block;
        width: 100%;
        padding: .85rem 1.15rem;
    }

    .institutional-profile-table th {
        padding-bottom: .35rem;
        border-bottom: none;
    }

    .institutional-profile-table td {
        padding-top: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--aou-border);
    }

    .institutional-profile-table tr:last-child td {
        border-bottom: none;
        padding-bottom: .85rem;
    }
}

.institutional-profile-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.institutional-profile-area-tag {
    display: inline-flex;
    align-items: center;
    padding: .72rem 1.1rem;
    border: 1px solid var(--aou-border);
    border-radius: 999px;
    background: #fff;
    color: var(--aou-navy);
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.4;
}

.institutional-profile-core-functions {
    padding: 1.75rem 1.65rem;
    border: 1px solid rgba(8, 40, 58, .08);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #f4f9f6, #eef6f2);
}

.institutional-profile-core-functions h3 {
    color: var(--aou-navy);
    font-size: clamp(1.15rem, 1.4vw, 1.32rem);
    line-height: 1.25;
    letter-spacing: -.02em;
    margin-bottom: 1.15rem;
}

.governance-leadership-table-wrap {
    border: 1px solid var(--aou-border);
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.governance-leadership-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.governance-leadership-table thead th {
    padding: 1rem 1.35rem;
    background: var(--aou-navy);
    color: #fff;
    font-size: .94rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    border-bottom: none;
}

.governance-leadership-table tbody td {
    padding: 1rem 1.35rem;
    border-bottom: 1px solid var(--aou-border);
    vertical-align: top;
    text-align: left;
    color: var(--aou-muted);
    font-size: .94rem;
    line-height: 1.65;
}

.governance-leadership-table tbody td:first-child {
    color: var(--aou-navy);
    font-weight: 700;
    width: 32%;
}

.governance-leadership-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 767.98px) {
    .governance-leadership-table thead {
        display: none;
    }

    .governance-leadership-table tbody tr {
        display: block;
        padding: .85rem 1.15rem 1rem;
        border-bottom: 1px solid var(--aou-border);
    }

    .governance-leadership-table tbody tr:last-child {
        border-bottom: none;
    }

    .governance-leadership-table tbody td {
        display: block;
        width: 100%;
        padding: 0;
        border-bottom: none;
    }

    .governance-leadership-table tbody td:first-child {
        width: 100%;
        margin-bottom: .35rem;
    }

    .governance-leadership-table tbody td:last-child::before {
        content: "Public Role";
        display: block;
        margin-bottom: .25rem;
        color: var(--aou-navy);
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
}

.governance-documents-table-wrap {
    border: 1px solid var(--aou-border);
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
    overflow-x: auto;
}

.governance-documents-table {
    width: 100%;
    min-width: 52rem;
    margin: 0;
    border-collapse: collapse;
}

.governance-documents-table thead th {
    padding: 1rem 1.15rem;
    background: var(--aou-navy);
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    border-bottom: none;
    white-space: nowrap;
}

.governance-documents-table tbody td {
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--aou-border);
    vertical-align: top;
    text-align: left;
    color: var(--aou-muted);
    font-size: .9rem;
    line-height: 1.6;
}

.governance-documents-table tbody tr:nth-child(odd) {
    background: #fff;
}

.governance-documents-table tbody tr:nth-child(even) {
    background: var(--aou-light);
}

.governance-documents-table tbody td:first-child {
    color: var(--aou-navy);
    font-weight: 700;
    white-space: nowrap;
}

.governance-documents-table tbody tr:last-child td {
    border-bottom: none;
}
