:root {
    --navy: #1B3A6B;
    --navy-d: #122850;
    --navy-l: #2a4f8f;
    --gold: #F5C842;
    --gold-l: #fde47a;
    --cream: #FDFAF3;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-l: #f3f4f6;
    --text: #1a1a2e;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;

    --ink: var(--navy-d);
    --muted: var(--gray);
    --line: #e5e7eb;
    --paper: var(--cream);
    --soft: var(--gray-l);
    --accent: var(--gold);
    --accent-dark: var(--navy);
    --shadow: 0 18px 45px rgba(23, 50, 56, .12);
}

* { box-sizing: border-box; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 {
    font-family: var(--serif);
    line-height: 1.1;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 10;
    padding: 8px 12px;
    background: var(--ink);
    color: var(--white);
}

.skip-link:focus { left: 12px; }

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    background: rgba(27, 58, 107, .96);
    border-bottom: 1px solid rgba(245, 200, 66, .2);
    backdrop-filter: blur(12px);
    transition: background .3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.nav-logo img {
    width: auto;
    height: 48px;
}

.nav-logo-text { color: var(--white); }

.nav-logo-text .church-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.1;
}

.nav-logo-text .church-sub {
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .08em;
    opacity: .75;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: .25rem;
}

.nav-links a {
    position: relative;
    padding: .4rem .68rem;
    border-radius: 6px;
    color: rgba(255, 255, 255, .85);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .03em;
    transition: color .2s, background .2s;
}

.nav-links a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, .06);
}

.nav-links a.is-active:not(.btn-give) {
    color: var(--white);
}

.nav-links a.is-active:not(.btn-give)::after {
    content: "";
    position: absolute;
    left: .68rem;
    right: .68rem;
    bottom: .16rem;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
}

.nav-links .btn-give {
    padding: .4rem 1.1rem;
    color: var(--navy-d);
    background: var(--gold);
    font-weight: 600;
}

.nav-links .btn-give:hover {
    color: var(--navy-d);
    background: var(--gold-l);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    border: 0;
    background: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: .3s;
}

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 2px solid var(--gold);
    background: var(--navy-d);
}

.mobile-menu a {
    padding: .85rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
    font-weight: 500;
}

.mobile-menu a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, .04);
}

.mobile-menu a.is-active {
    color: var(--gold);
}

.mobile-menu.open { display: flex; }

#site-main { padding-top: 72px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #0d4f7c;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 10px 28px rgba(23, 50, 56, .18);
}

.site-header__inner {
    width: min(1120px, calc(100% - 32px));
    min-height: 88px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.site-brand__logo {
    width: auto;
    height: 62px;
    max-width: 210px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .24));
}

.site-brand__mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
    font-size: 14px;
    letter-spacing: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}

.site-nav__link {
    padding: 10px 12px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link.is-current {
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    border-radius: 6px;
}

.hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #173238 0%, #31585b 100%);
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.hero__inner,
.page-hero,
.content-section,
.archive-grid,
.ministry-grid,
.article {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.hero__inner { padding: 72px 0; }

.hero__logo {
    width: 156px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .24));
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow { color: var(--gold); }

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(44px, 8vw, 86px);
}

.hero__lead {
    max-width: 610px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 23px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
}

.button--primary { color: var(--navy-d); background: var(--gold); }
.button--primary:hover { background: var(--gold-l); }
.button--secondary { color: var(--white); border: 1px solid rgba(255, 255, 255, .48); }
.button--outline {
    color: var(--navy-d);
    border: 1px solid rgba(27, 58, 107, .24);
    background: var(--white);
}

.button--outline:hover {
    border-color: rgba(27, 58, 107, .42);
    background: var(--gray-l);
}

.info-band {
    width: min(1120px, calc(100% - 32px));
    margin: -54px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.info-band__item { padding: 24px; background: var(--white); }
.info-band__item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.info-band__item strong { display: block; margin-top: 4px; font-size: 24px; }
.info-band__item p { margin: 8px 0 0; color: var(--muted); }

.content-section { padding: 30px 0 78px; }
.page-hero__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.page-hero__row h1 {
    flex: 1 1 auto;
}

.about-nav {
    width: fit-content;
    max-width: 100%;
    flex: 0 0 auto;
    margin: 0;
    display: flex;
    gap: 4px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(18, 40, 80, .08);
}

.about-nav__link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    position: relative;
    padding: 0 20px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    transition: color .2s, background .2s;
}

.about-nav__link:hover,
.about-nav__link.is-current {
    color: var(--navy-d);
    background: rgba(245, 200, 66, .14);
}

.about-nav__link.is-current::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 3px;
    height: 3px;
    border-radius: 3px;
    background: var(--gold);
}

