:root {
  --ink: #102033;
  --muted: #607087;
  --paper: #f8fbff;
  --wash: #eaf3fb;
  --blue: #00458d;
  --blue-2: #00366f;
  --blue-3: #0b5fac;
  --sky: #d7ecfa;
  --gold: #d6a33a;
  --line: rgba(0, 69, 141, 0.14);
  --shadow: 0 24px 80px rgba(0, 54, 111, 0.18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  box-shadow: 0 10px 34px rgba(0, 34, 75, 0.08);
  display: flex;
  justify-content: space-between;
  left: 0;
  overflow: visible;
  padding: 16px clamp(20px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease;
  z-index: 60;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(0, 34, 75, 0.12);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  min-height: 48px;
  min-width: 0;
  padding-left: 108px;
  position: relative;
}

.brand-logo {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 54, 111, 0.08);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 24px rgba(0, 34, 75, 0.1);
  display: block;
  height: 96px;
  left: 0;
  object-fit: contain;
  padding: 6px 8px;
  position: absolute;
  top: -10px;
  transform: none;
  width: 92px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--blue-2);
  font-size: 1.03rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand small {
  color: var(--blue-3);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin-top: 5px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 1.7vw, 24px);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav > a,
.site-nav > .nav-dropdown > a {
  position: relative;
  white-space: nowrap;
}

.site-nav > a::after,
.site-nav > .nav-dropdown > a::after {
  background: var(--gold);
  bottom: -8px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease, background 180ms ease;
  width: 100%;
}

.site-nav > a:hover::after,
.site-nav > .nav-dropdown > a:hover::after,
.site-nav > .nav-dropdown:hover > a::after,
.site-nav > .nav-dropdown:focus-within > a::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
  text-decoration: none !important;
}

.site-nav > a[aria-current="page"]::after,
.site-nav > .nav-dropdown > a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--gold);
}

.nav-dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
  margin-bottom: -24px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 34, 75, 0.14);
  display: flex;
  flex-direction: column;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 100;
  padding: 8px 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  background: white;
  transition: background 160ms ease, color 160ms ease;
  display: block;
  text-decoration: none !important;
  border-left: 4px solid transparent;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--wash) !important;
  color: var(--blue) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--gold) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a[aria-current="page"] {
  background: var(--blue) !important;
  color: white !important;
  font-weight: 900 !important;
  border-left: 4px solid var(--gold) !important;
  text-decoration: none !important;
}

.nav-toggle {
  background: transparent;
  border: 0;
  border-radius: 50%;
  display: none;
  height: 40px;
  padding: 8px;
  position: relative;
  width: 40px;
  z-index: 70;
}

.nav-toggle span {
  background: var(--blue-2);
  display: block;
  height: 3px;
  margin: 5px 0;
  transition: opacity 160ms ease, transform 160ms ease;
  width: 24px;
}

.nav-toggle.is-open {
  background: rgba(0, 69, 141, 0.08);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 84px) 42px;
  position: relative;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(0, 34, 75, 0.86) 0%, rgba(0, 34, 75, 0.74) 34%, rgba(0, 69, 141, 0.3) 66%, rgba(0, 69, 141, 0.04) 100%),
    url("https://images.unsplash.com/photo-1658221744192-00e3770b8625?auto=format&fit=crop&fm=jpg&q=75&w=1800")
    center / cover;
  color: white;
  padding: 160px clamp(20px, 6vw, 84px) 82px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 900px;
}

.page-hero p:last-child {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 24px 0 0;
  max-width: 720px;
}

.about-hero {
  min-height: 560px;
  position: relative;
}

.about-hero > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 24px 0 0;
  max-width: 720px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts span {
  align-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  font-weight: 850;
  gap: 8px;
  padding: 10px 16px;
}

.hero-facts strong {
  color: white;
  font-size: 1.08rem;
}

.news-hero {
  background:
    linear-gradient(90deg, rgba(0, 34, 75, 0.86) 0%, rgba(0, 34, 75, 0.74) 34%, rgba(0, 69, 141, 0.3) 66%, rgba(0, 69, 141, 0.04) 100%),
    url("https://images.unsplash.com/photo-1658221744192-00e3770b8625?auto=format&fit=crop&fm=jpg&q=75&w=1800")
    center / cover;
  color: white;
  padding: 148px clamp(20px, 6vw, 84px) 76px;
}

.breadcrumb {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  font-weight: 850;
  gap: 10px;
  margin-bottom: 22px;
}

.breadcrumb a {
  color: white;
}

.news-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  max-width: 900px;
}

.news-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  margin: 22px 0 0;
  max-width: 760px;
}

.news-section {
  background: var(--wash);
}

.lead-story {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 54, 111, 0.1);
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  margin: 0 auto 34px;
  max-width: 1180px;
  overflow: hidden;
}

.lead-story-media {
  min-height: 330px;
  position: relative;
}

.lead-story-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.featured-flag {
  background: white;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 34, 75, 0.18);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  left: 18px;
  letter-spacing: 0.08em;
  padding: 9px 12px;
  position: absolute;
  text-transform: uppercase;
  top: 18px;
}

.lead-story-copy {
  align-content: center;
  display: grid;
  justify-items: start;
  padding: clamp(24px, 4vw, 44px);
}

.lead-story h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.6rem);
  line-height: 1.03;
  margin: 4px 0 14px;
}

.lead-story p {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 14px;
}

.story-byline {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px 14px;
  margin-bottom: 12px;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 34px;
  max-width: 1180px;
}

.category-filter a {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 10px 14px;
}

.category-filter a.is-active,
.category-filter a:hover {
  background: var(--blue);
  color: white;
}

.news-list-head {
  align-items: end;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto 22px;
  max-width: 1180px;
}

.news-list-head h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  margin: 0;
}

.news-list-head span {
  color: var(--muted);
  font-weight: 850;
}

.story-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.story-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 54, 111, 0.07);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.story-card:hover {
  box-shadow: 0 18px 38px rgba(0, 54, 111, 0.12);
  transform: translateY(-3px);
}

.story-card > img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.story-card-body {
  padding: 17px;
}

.story-card h3 {
  font-size: 1.12rem;
  line-height: 1.2;
  margin: 8px 0 9px;
}

.story-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.story-card-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 850;
  gap: 8px 12px;
  margin-top: 14px;
  padding-top: 13px;
}

