/* === HERO COVER BASE === */
.hero-cover {
  background-repeat: no-repeat;
}

/* =========================
   DESKTOP (large screens)
   ========================= */
@media (min-width: 1024px) {
  .hero-cover {
    background-position: -140px center !important;
  }
}

/* =========================
   TABLET (iPad, etc.)
   ========================= */
@media (min-width: 769px) and (max-width: 1023px) {
  .hero-cover {
    min-height: 300px !important;
  }

  .hero-cover .wp-block-cover__image-background,
  .hero-cover .wp-block-cover__video-background {
    object-fit: cover !important;
    object-position: 15% 52% !important;
  }
}

/* =========================
   MOBILE (phones)
   ========================= */
@media (max-width: 768px) {
  .hero-cover {
    min-height: 260px !important;
  }

  .hero-cover .wp-block-cover__image-background,
  .hero-cover .wp-block-cover__video-background {
    object-fit: cover !important;
    object-position: 8% 56% !important;
  }
}
/* FORCE cover inner content to left (Kadence-safe) */
.hero-cover .wp-block-cover__inner-container {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}
/* TABLET */
@media (min-width: 769px) and (max-width: 1023px) {
  .hero-cover .wp-block-cover__image-background,
  .hero-cover .wp-block-cover__video-background {
    object-fit: cover !important;
    object-position: -6% 54% !important;
  }
}

/* MOBILE (PRIORITY) */
@media (max-width: 768px) {
  .hero-cover {
    min-height: 250px !important;
  }

  .hero-cover .wp-block-cover__image-background,
  .hero-cover .wp-block-cover__video-background {
    object-fit: cover !important;
    object-position: -14% 58% !important;
  }
}
/* FORCE vertical centering in header row */
.hero-header {
  align-items: center !important;
}
/* Front-end: vertically center logo + heading in the left header row */
.hero-left {
  display: flex !important;
  align-items: center !important;
}

.hero-left > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* LIVE: vertically center logo + ministry name */
.hero-left {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

/* Remove default margins that shift alignment */
.hero-left .wp-block-image,
.hero-left h1, .hero-left h2, .hero-left h3, .hero-left h4,
.hero-left p {
  margin: 0 !important;
}

/* Fix baseline/inline image behavior */
.hero-left img {
  display: block !important;
  height: auto !important;
}
.wp-block-cover {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}