.about-card-grid {
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.about-card h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.about-card p:not(.eyebrow) {
    color: var(--muted);
}

.team-grid {
    display: grid;
    gap: 24px;
}

.team-card {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(18, 40, 80, .08);
}

.team-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.team-card__body {
    padding: 30px;
    align-self: center;
}

.team-card__body h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
}

.team-card__body p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.section-heading { max-width: 720px; margin-bottom: 28px; }
.section-heading h2,
.page-hero h1,
.article__header h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
}

.section-heading--row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.schedule-grid,
.split-updates,
.contact-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.schedule-grid div,
.contact-card,
.side-panel {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.schedule-grid strong,
.schedule-grid span { display: block; }
.schedule-grid span { margin-top: 4px; color: var(--muted); }

.contact-page {
    display: grid;
    gap: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
    gap: 18px;
    align-items: stretch;
}

.contact-card--map {
    overflow: hidden;
    padding: 0;
    min-height: 520px;
}

.contact-card--details {
    display: grid;
    align-content: center;
    gap: 22px;
}

.contact-card--details h2,
.contact-card--details h3 {
    margin: 0 0 8px;
    font-family: var(--sans);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.contact-card--details h3 {
    font-size: 25px;
}

.contact-detail + .contact-detail {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.contact-card--details .eyebrow {
    margin-bottom: 8px;
}

.contact-card--details p {
    margin: 0;
}

.contact-card--details p + p {
    margin-top: 8px;
}

.contact-card--map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-card h2 {
    margin: 0 0 12px;
}

.contact-card p {
    color: var(--muted);
}

.contact-card strong {
    color: var(--text);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.stack-list {
    display: grid;
    gap: 16px;
}

.post-card {
    display: grid;
    grid-template-columns: minmax(120px, 190px) 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.post-card--no-image { grid-template-columns: 1fr; }
.post-card__image { min-height: 190px; background: var(--soft); }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 22px; }

.post-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.post-card h2 { margin: 10px 0 8px; font-size: 24px; }
.post-card h2 a,
.text-link { text-decoration: none; }
.text-link { color: var(--accent-dark); font-weight: 900; }
.post-card p,
.page-hero p,
.article__header p { color: var(--muted); }

.page-hero { padding: 56px 0 0; }
.page-hero p { max-width: 680px; font-size: 19px; }

.archive-grid,
.ministry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 28px 0 78px;
}

.archive-grid .post-card { grid-template-columns: 1fr; }
.archive-grid .post-card__image { aspect-ratio: 16 / 10; }

.ministry-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(18, 40, 80, .08);
}

.ministry-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    background: var(--soft);
}

.ministry-card--children img,
.ministry-card--kitchen img,
.ministry-card--family img {
    object-position: center 38%;
}

.ministry-card--youth img {
    object-position: center 30%;
}

.ministry-card--missions img,
.ministry-card--men img {
    object-position: center;
}

.ministry-card--women img,
.ministry-card--forever img {
    object-fit: contain;
    object-position: center;
    padding: 14px;
    background: var(--white);
}

.ministry-card__body {
    padding: 22px;
}

.ministry-card__body h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.ministry-card__body p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
}

.contact-content {
    max-width: 820px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.article { padding: 76px 0; }
.article--compact {
    padding-top: 14px;
}

.article--media {
    display: grid;
    grid-template-columns: minmax(280px, 480px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.article__header { max-width: 820px; margin: 0 auto 34px; }
.article__image { margin: 0 auto 42px; }
.article--post .article__header,
.article--post .article__image,
.article--post .article__content {
    max-width: 820px;
    margin-inline: auto;
}

.article--media .article__image {
    width: 100%;
    margin: 0;
}

.article__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.article--post .article__image {
    text-align: center;
}

.article--post .article__image img,
.article--post .gh-content img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-inline: auto;
    object-fit: contain;
}

.article--media .article__image img {
    height: 100%;
    max-height: 620px;
    object-fit: cover;
    min-height: 420px;
}

.article__image figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.gh-content { max-width: 760px; }
.article .gh-content { margin-inline: auto; }
.gh-content > :first-child,
.side-panel > :first-child,
.contact-card > :first-child {
    margin-top: 0;
}

.article--media .gh-content {
    max-width: none;
    margin-inline: 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(18, 40, 80, .08);
}

.gh-content .kg-width-wide {
    width: min(960px, calc(100vw - 32px));
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
}

.gh-content .kg-width-full {
    width: 100vw;
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
}

.gh-content .kg-width-wide img,
.gh-content .kg-width-full img { width: 100%; }
.gh-content h2,
.gh-content h3 { margin-top: 1.6em; }
.gh-content p,
.gh-content li { color: var(--text); font-size: 18px; }
.gh-content a { color: var(--accent-dark); font-weight: 800; }

.article--post .gh-content .kg-gallery-card {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
}

.article--post .kg-gallery-card--slider {
    margin: 34px 0;
}

.amc-gallery-slider {
    width: 100%;
}

.amc-gallery-slider__figure {
    margin: 0;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--white);
}

.article--post .amc-gallery-slider .splide__slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 680px;
    margin-inline: auto;
    border-radius: 8px;
    object-fit: contain;
}