.story-card-footer a {
  color: var(--blue);
  font-weight: 950;
  letter-spacing: 0.04em;
  margin-right: auto;
  border: 1px solid rgba(0, 69, 141, 0.28);
  border-radius: 999px;
  padding: 7px 11px;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.story-card-footer a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.pagination-lite {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 42px 0 0;
}

.pagination-lite a {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 8px 12px;
}

.pagination-lite a.is-active,
.pagination-lite a:hover {
  background: var(--blue);
  color: white;
}

.media-enquiries {
  align-items: center;
  background: var(--blue-2);
  color: white;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto;
  padding: clamp(48px, 7vw, 76px) clamp(20px, 6vw, 84px);
}

.media-enquiries h2 {
  font-size: clamp(1.8rem, 3.8vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 12px;
}

.media-enquiries p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
  max-width: 720px;
}

.article-hero {
  background:
    linear-gradient(90deg, rgba(0, 34, 75, 0.95), rgba(0, 69, 141, 0.78)),
    url("https://images.unsplash.com/photo-1658221744192-00e3770b8625?auto=format&fit=crop&fm=jpg&q=75&w=1800")
    center / cover;
  color: white;
  padding: 148px clamp(20px, 6vw, 84px) 72px;
}

.article-hero h1 {
  font-size: clamp(2.2rem, 5vw, 5rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 22px;
  max-width: 1040px;
}

.article-meta-line {
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-wrap: wrap;
  font-weight: 850;
  gap: 10px 18px;
}

.article-layout {
  align-items: start;
  background: var(--wash);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) 330px;
}

.article-main,
.article-sidebar section,
.comments-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 54, 111, 0.07);
}

.article-main {
  overflow: hidden;
}

.article-feature-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.article-content {
  color: #273a51;
  font-size: 1.08rem;
  padding: clamp(24px, 4vw, 44px);
}

.article-content p {
  margin: 0 0 1.2em;
}

.article-share {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(24px, 4vw, 44px);
}
/* Rich Text Editor Output Styling */
.rich-text p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.rich-text h2, .rich-text h3, .rich-text h4 {
  color: var(--blue-2);
  font-weight: 700;
  margin: 32px 0 16px;
}

.rich-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

.rich-text figure {
  margin: 32px 0;
}

.rich-text figure img {
  display: block;
  margin: 0;
  width: 100%;
}

.rich-text figcaption {
  background: var(--wash);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  padding: 12px 14px;
}

.rich-text ul, .rich-text ol {
  color: var(--text);
  margin-bottom: 24px;
  padding-left: 24px;
  line-height: 1.8;
}

.rich-text li {
  margin-bottom: 8px;
}

.rich-text blockquote {
  border-left: 4px solid var(--gold);
  background: var(--blue-wash);
  padding: 16px 24px;
  margin: 24px 0;
  border-radius: 4px;
  color: var(--blue-2);
  font-weight: 600;
  font-style: italic;
}

.rich-text a {
  color: var(--blue);
  text-decoration: underline;
}

.article-share span {
  color: var(--muted);
  font-weight: 900;
  margin-right: auto;
}

.article-share a {
  border: 1px solid rgba(0, 69, 141, 0.22);
  border-radius: 999px;
  color: var(--blue);
  font-weight: 900;
  padding: 8px 12px;
}

.comments-box {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(24px, 4vw, 44px);
}

.comments-box h3,
.article-sidebar h4 {
  margin: 0 0 14px;
}

.comments-box p {
  color: var(--muted);
}

.comment-form,
.sidebar-search {
  display: grid;
  gap: 14px;
}

.comment-form label {
  color: var(--muted);
  display: grid;
  font-weight: 850;
  gap: 7px;
}

.article-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 104px;
}

.article-sidebar section {
  padding: 20px;
}

.sidebar-search {
  grid-template-columns: 1fr auto;
}

.sidebar-search button {
  background: var(--blue);
  border: 0;
  border-radius: var(--radius);
  color: white;
  cursor: pointer;
  font-weight: 900;
  padding: 0 14px;
}

.recent-list,
.sidebar-categories {
  display: grid;
  gap: 12px;
}

.recent-list a {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
}

.recent-list a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.recent-list strong {
  font-size: 0.94rem;
  line-height: 1.25;
}

.recent-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.sidebar-categories a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  padding-bottom: 10px;
}

.sidebar-categories a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.related-section {
  background: var(--paper);
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background:
    url("https://images.unsplash.com/photo-1658221744192-00e3770b8625?auto=format&fit=crop&fm=jpg&q=75&w=2200")
    center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 34, 75, 0.9) 0%, rgba(0, 58, 120, 0.68) 48%, rgba(0, 69, 141, 0.16) 100%);
}

.hero-content {
  color: white;
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7.8rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
  max-width: 920px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  margin: 28px 0 0;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue-3);
  color: white;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: white;
}

.button-outline {
  background: transparent;
  border-color: rgba(0, 69, 141, 0.28);
  color: var(--blue);
  justify-self: start;
}

.button-outline:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.button-light {
  background: white;
  color: var(--blue);
}

.hero-card {
  background: rgba(251, 250, 246, 0.95);
  border-radius: var(--radius);
  bottom: 34px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  max-width: 270px;
  padding: 20px;
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  z-index: 3;
}

.hero-card span {
  color: var(--muted);
  font-weight: 750;
}

.hero-card strong {
  color: var(--blue);
  font-size: 3rem;
  line-height: 1;
}

.intro-band {
  background: var(--blue-2);
  color: white;
  padding: 0 clamp(20px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1180px;
  transform: translateY(-28px);
}

.intro-grid article {
  background: #064f98;
  min-height: 260px;
  padding: 34px;
}

.icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.icon svg {
  fill: none;
  height: 25px;
  stroke: var(--sky);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 25px;
}

.intro-grid h2,
.section h2,
.scripture-band blockquote {
  letter-spacing: 0;
  line-height: 1.08;
}

.intro-grid h2 {
  font-size: 1.4rem;
  margin: 20px 0 10px;
}

.intro-grid p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.intro-grid ul {
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.intro-grid li {
  padding-left: 18px;
  position: relative;
}

.intro-grid li::before {
  background: var(--sky);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.72em;
  width: 6px;
}

.values-card {
  min-height: 340px;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 84px);
}

.intro-about {
  max-width: none;
}

.intro-about-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  margin: 0 auto;
  max-width: 1180px;
}

.intro-about-media {
  background:
    linear-gradient(180deg, rgba(0, 34, 75, 0.05), rgba(0, 69, 141, 0.18)),
    url("https://images.unsplash.com/photo-1658221744192-00e3770b8625?auto=format&fit=crop&fm=jpg&q=75&w=1200")
    center / cover;
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 54, 111, 0.16);
  min-height: 380px;
}

.intro-about-copy {
  align-content: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 46px rgba(0, 54, 111, 0.08);
  display: grid;
  padding: clamp(26px, 4vw, 46px);
}

.intro-about-copy .eyebrow {
  color: var(--blue);
}

