/*
 * Editorial UI foundation.
 * Deliberately avoids framework dependencies and cutting-edge layout features.
 */
:root {
    --bg: #ffffff;
    --surface: #f6f3ee;
    --surface-strong: #ebe5dc;
    --text: #1f292d;
    --muted: #677176;
    --line: #ded8cf;
    --accent: #8b5a2b;
    --accent-dark: #6b421e;
    --accent-soft: #f4e9dc;
    --action: #b94122;
    --action-dark: #963116;
    --dark: #202c30;
    --white: #ffffff;
    --radius: 12px;
    --shadow: 0 16px 44px rgba(31, 41, 45, .10);
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { margin: 0; background: #fff; background: var(--bg); color: #1f292d; color: var(--text); font-family: var(--font); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: #8b5a2b; color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(185, 65, 34, .38); outline-offset: 3px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { z-index: 100000; top: 8px; left: 8px; width: auto; height: auto; margin: 0; padding: 10px 14px; overflow: visible; clip: auto; white-space: normal; background: #fff; color: #111; }

.container-wide { width: calc(100% - 40px); max-width: 1240px; margin: 0 auto; }
.container-content { width: calc(100% - 40px); max-width: 840px; margin: 0 auto; }
.section-pad { padding: 68px 0; }
.section-muted { background: #f6f3ee; background: var(--surface); }
.section-dark { position: relative; overflow: hidden; background: #202c30; background: var(--dark); color: #fff; }
.section-dark::before { content: ""; position: absolute; top: -180px; right: -120px; width: 430px; height: 430px; border: 1px solid rgba(176, 126, 74, .22); border-radius: 50%; pointer-events: none; }

.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 9999; background: #fff; color: #111; padding: 10px 14px; border: 2px solid #111; }
.skip-link:focus { left: 8px; }

.announcement-bar { position: relative; z-index: 51; min-height: 46px; overflow: hidden; background: #28363b; background: var(--announcement-bg, #28363b); color: #fff; font-size: 13px; font-weight: 600; line-height: 1.4; }
.announcement-bar::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: rgba(255,255,255,.12); pointer-events: none; }
.announcement-bar__inner { display: flex; align-items: center; gap: 18px; min-height: 46px; padding-top: 7px; padding-bottom: 7px; }
.announcement-bar__label { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 9px; padding-right: 18px; border-right: 1px solid rgba(255,255,255,.22); color: #f1d3a7; font-size: 10px; font-weight: 700; letter-spacing: .11em; line-height: 1; text-transform: uppercase; }
.announcement-bar__dot { width: 7px; height: 7px; border-radius: 50%; background: #f1d3a7; background: var(--announcement-accent, #f1d3a7); box-shadow: 0 0 0 4px rgba(241,211,167,.16); }
.announcement-bar__viewport { position: relative; flex: 1 1 auto; min-width: 0; }
.announcement-bar__item { display: none; align-items: baseline; gap: 11px; }
.announcement-bar__item.is-active { display: flex; animation: announcement-enter .22s ease-out; }
.announcement-bar__message { min-width: 0; }
.announcement-bar__link { flex: 0 0 auto; color: #f1d3a7; color: var(--announcement-accent, #f1d3a7); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(241,211,167,.48); text-underline-offset: 3px; }
.announcement-bar__link:hover, .announcement-bar__link:focus { color: #fff; text-decoration-color: currentColor; }
.announcement-bar__controls { display: flex; flex: 0 0 auto; align-items: center; gap: 5px; padding-left: 13px; border-left: 1px solid rgba(255,255,255,.22); }
.announcement-bar__control { display: inline-flex; align-items: center; justify-content: center; width: 27px; height: 27px; padding: 0; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; color: #fff; font-size: 19px; line-height: 1; }
.announcement-bar__control:hover, .announcement-bar__control:focus-visible { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); }
.announcement-bar__counter { min-width: 29px; color: #c8d0d4; font-size: 10px; font-variant-numeric: tabular-nums; text-align: center; }
.announcement-bar__toggle { margin-left: 2px; font-size: 9px; }

@keyframes announcement-enter {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
}

.site-header { position: relative; z-index: 50; background: rgba(255, 255, 255, .98); border-top: 3px solid #b07e4a; border-bottom: 1px solid #ded8cf; border-bottom-color: var(--line); box-shadow: 0 5px 24px rgba(31, 41, 45, .045); }
.site-header__inner { min-height: 104px; display: flex; align-items: center; gap: 26px; }
.site-branding { flex: 0 0 174px; align-self: stretch; display: flex; align-items: center; }
.custom-logo-link, .site-logo { display: block; }
.custom-logo, .site-logo__image { width: auto; max-width: 174px; max-height: 88px; }
.site-title { color: #1f292d; color: var(--text); font-size: 18px; font-weight: 700; line-height: 1.2; }
.site-header__navigation { flex: 1 1 auto; min-width: 0; }
.primary-nav__menu, .primary-nav__menu ul, .footer-menu, .footer-legal-menu, .resource-menu { list-style: none; padding: 0; margin: 0; }
.primary-nav__menu { display: flex; align-items: center; justify-content: center; gap: 2px; }
.primary-nav__menu > li { position: relative; }
.primary-nav__menu > li > a { position: relative; display: block; padding: 40px 11px; color: #2f3d42; font-size: 14px; font-weight: 600; white-space: nowrap; }
.primary-nav__menu > .menu-item-has-children > a { padding-right: 28px; }
.primary-nav__menu > .menu-item-has-children > a::before { content: ""; position: absolute; top: 50%; right: 12px; width: 6px; height: 6px; margin-top: -5px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .18s ease; }
.primary-nav__menu > .menu-item-has-children:hover > a::before, .primary-nav__menu > .menu-item-has-children:focus-within > a::before { transform: translateY(2px) rotate(45deg); }
.primary-nav__menu > li > a::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 27px; height: 2px; background: #b07e4a; transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.primary-nav__menu > li:hover > a, .primary-nav__menu > .current-menu-item > a, .primary-nav__menu > .current-menu-ancestor > a { color: #8b5a2b; color: var(--accent); text-decoration: none; }
.primary-nav__menu > li:hover > a::after, .primary-nav__menu > .current-menu-item > a::after, .primary-nav__menu > .current-menu-ancestor > a::after { transform: scaleX(1); }
.primary-nav__menu .sub-menu { position: absolute; left: 0; top: calc(100% - 1px); width: 260px; padding: 8px; background: #fff; border: 1px solid #d9dfe2; border-color: var(--line); box-shadow: var(--shadow); border-radius: 0 0 8px 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s ease, transform .15s ease; }
.primary-nav__menu li:hover > .sub-menu, .primary-nav__menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav__menu .sub-menu a { display: block; padding: 9px 10px; color: #26363e; font-size: 14px; border-radius: 5px; }
.primary-nav__menu .sub-menu a:hover { background: #f6f3ee; background: var(--surface); text-decoration: none; }
.site-header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 18px; border: 1px solid #8b5a2b; border-color: var(--accent); border-radius: 7px; background: #8b5a2b; background: var(--accent); color: #fff; font-weight: 700; line-height: 1.2; transition: background .18s ease, transform .18s ease, box-shadow .18s ease; }
.button:hover { background: #6b421e; background: var(--accent-dark); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(107, 66, 30, .18); }
.button--header { min-height: 48px; padding: 12px 24px; border-color: #b94122; background: #b94122; background: var(--action); font-size: 13px; }
.button--header:hover { background: #963116; background: var(--action-dark); }
.language-switcher { display: flex; align-items: center; gap: 3px; list-style: none; margin: 0; padding: 0; }
.language-switcher li { list-style: none; }
.language-switcher a, .language-switcher__link { display: inline-flex; min-width: 27px; min-height: 28px; align-items: center; justify-content: center; padding: 4px 3px 3px; border-bottom: 1px solid transparent; color: #68747b; color: var(--muted); font-size: 11px; line-height: 1; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: color .18s ease, border-color .18s ease; }
.language-switcher a:hover { color: #1f292d; color: var(--text); text-decoration: none; }
.language-switcher .current-lang a, .language-switcher__link.is-active { border-bottom-color: #b07e4a; color: #8b5a2b; color: var(--accent); }
.nav-toggle, .submenu-toggle, .mobile-nav-extra { display: none; }

.breadcrumb-wrap { padding-top: 18px; }
.breadcrumbs { overflow: hidden; }
.breadcrumbs__list { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; list-style: none; font-size: 12px; color: #7b868c; }
.breadcrumbs__item { display: flex; align-items: center; min-width: 0; }
.breadcrumbs__item:not(:last-child)::after { content: "/"; margin-left: 6px; color: #b1b8bc; }
.breadcrumbs a { color: #68747b; color: var(--muted); }
@media (max-width: 760px) { .breadcrumbs { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }.breadcrumbs__list { flex-wrap: nowrap; width: max-content; min-width: 100%; }.breadcrumbs__item { flex: 0 0 auto; white-space: nowrap; }.breadcrumbs__item:last-child span { display: block; max-width: min(70vw, 360px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 10px; color: #8b5a2b; color: var(--accent); font-size: 11px; line-height: 1.2; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: #b07e4a; }
.section-dark .eyebrow { color: #e0bd94; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.section-heading h1, .section-heading h2 { margin: 0; max-width: 900px; color: inherit; font-family: var(--font-display); font-size: 48px; font-size: clamp(31px, 4vw, 48px); line-height: 1.06; letter-spacing: -.02em; }
.section-heading h2 { font-size: 34px; font-size: clamp(25px, 3vw, 34px); }
.section-heading--lead { margin-bottom: 24px; }
.section-heading--inverse, .section-heading--inverse .section-link { color: #fff; }
.section-link { flex: 0 0 auto; color: #8b5a2b; color: var(--accent); font-size: 14px; font-weight: 700; }

.home-lead { position: relative; }
.home-lead::before { content: ""; position: absolute; z-index: -1; top: 18px; right: 2%; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(176,126,74,.11), rgba(176,126,74,0) 70%); }
.lead-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(310px, .85fr); gap: 34px; }
.lead-story { background: #fff; }
.lead-story__media { display: block; height: 460px; overflow: hidden; border-radius: var(--radius); background: #ebe5dc; background: var(--surface-strong); box-shadow: var(--shadow); }
.lead-story__media img { width: 100%; height: 100%; object-fit: cover; }
.lead-story__body { padding-top: 18px; }
.lead-story h2 { margin: 8px 0 10px; font-family: var(--font-display); font-size: 44px; font-size: clamp(29px, 3vw, 44px); line-height: 1.08; letter-spacing: -.02em; }
.lead-story h2 a { color: #1f292d; color: var(--text); }
.lead-story__excerpt { max-width: 780px; color: #68747b; color: var(--muted); }
.lead-story__excerpt p { margin: 0; }
.lead-list { border-top: 1px solid #d9dfe2; border-top-color: var(--line); }

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 22px; }
.cards-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-card { min-width: 0; }
.content-card__media { display: block; height: 220px; overflow: hidden; border-radius: 9px; background: #ebe5dc; background: var(--surface-strong); }
.content-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.content-card:hover .content-card__media img { transform: scale(1.035); }
.content-card__placeholder { display: block; width: 100%; height: 100%; min-height: 160px; background: linear-gradient(135deg, #e9edef, #dfe5e8); }
.content-card__body { padding-top: 12px; }
.card-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 7px 10px; color: #68747b; color: var(--muted); font-size: 11px; line-height: 1.4; }
.card-meta__label { color: #8b5a2b; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.content-card__title { margin: 7px 0 8px; font-family: var(--font-display); font-size: 21px; line-height: 1.24; letter-spacing: -.012em; }
.content-card__title a { color: #1f292d; color: var(--text); }
.content-card__excerpt { color: #68747b; color: var(--muted); font-size: 14px; }
.content-card__excerpt p { margin: 0; }
.content-card--compact { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 14px; padding: 14px 0; border-bottom: 1px solid #d9dfe2; border-bottom-color: var(--line); }
.content-card--compact .content-card__media { height: 84px; }
.content-card--compact .content-card__body { padding-top: 0; }
.content-card--compact .content-card__title { margin-top: 4px; font-size: 15px; }
.cards-grid--inverse .content-card__title a { color: #fff; }
.cards-grid--inverse .card-meta { color: #aebac0; }
.cards-grid--inverse .card-meta__label { color: #e0bd94; }
.cards-grid--inverse .content-card__placeholder { background: #24343d; }
.cards-grid--news .content-card { overflow: hidden; border: 1px solid #e6e0d8; border-radius: 10px; background: #fff; box-shadow: 0 8px 24px rgba(31, 41, 45, .055); transition: transform .18s ease, box-shadow .18s ease; }
.cards-grid--news .content-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cards-grid--news .content-card__media { border-radius: 0; }
.cards-grid--news .content-card__body { padding: 15px 17px 19px; }
.home-news__featured { gap: 22px; }
.home-news__featured .content-card__media { height: 232px; }
.home-news__featured .content-card__title { margin-bottom: 0; }
.home-news__more { margin-top: 34px; padding-top: 22px; border-top: 1px solid #d8d0c5; border-top-color: var(--line); }
.home-news__more-heading { display: flex; align-items: center; gap: 16px; margin-bottom: 2px; }
.home-news__more-heading::after { content: ""; flex: 1 1 auto; height: 1px; background: #ded8cf; background: var(--line); }
.home-news__more-heading h3 { flex: 0 0 auto; margin: 0; color: #8b5a2b; color: var(--accent); font-size: 11px; line-height: 1.2; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.news-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 38px; }
.news-list__item { min-width: 0; border-bottom: 1px solid #ded8cf; border-bottom-color: var(--line); }
.news-list__link { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 100%; padding: 17px 2px; color: #1f292d; color: var(--text); }
.news-list__link:hover { color: #8b5a2b; color: var(--accent); text-decoration: none; }
.news-list__content { min-width: 0; }
.news-list__title { margin: 5px 0 0; font-family: var(--font-display); font-size: 18px; font-weight: 600; line-height: 1.27; letter-spacing: -.01em; }
.news-list__arrow { flex: 0 0 auto; color: #b07e4a; font-size: 20px; line-height: 1; transition: transform .18s ease; }
.news-list__link:hover .news-list__arrow { transform: translateX(4px); }

.home-service-desk { position: relative; overflow: hidden; background: #fff; }
.home-service-desk::before { content: ""; position: absolute; top: 88px; left: -150px; width: 340px; height: 340px; border: 1px solid rgba(176, 126, 74, .14); border-radius: 50%; pointer-events: none; }
.home-service-desk__heading { max-width: 820px; }
.home-service-desk__heading p { max-width: 670px; margin: 12px 0 0; color: #68747b; color: var(--muted); }
.service-desk { position: relative; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(330px, .85fr); gap: 22px; align-items: stretch; }
.service-desk--tools-only { grid-template-columns: 1fr; }
.service-desk--tools-only .service-tools { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.service-feature { position: relative; min-height: 520px; overflow: hidden; border-radius: 14px; background: #202c30; background: var(--dark); color: #fff; box-shadow: var(--shadow); isolation: isolate; }
.service-feature__media { position: absolute; z-index: -2; inset: 0; display: block; }
.service-feature__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19, 28, 32, .05) 5%, rgba(19, 28, 32, .48) 52%, rgba(19, 28, 32, .96) 100%); }
.service-feature__media img, .service-feature__placeholder { width: 100%; height: 100%; object-fit: cover; }
.service-feature__placeholder { display: block; background: radial-gradient(circle at 78% 24%, rgba(176, 126, 74, .38), transparent 27%), linear-gradient(145deg, #37474e, #172328 72%); }
.service-feature__body { position: absolute; right: 0; bottom: 0; left: 0; padding: 42px; }
.service-feature__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 10px; color: #d4dcdf; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.service-feature__meta span { display: inline-flex; align-items: center; gap: 8px; color: #f0c794; }
.service-feature__meta span::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.service-feature h3 { max-width: 720px; margin: 0 0 12px; font-family: var(--font-display); font-size: 42px; font-size: clamp(30px, 4vw, 42px); line-height: 1.08; letter-spacing: -.02em; }
.service-feature h3 a { color: #fff; }
.service-feature h3 a:hover { color: #fff; }
.service-feature__excerpt { max-width: 650px; margin-bottom: 22px; color: #d4dcdf; font-size: 15px; }
.service-feature__excerpt p { margin: 0; }
.button--light { gap: 10px; border-color: #fff; background: #fff; color: #202c30; }
.button--light:hover { border-color: #f4e9dc; background: #f4e9dc; background: var(--accent-soft); color: #202c30; }
.service-tools { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.service-search, .service-links { border-radius: 12px; }
.service-search { padding: 26px; border: 1px solid #eadcc9; background: #f4e9dc; background: var(--accent-soft); }
.service-tools__label { display: block; margin-bottom: 7px; color: #8b5a2b; color: var(--accent); font-size: 10px; line-height: 1.2; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-search h3, .service-links h3 { margin: 0 0 18px; font-family: var(--font-display); font-size: 25px; line-height: 1.15; }
.service-search__form { display: grid; grid-template-columns: minmax(0, 1fr) 46px; }
.service-search__form input { min-width: 0; height: 48px; padding: 10px 13px; border: 1px solid #cbb99f; border-right: 0; border-radius: 7px 0 0 7px; background: #fff; color: #1f292d; }
.service-search__form button { display: flex; align-items: center; justify-content: center; height: 48px; border: 1px solid #8b5a2b; border-color: var(--accent); border-radius: 0 7px 7px 0; background: #8b5a2b; background: var(--accent); color: #fff; font-size: 21px; transition: background .18s ease; }
.service-search__form button:hover { background: #6b421e; background: var(--accent-dark); }
.service-links { flex: 1 1 auto; padding: 26px; border: 1px solid #ded8cf; border-color: var(--line); background: #fff; }
.service-menu { list-style: none; margin: 0; padding: 0; }
.service-menu li { margin: 0; border-top: 1px solid #e6e0d8; }
.service-menu a { position: relative; display: block; padding: 13px 34px 13px 0; color: #1f292d; color: var(--text); font-size: 14px; font-weight: 700; line-height: 1.35; }
.service-menu a::after { content: "\2192"; position: absolute; top: 50%; right: 2px; color: #b07e4a; font-size: 18px; transform: translateY(-50%); transition: transform .18s ease; }
.service-menu a:hover { color: #8b5a2b; color: var(--accent); text-decoration: none; }
.service-menu a:hover::after { transform: translate(3px, -50%); }

.resource-menu { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.resource-menu li { min-width: 0; }
.resource-menu a { position: relative; display: flex; align-items: center; min-height: 82px; padding: 17px 46px 17px 20px; border: 1px solid #ded8cf; border-color: var(--line); border-radius: 9px; color: #1f292d; color: var(--text); font-weight: 700; background: #fff; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.resource-menu a::after { content: "\2192"; position: absolute; right: 20px; color: #b07e4a; font-size: 20px; }
.resource-menu a:hover { border-color: #8b5a2b; border-color: var(--accent); text-decoration: none; box-shadow: var(--shadow); transform: translateY(-2px); }

.layout-with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 52px; align-items: start; }
.layout-no-sidebar { display: block; }
.content-column { min-width: 0; }
.contextual-sidebar { min-width: 0; }
.contextual-sidebar--mobile-before, .contextual-sidebar--mobile-after { display: none; }
.sidebar-module { margin: 0 0 28px; padding: 0 0 22px; border-bottom: 1px solid var(--line); }
.sidebar-module__title, .toc-disclosure > summary { margin: 0 0 13px; color: var(--text); font-size: 15px; font-weight: 700; line-height: 1.35; }
.toc-disclosure > summary { cursor: pointer; }
.contextual-sidebar--desktop .toc-disclosure > summary { cursor: default; list-style: none; }
.contextual-sidebar--desktop .toc-disclosure > summary::-webkit-details-marker { display: none; }
.sidebar-module--toc { position: sticky; top: 24px; max-height: calc(100vh - 48px); overflow-y: auto; overscroll-behavior: contain; }
.admin-bar .sidebar-module--toc { top: 56px; max-height: calc(100vh - 80px); }
.toc-list, .sidebar-link-list { list-style: none; margin: 0; padding: 0; }
.toc-list__item, .sidebar-link-list li { margin: 0; border-top: 1px solid #e6e0d8; }
.toc-list a, .sidebar-link-list a { display: block; padding: 9px 0; color: #536168; font-size: 13px; line-height: 1.4; }
.toc-list__item--h3 a { padding-left: 15px; font-size: 12px; }
.toc-list a:hover, .toc-list a.is-active, .toc-list a[aria-current="location"], .sidebar-link-list a:hover, .sidebar-link-list a[aria-current="page"] { color: var(--accent); text-decoration: none; }
.toc-list a.is-active, .sidebar-link-list a[aria-current="page"] { font-weight: 700; }
.sidebar-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 7px; }
.sidebar-search input { min-width: 0; min-height: 40px; padding: 7px 9px; border: 1px solid #cfd6da; border-radius: 5px; color: var(--text); }
.sidebar-search button { min-height: 40px; padding: 7px 11px; border: 0; border-radius: 5px; background: var(--accent); color: #fff; }
.widget { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid #d9dfe2; border-bottom-color: var(--line); }
.widget__title, .widget-title { margin: 0 0 14px; font-size: 16px; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { margin: 8px 0; font-size: 14px; }
.widget a { color: #425058; }
.search-form { display: flex; gap: 8px; }
.search-form label { flex: 1 1 auto; }
.search-field, .church-filter input, .church-filter select { width: 100%; min-height: 42px; border: 1px solid #cfd6da; border-radius: 5px; padding: 8px 10px; background: #fff; color: #172126; }
.search-submit { min-height: 42px; border: 0; border-radius: 5px; padding: 8px 14px; background: #8b5a2b; color: #fff; }
.archive-header { margin-bottom: 28px; }
.archive-header h1 { margin: 0 0 10px; font-family: var(--font-display); font-size: 48px; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.025em; }
.archive-description, .archive-header p { max-width: 740px; color: #68747b; color: var(--muted); }
.archive-header--split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); gap: 40px; align-items: end; }
.church-filter { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; align-items: end; padding: 16px; background: #f3f5f6; background: var(--surface); border-radius: 8px; }
.church-filter label span { display: block; margin-bottom: 5px; font-size: 12px; font-weight: 600; color: #59666d; }

.entry-header { margin-bottom: 28px; }
.entry-header h1 { margin: 7px 0 0; font-family: var(--font-display); font-size: 60px; font-size: clamp(36px, 5vw, 60px); line-height: 1.04; letter-spacing: -.025em; }
.entry-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; }
.entry-categories { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.entry-categories__link { display: inline-flex; align-items: center; min-height: 26px; padding: 4px 10px; border: 1px solid rgba(139, 90, 43, .28); border-radius: 999px; background: rgba(176, 126, 74, .08); color: #8b5a2b; color: var(--accent); font-size: 11px; line-height: 1.2; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; transition: color .18s ease, background-color .18s ease, border-color .18s ease; }
.entry-categories__link:hover { border-color: #8b5a2b; border-color: var(--accent); background: #8b5a2b; background: var(--accent); color: #fff; text-decoration: none; }
.entry-categories__link:focus-visible { outline: 2px solid #8b5a2b; outline-color: var(--accent); outline-offset: 2px; }
.entry-meta__date { color: #68747b; color: var(--muted); font-size: 11px; line-height: 1.4; }
.entry-featured { margin: 0 0 34px; border-radius: 9px; overflow: hidden; }
.entry-content { color: #26353c; font-size: 17px; line-height: 1.78; }
.entry-content > * { max-width: 100%; }
.entry-content h2, .entry-content h3, .entry-content h4 { color: #1f292d; color: var(--text); font-family: var(--font-display); line-height: 1.2; margin-top: 1.7em; }
.entry-content h2 { font-size: 30px; }
.entry-content h3 { font-size: 24px; }
.entry-content blockquote { margin: 28px 0; padding: 3px 0 3px 20px; border-left: 3px solid #8b5a2b; border-left-color: var(--accent); color: #47565e; font-family: var(--font-display); font-size: 20px; }
.entry-content figure { margin-left: 0; margin-right: 0; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content::after { content: ""; display: table; clear: both; }
.entry-content img { max-width: 100%; height: auto; }
.entry-content .alignnone { margin: 8px 0 24px; }
.entry-content .aligncenter { display: block; margin: 28px auto; clear: both; }
.entry-content .alignleft { float: left; max-width: calc(50% - 14px); margin: 8px 28px 20px 0; }
.entry-content .alignright { float: right; max-width: calc(50% - 14px); margin: 8px 0 20px 28px; }
.entry-content a > img.aligncenter { display: block; }
.entry-content .wp-caption { max-width: 100%; padding: 8px; border: 1px solid #ded8cf; border-color: var(--line); border-radius: 8px; background: #f6f3ee; background: var(--surface); }
.entry-content .wp-caption img { width: auto; margin: 0 auto; }
.entry-content .wp-caption-text, .entry-content figcaption { margin: 9px 4px 1px; color: #677176; color: var(--muted); font-size: 13px; line-height: 1.5; text-align: center; }
.entry-content figure.alignleft, .entry-content figure.alignright { width: auto; }
.entry-content figure.aligncenter, .entry-content figure.alignnone { width: fit-content; }
.entry-taxonomy { margin-top: 10px; font-size: 14px; }
.nav-links { display: flex; justify-content: space-between; gap: 20px; margin-top: 36px; }
.nav-previous, .nav-next { max-width: 48%; }
.nav-links span { display: block; color: #7a858b; font-size: 11px; text-transform: uppercase; }
.pagination .nav-links { justify-content: center; align-items: center; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; min-height: 36px; padding: 5px 10px; border-radius: 5px; color: #435159; }
.page-numbers.current { background: #8b5a2b; color: #fff; }

.empty-state { max-width: 680px; padding: 40px 0; }
.empty-state h1 { margin: 8px 0 12px; font-size: 38px; }

.comments-area { margin-top: 58px; padding-top: 38px; border-top: 1px solid #d9dfe2; border-top-color: var(--line); }
.comments-area__header { margin-bottom: 26px; }
.comments-area__eyebrow { margin: 0 0 6px; color: #8b5a2b; color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.comments-title, .comment-reply-title { margin: 0; color: #1f292d; color: var(--text); font-family: var(--font-display); font-size: 32px; line-height: 1.15; letter-spacing: -.015em; }
.comment-list, .comment-list .children { margin: 0; padding: 0; list-style: none; }
.comment-list .children { margin-left: 44px; }
.comment-list .comment, .comment-list .pingback, .comment-list .trackback { position: relative; }
.comment-body { position: relative; margin: 0 0 18px; padding: 22px 24px 20px 96px; border: 1px solid #ded8cf; border-color: var(--line); border-radius: 10px; background: #fff; }
.comment-body:hover { border-color: #c9bdae; }
.comment-meta { min-height: 56px; margin-bottom: 12px; }
.comment-author { display: flex; align-items: center; min-height: 24px; font-size: 14px; line-height: 1.35; }
.comment-author .avatar { position: absolute; top: 22px; left: 24px; width: 56px; height: 56px; border-radius: 50%; background: #ebe5dc; background: var(--surface-strong); }
.comment-author .fn { color: #1f292d; color: var(--text); font-style: normal; font-weight: 700; }
.comment-author .says { margin-left: 4px; color: #677176; color: var(--muted); font-size: 12px; }
.comment-metadata { margin-top: 4px; font-size: 11px; line-height: 1.45; }
.comment-metadata a { color: #7a858b; }
.comment-metadata .edit-link { margin-left: 8px; }
.comment-content { color: #36444a; font-size: 15px; line-height: 1.7; }
.comment-content > :first-child { margin-top: 0; }
.comment-content > :last-child { margin-bottom: 0; }
.comment-content a { overflow-wrap: anywhere; text-decoration: underline; text-underline-offset: 3px; }
.comment-awaiting-moderation { margin: 10px 0 0; color: #8b5a2b; color: var(--accent); font-size: 12px; font-style: normal; font-weight: 600; }
.reply { margin-top: 14px; }
.comment-reply-link { display: inline-flex; align-items: center; gap: 6px; color: #8b5a2b; color: var(--accent); font-size: 12px; font-weight: 700; }
.comment-reply-link::before { content: "\21B3"; font-size: 15px; font-weight: 400; }
.comment-reply-link:hover { color: #6b421e; color: var(--accent-dark); }
.comments-area .navigation { margin: 28px 0; }
.comments-area .navigation .nav-links { margin-top: 0; }
.comments-closed { margin: 24px 0; padding: 14px 18px; border-radius: 7px; background: #f6f3ee; background: var(--surface); color: #677176; color: var(--muted); font-size: 14px; }
.comment-form-card { margin-top: 38px; padding: 30px; border-radius: 12px; background: #f6f3ee; background: var(--surface); }
.comment-reply-title { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.comment-reply-title small { font-family: var(--font); font-size: 12px; letter-spacing: 0; }
#cancel-comment-reply-link { color: #677176; color: var(--muted); font-weight: 600; }
.comment-notes, .logged-in-as { margin: 0 0 22px; color: #677176; color: var(--muted); font-size: 13px; }
.logged-in-as a { color: inherit; }
.comment-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.comment-form > p { margin: 0; }
.comment-form-comment, .comment-form-url, .comment-notes, .logged-in-as, .comment-form-cookies-consent, .form-submit { grid-column: 1 / -1; }
.comment-form label { display: block; margin-bottom: 6px; color: #36444a; font-size: 12px; font-weight: 700; }
.comment-form .required { color: #b94122; color: var(--action); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { display: block; width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid #cfc7bc; border-radius: 7px; background: #fff; color: #1f292d; color: var(--text); transition: border-color .18s ease, box-shadow .18s ease; }
.comment-form textarea { min-height: 150px; resize: vertical; }
.comment-form input::placeholder, .comment-form textarea::placeholder { color: #929a9e; opacity: 1; }
.comment-form input:focus, .comment-form textarea:focus { border-color: #8b5a2b; border-color: var(--accent); outline: 0; box-shadow: 0 0 0 3px rgba(139, 90, 43, .12); }
.comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 9px; color: #59666d; font-size: 12px; }
.comment-form-cookies-consent input { flex: 0 0 auto; width: 16px; height: 16px; margin: 3px 0 0; accent-color: #8b5a2b; }
.comment-form-cookies-consent label { margin: 0; font-weight: 400; }
.comment-form__submit { min-height: 46px; padding: 11px 20px; border: 1px solid #8b5a2b; border-color: var(--accent); border-radius: 7px; background: #8b5a2b; background: var(--accent); color: #fff; font-weight: 700; transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.comment-form__submit:hover { border-color: #6b421e; border-color: var(--accent-dark); background: #6b421e; background: var(--accent-dark); box-shadow: 0 8px 20px rgba(107, 66, 30, .18); transform: translateY(-1px); }

.site-footer { margin-top: 20px; background: #202c30; background: var(--dark); color: #c8d0d4; border-top: 4px solid #b07e4a; }
.site-footer__grid { display: grid; grid-template-columns: 1.25fr .8fr .8fr 1fr; gap: 36px; padding-top: 52px; padding-bottom: 44px; }
.site-footer__logo { display: inline-block; max-width: 172px; }
.site-footer__logo img { width: auto; max-height: 92px; filter: grayscale(1) brightness(0) invert(1); opacity: .92; }
.site-footer__description { max-width: 340px; color: #9eabb1; font-size: 14px; }
.site-footer__heading { margin: 0 0 14px; color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.footer-menu li { margin: 8px 0; }
.footer-menu a, .site-footer__office a, .site-footer__bottom a { color: #c8d0d4; font-size: 14px; }
.site-footer__office p { margin: 7px 0; font-size: 14px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links__item { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1px solid #c9c1b7; border-radius: 50%; color: var(--accent); transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease; }
.social-links__item:hover { border-color: var(--accent); background: var(--accent); color: #fff; text-decoration: none; transform: translateY(-2px); }
.social-links__icon { display: block; width: 17px; height: 17px; fill: currentColor; }
.social-links--footer { margin-top: 16px; }
.social-links--footer .social-links__item { border-color: #566268; color: #fff; }
.social-links--footer .social-links__item:hover { border-color: #fff; background: #fff; color: var(--dark); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; padding-bottom: 20px; border-top: 1px solid #314049; font-size: 12px; color: #9eabb1; }
.site-footer__bottom-links { display: flex; align-items: center; gap: 16px; }
.footer-legal-menu { display: flex; align-items: center; gap: 14px; }
.footer-legal-menu a, .site-footer__bottom-links > a { font-size: 12px; color: #9eabb1; }

@media (max-width: 1120px) {
    .site-header__inner { gap: 14px; }
    .site-branding { flex-basis: 146px; }
    .custom-logo, .site-logo__image { max-width: 146px; max-height: 80px; }
    .primary-nav__menu > li > a { padding-left: 8px; padding-right: 8px; font-size: 13px; }
    .layout-with-sidebar { grid-template-columns: minmax(0, 1fr) 270px; gap: 36px; }
}

@media (max-width: 980px) {
    .nav-open { overflow: hidden; }
    .site-header__inner { min-height: 78px; }
    .site-branding { order: 1; flex: 1 1 auto; }
    .custom-logo, .site-logo__image { max-width: 132px; max-height: 68px; }
    .nav-toggle { order: 3; display: inline-flex; align-items: center; gap: 10px; min-height: 42px; margin-left: 3px; padding: 0 0 0 15px; border: 0; border-left: 1px solid #ded8cf; border-left-color: var(--line); background: transparent; color: #172126; font-weight: 600; }
    .nav-toggle__icon { width: 22px; }
    .nav-toggle__icon span { display: block; height: 2px; margin: 4px 0; background: currentColor; }
    .site-header__actions { order: 2; margin-left: 0; }
    .site-header__navigation { display: none; position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100vh - 78px); overflow-y: auto; background: #fff; border-top: 1px solid #d9dfe2; border-bottom: 1px solid #d9dfe2; box-shadow: 0 14px 30px rgba(20,35,44,.12); }
    .site-header.is-menu-open .site-header__navigation { display: block; }
    .primary-nav { width: calc(100% - 40px); max-width: 1240px; margin: 0 auto; padding: 12px 0 18px; }
    .primary-nav__menu { display: block; }
    .primary-nav__menu > li { border-bottom: 1px solid #e6eaec; }
    .primary-nav__menu > li > a { padding: 13px 38px 13px 0; font-size: 16px; }
    .primary-nav__menu > li > a::after { display: none; }
    .primary-nav__menu > .menu-item-has-children > a { padding-right: 42px; }
    .primary-nav__menu > .menu-item-has-children > a::before { display: none; }
    .primary-nav__menu .sub-menu { display: none; position: static; width: auto; padding: 0 0 10px 14px; border: 0; box-shadow: none; border-radius: 0; opacity: 1; visibility: visible; transform: none; }
    .primary-nav__menu li:hover > .sub-menu { display: none; }
    .primary-nav__menu .is-submenu-open > .sub-menu { display: block !important; }
    .submenu-toggle { display: flex; position: absolute; top: 7px; right: 0; width: 36px; height: 36px; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: transparent; color: #435159; }
    .submenu-toggle:hover, .submenu-toggle:focus-visible { background: var(--accent-soft); color: var(--accent); }
    .submenu-toggle span { display: block; width: 8px; height: 8px; margin-top: -4px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .18s ease, margin .18s ease; }
    .submenu-toggle[aria-expanded="true"] span { margin-top: 4px; transform: rotate(225deg); }
    .mobile-nav-extra { display: block; width: calc(100% - 40px); max-width: 1240px; margin: 0 auto; padding: 0 0 18px; }
    .mobile-nav-cta { margin: 8px 0 14px; }
    .social-links--mobile { padding-top: 12px; border-top: 1px solid #e6eaec; }
    .site-header__actions .button--header { display: none; }
    .lead-grid { grid-template-columns: 1fr; }
    .lead-story__media { height: 420px; }
    .lead-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
    .cards-grid, .cards-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-news__featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .home-news__featured .content-card__media { height: 190px; }
    .service-desk { grid-template-columns: 1fr; }
    .service-feature { min-height: 500px; }
    .service-tools { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
    .resource-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .layout-with-sidebar { grid-template-columns: 1fr; }
    .contextual-sidebar--desktop { display: none; }
    .contextual-sidebar--mobile-before, .contextual-sidebar--mobile-after { display: block; margin: 22px 0 28px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
    .contextual-sidebar--mobile-after { margin-top: 34px; }
    .contextual-sidebar--mobile-before .sidebar-module--related, .contextual-sidebar--mobile-after .sidebar-module--toc { display: none; }
    .contextual-sidebar .sidebar-module { margin-bottom: 18px; padding-bottom: 17px; }
    .contextual-sidebar .sidebar-module:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
    .sidebar-module--toc { position: static; max-height: none; overflow: visible; }
    .archive-header--split { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .container-wide, .container-content { width: calc(100% - 28px); }
    .section-pad { padding: 38px 0; }
    .announcement-bar { font-size: 12px; }
    .announcement-bar__inner { gap: 10px; min-height: 50px; padding-top: 8px; padding-bottom: 8px; }
    .announcement-bar__label { max-width: 82px; padding-right: 8px; border-right: 0; }
    .announcement-bar__item.is-active { display: block; }
    .announcement-bar__link { display: inline-block; margin-left: 5px; }
    .announcement-bar__controls { gap: 3px; padding-left: 4px; border-left: 0; }
    .announcement-bar__counter { display: none; }
    .announcement-bar__control { width: 25px; height: 25px; }
    .site-header__inner { gap: 10px; }
    .site-header__actions { gap: 6px; }
    .language-switcher a, .language-switcher__link { min-width: 24px; min-height: 26px; padding: 3px 2px 2px; font-size: 10px; }
    .nav-toggle { min-height: 38px; margin-left: 0; padding-left: 12px; }
    .nav-toggle__label { display: none; }
    .custom-logo, .site-logo__image { max-width: 112px; max-height: 62px; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
    .section-heading h1, .section-heading h2 { font-size: 28px; }
    .lead-story__media { height: 240px; }
    .content-card__media { height: 210px; }
    .content-card--compact .content-card__media { height: 78px; }
    .lead-story h2 { font-size: 30px; }
    .lead-list { display: block; }
    .content-card--compact { grid-template-columns: 96px minmax(0, 1fr); }
    .cards-grid, .cards-grid--two, .cards-grid--three { grid-template-columns: 1fr; }
    .home-news__featured, .news-list { grid-template-columns: 1fr; }
    .home-news__featured { gap: 18px; }
    .home-news__featured .content-card__media { height: 210px; }
    .home-news__more { margin-top: 28px; padding-top: 19px; }
    .news-list__link { padding-top: 15px; padding-bottom: 15px; }
    .service-feature { min-height: 460px; }
    .service-feature__body { padding: 26px 22px; }
    .service-feature__excerpt { display: none; }
    .service-feature h3 { font-size: 29px; }
    .service-tools { display: flex; }
    .service-desk--tools-only .service-tools { display: flex; }
    .service-search, .service-links { padding: 22px; }
    .resource-menu { grid-template-columns: 1fr; }
    .church-filter { grid-template-columns: 1fr; }
    .entry-header h1 { font-size: 36px; }
    .entry-content { font-size: 16px; }
    .entry-content .alignleft, .entry-content .alignright { float: none; max-width: 100%; margin: 24px auto; }
    .entry-content figure.alignleft, .entry-content figure.alignright { width: fit-content; }
    .comments-area { margin-top: 40px; padding-top: 30px; }
    .comments-title, .comment-reply-title { font-size: 27px; }
    .comment-list .children { margin-left: 18px; }
    .comment-body { padding: 18px 18px 18px 76px; }
    .comment-author .avatar { top: 18px; left: 18px; width: 44px; height: 44px; }
    .comment-meta { min-height: 44px; }
    .comment-form-card { margin-top: 30px; padding: 22px 18px; }
    .comment-form { grid-template-columns: 1fr; gap: 15px; }
    .comment-form > p { grid-column: 1; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 28px; padding-top: 42px; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; }
    .site-footer__bottom-links, .footer-legal-menu { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .announcement-bar__label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.youtube-embed iframe,
.youtube-embed object,
.youtube-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
