.about-page {
    min-height: 100%;
    margin: 0;
    padding: 32px 0 24px;
}

.about-page__grid {
    width: min(100%, 1600px);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 352px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.about-menu {
    padding-top: 0;
}

.about-menu__nav {
    width: 100%;
}

.about-menu__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-menu__link {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #c1cddb;
    border-radius: 12px;
    background: #ffffff;
    color: #22272f;
    text-decoration: none;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1), 0 1px 0.5px rgba(0, 0, 0, 0.05);
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.about-menu__link:hover {
    border-color: #1058a1;
    text-decoration: none;
}

.about-menu__link:focus-visible {
    outline: 3px solid #f5c542;
    outline-offset: 3px;
}

.about-menu__link.is-active {
    border-color: #5b9de0;
    background: #e4f1ff;
    box-shadow: 0 4px 5px rgba(0, 68, 136, 0.12), 0 1px 0.5px rgba(0, 0, 0, 0.05);
}

.about-menu__label {
    flex: 1 1 auto;
    min-width: 0;
    color: #22272f;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.about-menu__bip {
    flex: 0 0 auto;
    width: 30px;
    height: auto;
}

.about-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 32px;
    padding-top: 27px;
}

.about-content > .breadcrumb {
    margin: 0;
}

.about-content .breadcrumb__root-link,
.about-content .breadcrumb__link,
.about-content .breadcrumb__link--interactive,
.about-content .breadcrumb__current,
.about-content .breadcrumb__current-label {
    color: #0f263b;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
}

.about-content .breadcrumb__root-link,
.about-content .breadcrumb__link,
.about-content .breadcrumb__link--interactive {
    font-weight: 400;
}

.about-content .breadcrumb__current,
.about-content .breadcrumb__current-label {
    font-weight: 400;
}

.about-content .breadcrumb__root-link:hover,
.about-content .breadcrumb__link--interactive:hover {
    text-decoration: underline;
}

.about-content__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-content__header h1 {
    margin: 0;
    color: #0f263b;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.about-content__header p {
    margin: 0;
    color: #37506e;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.about-content__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-content__cards[hidden] {
    display: none;
}

.organization-structure {
    width: 100%;
    padding: 32px 120px 32px 32px;
    border: 1px solid #e1e8f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .08), 0 1px .5px rgba(0, 0, 0, .05);
    backdrop-filter: blur(7px);
}