.split,
.parishes,
.impact,
.contact {
  align-items: center;
  display: grid;
  gap: clamp(34px, 7vw, 88px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
}

.section-copy h2,
.section-heading h2,
.impact-copy h2,
.contact h2 {
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  margin: 0 0 20px;
}

.section-copy p,
.impact-copy p,
.contact address,
.contact-lines {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-overview {
  align-items: stretch;
  background:
    linear-gradient(180deg, white, rgba(234, 243, 251, 0.5)),
    var(--paper);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.about-copy {
  display: grid;
  gap: 22px;
}

.copy-block,
.identity-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(0, 54, 111, 0.07);
  padding: clamp(24px, 4vw, 38px);
}

.copy-block {
  border-top: 5px solid var(--blue);
}

.identity-panel {
  background:
    linear-gradient(135deg, rgba(0, 69, 141, 0.94), rgba(0, 54, 111, 0.96)),
    var(--blue);
  color: white;
}

.identity-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.section-kicker {
  color: var(--blue);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.identity-panel .section-kicker {
  color: var(--sky);
}

.portrait-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(23, 32, 28, 0.08);
  overflow: hidden;
}

.portrait-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.portrait-panel div {
  padding: 24px;
}

.portrait-panel span,
.portrait-panel p {
  color: var(--muted);
}

.portrait-panel strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.2;
  margin-top: 6px;
}

.bishop-profile-card {
  align-self: start;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 54, 111, 0.14);
  position: sticky;
  top: 112px;
}

.bishop-profile-card img {
  aspect-ratio: 4 / 4.35;
  object-position: center top;
}

.bishop-profile-card div {
  background:
    linear-gradient(180deg, rgba(215, 236, 250, 0.5), rgba(255, 255, 255, 0) 58%),
    white;
}

.bishop-profile-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bishop-message {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 69, 141, 0.94), rgba(0, 54, 111, 0.98)),
    var(--blue);
  color: white;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  padding: clamp(70px, 8vw, 112px) clamp(20px, 6vw, 84px);
}

.bishop-message-image img {
  aspect-ratio: 4 / 5;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 21, 48, 0.34);
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.bishop-message-copy {
  max-width: 780px;
}

.bishop-message-copy h2 {
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 24px;
}

.bishop-message-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  margin: 0 0 18px;
}

.bishop-profile-page {
  background: #f6f9fc;
}

.bishop-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 34, 75, 0.86) 0%, rgba(0, 34, 75, 0.74) 34%, rgba(0, 69, 141, 0.3) 66%, rgba(0, 69, 141, 0.04) 100%),
    url("images/hero_lake_Malawi.jpg") center / cover;
  padding-bottom: clamp(74px, 9vw, 120px);
}

.bishop-intro-section {
  padding-top: clamp(46px, 6vw, 82px);
}

.bishop-intro-layout {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
}

.bishop-portrait-card {
  background: white;
  border: 1px solid rgba(0, 69, 141, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 54, 111, 0.12);
  margin: 0;
  overflow: hidden;
}

.bishop-portrait-card img {
  aspect-ratio: 4 / 4.6;
  display: block;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.bishop-portrait-card figcaption {
  background:
    linear-gradient(135deg, rgba(0, 69, 141, 0.96), rgba(0, 54, 111, 0.98)),
    var(--blue-2);
  color: white;
  display: grid;
  gap: 5px;
  padding: 22px;
}

.bishop-portrait-card span,
.bishop-portrait-card small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 850;
}

.bishop-portrait-card strong {
  font-size: 1.45rem;
}

.bishop-intro-copy {
  background: white;
  border-left: 5px solid var(--gold);
  box-shadow: 0 18px 50px rgba(0, 54, 111, 0.08);
  padding: clamp(28px, 5vw, 54px);
}

.bishop-intro-copy .eyebrow,
.bishop-section-head .eyebrow,
.about-content .eyebrow,
.section-heading .eyebrow,
.section-copy .eyebrow,
.diocesan-news .eyebrow,
.gallery-heading .eyebrow {
  color: var(--blue);
}

.bishop-intro-copy h2,
.bishop-section-head h2 {
  color: var(--blue-2);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 20px;
}

.bishop-message-text p,
.bishop-section-head p,
.bishop-focus-grid p,
.bishop-milestone-grid p {
  color: #4d5f73;
  line-height: 1.75;
}

.bishop-message-text p {
  font-size: 1.06rem;
  margin: 0 0 18px;
}

.bishop-section-head {
  margin: 0 auto 34px;
  max-width: 850px;
  text-align: center;
}

