@charset "UTF-8";
/* Design system first */
/* Base semantic colors */
/* On-color (text on colored background) */
/* Light backgrounds */
/* Borders */
.u-elevation-none {
  box-shadow: none !important;
}

.u-elevation-s {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.u-elevation-m {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Base / reset */
/* Base Reset — minimal, Gutenberg-safe */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Design system first */
/* Global base styles */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
}

main {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

main.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", serif;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.5rem 0;
}

h3 {
  margin-top: 0.75rem;
}

p {
  margin: 0 0 0.5rem 0;
}

a {
  color: #21323b;
}
a:hover {
  color: rgb(77.4, 91, 98.2);
}

/* Gutenberg containers */
.wp-site-blocks {
  padding: 0;
}

.wp-block-columns > .wp-block-column {
  min-width: 0;
}

/* Utility */
.is-hidden {
  display: none !important;
}

/* Layout */
/* Design system first */
.pb-site-header {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

.pb-site-header__inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}

/* Branding (site title + tagline) */
.pb-site-header__branding {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.pb-site-title {
  margin: 0;
  font-family: "Georgia", serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #21323b;
}

.pb-site-tagline {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.85rem, 1.7vw, 0.95rem);
  color: rgb(140.25, 140.25, 140.25);
}

/* Primary navigation */
.pb-primary-nav {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.85rem, 1.7vw, 0.95rem);
}

.pb-primary-nav .wp-block-navigation__container {
  display: flex;
  gap: 1rem;
}

.pb-primary-nav .wp-block-navigation-item__content {
  text-decoration: none;
  color: #000000;
  padding-block: 0.125rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease-out, border-color 0.18s ease-out;
}

.pb-primary-nav .wp-block-navigation-item__content:hover,
.pb-primary-nav .wp-block-navigation-item__content:focus-visible {
  color: rgb(26.4, 40, 47.2);
  border-color: rgb(26.4, 40, 47.2);
}

/* Current menu item */
.pb-primary-nav .current-menu-item .wp-block-navigation-item__content {
  border-color: #21323b;
  color: #21323b;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .pb-site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .pb-primary-nav .wp-block-navigation__container {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }
}
@media (max-width: 480px) {
  .pb-site-header__inner {
    padding-block: 0.5rem;
  }
  .pb-site-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
  }
}
/* Force mobile nav at 999px */
@media (max-width: 999px) {
  .pb-site-header .wp-block-navigation__responsive-container-open {
    display: block !important;
  }
  .pb-site-header .wp-block-navigation__container {
    display: none;
  }
}
/* Restore desktop nav above 999px */
@media (min-width: 1000px) {
  .pb-site-header .wp-block-navigation__responsive-container-open {
    display: none;
  }
  .pb-site-header .wp-block-navigation__container {
    display: flex;
  }
}
/* Design system first */
.site-footer {
  background: rgb(26.4, 40, 47.2);
  color: #ffffff;
}