.organization-tree {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.organization-tree--root {
    gap: 32px;
}

.organization-tree--children {
    margin-top: 8px;
    margin-left: 0;
}

.organization-tree__item {
    position: relative;
}

.organization-tree--root > .organization-tree__item > .organization-node {
    width: 100%;
}

.organization-node {
    position: relative;
    display: flex;
    margin-left: var(--organization-node-indent, 0px);
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 12px 32px;
    border: 1px solid #c1cddb;
    border-radius: 12px;
    background: #fff;
    color: #0f263b;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
}

.organization-node--level-0,
.organization-node--level-1 {
    min-height: 71px;
    border-color: #93c5e8;
    color: #fff;
}

.organization-node--level-0 {
    background: #00376e;
}

.organization-node--level-1 {
    background: #1058a1;
}

.organization-node--level-2 {
    border-color: #9dbee0;
    background: #e4f1ff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.organization-node--level-3 {
    border-color: #c1cddb;
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.organization-node--level-4-plus {
    border-color: #c1cddb;
    background: #fff;
    color: #223954;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.organization-node__name {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.organization-node--level-2 .organization-node__name,
.organization-node--level-3 .organization-node__name,
.organization-node--level-4-plus .organization-node__name {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.organization-node__description {
    color: #1058a1;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.organization-node--level-0 .organization-node__description,
.organization-node--level-1 .organization-node__description {
    color: #fff;
}

.organization-node--level-4-plus .organization-node__description {
    color: #223954;
}

.organization-tree--children::before {
    position: absolute;
    left: var(--organization-axis-left, 40px);
    top: -8px;
    height: calc(var(--organization-axis-end, 0px));
    width: 1px;
    border-left: 1px dashed #c1cddb;
    content: "";
}

.organization-tree--children > .organization-tree__item > .organization-node::before {
    position: absolute;
    top: calc(50% - 8px);
    left: -60px;
    width: 55px;
    height: 8px;
    border-bottom: 1px dashed #c1cddb;
    border-left: 1px dashed #c1cddb;
    border-bottom-left-radius: 8px;
    content: "";
}

@media (max-width: 900px) {
    .organization-structure {
        padding-right: 32px;
    }

    .organization-tree--children {
        margin-left: 0;
    }

    .organization-node {
        margin-left: var(--organization-node-indent-mobile, 0px);
    }

    .organization-tree--children::before {
        left: var(--organization-axis-left-mobile, 8px);
    }

    .organization-tree--children > .organization-tree__item > .organization-node::before {
        top: calc(50% - 8px);
        left: -24px;
        width: 19px;
    }
}

@media (max-width: 560px) {
    .organization-structure {
        overflow-x: auto;
        padding: 24px 16px;
    }

    .organization-node {
        min-width: 420px;
        padding-inline: 20px;
    }
}

.about-content-card-group {
    display: grid;
    width: 100%;
    gap: 24px;
}

.about-content-card-group--horizontal {
    grid-template-columns: repeat(var(--about-card-group-columns, 3), minmax(0, 1fr));
    align-items: start;
}

.about-content-card {
    width: 100%;
    padding: 32px;
    border: 1px solid #e1e8f0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.08), 0 1px 0.5px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7px);
}

.about-content-card--compact {
    padding: 24px;
}

.about-content-card.content-section-card--collapsible {
    display: block;
}

.about-content-card--has-banners {
    padding: 20px;
}

.about-content-card__body > .contextual-banners:first-child,
.about-content-card__body > p:first-child + .contextual-banners {
    margin-top: 8px;
}

.about-content-card .contextual-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
}

.about-content-card .contextual-banner__copy {
    gap: 4px;
}

.about-content-card .contextual-banner__copy h2 {
    font-size: 18px;
}

.about-content-card .contextual-banner__copy p {
    font-size: 15px;
}

.about-content-card .contextual-banner__actions {
    width: 100%;
    gap: 8px 12px;
    justify-content: flex-start;
}

.about-content-card .contextual-banner--single-action .contextual-banner__actions {
    flex: 0 1 auto;
}

.about-content-card .contextual-banner .contextual-banner__action {
    gap: 8px;
    min-height: 32px;
    font-size: 15px;
}

.about-content-card .contextual-banner .contextual-banner__action--primary,
.about-content-card .contextual-banner .contextual-banner__action--secondary,
.about-content-card .contextual-banner .contextual-banner__action--outline {
    padding: 0 16px;
}

.about-content-card .contextual-banner .contextual-banner__action img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
}

.about-content-card .contextual-banner__decoration {
    display: block;
}

.about-content-card .contextual-banner__decoration--left {
    top: -42px;
    right: 48px;
    left: auto;
    width: 76px;
    height: auto;
}

.about-content-card .contextual-banner__decoration--right {
    top: auto;
    right: -28px;
    bottom: -42px;
    width: 90px;
    height: auto;
}

.about-content-card .content-section-card__summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
}

.about-content-card .content-section-card__summary::-webkit-details-marker {
    display: none;
}

.about-content-card .content-section-card__summary-text {
    min-width: 0;
    flex: 1 1 auto;
}

.about-content-card .content-section-card__summary-action {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    color: #37506e;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
}

.about-content-card .content-section-card__chevron {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.about-content-card.content-section-card--collapsible[open] .about-content-card__inner {
    margin-top: 16px;
}

.about-content-card.content-section-card--collapsible[open] .content-section-card__state--open {
    display: inline;
}

.about-content-card.content-section-card--collapsible[open] .content-section-card__state--closed {
    display: none;
}

.about-content-card.content-section-card--collapsible[open] .content-section-card__chevron {
    transform: rotate(225deg);
}

.about-content-card .content-section-card__summary:hover .content-section-card__summary-action {
    color: #0f263b;
}

.about-content-card .content-section-card__summary:focus-visible {
    outline: 3px solid #f5c542;
    outline-offset: 6px;
    border-radius: 6px;
}

.about-content-card__inner {
    width: min(100%, 720px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-content-card--compact .about-content-card__inner {
    width: 100%;
    height: 100%;
    margin: 0;
}

.about-content-card h2 {
    margin: 0;
    color: #0f263b;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.about-content-card__body {
    color: #37506e;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.about-content-card__body > * {
    margin-top: 0;
}

.about-content-card__body > *:last-child {
    margin-bottom: 0;
}

.about-content-card__body p {
    margin: 0 0 8px;
}

.about-content-card__body p strong,
.about-content-card__body > strong {
    font-weight: 600;
}

.about-content-card__body ul,
.about-content-card__documents {
    margin: 0;
    padding-left: 24px;
}

.about-content-card__body li,
.about-content-card__documents li {
    margin: 0;
}

.about-content-card__body a:not(.document-files__file),
.about-content-card__documents a {
    color: #1058a1;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.about-content-card__body a:not(.document-files__file):focus-visible,
.about-content-card__documents a:focus-visible {
    outline: 3px solid #f5c542;
    outline-offset: 3px;
    border-radius: 4px;
}

.about-page--contact .about-content-card__body .is-style-text-annotation {
    padding: 5px 7px;
    border: 0;
    border-radius: 4px;
    background: #e1e8f0;
    color: #0f263b;
    font-size: 12px;
    line-height: 1.5;
}

.about-content-card__body hr,
.about-content-card__body .wp-block-separator {
    width: 100%;
    height: 1px;
    margin: 20px 0;
    border: 0;
    background: #e1e8f0;
}

.content-map-embed {
    width: 100%;
    overflow: hidden;
    border: 1px solid #e1e8f0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.08), 0 1px 0.5px rgba(0, 0, 0, 0.05);
}

.content-map-embed__frame {
    position: relative;
    width: 100%;
    min-height: 242px;
    overflow: hidden;
    border-radius: 12px;
    background: #e1e8f0;
}

.content-map-embed__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.content-map-embed__actions {
    margin: 0;
    padding: 16px 24px 24px;
}

.content-map-embed__button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid #004488;
    border-radius: 32px;
    background: #ffffff;
    color: #004488;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}

.content-map-embed__button:hover {
    background: #e4f1ff;
    text-decoration: none;
}

.content-map-embed__button:focus-visible {
    outline: 3px solid #f5c542;
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .about-page {
        padding-top: 24px;
    }

    .about-page__grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-top: 0;
    }

    .about-content-card-group--horizontal {
        grid-template-columns: 1fr;
    }

    .about-menu__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 560px) {
    .about-page__grid {
        padding-inline: 16px;
    }

    .about-content-card {
        padding: 24px;
    }

    .about-content__header h1 {
        font-size: 24px;
    }
}