.event-hero {
    max-width: 820px;
    margin: 0 auto 28px;
}

.event-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 66px);
}

.event-hero__copy > p {
    max-width: 660px;
    color: var(--muted);
    font-size: 20px;
}

.event-back {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.event-back::before {
    content: "<";
    margin-right: 8px;
}

.event-summary {
    max-width: 820px;
    margin: 0 auto 34px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--gold);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(18, 40, 80, .08);
}

.event-summary[hidden] {
    display: none;
}

.event-summary__label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.event-summary h2 {
    margin: 0;
    font-size: 28px;
}

.event-summary p {
    margin: 12px 0 18px;
    color: var(--muted);
}

.event-summary__details {
    flex: 1 1 auto;
}

.event-summary__actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

.event-summary__actions .button {
    white-space: nowrap;
}

.event-calendar-button {
    color: var(--navy-d);
    border: 1px solid var(--line);
    background: var(--white);
}

.event-calendar-button:hover {
    border-color: var(--gold);
    background: rgba(245, 200, 66, .14);
}

.event-calendar-button[hidden] {
    display: none;
}

.event-details-live p {
    margin: 6px 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.35;
}

.event-details-live p:last-child {
    margin-bottom: 0;
}

.event-details-live strong {
    color: var(--navy-d);
}

.amc-gallery-slider .splide__arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(18, 40, 80, .84);
    box-shadow: 0 10px 24px rgba(18, 40, 80, .22);
    cursor: pointer;
    transform: translateY(-50%);
}

.amc-gallery-slider .splide__arrow:hover {
    background: var(--navy);
}

.amc-gallery-slider .splide__arrow--prev {
    left: 14px;
}

.amc-gallery-slider .splide__arrow--next {
    right: 14px;
}

.amc-gallery-slider .splide__arrow svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.amc-gallery-slider .splide__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.amc-gallery-slider .splide__pagination__page {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(18, 40, 80, .24);
    cursor: pointer;
}

.amc-gallery-slider .splide__pagination__page.is-active {
    background: var(--gold);
}

footer {
    padding: 3.5rem 2rem 2rem;
    color: rgba(255, 255, 255, .65);
    background: var(--navy-d);
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand img { width: 120px; }

.footer-brand p {
    max-width: 260px;
    margin: 0;
    font-size: .85rem;
    line-height: 1.65;
}

.footer-col h4 {
    margin: 0 0 1rem;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col ul li a {
    font-size: .87rem;
    transition: color .2s;
}

.footer-col ul li {
    font-size: .87rem;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
    max-width: 1160px;
    margin: 2.5rem auto 0;
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .78rem;
}

.footer-bottom a { color: rgba(255, 255, 255, .5); }
.footer-bottom a:hover { color: var(--gold); }

.empty-state {
    margin: 0;
    padding: 24px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: var(--white);
}

.pagination {
    width: min(1120px, calc(100% - 32px));
    margin: -42px auto 72px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.pagination a {
    color: var(--accent-dark);
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 860px) {
    .site-header__inner {
        min-height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav { justify-content: flex-start; }
    .hero { min-height: 460px; }

    .page-hero__row {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .about-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 6px;
    }

    .about-nav__link {
        flex: 0 0 auto;
        min-height: 44px;
        padding-inline: 16px;
        white-space: nowrap;
    }

    .info-band,
    .split-updates,
    .schedule-grid,
    .archive-grid,
    .ministry-grid,
    .about-card-grid,
    .team-card,
    .event-hero,
    .article--media,
    .two-column,
    .contact-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card--map {
        min-height: 340px;
    }

    .team-card img {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .article--media .article__image img {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand { grid-column: 1 / -1; }

    .info-band {
        margin-top: 0;
        border-radius: 0;
        width: 100%;
        border-left: 0;
        border-right: 0;
    }

    .content-section { padding: 24px 0 54px; }

    .event-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-summary__actions {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .nav {
        padding: 0 1rem;
    }

    .nav-logo img {
        height: 44px;
    }

    .nav-logo-text .church-name {
        font-size: .94rem;
    }

    .nav-logo-text .church-sub {
        font-size: .58rem;
    }

    footer {
        padding-inline: 1.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .site-brand { white-space: normal; }
    .site-brand__logo {
        height: 54px;
        max-width: 180px;
    }
    .site-nav__link { padding: 8px 6px; }
    .hero h1 { font-size: 43px; }
    .hero__logo { width: 132px; }
    .hero__lead { font-size: 20px; }
    .post-card { grid-template-columns: 1fr; }
    .post-card__image { min-height: 220px; }
    .section-heading--row,
    .site-footer__bottom,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
