@charset "UTF-8";
/* enjc.css - generated from scss/ by build.sh. Do not edit css/enjc.css directly. */
/* ── Tokens ── */
:root {
    --navy: #17365d;
    --navy-dark: #0f2541;
    --navy-soft: #284c7a;
    --gold: #c9a03a;
    --gold-deep: #a8831f;
    --gold-soft: #e6c976;
    --utility-gold: #eadfbf;
    --stone: #f6f1e7;
    --stone-warm: #efe6d2;
    --paper: #fbf8f1;
    --ink: #1b1f26;
    --ink-soft: #3d4454;
    --muted: #6b6f78;
    --rule: #d9cfb8;
    --plate: rgba(251, 248, 241, 0.97);
    --serif: "Cormorant Garamond", "Hoefler Text", Georgia, serif;
    --sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky-header: 200;
    --z-modal: 1000;
    --sticky-header-h: 72px;
}

/* ── Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: 0.005em;
    line-height: 1.2;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold-deep);
}

nav.nav {
    padding-bottom: 18px;
    justify-content: center;
}

nav.nav .mod-menu {
    flex-direction: inherit;
}

nav.nav .mod-menu__sub li {
    width: 100%;
    text-align: left;
}

nav.nav .mod-menu__sub::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
}

.utility.container {
    background: var(--navy-dark);
    max-width: 100%;
}

.utility.container .mod-menu {
    width: 100%;
    flex-direction: row;
    list-style: none;
    gap: 24px;
    margin-block: 0;
    padding: 0;
}

.utility.container .mod-menu a {
    color: var(--utility-gold);
    opacity: 0.85;
    transition: opacity 0.2s;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.utility.container .mod-menu a:hover, .utility.container .mod-menu a:focus {
    opacity: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: var(--space-5);
}

/* ── Utility Strip ── */
.site-utility {
    background: var(--navy-dark);
    color: #fff;
    font-size: 0.8125rem;
    padding: var(--space-2) 0;
}

.site-utility a {
    color: var(--gold-soft);
}

.site-utility a:hover {
    color: var(--gold);
}

/* ── Utility position (inside header) ── */
.utility-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-4);
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 32px;
    color: var(--ink-soft);
}

.utility-wrap a {
    color: var(--navy);
    text-decoration: none;
}

.utility-wrap a:hover {
    color: var(--gold-deep);
}

.utility-wrap .mod-menu {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

/* ── Header ── */
.site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky-header);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-4);
    padding-block: var(--space-4);
    max-width: 1216px;
}

.brand {
    justify-self: center;
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 78px;
    width: 78px;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(15, 37, 65, 0.22);
    border: 2px solid var(--gold);
    object-fit: contain;
    background: radial-gradient(circle at 50% 40%, #1b3e6a 0%, var(--navy-dark) 100%);
    aspect-ratio: 1;
}

.brand-logo img {
    width: 55px;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.brand-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.05;
}

.brand-sub {
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px;
}

.header-cta {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-cta .livestream-btn,
.header-cta .mod-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #f9f2da;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--navy);
    transition: all 0.2s;
    white-space: nowrap;
}

.header-cta .mod-custom a,
.header-cta .mod-custom a:hover {
    color: inherit;
}

.header-cta .livestream-btn:hover,
.header-cta .mod-custom:hover {
    background: var(--navy-dark);
    border-color: var(--gold);
    color: #f9f2da;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 37, 65, 0.22);
}

.header-cta .livestream-btn::before,
.header-cta .mod-custom::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #e34c4c;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(227, 76, 76, 0.6);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 76, 76, 0.6);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(227, 76, 76, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 76, 76, 0);
    }
}