.bishop-focus-section {
  background: white;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.bishop-focus-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bishop-focus-grid article {
  background:
    linear-gradient(180deg, rgba(215, 236, 250, 0.45), rgba(255, 255, 255, 0)),
    white;
  border: 1px solid rgba(0, 69, 141, 0.12);
  border-radius: 14px;
  padding: 26px;
}

.bishop-focus-grid i {
  color: var(--blue);
  height: 34px;
  margin-bottom: 18px;
  width: 34px;
}

.bishop-focus-grid h3,
.bishop-milestone-grid h3 {
  color: var(--blue-2);
  margin: 0 0 12px;
}

.bishop-milestone-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bishop-milestone-grid article {
  background: white;
  border: 1px solid rgba(0, 69, 141, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(0, 54, 111, 0.08);
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
}

.bishop-milestone-grid img {
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  width: 100%;
}

.bishop-milestone-grid article > div {
  padding: 26px;
}

.bishop-milestone-grid span {
  color: var(--blue);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bishop-gallery-section {
  background: white;
}

.bishop-photo-albums {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bishop-album-card {
  background: #061f42;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(0, 34, 75, 0.16);
  color: white;
  cursor: pointer;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.bishop-album-card img {
  filter: saturate(1.05);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 220ms ease;
  width: 100%;
}

.bishop-album-card::after {
  background: linear-gradient(180deg, rgba(0, 34, 75, 0.1), rgba(0, 34, 75, 0.88));
  content: "";
  inset: 0;
  position: absolute;
}

.bishop-album-card span {
  align-self: end;
  display: grid;
  gap: 8px;
  padding: 28px;
  position: relative;
  z-index: 1;
}

.bishop-album-card small,
.bishop-album-card b {
  color: var(--gold);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bishop-album-card strong {
  font-size: 1.8rem;
  line-height: 1.1;
}

.bishop-album-card em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.55;
}

.bishop-album-card:hover img,
.bishop-album-card:focus-visible img {
  transform: scale(1.06);
}

.muted {
  background: var(--wash);
}

.section-heading {
  margin: 0 auto 36px;
  max-width: 860px;
  text-align: center;
}

.ministry-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-columns {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-columns article,
.empty-state {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.content-columns h2,
.empty-state h2 {
  margin: 0 0 10px;
}

.content-columns p,
.empty-state p {
  color: var(--muted);
  margin: 0;
}

.feature-columns article {
  background:
    linear-gradient(180deg, rgba(215, 236, 250, 0.55), rgba(255, 255, 255, 0) 46%),
    white;
  border-top: 4px solid var(--blue);
  box-shadow: 0 14px 34px rgba(0, 54, 111, 0.08);
  min-height: 280px;
  overflow: hidden;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-columns article:hover {
  box-shadow: 0 22px 52px rgba(0, 54, 111, 0.13);
  transform: translateY(-4px);
}

.feature-number {
  color: rgba(0, 69, 141, 0.08);
  font-size: 4.8rem;
  font-weight: 950;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 12px;
}

.feature-icon {
  align-items: center;
  background: var(--blue);
  border-radius: 14px;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  width: 54px;
  z-index: 1;
}

.feature-icon svg {
  fill: none;
  height: 27px;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 27px;
}

.feature-columns h2,
.feature-columns p {
  position: relative;
  z-index: 1;
}

.about-detail {
  background:
    linear-gradient(180deg, rgba(234, 243, 251, 0.72), var(--paper) 38%),
    var(--paper);
  border-top: 1px solid rgba(0, 69, 141, 0.16);
  padding-top: clamp(38px, 5vw, 62px);
  position: relative;
}

.about-detail::before {
  background: linear-gradient(90deg, var(--blue), var(--gold));
  content: "";
  height: 4px;
  left: clamp(20px, 6vw, 84px);
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  top: -2px;
}

.about-detail .eyebrow {
  color: var(--blue);
}

.detail-stack {
  display: grid;
  gap: 22px;
  margin: 0 auto;
  max-width: 1180px;
}

.detail-stack > article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 54, 111, 0.07);
  padding: clamp(22px, 4vw, 34px);
  position: relative;
}

.detail-lead {
  background:
    linear-gradient(135deg, rgba(0, 69, 141, 0.96), rgba(0, 54, 111, 0.96)) !important;
  color: white;
  overflow: hidden;
}

.detail-lead::after {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  content: "";
  height: 210px;
  position: absolute;
  right: -68px;
  top: -72px;
  width: 210px;
}

.detail-lead h3 {
  color: white !important;
}

.detail-lead p {
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 860px;
}

.detail-stack h3 {
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  margin: 0 0 12px;
}

.detail-stack h4 {
  color: var(--ink);
  font-size: 1rem;
  margin: 0 0 8px;
}

.detail-stack p {
  color: var(--muted);
  margin: 0 0 14px;
}

.detail-stack p:last-child {
  margin-bottom: 0;
}

.detail-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.detail-grid > div {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.service-grid > div,
.intervention-grid > div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(234, 243, 251, 0.72)),
    var(--wash);
  min-height: 180px;
}

.service-mark {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 950;
  height: 32px;
  justify-content: center;
  margin-bottom: 18px;
  width: 32px;
}

.institution-panel {
  border-top: 5px solid var(--gold) !important;
}

.stats-detail strong {
  color: var(--blue);
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-detail span {
  color: var(--muted);
  font-weight: 800;
}

.challenge-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.challenge-list span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 54, 111, 0.06);
  color: var(--blue);
  display: grid;
  font-weight: 800;
  gap: 4px;
  padding: 18px;
}

.challenge-list strong {
  color: var(--ink);
  display: block;
  font-size: 1rem;
}

.intervention-panel {
  border-top: 5px solid var(--blue) !important;
}

.intervention-grid h4 {
  color: var(--blue);
}

.note {
  background: rgba(0, 69, 141, 0.07);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  margin-top: 18px !important;
  padding: 14px 16px;
}

.text-link {
  color: var(--blue);
  display: inline-flex;
  font-weight: 900;
  margin-top: 10px;
  text-decoration: underline;
  text-decoration-color: rgba(0, 69, 141, 0.25);
  text-underline-offset: 5px;
}

.news-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-heading {
  margin: 46px auto 24px;
}

.featured-news {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(0, 69, 141, 0.08), rgba(215, 236, 250, 0.62)),
    white;
  border: 1px solid rgba(0, 69, 141, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(0, 54, 111, 0.1);
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  overflow: hidden;
}

.featured-news img {
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  width: 100%;
}

.featured-news div {
  align-content: center;
  display: grid;
  justify-items: start;
  padding: clamp(22px, 4vw, 36px);
}

.news-label {
  background: var(--blue);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  text-transform: uppercase;
}

.story-meta {
  align-items: center;
  color: var(--muted);
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-items: start;
  margin-bottom: 10px;
  padding: 0 !important;
}

.story-meta time,
.story-meta span:not(.news-label) {
  color: var(--muted);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 850;
}

.featured-news h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 12px;
}

.featured-news p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 16px;
}

.tag-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 7px;
  margin: 2px 0 18px;
  padding: 0 !important;
}

.tag-row span {
  background: rgba(0, 69, 141, 0.08);
  border: 1px solid rgba(0, 69, 141, 0.12);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  padding: 5px 9px;
}

.news-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 54, 111, 0.07);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
  box-shadow: 0 18px 38px rgba(0, 54, 111, 0.12);
  transform: translateY(-3px);
}

.news-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.news-card div {
  padding: 16px;
}

.article-header time,
.admin-list span {
  color: var(--muted);
  display: block;
  font-size: 0.88rem;
  font-weight: 850;
  margin-bottom: 10px;
}

.news-card h2,
.news-card h3 {
  font-size: 1.08rem;
  line-height: 1.18;
  margin: 0 0 8px;
}

.news-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.article {
  margin: 0 auto;
  max-width: 920px;
  padding: 150px 20px 92px;
}

.article-header h1 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
  margin: 0 0 18px;
}

.article-image {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  margin: 36px 0;
  object-fit: cover;
  width: 100%;
}

.article-body {
  color: #263a52;
  font-size: 1.12rem;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(234, 243, 251, 0.84), var(--paper)),
    var(--paper);
}

.gallery-heading .eyebrow {
  color: var(--blue);
}

.album-grid {
  display: grid;
  gap: 18px;
  grid-auto-flow: dense;
  grid-auto-rows: 150px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.album-card {
  background: var(--blue-2);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 54, 111, 0.11);
  cursor: pointer;
  grid-row: span 2;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.refined-gallery-grid .album-card {
  min-height: 300px;
}

.album-card.featured {
  grid-column: span 2;
  grid-row: span 3;
}

.album-card img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 280ms ease, filter 280ms ease;
  width: 100%;
}

.album-card::after {
  background: linear-gradient(180deg, transparent 38%, rgba(0, 34, 75, 0.86));
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.album-card-copy {
  bottom: 0;
  color: white;
  display: grid;
  gap: 7px;
  left: 0;
  padding: 22px;
  position: absolute;
  right: 0;
  transform: translateY(6px);
  transition: transform 220ms ease;
  z-index: 1;
}

.album-card-copy span {
  color: var(--sky);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.album-card-copy strong {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.15;
}

.album-card-copy small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 850;
}

.album-card-copy em {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.45;
  max-width: 520px;
}

.album-card:hover img,
.album-card:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.07);
}

.album-card:hover .album-card-copy,
.album-card:focus-visible .album-card-copy {
  transform: translateY(0);
}

.album-card:focus-visible {
  outline: 4px solid rgba(0, 69, 141, 0.28);
  outline-offset: 4px;
}

