/* ==========================================================================
   Campaign Prayer band  -  /campaign-preview  (Joomla menu item 461)
   Copied from allsaints-dallas /capitalcampaign (Gantry custom particle),
   restyled for cc-lawrence: Cinzel headings, site-blue overlay, white rules,
   full-bleed with a parallax photo.
   Parallax background image -> /images/pub/cr1_resized.webp
   Parallax motion is driven by /images/pub/campaign-prayer.js (sets --sc-pp-y).
   Scope: this page only, via html body.itemid-461.
   ========================================================================== */

html body.itemid-461 { overflow-x: clip; }

html body.itemid-461 .sc-campaign-prayer {
  position: relative;
  box-sizing: border-box;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: min(7vw, 5.5rem) min(6vw, 4rem);
  overflow: hidden;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
}

/* Parallax photo layer. Stands 200% tall with a -50% head start so it can
   move up to 50% of the band height in each direction without showing an edge. */
html body.itemid-461 .sc-campaign-prayer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -50%;
  height: 200%;
  background: url('/images/pub/cr1_resized.webp') center center / cover no-repeat;
  transform: translate3d(0, var(--sc-pp-y, 0px), 0);
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}

/* Site-blue overlay above the photo. */
html body.itemid-461 .sc-campaign-prayer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 45, 76, 0.75);
  z-index: 1;
  pointer-events: none;
}

/* Keep the content above the photo and the overlay. */
html body.itemid-461 .sc-campaign-prayer > * {
  position: relative;
  z-index: 2;
}

html body.itemid-461 .sc-campaign-prayer-title {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  align-items: center;
  grid-gap: min(3vw, 40px);
  margin: 0 0 min(3vw, 1.5rem);
  padding: 0;
  font-family: var(--heading-font-family, "Cinzel", serif);
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  text-align: center;
}

html body.itemid-461 .sc-campaign-prayer-title::before,
html body.itemid-461 .sc-campaign-prayer-title::after {
  content: "";
  border-top: 1px solid var(--default-white);
}

html body.itemid-461 .sc-campaign-prayer p {
  max-width: 78ch;
  margin: 0 auto 1.15rem;
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.65;
  text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.6);
}

html body.itemid-461 .sc-campaign-prayer p:last-child { margin-bottom: 0; }

@media (max-width: 50.99rem) {
  html body.itemid-461 .sc-campaign-prayer { padding: 2.5rem 1.25rem; }
  html body.itemid-461 .sc-campaign-prayer-title { grid-gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html body.itemid-461 .sc-campaign-prayer::before { transform: none; }
}