.header-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--rule);
    padding-top: 6px;
    max-width: 1216px;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav a {
    display: block;
    padding: 14px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.nav a:hover,
.nav .current > a,
.nav .active > a {
    color: var(--navy);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.nav li:hover > a::after,
.nav .current > a::after,
.nav .active > a::after {
    transform: scaleX(1);
}

.nav > ul > li.parent > a::after {
    right: 10px;
}

.nav li {
    position: relative;
}

.nav .item-1427,
.nav .item-1432 {
    display: none;
}

.nav li:hover > ul,
.nav li:focus-within > ul {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav ul ul {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 240px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-top: 3px solid var(--gold);
    box-shadow: 0 18px 40px rgba(15, 37, 65, 0.14);
    padding: 10px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: var(--z-dropdown);
    flex-direction: column;
    display: flex;
}

.nav ul ul a {
    text-transform: none;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    padding: 10px 22px;
    color: var(--ink-soft);
    text-align: left;
    transition: background 0.15s, color 0.15s;
}

.nav ul ul a::after {
    display: none;
}

.nav ul ul a:hover {
    background: var(--stone);
    color: var(--navy);
}

/* ── Mobile Menu Button ── */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.mobile-menu-btn .hamburger-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    position: absolute;
    left: 50%;
    margin-left: -10px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn .hamburger-bar:nth-child(1) {
    transform: translateY(-6px);
}

.mobile-menu-btn .hamburger-bar:nth-child(3) {
    transform: translateY(6px);
}

.mobile-menu-btn.is-active .hamburger-bar:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-btn.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.is-active .hamburger-bar:nth-child(3) {
    transform: rotate(-45deg);
}

/* ── Mobile Offcanvas ── */
.mobile-offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 37, 65, 0.5);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-offcanvas-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--paper);
    z-index: calc(var(--z-modal) + 1);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(15, 37, 65, 0.15);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-left: 3px solid var(--gold);
}

.mobile-offcanvas.is-open {
    transform: translateX(0);
}

.mobile-offcanvas__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--rule);
    flex-shrink: 0;
}

.mobile-offcanvas__title {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
}

.mobile-offcanvas__close {
    display: none;
}

.mobile-offcanvas__body {
    flex: 1;
    padding: var(--space-3) 0;
}

.mobile-offcanvas__body .mod-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-offcanvas__body .mod-menu > li > a {
    display: block;
    padding: 14px var(--space-5);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid rgba(217, 207, 184, 0.5);
    transition: background 0.15s ease, color 0.15s ease;
    position: relative;
}

.mobile-offcanvas__body .mod-menu > li > a::after {
    display: none;
}

.mobile-offcanvas__body .mod-menu > li > a:hover,
.mobile-offcanvas__body .mod-menu > li.current > a,
.mobile-offcanvas__body .mod-menu > li.active > a {
    background: var(--stone);
    color: var(--navy);
}

.mobile-offcanvas__body .mod-menu > li.active > a {
    border-left: 3px solid var(--gold);
}

.mobile-offcanvas__body .mod-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: none;
    box-shadow: none;
    background: var(--stone);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.mobile-offcanvas__body .mod-menu ul a {
    display: block;
    padding: 12px var(--space-5) 12px var(--space-7);
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0.04em;
    font-weight: 400;
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid rgba(217, 207, 184, 0.3);
    transition: background 0.15s ease, color 0.15s ease;
}

.mobile-offcanvas__body .mod-menu ul a::after {
    display: none;
}

.mobile-offcanvas__body .mod-menu ul a:hover {
    background: var(--stone-warm);
    color: var(--navy);
}
.hero.hero--community {
  .hero__overlay {
    background-image: linear-gradient(135deg, rgba(15, 37, 65, 0.2) 0%, rgba(15, 37, 65, 0.7) 100%),
    url(https://enjc.org/images/stories/FamFun14/Pavilion.jpg);
  }
}
.hero.hero--about {
    .hero__overlay {
      background-image: url(https://enjc.org/images/main-hall.jpg);
    }
}
.hero.hero--worship {
  background: linear-gradient(180deg, var(--stone) 0%, var(--stone-warm) 100%);
  .hero__overlay::after {
    background:transparent;
  }
  .hero__plate {
    background:transparent;
    border-top:none;
    box-shadow:none;
      padding:0;
  }
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
        position: absolute;
        right: var(--space-5);
        top: 50%;
        transform: translateY(-50%);
    }

    .nav {
        display: none;
    }

    .header-bottom {
        display: none;
    }

    .header-top {
        display: flex;
        justify-content: space-between;
        padding-block: var(--space-3);
        position: relative;
    }

    .header-cta {
        display: none;
    }

    .utility-wrap {
        padding: 10px 0 !important;
    }
}

@media (max-width: 588px) {
    .brand {
        flex-direction: column;
        gap: var(--space-2);
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        right: var(--space-5);
        top: 50px;
        transform: translateY(-50%);
    }

    .utility.container .mod-menu {
        justify-content: center;
    }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 0;
    transition: all 0.22s ease;
}

.btn--primary {
    background: var(--navy);
    color: #f9f2da;
    border: 1px solid var(--navy);
}

.btn--primary::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' fill='none'%3E%3Cpath d='M0 6h17.5M12.5 1l5.5 5-5.5 5' stroke='%23f9f2da' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center;
    transition: transform 0.22s;
}

