:root {
  --site-accent: #1689a3;
  --site-accent-dark: #0f6679;
  --site-accent-soft: #e8f5f7;
  --site-ink: #24343a;
  --site-muted: #65757b;
  --site-line: #dce6e8;
  --site-soft: #f3f7f8;
  --site-paper: #ffffff;
  --site-content: 1180px;
  --site-reading: 760px;
  --prayer-font-size: 1.15rem;
  --site-radius: 10px;
  --site-shadow: 0 12px 32px rgb(25 61 70 / 8%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--site-ink);
  background: var(--site-paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

body::before,
body::after {
  content: none;
}

a {
  color: var(--site-accent-dark);
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--site-accent-dark);
  box-shadow: var(--site-shadow);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(calc(-100% - 24px));
  transition: transform 150ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid rgb(22 137 163 / 34%);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--site-line);
  background: var(--site-paper);
  box-shadow: 0 4px 18px rgb(24 59 68 / 6%);
}

.site-header .header-top {
  width: min(var(--site-content), calc(100% - 40px));
  min-height: 102px;
  margin-inline: auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  background: transparent;
}

.site-header .header-logo {
  width: 72px;
  height: 82px;
  flex: 0 0 72px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.site-header .header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header .header-brand {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.site-header .header-title {
  margin: 0;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  max-width: 920px;
  font-size: clamp(1.22rem, 1.8vw, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: none;
}

.site-header .header-subtitle {
  margin-top: 5px;
  color: var(--site-muted);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header .header-nav {
  border-top: 1px solid var(--site-line);
  background: #f9fbfc;
  box-shadow: none;
}

.site-header .header-nav .container {
  width: min(var(--site-content), calc(100% - 40px));
  margin-inline: auto;
  padding: 0;
}

.site-nav > ul {
  min-height: 54px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  list-style: none;
}

.site-nav > ul > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.site-nav a,
.site-nav .nav-more-toggle {
  position: relative;
  min-height: 54px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 6px;
  color: var(--site-ink);
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.site-nav a::after,
.site-nav .nav-more-toggle::after {
  content: '';
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 15px;
  height: 3px;
  background: var(--site-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav .nav-more-toggle:hover,
.site-nav a.active,
.site-nav .nav-more-toggle.active {
  color: var(--site-accent-dark);
  background: var(--site-accent-soft);
}

.site-nav a:hover::after,
.site-nav a.active::after,
.site-nav .nav-more-toggle:hover::after,
.site-nav .nav-more-toggle.active::after {
  transform: scaleX(1);
}

.site-nav .nav-more-toggle svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.site-nav .nav-more.is-open .nav-more-toggle svg {
  transform: rotate(180deg);
}

.site-nav .nav-submenu {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  z-index: 20;
  width: 270px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--site-line);
  border-radius: 0 0 8px 8px;
  background: var(--site-paper);
  box-shadow: var(--site-shadow);
  list-style: none;
}

.site-nav .nav-submenu[hidden] {
  display: none;
}

.site-nav .nav-submenu a {
  min-height: 42px;
  padding: 10px 12px;
  justify-content: flex-start;
  border-radius: 6px;
  font-weight: 600;
}

.site-nav .nav-submenu a::after {
  content: none;
}

.mobile-menu-toggle,
.mobile-menu-heading,
.mobile-menu-backdrop {
  display: none;
}

.site-main {
  width: min(var(--site-content), calc(100% - 40px));
  margin-inline: auto;
  padding-block: 40px 64px;
  text-align: left;
}

.page-heading {
  max-width: var(--site-reading);
  margin: 0 0 32px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 2px solid var(--site-accent);
  background: transparent;
  text-align: left;
}

.page-eyebrow {
  margin: 0;
  color: var(--site-accent-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.page-heading h1 {
  margin: 6px 0 8px;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

.page-lead {
  margin: 0;
  color: var(--site-muted);
  font-size: 1.08rem;
}

.site-footer {
  margin: 0;
  padding: 44px 0;
  border-top: 4px solid var(--site-accent);
  color: #d7e6e9;
  background: #23383f;
  box-shadow: none;
}

.site-footer .footer-container {
  width: min(var(--site-content), calc(100% - 40px));
  margin-inline: auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 40px;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer .footer-title {
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.site-footer a {
  color: #fff;
  text-decoration-color: rgb(255 255 255 / 40%);
  text-underline-offset: 3px;
}

.site-footer .footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.site-footer .footer-contact svg {
  flex: 0 0 18px;
  margin-top: 4px;
  color: #72c8d8;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1000;
  max-width: 720px;
  margin-inline: auto;
  padding: 16px 18px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  color: var(--site-ink);
  background: var(--site-paper);
  box-shadow: var(--site-shadow);
  text-align: left;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner .cookie-link {
  font-weight: 800;
}

.cookie-buttons {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.cookie-button {
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid var(--site-accent-dark);
  border-radius: 6px;
  color: #fff;
  background: var(--site-accent-dark);
  font-weight: 800;
  cursor: pointer;
}

[data-animate='reveal'] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-animate='reveal'] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.reveal-ready [data-animate='reveal'].is-visible {
  opacity: 1;
  transform: none;
}

.home-hero {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
  overflow: hidden;
  background: #18353e;
}

.home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(13 39 47 / 78%) 0%, rgb(13 39 47 / 44%) 48%, rgb(13 39 47 / 8%) 78%);
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--site-content), calc(100% - 40px));
  margin-inline: auto;
  padding-top: clamp(105px, 16vw, 210px);
  color: #fff;
}

.home-hero-copy > p {
  margin: 0 0 6px;
  color: #aee4ed;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.035em;
  text-shadow: 0 2px 22px rgb(0 0 0 / 18%);
}

.home-hero-copy > span {
  display: block;
  margin-top: 18px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.home-page {
  display: grid;
  gap: clamp(56px, 8vw, 92px);
}

.home-page section {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-important-alert {
  margin: 0;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border: 1px solid #c9e3e8;
  border-left: 5px solid var(--site-accent);
  border-radius: 8px;
  background: var(--site-accent-soft);
  box-shadow: 0 10px 28px rgb(25 61 70 / 7%);
}

.home-important-meta {
  display: grid;
  gap: 5px;
}

.home-important-meta span {
  color: var(--site-accent-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-important-meta time {
  color: var(--site-muted);
  font-size: .88rem;
  font-weight: 700;
}

.home-important-content h2 {
  margin: 0;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.2;
}

.home-important-content p {
  margin: 6px 0 0;
  color: var(--site-muted);
}

.home-important-alert > a {
  min-height: 44px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--site-accent-dark);
  border-radius: 6px;
  color: #fff;
  background: var(--site-accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.home-section-heading {
  margin-bottom: 22px;
  padding-bottom: 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--site-accent);
}

.home-section-heading h2,
.home-history h2,
.home-contact h2 {
  margin: 2px 0 0;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.home-section-heading > a,
.home-section-link {
  flex: 0 0 auto;
  color: var(--site-accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.home-section-heading > a:hover,
.home-section-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-section-kicker {
  margin: 0;
  color: var(--site-accent-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.home-section-date {
  margin: 0 0 2px;
  color: var(--site-muted);
  font-weight: 700;
}

.home-intentions {
  border-top: 1px solid var(--site-line);
}

.home-intentions .intention-row {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--site-line);
}

.home-intentions time {
  color: var(--site-accent-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

.home-today > .home-section-link {
  display: inline-block;
  margin-top: 18px;
}

.home-news-list > article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr) auto;
  align-items: start;
  gap: 22px;
  border-bottom: 1px solid var(--site-line);
}

.home-news-list > article:first-child {
  border-top: 1px solid var(--site-line);
}

.home-news-list > article.home-news-important {
  margin-inline: -18px;
  padding-inline: 18px;
  background: var(--site-accent-soft);
}

.home-news-list time,
.home-featured-reading time,
.home-diocese-list time {
  color: var(--site-muted);
  font-size: .88rem;
  font-weight: 700;
}

.home-news-list h3,
.home-featured-reading h3 {
  margin: 0;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.3rem;
  line-height: 1.25;
}

.home-news-list p,
.home-featured-reading p {
  margin: 8px 0 0;
  color: var(--site-muted);
}

.home-news-list article > a {
  color: var(--site-accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.home-news-label {
  margin: 0 0 5px !important;
  color: var(--site-accent-dark) !important;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-featured-reading {
  max-width: var(--site-reading);
  padding: 8px 0 4px;
}

.home-featured-reading h3 {
  margin-top: 7px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.home-featured-reading h3 a {
  color: inherit;
  text-decoration: none;
}

.home-featured-reading h3 a:hover {
  color: var(--site-accent-dark);
}

.home-gallery-mosaic {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, minmax(0, .65fr));
  grid-template-rows: repeat(2, minmax(175px, 230px));
  gap: 12px;
}

.home-gallery-photo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--site-soft);
}

.home-gallery-photo--featured {
  grid-row: 1 / span 2;
}

.home-gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.home-gallery-photo:hover img {
  filter: brightness(.88);
  transform: scale(1.025);
}

.home-gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 54px 24px 22px;
  display: grid;
  gap: 3px;
  color: #fff;
  background: linear-gradient(transparent, rgb(13 39 47 / 86%));
}

.home-gallery-caption > span {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-gallery-caption strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.home-history {
  padding: clamp(28px, 5vw, 52px) !important;
  border-left: 4px solid var(--site-accent) !important;
  background: var(--site-soft) !important;
}

.home-history > p:not(.home-section-kicker) {
  max-width: 720px;
  margin: 14px 0 20px;
  color: var(--site-muted);
  font-size: 1.08rem;
}

.home-partners {
  padding: clamp(30px, 5vw, 52px) !important;
  border-top: 4px solid var(--site-accent) !important;
  background: linear-gradient(135deg, #f8fbfb, #eef5f6) !important;
}

.home-partners-heading {
  align-items: end;
  margin-bottom: 24px;
}

.home-partners-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--site-muted);
  line-height: 1.65;
}

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

.home-partner-card {
  min-height: 142px;
  padding: 22px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  border: 1px solid var(--site-line);
  border-radius: 4px;
  color: var(--site-ink);
  background: #fff;
  box-shadow: 0 10px 28px rgb(13 39 47 / 5%);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-partner-card:hover {
  border-color: rgb(0 121 145 / 45%);
  color: var(--site-ink);
  box-shadow: 0 16px 36px rgb(13 39 47 / 10%);
  transform: translateY(-3px);
}

.home-partner-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: var(--site-accent-strong);
  background: var(--site-soft);
}

.home-partner-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-partner-mark--logo {
  position: relative;
  border: 1px solid #edf0f3;
  background: #fff;
}

.home-partner-mark--logo img {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 148px;
  height: 148px;
  max-width: none;
  transform: translate(-50%, -50%);
}

.home-partner-mark--school {
  color: #315d46;
  background: #edf5ef;
}

.home-partner-mark--sport {
  color: #173b70;
  background: #edf3fb;
}

.home-partner-copy {
  display: grid;
  gap: 7px;
}

.home-partner-copy strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  line-height: 1.18;
}

.home-partner-copy small {
  color: var(--site-muted);
  font-size: .82rem;
  line-height: 1.45;
}

.home-partner-arrow {
  align-self: start;
  color: var(--site-accent-strong);
  font-size: 1.15rem;
}

.home-diocese {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
  gap: clamp(38px, 7vw, 80px);
}

.home-diocese-list {
  display: grid;
}

.home-diocese-list > a {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--site-line);
  color: var(--site-ink);
  font-weight: 700;
  text-decoration: none;
}

.home-diocese-list > a:hover span {
  color: var(--site-accent-dark);
}

.home-contact {
  padding: 26px !important;
  background: var(--site-soft) !important;
}

.home-contact h2 {
  margin-bottom: 18px;
  font-size: 1.65rem;
}

.home-contact p {
  margin: 7px 0;
}

.home-contact .home-section-link {
  display: inline-block;
  margin-top: 14px;
}

.home-empty {
  margin: 0;
  padding: 20px 0;
  color: var(--site-muted);
}

.content-filters {
  margin: 0 0 12px;
  padding: 18px;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 14px;
  border: 1px solid var(--site-line);
  background: var(--site-soft);
}

.content-filters label:not(.content-filter-check) {
  min-width: 180px;
  display: grid;
  gap: 5px;
}

.content-filters label > span,
.content-toolbar label {
  color: var(--site-muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.content-filters input[type='search'],
.content-filters select,
.content-toolbar select {
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #cbd9dc;
  border-radius: 6px;
  color: var(--site-ink);
  background: var(--site-paper);
  font: inherit;
}

.content-filter-check {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-filters button,
.week-controls button,
.reading-actions button {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid var(--site-accent-dark);
  border-radius: 6px;
  color: #fff;
  background: var(--site-accent-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.content-filters > a {
  min-height: 44px;
  padding: 9px 6px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.content-summary {
  margin: 0 0 24px;
  color: var(--site-muted);
  font-size: .9rem;
}

.content-list {
  border-top: 1px solid var(--site-line);
}

.content-row {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: start;
  gap: 22px;
  border-bottom: 1px solid var(--site-line);
}

.content-row--important {
  margin-left: -18px;
  padding-left: 15px;
  border-left: 3px solid var(--site-accent);
  background: linear-gradient(90deg, var(--site-accent-soft), transparent 62%);
}

.content-meta {
  color: var(--site-accent-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.content-badge {
  margin: 0 0 7px 8px;
  padding: 3px 7px;
  display: inline-block;
  border-radius: 4px;
  color: #fff;
  background: var(--site-accent-dark);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.content-title {
  margin: 0 0 6px;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.content-excerpt {
  margin: 0;
  color: var(--site-muted);
}

.text-link {
  color: var(--site-accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-empty {
  margin: 0;
  padding: 22px 0;
  color: var(--site-muted);
}

.pagination {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pagination a {
  font-weight: 800;
}

.pagination span {
  color: var(--site-muted);
}

.content-toolbar {
  margin-bottom: 22px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--site-line);
}

.content-toolbar form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-toolbar p {
  margin: 0;
  color: var(--site-muted);
  font-size: .9rem;
}

.reading-page {
  max-width: var(--site-reading);
}

.reading-back {
  margin: 0 0 26px;
}

.reading-back a {
  font-weight: 800;
  text-decoration: none;
}

.reading-content h1 {
  margin: 8px 0 28px;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.08;
}

.reading-image {
  margin-bottom: 30px;
  display: block;
}

.reading-image img {
  width: 100%;
  height: auto;
  display: block;
}

.prose {
  color: var(--site-ink);
}

.prose > :first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  font-size: 1.04rem;
  line-height: 1.8;
}

.prose ul,
.prose ol {
  padding-left: 1.4rem;
}

.reading-actions {
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--site-line);
}

.reading-actions a {
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--site-line);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.reading-neighbours {
  margin-top: 44px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  border-top: 1px solid var(--site-line);
}

.reading-neighbours a {
  display: grid;
  gap: 5px;
  text-decoration: none;
}

.reading-neighbours a:last-child {
  text-align: right;
}

.reading-neighbours span {
  color: var(--site-muted);
  font-size: .8rem;
  text-transform: uppercase;
}

.reading-neighbours strong {
  color: var(--site-ink);
}

.section-line-heading {
  margin-bottom: 8px;
  padding-bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid var(--site-accent);
}

.section-line-heading h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.section-line-heading p {
  margin: 0;
  color: var(--site-muted);
}

.intentions-today {
  margin-bottom: 34px;
}

.intention-row {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--site-line);
}

.intention-row > time {
  color: var(--site-accent-dark);
  font-weight: 900;
}

.intention-row .prose p {
  margin: 0;
  font-size: 1rem;
}

.week-controls {
  margin: 0 0 42px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-block: 1px solid var(--site-line);
}

.week-controls a {
  padding: 9px 14px;
  border: 1px solid var(--site-line);
  border-radius: 6px;
  color: var(--site-ink);
  font-weight: 800;
  text-decoration: none;
}

.week-controls a.active {
  border-color: var(--site-accent-dark);
  color: #fff;
  background: var(--site-accent-dark);
}

.week-controls button {
  margin-left: auto;
  color: var(--site-accent-dark);
  background: var(--site-paper);
}

.week-list {
  border-top: 1px solid var(--site-line);
}

.week-day {
  padding: 22px 0;
  border-bottom: 1px solid var(--site-line);
}

.week-day > header {
  margin-bottom: 5px;
  padding: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.week-day h3 {
  margin: 0;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.3rem;
}

.week-day > header time {
  color: var(--site-muted);
  font-size: .88rem;
}

.week-day--empty {
  opacity: .72;
}

.gallery-filter {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-filter label {
  color: var(--site-muted);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gallery-filter select {
  min-height: 42px;
  padding: 8px 34px 8px 11px;
  border: 1px solid var(--site-line);
  border-radius: 6px;
  color: var(--site-ink);
  background: var(--site-paper);
  font: inherit;
}

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

.album-tile {
  padding-bottom: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 8px 12px;
  border-bottom: 1px solid var(--site-line);
  color: var(--site-ink);
  text-decoration: none;
}

.album-tile img {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 5px;
  display: block;
  object-fit: cover;
  background: var(--site-soft);
  transition: filter 180ms ease;
}

.album-tile:hover img {
  filter: brightness(.93);
}

.album-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.album-count {
  color: var(--site-muted);
  font-size: .82rem;
}

.gallery-back {
  margin-bottom: 24px;
  display: inline-block;
  color: var(--site-accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.photo-link {
  aspect-ratio: 3 / 2;
  display: block;
  overflow: hidden;
  background: var(--site-soft);
}

.photo-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.photo-link:hover img {
  filter: brightness(.9);
  transform: scale(1.025);
}

.empty-state {
  padding: 32px;
  border: 1px solid var(--site-line);
  background: var(--site-soft);
  text-align: center;
}

.empty-state p {
  margin: 0 0 8px;
  color: var(--site-muted);
}

.empty-state a {
  font-weight: 800;
}

.history-page {
  max-width: 980px;
}

.history-timeline {
  margin: 0 0 50px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 2px solid var(--site-accent);
  list-style: none;
}

.history-timeline li {
  position: relative;
  padding: 16px 12px 0;
}

.history-timeline li::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--site-accent);
}

.history-timeline time {
  display: block;
  color: var(--site-accent-dark);
  font-size: 1.08rem;
  font-weight: 900;
}

.history-timeline span {
  display: block;
  margin-top: 3px;
  color: var(--site-muted);
  font-size: .84rem;
  line-height: 1.35;
}

.history-section {
  max-width: var(--site-reading);
  margin: 0 auto;
  padding: 38px 0;
  border-bottom: 1px solid var(--site-line);
}

.history-section:last-child {
  border-bottom: 0;
}

.history-section h2 {
  margin: 0 0 22px;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.45rem);
  line-height: 1.16;
}

.history-section h3 {
  margin: 0 0 8px;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
}

.history-section > p,
.history-note p,
.history-facts li {
  font-size: 1.04rem;
  line-height: 1.8;
}

.history-figure {
  margin: 26px 0;
}

.history-figure img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--site-soft);
}

.history-figure figcaption {
  padding: 10px 0;
  color: var(--site-muted);
  font-size: .86rem;
  line-height: 1.5;
}

.history-figure--portrait {
  max-width: 430px;
  margin-inline: auto;
}

.history-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.history-image-pair .history-figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.history-note {
  margin: 28px 0;
  padding: 22px 24px;
  border: 0;
  border-left: 4px solid var(--site-accent);
  color: var(--site-ink);
  background: var(--site-soft);
}

blockquote.history-note {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.75;
}

.bell-list {
  margin: 26px calc((var(--site-reading) - min(920px, 90vw)) / 2);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.bell-list .history-figure {
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--site-line);
}

.bell-list .history-figure img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.bell-list figcaption {
  display: grid;
  gap: 4px;
}

.bell-list figcaption strong {
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
}

.bell-list figcaption span {
  color: var(--site-accent-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bell-list q {
  margin-top: 5px;
  color: var(--site-muted);
  font-style: italic;
}

.history-facts {
  margin: 24px 0;
  padding-left: 1.35rem;
}

.history-facts li + li {
  margin-top: 12px;
}

.history-contact {
  color: var(--site-accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.content-page {
  max-width: 980px;
}

.safety-page {
  max-width: 980px;
}

.safety-document .content-section {
  scroll-margin-top: 24px;
}

.safety-contact-card {
  margin: 22px 0;
  padding: 20px 22px;
  display: grid;
  gap: 3px;
  border-left: 4px solid var(--site-accent);
  color: var(--site-ink);
  background: var(--site-accent-soft);
  font-style: normal;
}

.safety-contact-card span {
  color: var(--site-accent-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.safety-contact-card strong {
  margin-top: 3px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
}

.safety-contact-card a {
  width: max-content;
  margin-top: 3px;
  color: var(--site-accent-dark);
  font-size: 1.15rem;
  font-weight: 900;
}

.safety-help-list a {
  color: var(--site-accent-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.content-page > .prose,
.content-page .prose {
  max-width: var(--site-reading);
  color: var(--site-ink);
}

.content-page .prose > * + * {
  margin-top: 1.1em;
}

.content-section {
  margin: 0;
  padding: 30px 0;
  border: 0;
  border-bottom: 1px solid var(--site-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.content-section h2 {
  margin: 0 0 18px;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;
}

.content-section h3 {
  margin: 26px 0 10px;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
}

.notice {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--site-accent);
  color: var(--site-ink);
  background: var(--site-soft);
}

.document-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--site-accent-dark);
  font-weight: 800;
}

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

.document-list .document-link {
  padding: 18px;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid var(--site-line);
  text-decoration: none;
}

.document-list .document-link span {
  color: var(--site-muted);
  font-weight: 400;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #101010;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-toc {
  margin-bottom: 22px;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  border-block: 1px solid var(--site-line);
}

.content-toc a {
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.document-actions {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.document-actions button {
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid var(--site-line);
  border-radius: 6px;
  color: var(--site-ink);
  background: var(--site-paper);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrapper th,
.table-wrapper td {
  padding: 10px 12px;
  border: 1px solid var(--site-line);
  text-align: left;
}

.s-page-hero,
.missal-header {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.s-sacrament-nav {
  margin: -12px 0 24px;
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  border-bottom: 1px solid var(--site-line);
}

.s-sacrament-nav a {
  color: var(--site-accent-dark);
  font-weight: 800;
}

.sacrament-sections .s-card {
  margin: 0;
  padding: 32px 0;
  border: 0;
  border-bottom: 1px solid var(--site-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sacrament-sections .s-card-header {
  padding: 0;
  border: 0;
  background: transparent;
}

.sacrament-sections .s-card-icon {
  display: none;
}

.sacrament-sections .s-content {
  padding: 0;
  text-align: left;
}

.sacrament-sections .s-title {
  margin: 0 0 14px;
  text-align: left;
}

.sacrament-sections .doc-list {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.sacrament-sections .doc-list li {
  margin: 0;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  border: 1px solid var(--site-line);
  border-radius: 6px;
  border-color: var(--site-line);
  background: var(--site-soft);
  text-align: left;
}

.sacrament-sections .doc-list svg {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--site-accent-dark);
}

.sacrament-sections .doc-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--site-ink);
  line-height: 1.4;
}

.sacrament-sections .music-alert,
.sacrament-sections .s-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 0;
  border-left: 3px solid var(--site-accent);
  border-color: var(--site-accent);
  background: var(--site-soft);
  box-shadow: none;
}

.sacrament-sections .music-alert h4 {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
}

.sacrament-sections .music-alert h4 svg {
  width: 24px;
  flex: 0 0 24px;
  color: var(--site-accent-dark);
}

.sacrament-sections .music-link-btn {
  min-height: 44px;
  margin-top: 8px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--site-line);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.tools-bar {
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid var(--site-line);
  background: var(--site-soft);
  box-shadow: none;
}

.prayer-item {
  border-color: var(--site-line);
  box-shadow: none;
}

.prayer-item[hidden] {
  display: none;
}

.prayer-content {
  font-size: var(--prayer-font-size, 1.15rem) !important;
}

.groups-content {
  max-width: none !important;
}

.groups-content .ui-card,
.groups-content .ui-panel {
  border: 1px solid var(--site-line);
  border-radius: 0;
  box-shadow: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 56px;
}

.contact-layout h2 {
  margin: 0 0 20px;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.65rem;
}

.contact-details dl {
  margin: 0;
}

.contact-details dl > div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 15px;
  border-bottom: 1px solid var(--site-line);
}

.contact-details dt {
  color: var(--site-muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-map {
  aspect-ratio: 4 / 3;
  margin-top: 26px;
  overflow: hidden;
  background: var(--site-soft);
}

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

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--site-ink);
  font-size: .9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 13px;
  border: 1px solid #cbd9dc;
  border-radius: 6px;
  color: var(--site-ink);
  background: var(--site-paper);
  font: inherit;
  font-weight: 400;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form button {
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--site-accent-dark);
  border-radius: 6px;
  color: #fff;
  background: var(--site-accent-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 1px;
}

.form-status p {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-left: 3px solid;
}

.form-status--success {
  border-color: #27845b !important;
  color: #175a3d;
  background: #edf8f2;
}

.form-status--error {
  border-color: #bd3f3f !important;
  color: #842929;
  background: #fff0f0;
}

.error-page {
  max-width: 680px;
  min-height: 50vh;
  display: grid;
  align-content: center;
}

.error-code {
  margin: 0;
  color: var(--site-accent);
  font-size: clamp(4.5rem, 14vw, 8rem);
  font-weight: 900;
  line-height: .9;
}

.error-page h1 {
  margin: 18px 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.error-page > p:not(.error-code) {
  max-width: 560px;
  color: var(--site-muted);
  font-size: 1.05rem;
}

.error-home {
  margin-top: 14px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-nav a,
  .site-nav .nav-more-toggle {
    padding-inline: 10px;
    font-size: .87rem;
  }

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

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

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

  .bell-list {
    margin-inline: 0;
  }
}

@media (max-width: 768px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .site-header {
    z-index: 110;
  }

  .site-header .header-top {
    width: min(100% - 28px, var(--site-content));
    min-height: 82px;
    padding-block: 10px;
  }

  .site-header .header-logo {
    width: 48px;
    height: 58px;
    flex-basis: 48px;
  }

  .site-header .header-title {
    font-size: clamp(.87rem, 3.7vw, 1.05rem);
    line-height: 1.16;
  }

  .site-header .header-subtitle {
    font-size: .69rem;
  }

  .mobile-menu-toggle {
    width: 50px;
    min-height: 50px;
    margin-left: auto;
    padding: 6px;
    display: grid;
    place-items: center;
    gap: 3px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    color: var(--site-ink);
    background: var(--site-paper);
  }

  .mobile-menu-toggle-icon {
    width: 22px;
    display: grid;
    gap: 4px;
  }

  .mobile-menu-toggle-icon span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .mobile-menu-toggle-label {
    font-size: .65rem;
    font-weight: 700;
  }

  .mobile-menu-ready .site-header .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    width: min(86vw, 360px);
    padding: 22px 18px;
    overflow-y: auto;
    border: 0;
    background: var(--site-paper);
    transform: translateX(102%);
  }

  .mobile-menu-animated .site-header .header-nav {
    transition: transform 220ms ease;
  }

  .mobile-menu-open .site-header .header-nav {
    transform: translateX(0);
  }

  .mobile-menu-heading {
    margin: 0 0 14px;
    padding: 0 8px 14px;
    display: block;
    border-bottom: 1px solid var(--site-line);
    color: var(--site-muted);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .site-header .header-nav .container {
    width: 100%;
  }

  .site-nav > ul,
  .site-nav > ul > li {
    min-height: 0;
    display: block;
  }

  .site-nav a,
  .site-nav .nav-more-toggle {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    justify-content: flex-start;
    border-radius: 7px;
    font-size: .97rem;
  }

  .site-nav a::after,
  .site-nav .nav-more-toggle::after {
    content: none;
  }

  .site-nav .nav-more-toggle {
    justify-content: space-between;
  }

  .site-nav .nav-submenu {
    position: static;
    width: auto;
    padding: 4px 0 6px 14px;
    border: 0;
    box-shadow: none;
  }

  .site-nav .nav-submenu a {
    min-height: 40px;
    color: var(--site-muted);
    font-size: .9rem;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 105;
    border: 0;
    background: rgb(20 39 45 / 62%);
  }

  .mobile-menu-open .mobile-menu-backdrop {
    display: block;
  }

  .site-main {
    width: min(100% - 28px, var(--site-content));
    padding-block: 28px 48px;
  }

  .site-footer .footer-container {
    width: min(100% - 28px, var(--site-content));
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .home-hero {
    min-height: 410px;
  }

  .home-hero::after {
    background: linear-gradient(90deg, rgb(13 39 47 / 78%), rgb(13 39 47 / 24%));
  }

  .home-hero-copy {
    width: min(100% - 28px, var(--site-content));
    padding-top: 145px;
  }

  .home-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .home-section-heading > a {
    font-size: .9rem;
  }

  .home-important-alert {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-important-alert > a {
    width: max-content;
  }

  .home-intentions .intention-row,
  .home-news-list > article,
  .home-diocese-list > a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-news-list > article.home-news-important {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .home-gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(125px, 36vw));
    gap: 8px;
  }

  .home-gallery-photo--featured {
    grid-column: 1 / -1;
    grid-row: 1 / span 2;
  }

  .home-gallery-caption {
    padding: 44px 18px 17px;
  }

  .home-diocese {
    grid-template-columns: 1fr;
  }

  .home-partners-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-partners-grid {
    grid-template-columns: 1fr;
  }

  .home-partner-card {
    min-height: 112px;
  }

  .content-filters,
  .content-toolbar,
  .section-line-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .content-filters label:not(.content-filter-check) {
    width: 100%;
  }

  .content-row,
  .intention-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .content-row--important {
    margin-left: -10px;
    padding-left: 10px;
  }

  .week-controls button {
    width: 100%;
    margin-left: 0;
  }

  .reading-neighbours {
    grid-template-columns: 1fr;
  }

  .reading-neighbours a:last-child {
    text-align: left;
  }

  .history-timeline,
  .bell-list,
  .history-image-pair {
    grid-template-columns: 1fr;
  }

  .history-timeline {
    padding-left: 18px;
    border-top: 0;
    border-left: 2px solid var(--site-accent);
  }

  .history-timeline li {
    padding: 0 0 18px 10px;
  }

  .history-timeline li::before {
    top: 6px;
    left: -24px;
  }

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

  .document-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-details dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 560px) {
  .album-grid {
    grid-template-columns: 1fr;
  }

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

@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .week-controls,
  .reading-actions,
  .reading-back {
    display: none !important;
  }

  .site-main {
    width: 100%;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