.gallery-lightbox {
  align-items: center;
  background: rgba(0, 19, 42, 0.92);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: clamp(18px, 4vw, 44px);
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 120;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox figure {
  margin: 0;
  max-height: 88vh;
  max-width: min(1100px, 94vw);
  position: relative;
  width: 100%;
}

.gallery-lightbox img {
  background: #06172e;
  border-radius: 16px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  max-height: 78vh;
  object-fit: contain;
  width: 100%;
}

.gallery-lightbox figcaption {
  color: white;
  display: grid;
  gap: 4px;
  margin-top: 14px;
}

.gallery-lightbox figcaption span {
  color: var(--sky);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-lightbox figcaption strong {
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.gallery-lightbox figcaption small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 850;
}

.lightbox-close {
  align-items: center;
  background: white;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  cursor: pointer;
  display: inline-flex;
  font-size: 2rem;
  height: 48px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  top: clamp(18px, 4vw, 42px);
  width: 48px;
  z-index: 2;
}

.lightbox-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  cursor: pointer;
  display: inline-flex;
  font-size: 3rem;
  height: 54px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  z-index: 2;
}

.lightbox-nav.prev {
  left: clamp(14px, 4vw, 42px);
}

.lightbox-nav.next {
  right: clamp(14px, 4vw, 42px);
}

.ministry-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.ministry-grid img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  width: 100%;
}

.ministry-grid h3 {
  font-size: 1.45rem;
  margin: 22px 22px 8px;
}

.ministry-grid p {
  color: var(--muted);
  margin: 0 22px 26px;
}

.department-intro {
  align-items: center;
  background:
    linear-gradient(180deg, white, rgba(234, 243, 251, 0.62)),
    var(--paper);
  display: grid;
  gap: clamp(30px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.department-intro .eyebrow,
.department-directory .eyebrow {
  color: var(--blue);
}

.department-flow {
  display: grid;
  gap: 14px;
}

.department-flow div {
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 54, 111, 0.08);
  display: grid;
  gap: 4px;
  padding: 22px;
}

.department-flow div:nth-child(2) {
  border-left-color: var(--gold);
}

.department-flow strong {
  color: var(--ink);
  font-size: 1.18rem;
}

.department-flow span {
  color: var(--muted);
  font-weight: 750;
}

.department-directory {
  background: var(--wash);
}

.department-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.department-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 54, 111, 0.08);
  display: grid;
  gap: 22px;
  grid-template-columns: 66px minmax(0, 1fr);
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
  position: relative;
}

.department-card::after {
  background: linear-gradient(180deg, var(--blue), var(--gold));
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 4px;
}

.department-number {
  align-items: center;
  background: rgba(0, 69, 141, 0.08);
  border: 1px solid rgba(0, 69, 141, 0.14);
  border-radius: 16px;
  color: var(--blue);
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 950;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.department-card h3 {
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin: 0 0 8px;
}

.department-card p {
  color: var(--muted);
  margin: 0;
}

.department-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}

.department-card li {
  background: rgba(0, 69, 141, 0.08);
  border: 1px solid rgba(0, 69, 141, 0.12);
  border-radius: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
  min-width: 112px;
  padding: 9px 11px;
  text-align: center;
}

.department-callout {
  background:
    linear-gradient(135deg, rgba(0, 69, 141, 0.96), rgba(0, 54, 111, 0.98)),
    var(--blue);
  color: white;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 15vw, 220px);
  text-align: center;
}

.department-callout h2 {
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1.05;
  margin: 0 auto 18px;
  max-width: 980px;
}

.department-callout p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
  max-width: 760px;
}

.stats-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid div {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.stats-grid strong {
  color: var(--blue);
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 850;
}

.parish-overview {
  align-items: center;
  background:
    linear-gradient(180deg, white, rgba(234, 243, 251, 0.65)),
    var(--paper);
  display: grid;
  gap: clamp(30px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.parish-overview .eyebrow,
.parish-directory .eyebrow {
  color: var(--blue);
}

.parish-stats div {
  background:
    linear-gradient(180deg, rgba(215, 236, 250, 0.42), rgba(255, 255, 255, 0) 56%),
    white;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 54, 111, 0.08);
  min-height: 210px;
  overflow: hidden;
  position: relative;
}

.parish-stats div::after {
  border: 1px solid rgba(0, 69, 141, 0.1);
  border-radius: 999px;
  content: "";
  height: 112px;
  position: absolute;
  right: -38px;
  top: -42px;
  width: 112px;
}

.stat-icon {
  align-items: center;
  background: var(--blue);
  border-radius: 14px;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  width: 48px;
  z-index: 1;
}

.stat-icon svg {
  fill: none;
  height: 25px;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 25px;
}

.parish-stats small {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.parish-stats strong,
.parish-stats span:not(.stat-icon) {
  position: relative;
  z-index: 1;
}

.parish-directory {
  background: var(--wash);
}

.parish-directory .section-heading p:last-child {
  color: var(--muted);
  margin: -6px auto 0;
  max-width: 680px;
}

.directory-stack {
  display: grid;
  gap: 22px;
  margin: 0 auto;
  max-width: 1180px;
}

.directory-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 54, 111, 0.08);
  overflow: hidden;
}

.directory-card-head {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 69, 141, 0.96), rgba(0, 54, 111, 0.96)),
    var(--blue);
  color: white;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 20px clamp(18px, 3vw, 28px);
}

.directory-card-head h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  margin: 0;
}

.directory-card-head span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 8px 12px;
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
}

.parish-table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.parish-table th,
.parish-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
}

.parish-table th {
  background: rgba(0, 69, 141, 0.06);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.parish-table td:first-child {
  color: var(--blue);
  font-weight: 950;
  width: 78px;
}

.parish-table td:nth-child(2) {
  color: var(--ink);
  font-weight: 900;
}

.parish-table td span {
  color: var(--muted);
  display: block;
  font-weight: 750;
}

.parish-table tr:last-child td {
  border-bottom: 0;
}

.vacant {
  background: rgba(214, 163, 58, 0.16);
  border: 1px solid rgba(214, 163, 58, 0.34);
  border-radius: 999px;
  color: #7a540b !important;
  display: inline-flex !important;
  font-size: 0.84rem;
  padding: 4px 10px;
}

.institutional-card .directory-card-head {
  background:
    linear-gradient(135deg, rgba(214, 163, 58, 0.96), rgba(0, 69, 141, 0.96)),
    var(--blue);
}

.impact {
  background: #062a56;
  color: white;
}

.impact-image img {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.impact-copy h2 {
  color: white;
}

.priority-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.priority-list span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  padding: 10px 14px;
}

.scripture-band {
  background: var(--blue);
  color: white;
  padding: clamp(54px, 8vw, 92px) clamp(20px, 16vw, 220px);
  text-align: center;
}

.scripture-band p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.scripture-band blockquote {
  font-size: clamp(1.7rem, 4vw, 4rem);
  font-weight: 850;
  margin: 0;
}

.contact {
  align-items: start;
}

address {
  font-style: normal;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.contact-lines a {
  color: var(--blue);
  font-weight: 900;
}

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

.contact-form label {
  color: var(--muted);
  display: grid;
  font-weight: 850;
  gap: 8px;
}

.form-honeypot {
  height: 0;
  left: -9999px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.form-alert {
  border-radius: 12px;
  font-weight: 850;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 14px 16px;
}

.form-alert.success {
  background: #e8f7ee;
  border: 1px solid rgba(19, 96, 51, 0.18);
  color: #136033;
}

.form-alert.error {
  background: #fff0f0;
  border: 1px solid rgba(155, 28, 28, 0.18);
  color: #9b1c1c;
}

input,
textarea,
select {
  background: #f7f6f1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 69, 141, 0.14);
}

.admin-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(215, 236, 250, 0.22), transparent 34%),
    linear-gradient(135deg, var(--blue-2), #0d63ad);
  min-height: 100vh;
}

.admin-shell {
  padding: clamp(24px, 5vw, 56px) 20px;
}

.admin-panel {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1080px;
  padding: clamp(22px, 4vw, 38px);
}

.admin-header {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 82px 1fr auto;
  margin-bottom: 26px;
}

.admin-header img {
  background: transparent;
  border-radius: 0;
  height: 82px;
  object-fit: contain;
  padding: 0;
  width: 82px;
}

.admin-header h1,
.admin-list h2 {
  margin: 0;
}

.admin-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-actions .button {
  min-height: 42px;
  padding: 10px 16px;
}

.admin-login-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
}

.admin-login-copy {
  background:
    linear-gradient(135deg, rgba(0, 69, 141, 0.95), rgba(0, 54, 111, 0.98)),
    var(--blue);
  border-radius: 16px;
  color: white;
  padding: clamp(28px, 4vw, 46px);
}

.admin-login-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  margin: 0 0 18px;
}