/* Design system first */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.grid > * {
  min-width: 0;
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid--split-3-1 {
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
}
@media (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.grid img,
.grid video,
.grid iframe,
.grid svg {
  max-width: 100%;
}

/* Design system first */
.pb-section {
  padding: 3rem 0;
}

.pb-regular-block {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.pb-hero-split__content {
  background-color: #f5f5f5;
  max-width: 100%;
}

/* Design system first */
.hero {
  min-height: 90vh;
}
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: auto;
  }
}

.hero-media {
  min-width: 0;
  overflow: hidden;
}

/* picture becomes the layout container */
.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* img fills the picture */
.hero-media picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Design system first */
/* Card */
.animated-card__link {
  text-decoration: none;
  transition: text-decoration 0.25s ease;
}

.animated-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.animated-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.animated-card:hover .animated-card__media img {
  transform: scale(1.04);
}
.animated-card:hover .animated-card__link {
  text-decoration: underline;
}

.animated-card__media img {
  transition: transform 0.4s ease;
}

.has-page-hero .pb-page-title--fallback {
  display: none;
}

/* Blocks */
/* Design system first */
.pb-header-intro {
  padding: 0.5rem 0;
  text-align: center;
  border-top: 1px solid #cccccc;
}

.pb-header-welcome {
  font-family: "Georgia", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0;
}

.pb-header-tagline {
  font-size: clamp(0.85rem, 1.7vw, 0.95rem);
  color: rgb(140.25, 140.25, 140.25);
  margin: 0;
}

/* Design system first */
/* -------------------------------------------------
   Base hero structure
-------------------------------------------------- */
/* -------------------------------------------------
   Fullscreen / near-fullscreen heroes
-------------------------------------------------- */
/* -------------------------------------------------
   Centered overlay content
-------------------------------------------------- */
/* Design system first */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 3rem 0;
  background-size: cover;
  background-position: center;
}
.hero__content {
  text-align: center;
  color: #ffffff;
  max-width: 50rem;
  padding: 1.5rem;
}
.hero__title {
  font-family: "Georgia", serif;
  font-size: clamp(2.4rem, 3vw, 3.8rem);
  margin-bottom: 1rem;
}
.hero__subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Design system first */
.hero-image-under {
  padding-bottom: 2rem;
}

/* Height constraint lives here */
.pb-hero--short {
  max-height: clamp(260px, 35vh, 420px);
  overflow: hidden;
}

/* picture is structural only */
.pb-hero--short picture {
  display: block;
  width: 100%;
}

/* image keeps natural proportions */
.hero-image-under .pb-hero--short picture > img,
.pb-hero--short > img {
  width: 100%;
  height: auto;
  display: block;
}

/* content below */
.hero-image-under__content {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}

.hero-image-under__title {
  margin-bottom: 0.25rem;
}

.hero-image-under__subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: rgb(140.25, 140.25, 140.25);
}

/* Design system first */
.pb-hero-split {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .pb-hero-split {
    grid-template-columns: 1fr;
    min-height: 60vh;
  }
}
@media (max-width: 640px) {
  .pb-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
.pb-hero-split__media {
  min-width: 0;
  overflow: hidden;
}
.pb-hero-split__media img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}
.pb-hero-split__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  padding: 4.5rem 3rem;
  max-width: 36rem;
}
@media (max-width: 768px) {
  .pb-hero-split__content {
    max-width: none;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .pb-hero-split__content__media {
    max-height: 60vh;
  }
}

.pb-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.85rem, 1.7vw, 0.95rem);
  color: rgb(114.75, 114.75, 114.75);
  margin-bottom: 0.5rem;
}

.pb-hero-title {
  margin-bottom: 1rem;
}

.pb-hero-text {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: #000000;
}

/* Design system first */
.pb-hero-window {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4.5rem 0;
}

