body {
    margin: 0;
    color: #222222;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    background: #ffffff;
    overflow-wrap: break-word;
}

a {
    color: #005ea8;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    z-index: 100000;
    top: -100px;
    left: 0;
    background: #005ea8;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    clip: auto;
    width: auto;
    height: auto;
    overflow: visible;
}

.site-header {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    cursor: pointer;
}

.menu-toggle-bar,
.menu-toggle-bar::before,
.menu-toggle-bar::after {
    display: block;
    width: 1.25rem;
    height: 2px;
    margin: 0 auto;
    background: #222222;
    content: "";
}

.menu-toggle-bar::before {
    transform: translateY(-5px);
}

.menu-toggle-bar::after {
    transform: translateY(3px);
}

.primary-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.primary-navigation a {
    text-decoration: none;
}

.content-wrapper {

}

.widget-area {
    min-width: 0;
    display: none;
}

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

.entry-title {
    margin: 0 0 1rem;
    line-height: 1.2;
}

.post-thumbnail {
    margin-bottom: 1.5rem;
}

.post-thumbnail img,
.entry-content img,
.entry-content iframe,
.entry-content video,
.entry-content embed,
.entry-content object {
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .entry-content video {
        height: 100%;
    }
}

.comments-area {
    margin-top: 3rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .children {
    list-style: none;
    padding-left: 1.5rem;
}

.post-navigation {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.pagination {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
}

.site-footer {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

@media (min-width: 60rem) {

}

@media (max-width: 40rem) {
    .menu-toggle {
        display: flex;
    }

    .primary-navigation {
        display: none;
    }

    .primary-navigation.is-open {
        display: block;
    }

    .primary-navigation ul {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* br {
    display: none;
} */

body {
    box-sizing: border-box;
}

body .entry-header .entry-title {
    display: none;
}

body .entry-content p:empty {
    display: none;
}

body .entry-content a:empty {
    display: none;
}

a {
    color: inherit;
}

/* Shared disclosure icon for service-page FAQ lists. */
[class*="-faq__list"] details > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    list-style: none;
}

[class*="-faq__list"] details > summary::-webkit-details-marker {
    display: none;
}

[class*="-faq__list"] details > summary::marker {
    content: "";
}

[class*="-faq__list"] .faq-item--icon > summary {
    position: relative;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-right: 4px;
    list-style: none;
}

[class*="-faq__list"] .faq-item--icon > summary::-webkit-details-marker {
    display: none;
}

[class*="-faq__list"] .faq-item__icon {
    position: relative;
    display: block;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 1px solid rgba(32, 41, 85, 0.25);
    border-radius: 50%;
    background: var(--white, #fff);
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
}

[class*="-faq__list"] .faq-item__icon::before,
[class*="-faq__list"] .faq-item__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 1px;
    background: var(--navy, #202955);
    content: "";
    transform: translate(-50%, -50%);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

[class*="-faq__list"] .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

[class*="-faq__list"] .faq-item--icon[open] .faq-item__icon {
    border-color: var(--gold-light, #efc070);
    background: var(--navy, #202955);
}

[class*="-faq__list"] .faq-item--icon[open] .faq-item__icon::before,
[class*="-faq__list"] .faq-item--icon[open] .faq-item__icon::after {
    background: var(--white, #fff);
}

[class*="-faq__list"] .faq-item--icon[open] .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Service FAQs use one CSS-driven disclosure control instead of an injected icon. */
:is([class$="-faq"], [class*="-faq "]) summary > .faq-item__icon,
:is([class$="-faq"], [class*="-faq "]) summary > span[aria-hidden="true"] {
    display: none;
}

:is([class$="-faq"], [class*="-faq "]) summary::after {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid rgba(32, 41, 85, 0.3);
    border-radius: 50%;
    color: var(--navy, #202955);
    background: var(--white, #fff);
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    content: "+";
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.3s ease;
}

:is([class$="-faq"], [class*="-faq "]) details[open] > summary::after {
    border-color: var(--navy, #202955);
    color: var(--white, #fff);
    background: var(--navy, #202955);
    transform: rotate(45deg);
}

@media (max-width: 40rem) {
    [class*="-faq__list"] .faq-item--icon > summary {
        gap: 18px;
    }

    [class*="-faq__list"] .faq-item__icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    :is([class$="-faq"], [class*="-faq "]) summary::after {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    [class*="-faq__list"] .faq-item__icon,
    [class*="-faq__list"] .faq-item__icon::before,
    [class*="-faq__list"] .faq-item__icon::after {
        transition: none;
    }

    :is([class$="-faq"], [class*="-faq "]) summary::after {
        transition: none;
    }
}