.admin-login-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.admin-login-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.admin-login-points span {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 8px 12px;
}

.login-form {
  align-content: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 54, 111, 0.08);
  padding: clamp(24px, 4vw, 34px);
}

.admin-dashboard {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 240px minmax(0, 1fr);
}

.admin-sidebar {
  background:
    linear-gradient(180deg, rgba(0, 69, 141, 0.96), rgba(0, 54, 111, 0.98)),
    var(--blue);
  border-radius: 16px;
  color: white;
  display: grid;
  gap: 10px;
  padding: 20px;
  position: sticky;
  top: 20px;
}

.admin-sidebar div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 8px;
  padding-bottom: 18px;
}

.sidebar-kicker {
  color: var(--sky);
  display: block;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-sidebar strong {
  display: block;
  font-size: 1.4rem;
  margin-top: 4px;
}

.admin-sidebar a {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  padding: 11px 12px;
}

.admin-sidebar a[aria-current="page"],
.admin-sidebar a:hover {
  background: white;
  color: var(--blue);
}

.admin-workspace {
  display: grid;
  gap: 18px;
}

.dashboard-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-stats div,
.dashboard-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 54, 111, 0.08);
}

.dashboard-stats div {
  padding: 20px;
}

.dashboard-stats strong {
  color: var(--blue);
  display: block;
  font-size: 2.3rem;
  line-height: 1;
}

.dashboard-stats span {
  color: var(--muted);
  font-weight: 850;
}

.dashboard-card {
  padding: clamp(20px, 3vw, 30px);
}

.dashboard-card-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
}

.dashboard-card-head .eyebrow {
  color: var(--blue);
}

.dashboard-card-head h2 {
  margin: 0;
}

.dashboard-form {
  gap: 16px;
}

.upload-panel {
  background:
    linear-gradient(180deg, rgba(215, 236, 250, 0.45), rgba(255, 255, 255, 0)),
    var(--paper);
  border: 1px dashed rgba(0, 69, 141, 0.32);
  border-radius: 14px;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.upload-panel label {
  color: var(--blue);
  font-weight: 900;
}

.upload-panel input[type="file"] {
  background: white;
  margin-top: 8px;
}

.upload-panel span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.admin-footer {
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 8px 18px;
  justify-content: center;
  margin-top: 18px;
}

.cms-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 220px;
}

.cms-form label {
  color: var(--muted);
  display: grid;
  font-weight: 850;
  gap: 8px;
}

.alert {
  border-radius: var(--radius);
  font-weight: 850;
  padding: 12px 14px;
}

.alert-error {
  background: #fff0f0;
  color: #9b1c1c;
}

.alert-success {
  background: #e8f7ee;
  color: #136033;
}

.admin-list {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 24px;
}

.admin-list article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 14px 0;
}

.admin-list button {
  background: transparent;
  border: 1px solid rgba(155, 28, 28, 0.28);
  border-radius: var(--radius);
  color: #9b1c1c;
  cursor: pointer;
  font-weight: 850;
  padding: 8px 12px;
}

.site-footer {
  align-items: center;
  background: var(--blue-2);
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 26px clamp(20px, 6vw, 84px);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: white;
  font-weight: 900;
}