.btn--primary:hover {
    background: var(--navy-dark);
    color: #f9f2da;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 37, 65, 0.22);
}

.btn--primary:hover::after {
    transform: translateX(4px);
}

.btn--secondary {
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(23, 54, 93, 0.25);
}

.btn--secondary:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: rgba(23, 54, 93, 0.04);
}

/* ── Footer ── */
.site-footer {
    background: var(--navy-dark);
    color: #d6cdb2;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(230, 201, 118, 0.14);
}

.site-footer a {
    color: #d6cdb2;
    font-size: 14px;
    line-height: 1.7;
}

.site-footer a:hover {
    color: var(--gold-soft);
}

.site-footer p {
    font-size: 14px;
    line-height: 1.7;
    color: #d6cdb2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.site-footer .footer-brand .brand {
    margin-bottom: 18px;
    margin-right: auto;
}

.site-footer .footer-brand .brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, #1b3e6a 0%, var(--navy-dark) 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 14px rgba(15, 37, 65, 0.22);
    display: grid;
    place-items: center;
    padding: 6px;
    flex-shrink: 0;
}

.site-footer .footer-brand .brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.site-footer .footer-brand .brand-name {
    color: #f6ecd0;
    font-size: 18px;
}

.site-footer .footer-brand .brand-sub {
    color: rgba(234, 223, 191, 0.6);
}

.site-footer .moduletable h3 {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
    font-weight: 700;
    margin: 0 0 18px;
}

.site-footer .mod-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer .mod-menu li {
    line-height: 1.7;
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(230, 201, 118, 0.12);
    font-size: 12px;
    color: rgba(214, 205, 178, 0.6);
    letter-spacing: 0.08em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
}

.footer-copyright img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .footer-copyright {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }
}

/* ── Page Hero (Interior) ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff;
    padding: var(--space-8) 0 var(--space-7);
    text-align: center;
}

.page-hero .mod-breadcrumbs {
    margin-bottom: var(--space-4);
}

.page-hero .mod-breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    font-size: 0.8125rem;
}

.page-hero .mod-breadcrumbs a {
    color: var(--gold-soft);
}

.page-hero .mod-breadcrumbs a:hover {
    color: var(--gold);
}

.page-hero .mod-breadcrumbs li + li::before {
    content: "/";
    color: var(--navy-soft);
    margin-right: var(--space-2);
}

.page-hero .mod-breadcrumbs .active {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 500;
    margin: 0 0 var(--space-3);
}

.page-hero__aleph {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--space-3);
}

.page-hero__subtitle {
    font-size: 1.125rem;
    color: var(--gold-soft);
    margin: 0 0 var(--space-4);
}

.page-hero__bar {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* ── Interior Layout ── */
.interior-body {
    padding-block: var(--space-7);
    padding-inline: 32px;
}

.interior-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    min-width: 0;
}

.interior-grid img {
    max-width: 100%;
    height: auto;
}

.has-sidebar-right .interior-grid {
    grid-template-columns: 3fr 1fr;
}

.has-sidebar-left .interior-grid {
    grid-template-columns: 1fr 3fr;
}

.has-sidebar-left.has-sidebar-right .interior-grid {
    grid-template-columns: 1fr 3fr 1fr;
}

@media (max-width: 767px) {
    .has-sidebar-right .interior-grid,
    .has-sidebar-left .interior-grid,
    .has-sidebar-left.has-sidebar-right .interior-grid {
        grid-template-columns: 1fr;
    }
}

.sidebar,
.sidebar--left,
.sidebar--right {
    align-self: start;
}