.pb-hero-window__frame {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  background: #ffffff;
  border-radius: 2rem;
  margin: 1.5rem;
  padding: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Image behaves like background, but stays an <img> */
.pb-hero-window__media {
  position: relative;
  height: 65vh;
  min-height: 420px;
  max-height: 720px;
  overflow: hidden;
  border-radius: 16px;
  padding: 1rem; /* white space between frame + image */
  background: #fff;
}

.pb-hero-window__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Floating content layer */
.pb-hero-window__content {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  max-width: 36rem;
  /* Glass background */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.28));
  /* Frosted glass effect */
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  /* Shape & spacing */
  padding: 1.5rem;
  border-radius: 12px;
  /* Glass edge */
  border: 1px solid rgba(255, 255, 255, 0.45);
  /* Softer, more natural shadow */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #111;
}
.pb-hero-window__content h1, .pb-hero-window__content h2, .pb-hero-window__content h3 {
  color: #000;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}
.pb-hero-window__content p {
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 32ch;
}

/* Responsive */
@media (max-width: 768px) {
  .pb-hero-window__content {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
/* Design system first */
.pb-hero-screen {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .pb-hero-screen {
    min-height: 80vh;
  }
}
@media (max-width: 480px) {
  .pb-hero-screen {
    min-height: 70vh;
  }
}
.pb-hero-screen {
  display: grid;
  place-items: center;
}

.pb-hero-screen__media {
  position: absolute;
  inset: 0;
}
.pb-hero-screen__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb-hero-screen__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  place-items: center;
  /* subtle readability boost without “hero overlay” cliché */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}

.pb-hero-screen__content {
  text-align: center;
  color: #ffffff;
  padding: 3rem;
  max-width: 60rem;
}
.pb-hero-screen__content h1 {
  margin-bottom: 0.5rem;
}
.pb-hero-screen__content p {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  opacity: 0.95;
}

/* Design system first */
.pb-about {
  padding: 2rem;
}
.pb-about .wp-block-columns {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.pb-about .wp-block-column {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 768px) {
  .pb-about .wp-block-columns {
    flex-direction: column;
  }
}
.pb-about h2 {
  margin-bottom: 0.5rem;
}
.pb-about .pb-about-text {
  color: #000000;
  line-height: 1.6;
}
.pb-about .pb-about-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.pb-about.type-b {
  background: #f5f5f5;
  padding: 3rem 0;
}

/* Design system first */
.pb-ministries {
  padding: 2rem 0;
}
.pb-ministries__header {
  margin-bottom: 1.5rem;
}
.pb-ministries h2 {
  margin-bottom: 0.25rem;
}
.pb-ministries > p {
  margin-bottom: 1.5rem;
  color: rgb(140.25, 140.25, 140.25);
  max-width: 48rem;
}
.pb-ministries.type-b {
  background: #f5f5f5;
}

/* Grid stays generic */
.pb-ministry-grid {
  align-items: stretch;
}

/* Ministries card media */
.pb-ministry-card__media {
  width: 100%;
  aspect-ratio: 16/9;
  /* horizontal */
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  position: relative;
}
.pb-ministry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body */
.pb-ministry-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 1rem;
}

.pb-ministry-card__excerpt {
  font-size: 0.95rem;
  color: #000000;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pb-ministry-card__link {
  margin-top: auto;
  font-weight: 600;
  color: #21323b;
}

/* Design system first */
.pb-people {
  padding: 2rem 0;
}

.pb-people-group {
  margin-bottom: 3rem;
}
.pb-people-group h2 {
  margin-bottom: 1.5rem;
}

.pb-people-grid {
  align-items: stretch;
}

.pb-person-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pb-person-card__media {
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}
.pb-person-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb-person-card__body {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pb-person-role {
  font-size: 0.9rem;
  color: rgb(140.25, 140.25, 140.25);
  margin-bottom: 0.5rem;
}

.pb-person-bio {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.pb-person-contact {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}
.pb-person-contact a {
  font-size: 1.1rem;
  color: #21323b;
}
.pb-person-contact a:hover {
  color: rgb(26.4, 40, 47.2);
}

/* Design system first */
.pb-worship {
  padding: 2rem 0;
}
.pb-worship h2 {
  margin-bottom: 1rem;
}
.pb-worship ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.pb-worship li {
  padding: 0.5rem 1rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
}
.pb-worship li strong {
  margin-right: 0.25rem;
}
.pb-worship li em {
  color: rgb(140.25, 140.25, 140.25);
  font-style: normal;
  margin-left: 0.25rem;
}
.pb-worship.type-b {
  background: #f5f5f5;
}

/* Design system first */
.pb-video-gallery {
  padding: 2rem 0;
  /* Stack on smaller screens */
}
.pb-video-gallery h2 {
  margin-bottom: 1rem;
}
.pb-video-gallery .pb-video-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 640px) {
  .pb-video-gallery .pb-video-grid {
    grid-template-columns: 1fr;
  }
}
.pb-video-gallery .pb-video-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.pb-video-gallery .pb-video-card img,
.pb-video-gallery .pb-video-card iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.pb-video-gallery .pb-video-card p {
  padding: 0.5rem;
  margin: 0;
  font-size: 0.95rem;
  color: #000000;
}

/* Design system first */
.prayer-wall.type-b {
  padding: 2rem 0;
}
.prayer-wall.type-b .prayer-submit-form {
  margin-bottom: 1.5rem;
}
.prayer-wall.type-b .prayer-submit-form form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.prayer-wall.type-b .prayer-submit-form form input, .prayer-wall.type-b .prayer-submit-form form textarea {
  padding: 0.25rem;
  border-radius: 8px;
  border: 1px solid #cccccc;
  font-family: inherit;
  font-size: 1rem;
}
.prayer-wall.type-b .prayer-submit-form form button {
  background: #21323b;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.prayer-wall.type-b .prayer-submit-form form button:hover {
  background: rgb(55.2, 70.5, 78.6);
}
.prayer-wall.type-b .prayer-submit-form .prayer-success {
  margin-top: 0.5rem;
  color: #2e7d32;
}
.prayer-wall.type-b .prayer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.prayer-wall.type-b .prayer-card {
  padding: 1rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.prayer-wall.type-b .prayer-meta {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgb(140.25, 140.25, 140.25);
  display: flex;
  flex-direction: column;
}

/* Components */
/* Design system first */
a.button {
  background: #21323b;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
a.button:hover {
  background: rgb(55.2, 70.5, 78.6);
}

/* Design system first */
.pb-people-grid,
.pb-ministry-grid,
.pb-worship-intro,
.pb-video-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  min-width: 0;
  overflow: hidden;
}

.card-thumb-container {
  max-width: 100%;
  width: 100%;
  display: block;
}

.card-thumb-container img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Ministry-specific override if you want */
/* Templates */
/* ==========================================================================
   Page Hero — fully contained
   ========================================================================== */
.pb-page-hero_outer-container {
  position: relative;
}

/* --------------------------------------------------------------------------
   Base state — NO featured image
   -------------------------------------------------------------------------- */
.pb-page-hero_outer-container .wp-block-cover {
  background: #f5f5f5;
  min-height: 12rem;
  padding: 3rem 1.5rem;
}

/* Content — no image */
.pb-page-hero_outer-container .pb-page-hero__content {
  max-width: 60rem;
  margin-inline: auto;
  text-align: center;
  color: #111;
  text-shadow: none;
}

.pb-page-hero_outer-container .pb-page-hero__title {
  color: #111;
  margin: 0;
}

.pb-page-hero_outer-container .pb-page-hero__subtitle {
  color: #333;
}

/* --------------------------------------------------------------------------
   Image-present state
   -------------------------------------------------------------------------- */
/*
 * When a featured image exists, WordPress outputs
 * .wp-block-cover__image-background inside the cover.
 */
.pb-page-hero_outer-container .wp-block-cover:has(.wp-block-cover__image-background) {
  min-height: clamp(280px, 55vh, 520px);
  padding: 0;
}

/* Content — image present */
.pb-page-hero_outer-container .wp-block-cover:has(.wp-block-cover__image-background) .pb-page-hero__content {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* Ensure title + subtitle flip to white */
.pb-page-hero_outer-container .wp-block-cover:has(.wp-block-cover__image-background) .pb-page-hero__title,
.pb-page-hero_outer-container .wp-block-cover:has(.wp-block-cover__image-background) .pb-page-hero__subtitle {
  color: #fff;
}

/* Optional overlay only when image exists */
.pb-page-hero_outer-container .wp-block-cover:has(.wp-block-cover__image-background) .wp-block-cover__background {
  background: rgba(0, 0, 0, 0.35);
}

/*# sourceMappingURL=style.css.map */