.back-to-top {
  align-items: center;
  background:
    linear-gradient(135deg, var(--blue), var(--blue-2)),
    var(--blue-2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  bottom: max(24px, env(safe-area-inset-bottom));
  box-shadow: 0 14px 34px rgba(0, 34, 75, 0.28);
  color: white;
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: clamp(18px, 4vw, 34px);
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  width: 48px;
  z-index: 80;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background:
    linear-gradient(135deg, var(--gold), #f1c96a),
    var(--gold);
  color: var(--blue-2);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(214, 163, 58, 0.36);
  outline-offset: 4px;
}

.back-to-top i {
  height: 22px;
  stroke-width: 2.6;
  width: 22px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    background:
      radial-gradient(circle at top right, rgba(215, 236, 250, 0.38), transparent 38%),
      linear-gradient(145deg, #002f64, #075ba7 62%, #0d74c9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 28px 80px rgba(0, 34, 75, 0.32);
    color: white;
    display: grid;
    gap: 10px;
    left: 0;
    opacity: 0;
    padding: 104px 20px 28px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-18px) scale(0.98);
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 50;
  }

  .site-nav::before {
    color: rgba(255, 255, 255, 0.64);
    content: "Explore the Diocese";
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin: 0 0 4px;
    text-transform: uppercase;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    display: flex;
    font-size: 1.05rem;
    justify-content: space-between;
    padding: 15px 16px;
  }

  .site-nav a::before {
    color: rgba(255, 255, 255, 0.46);
    content: "0" counter(nav-item);
    counter-increment: nav-item;
    font-size: 0.78rem;
    font-weight: 900;
    margin-right: 14px;
  }

  .site-nav a:hover::after {
    transform: none;
  }

  .site-nav a::after {
    background: transparent;
    color: rgba(255, 255, 255, 0.58);
    content: ">";
    height: auto;
    position: static;
    transform: none;
    width: auto;
  }

  .site-nav {
    counter-reset: nav-item;
  }

  .site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration-color: white;
    text-underline-offset: 5px;
  }

  .nav-dropdown {
    display: grid;
    gap: 10px;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0 0 0 20px;
    gap: 10px;
    display: grid;
  }

  .nav-dropdown-menu a {
    font-size: 0.95rem;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06) !important;
    color: white !important;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
  }

  .hero {
    min-height: 860px;
    padding-top: 132px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 34, 75, 0.92), rgba(0, 69, 141, 0.6));
  }

  .hero-card {
    bottom: 26px;
    left: 20px;
    right: 20px;
  }

  .intro-grid,
  .intro-about-grid,
  .ministry-grid,
  .content-columns,
  .detail-grid,
  .news-grid,
  .lead-story,
  .story-grid,
  .article-layout,
  .featured-news,
  .parish-overview,
  .department-intro,
  .department-grid,
  .split,
  .parishes,
  .bishop-message,
  .bishop-intro-layout,
  .bishop-focus-grid,
  .bishop-milestone-grid,
  .bishop-photo-albums,
  .impact,
  .contact {
    grid-template-columns: 1fr;
  }

  .media-enquiries {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .bishop-profile-card {
    position: static;
  }

  .challenge-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid {
    transform: none;
  }

  .intro-band {
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .intro-about-media {
    min-height: 320px;
  }

  .album-grid {
    grid-auto-rows: 140px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand-logo {
    height: 60px;
    width: 60px;
  }

  .brand {
    padding-left: 70px;
  }

  .hero {
    min-height: 780px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .intro-about-media {
    min-height: 240px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .hero-facts span {
    align-items: stretch;
    width: 100%;
  }

  .challenge-list {
    grid-template-columns: 1fr;
  }

  .department-card {
    grid-template-columns: 1fr;
  }

  .department-card ul {
    grid-column: auto;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .news-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .article-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .news-list-head {
    align-items: start;
    flex-direction: column;
  }

  .form-grid,
  .admin-header,
  .admin-login-layout,
  .admin-dashboard,
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .admin-sidebar {
    position: static;
  }

  .news-grid-wide {
    grid-template-columns: 1fr;
  }

  .album-grid {
    grid-auto-rows: 190px;
    grid-template-columns: 1fr;
  }

  .album-card,
  .album-card.featured {
    grid-column: auto;
    grid-row: span 2;
  }

  .bishop-milestone-grid article {
    grid-template-columns: 1fr;
  }

  .bishop-milestone-grid img {
    min-height: 210px;
  }

  .bishop-album-card {
    min-height: 300px;
  }

  .admin-list article {
    align-items: start;
    flex-direction: column;
  }

  .directory-card-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile stability layer for inline-heavy page sections */
@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    gap: 12px;
    padding: 12px 16px;
    width: 100%;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 56px);
    min-width: 0;
    padding-left: 84px;
  }

  .brand span {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    overflow-wrap: anywhere;
  }

  .brand-logo {
    height: 76px;
    top: -6px;
    width: 76px;
  }

  .nav-toggle {
    flex: 0 0 44px;
    height: 44px;
    width: 44px;
  }

  .site-nav {
    box-sizing: border-box;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr);
    left: 0;
    max-height: 100dvh;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: calc(84px + env(safe-area-inset-top)) 14px 24px;
    right: 0;
    width: 100%;
  }

  .site-nav a,
  .site-nav > .nav-dropdown > a {
    min-width: 0;
    overflow-wrap: anywhere;
    width: 100%;
  }

  .site-nav a::before {
    flex: 0 0 auto;
  }

  .site-nav a::after {
    flex: 0 0 auto;
  }

  .nav-dropdown,
  .nav-dropdown-menu {
    min-width: 0;
    width: 100%;
  }

  .nav-dropdown-menu {
    padding-left: 12px;
  }

  .nav-dropdown-menu a::before {
    content: "";
    display: none;
  }

  .nav-dropdown-menu a::after {
    display: none;
  }

  .home-premium-hero {
    align-items: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: auto !important;
    padding: 112px 16px 44px !important;
  }

  .home-premium-hero > .container {
    width: 100% !important;
  }

  .home-premium-hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.7rem) !important;
    line-height: 1.04 !important;
  }

  .home-premium-hero p {
    max-width: 100% !important;
  }

  .home-premium-hero .container > div > div {
    gap: 12px !important;
  }

  .home-premium-hero .container > div > div a {
    justify-content: center;
    text-align: center;
  }

  .hero-stats-glass {
    bottom: auto !important;
    box-sizing: border-box;
    left: auto !important;
    margin-top: 28px !important;
    max-width: 100% !important;
    position: relative !important;
    right: auto !important;
    width: 100% !important;
  }

  .diocesan-intro-band,
  .diocesan-intro-about,
  .diocesan-bishop-message,
  .diocesan-news {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .diocesan-intro-band {
    margin-top: 0 !important;
    padding-top: 44px !important;
  }

  .mission-grid,
  .about-grid-home,
  .bishop-grid-home {
    display: grid !important;
    gap: 28px !important;
    grid-template-columns: 1fr !important;
  }

  .about-grid-home img {
    height: min(72vw, 360px) !important;
  }

  .bishop-grid-home img {
    max-height: 520px;
    object-fit: cover;
  }

  .home-news-grid,
  .diocesan-news .container > div:last-child {
    grid-template-columns: 1fr !important;
  }

  .departments-hero {
    padding-bottom: 72px !important;
  }

  .diocesan-department-intro {
    border-radius: 28px 28px 0 0 !important;
    margin-top: -36px !important;
    padding: 56px 0 !important;
  }

  .diocesan-department-intro .container,
  .department-directory .container,
  .shared-purpose .container {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .diocesan-department-intro .intro-grid {
    display: grid !important;
    gap: 28px !important;
    grid-template-columns: 1fr !important;
  }

  .diocesan-department-intro .section-copy > div {
    flex-wrap: wrap;
    gap: 12px !important;
  }

  .department-hierarchy {
    border-radius: 20px !important;
    margin-top: 4px !important;
    padding: 18px !important;
    width: 100%;
  }

  .department-hierarchy > div {
    gap: 16px !important;
  }

  .department-hierarchy-branch {
    margin-left: 0 !important;
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .department-hierarchy-dot {
    display: none !important;
  }

  .department-hierarchy-card {
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 18px !important;
  }

  .department-directory {
    padding: 56px 0 !important;
  }

  .department-directory .section-heading {
    margin-bottom: 32px !important;
  }

  .diocesan-departments-grid {
    display: grid !important;
    gap: 18px !important;
    grid-template-columns: 1fr !important;
  }

  .dept-card {
    border-radius: 18px !important;
    padding: 24px !important;
  }

  .dept-number {
    font-size: 3.6rem !important;
    right: 14px !important;
    top: 10px !important;
  }

  .dept-card h3 {
    font-size: 1.28rem !important;
    padding-right: 36px;
  }

  .dept-card p {
    font-size: 0.98rem !important;
  }

  .dept-card span {
    overflow-wrap: anywhere;
  }

  .shared-purpose {
    padding: 64px 0 !important;
  }

  .shared-purpose-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px !important;
  }

  .shared-purpose .btn {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand {
    padding-left: 72px;
  }

  .brand-logo {
    height: 68px;
    top: -5px;
    width: 68px;
  }

  .brand strong {
    font-size: 0.82rem;
    letter-spacing: 0.01em;
  }

  .brand small {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .home-premium-hero {
    padding-top: 104px !important;
  }

  .department-hierarchy-card {
    flex-direction: column;
  }

  .dept-card {
    padding: 22px !important;
  }
}

/* Public page mobile sweep */
@media (max-width: 900px) {
  .page-hero,
  .news-hero,
  .article-hero,
  .contact-page-hero {
    padding: 112px 16px 64px !important;
    text-align: left;
  }

  .page-hero h1,
  .news-hero h1,
  .article-hero h1,
  .contact-page-hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.2rem) !important;
    line-height: 1.06 !important;
    max-width: 100%;
  }

  .page-hero p,
  .news-hero p,
  .article-hero p,
  .contact-page-hero p {
    font-size: 1rem !important;
    max-width: 100% !important;
  }

  .breadcrumb {
    flex-wrap: wrap;
    gap: 6px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .hero-stats > div {
    width: 100%;
  }

  .diocesan-about-overview,
  .diocesan-about-detail,
  .diocesan-overview-section,
  .parish-directory,
  .gallery-section,
  .bishop-intro-section,
  .bishop-focus-section,
  .bishop-milestones-section,
  .bishop-gallery-section {
    padding: 56px 16px !important;
  }

  .diocesan-about-overview .container,
  .diocesan-about-detail .container,
  .parish-directory .container,
  .gallery-section .container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-grid,
  .info-grid-2,
  .diocesan-overview-wrapper,
  .contact-grid-layout,
  .lead-story,
  .article-layout,
  .bishop-intro-layout,
  .bishop-focus-grid,
  .bishop-milestone-grid,
  .bishop-photo-albums {
    display: grid !important;
    gap: 28px !important;
    grid-template-columns: 1fr !important;
  }

  .about-content {
    text-align: left !important;
  }

  .bishop-card img,
  .bishop-portrait-card img {
    height: min(95vw, 430px) !important;
    object-fit: cover;
  }

  .bishop-card > div {
    padding: 24px !important;
  }

  .info-grid-2 > div,
  .diocesan-about-detail .container > div[style*="background: white"],
  .article-main,
  .comments-box {
    border-radius: 18px !important;
    padding: 24px !important;
  }

  .info-grid-2 div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .about-geography-grid {
    grid-template-columns: 1fr !important;
  }

  .about-geography-panel {
    padding: 24px !important;
  }

  .diocesan-about-detail div[style*="repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }

  .diocesan-about-detail div[style*="inline-flex"] {
    max-width: 100%;
  }

  .diocesan-stats-compact-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .diocesan-stats-compact-grid .stat-card {
    padding: 22px 14px !important;
  }

  .quick-nav {
    justify-content: flex-start !important;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .quick-nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .directory-stack {
    gap: 24px !important;
  }

  .directory-card {
    border-radius: 16px !important;
  }

  .directory-card-head {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 22px !important;
  }

  .directory-card-head > div {
    align-items: flex-start !important;
    min-width: 0;
  }

  .directory-card-head h3 {
    font-size: 1.18rem !important;
    line-height: 1.25 !important;
    overflow-wrap: anywhere;
  }

  .table-wrap {
    margin: 0;
    overflow-x: auto;
    padding: 12px 16px 22px !important;
    -webkit-overflow-scrolling: touch;
  }

  .parish-table {
    min-width: 640px;
  }

  .parish-table th,
  .parish-table td {
    white-space: normal;
  }

  .news-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero-search-container form {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-search-container button {
    width: 100%;
  }

  .category-filter {
    justify-content: flex-start !important;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .cat-pill {
    flex: 0 0 auto;
  }

  .lead-story {
    border-radius: 18px !important;
    overflow: hidden;
  }

  .lead-story-media {
    min-height: 240px;
  }

  .lead-story-copy {
    padding: 24px !important;
  }

  .story-grid {
    grid-template-columns: 1fr !important;
  }

  .story-card-footer,
  .story-byline,
  .article-meta-line,
  .article-share {
    align-items: flex-start !important;
    flex-wrap: wrap;
    gap: 10px !important;
  }

  .pagination-lite {
    flex-wrap: wrap;
    margin-top: 36px !important;
  }

  .media-enquiries {
    align-items: stretch !important;
    border-radius: 18px !important;
    flex-direction: column;
    margin: 36px 16px !important;
    padding: 32px 22px !important;
  }

  .media-enquiries .button {
    justify-content: center;
    width: 100%;
  }

  .album-grid,
  .refined-gallery-grid {
    grid-auto-rows: 210px !important;
    grid-template-columns: 1fr !important;
  }

  .album-card,
  .album-card.featured {
    grid-column: auto !important;
    grid-row: span 2 !important;
    min-height: 360px;
  }

  .album-card-copy {
    padding: 18px !important;
  }

  .gallery-lightbox {
    padding: 72px 14px 24px;
  }

  .gallery-lightbox figure {
    max-height: 82dvh;
    width: 100%;
  }

  .gallery-lightbox img {
    max-height: 64dvh;
    object-fit: contain;
  }

  .lightbox-nav {
    bottom: 18px;
    top: auto;
    transform: none;
  }

  .lightbox-nav.prev {
    left: calc(50% - 58px);
  }

  .lightbox-nav.next {
    right: calc(50% - 58px);
  }

  .contact-section {
    margin-top: -28px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .contact-grid-layout {
    grid-template-columns: 1fr !important;
  }

  .contact-grid-layout > div > div,
  .contact-grid-layout > div:last-child {
    border-radius: 18px !important;
    padding: 24px !important;
  }

  .contact-grid-layout h2,
  .contact-grid-layout h3 {
    align-items: flex-start !important;
    font-size: 1.35rem !important;
  }

  .contact-grid-layout a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-grid-layout div[style*="padding-left: 40px"] {
    padding-left: 0 !important;
  }

  .form-cols,
  .comment-form-cols {
    grid-template-columns: 1fr !important;
  }

  .article-hero {
    padding-bottom: 52px !important;
  }

  .article-layout {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .article-image-container {
    border-radius: 18px 18px 0 0 !important;
  }

  .article-feature-image {
    max-height: 420px;
  }

  .article-content {
    padding: 24px !important;
  }

  .rich-text,
  .rich-text p,
  .article-content p {
    overflow-wrap: anywhere;
  }

  .rich-text figure {
    margin-left: 0;
    margin-right: 0;
  }

  .rich-text img {
    height: auto;
    max-width: 100%;
  }

  .share-label {
    width: 100%;
  }

  .comment-item {
    margin-left: 0 !important;
  }

  .comment-item > div {
    gap: 10px !important;
    padding: 14px !important;
  }

  .comment-item [id^="reply-"] {
    margin-left: 0 !important;
  }
}

@media (max-width: 560px) {
  .diocesan-stats-compact-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-stats > div,
  .contact-grid-layout a[href^="tel:"],
  .contact-grid-layout a[href^="mailto:"] {
    align-items: flex-start !important;
  }

  .lead-story-media {
    min-height: 210px;
  }

  .story-card-footer {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .parish-table {
    min-width: 580px;
  }

  .article-feature-image {
    max-height: 320px;
  }

  .article-share .share-links {
    flex-wrap: wrap;
  }

  .lightbox-close {
    right: 14px;
    top: 14px;
  }
}