.sidebar .card,
.sidebar--left .card,
.sidebar--right .card {
    background: var(--stone);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    margin-bottom: var(--space-4);
    border-top: 3px solid var(--gold);
}

.sidebar .card.sidebar-card--dark,
.sidebar--left .card.sidebar-card--dark,
.sidebar--right .card.sidebar-card--dark {
    background: var(--navy);
    color: #fff;
    border-top-color: var(--gold);
}

.sidebar .card.sidebar-card--dark a,
.sidebar--left .card.sidebar-card--dark a,
.sidebar--right .card.sidebar-card--dark a {
    color: var(--gold-soft);
}

.sidebar .card.sidebar-card--dark a:hover,
.sidebar--left .card.sidebar-card--dark a:hover,
.sidebar--right .card.sidebar-card--dark a:hover {
    color: var(--gold);
}

.sidebar .card.sidebar-card--quote,
.sidebar--left .card.sidebar-card--quote,
.sidebar--right .card.sidebar-card--quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.125rem;
    border-top: none;
    border-left: 4px solid var(--gold);
    background: var(--stone);
}

/* ── Article Body ── */
.article-main h2 {
    font-family: var(--serif);
    font-size: 1.75rem;
    color: var(--navy);
    margin-top: var(--space-7);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 3px solid var(--gold);
}

.article-main > .com-content-article__body > p:first-of-type::first-letter {
    font-family: var(--serif);
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    margin-right: var(--space-2);
    margin-top: var(--space-1);
    color: var(--navy);
    font-weight: 600;
}

/* ── Article Navigation ── */
.com-content-article__navigation {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
    margin-top: var(--space-7);
    padding-top: var(--space-5);
    border-top: 1px solid var(--stone-warm);
}

.com-content-article__navigation a {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    text-decoration: none;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
    max-width: 45%;
}

.com-content-article__navigation a:hover {
    background: var(--stone);
}

.com-content-article__navigation a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.com-content-article__navigation a[rel=next] {
    margin-left: auto;
    text-align: right;
}

.article-nav__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-deep);
}

.article-nav__label::before,
.article-nav__label::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' fill='none'%3E%3Cpath d='M0 6h17.5M12.5 1l5.5 5-5.5 5' stroke='%23a8831f' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center;
    transition: transform 0.22s;
}

.article-nav__label::before {
    transform: scaleX(-1);
}

.article-nav__label::after {
    display: none;
}

a[rel=next] .article-nav__label::before {
    display: none;
}

a[rel=next] .article-nav__label::after {
    display: inline-block;
}

.article-nav__title {
    font-family: var(--serif);
    font-size: 1.125rem;
    color: var(--navy);
    line-height: 1.3;
}

@media (max-width: 575px) {
    .com-content-article__navigation {
        flex-direction: column;
    }

    .com-content-article__navigation a {
        max-width: 100%;
    }

    .com-content-article__navigation a[rel=next] {
        text-align: left;
    }
}

/* ── Article-body CSS patterns ── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-5);
    margin: var(--space-6) 0;
    counter-reset: benefit;
}

.benefits-grid__item {
    counter-increment: benefit;
    padding: var(--space-5);
    background: var(--stone);
    border-radius: var(--radius-md);
}

.benefits-grid__item::before {
    content: counter(benefit);
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-2);
}

.callout-card {
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    margin: var(--space-5) 0;
    background: #fff;
}

.photo-collage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-3);
    margin: var(--space-5) 0;
}

.photo-collage img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.photo-collage::after {
    content: "";
    display: block;
    grid-column: 1/-1;
    height: 3px;
    background: var(--gold);
    margin-top: var(--space-3);
}

.confidential-note {
    background: var(--stone);
    color: var(--muted);
    padding: var(--space-4);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin: var(--space-5) 0;
}

/* ── Prev/Next Navigation ── */
.com-content-article__navigation {
    display: flex;
    justify-content: space-between;
    padding: var(--space-5) 0;
    margin-top: var(--space-6);
    border-top: 1px solid var(--rule);
    font-weight: 600;
}

.com-content-article__navigation a {
    color: var(--navy);
}

.com-content-article__navigation a:hover {
    color: var(--gold);
}
