#cookie-notice,
.cookie-bar,
.cc-window,
.wpc-consent-banner {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* ===== Ministry-style Header + Hero ===== */

.moh-wrap{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fbf7f6;
}

.moh-container{
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

.moh-topbar{
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.moh-topbar::after{
  content:"";
  display:block;
  height: 42px;
  background:
    radial-gradient(circle at 10px 10px, rgba(163, 20, 46, .08) 0 2px, transparent 3px) 0 0/22px 22px;
  opacity:.9;
}

.moh-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 14px 0;
}

.moh-brand{ display:flex; align-items:center; text-decoration:none; }
.moh-logo{ height: 62px; width:auto; display:block; }

.moh-top-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.moh-search{
  display:flex;
  align-items:stretch;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 6px;
  overflow:hidden;
  background:#fff;
}

.moh-search input{
  border:0;
  outline:0;
  padding: 10px 12px;
  width: min(340px, 52vw);
  font-size: 14px;
}

.moh-search button{
  border:0;
  background:#fff;
  padding: 0 12px;
  cursor:pointer;
  border-left: 1px solid rgba(0,0,0,.12);
}

.moh-utility-links{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}

.moh-utility-links a{
  font-size: 14px;
  color:#2b2b2b;
  text-decoration:none;
}
.moh-utility-links a:hover{ text-decoration:underline; }

.moh-lang-login{
  display:flex;
  align-items:center;
  gap: 10px;
}

.moh-lang{
  font-size: 14px;
  text-decoration:none;
  color:#2b2b2b;
  display:flex;
  align-items:center;
  gap: 6px;
}

.moh-login{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 18px;
  border-radius: 8px;
  background: #7b0f2a; /* maroon-ish */
  color:#fff;
  text-decoration:none;
  font-weight: 600;
  font-size: 14px;
}
.moh-login:hover{ filter: brightness(.95); }

/* Main nav row */
.moh-mainnav{
  padding: 12px 0 16px;
}

.moh-main-links{
  display:flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items:center;
  justify-content:flex-end;
}

.moh-main-links a{
  text-decoration:none;
  color:#2b2b2b;
  font-size: 15px;
  padding: 6px 2px;
}
.moh-main-links a.is-active{
  color:#7b0f2a;
  font-weight: 700;
}

/* Hero */
.moh-hero{
  padding: 18px 0 40px;
  background: #fbf7f6;
}

.moh-hero-frame{
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  border-radius: 10px;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  background:#000;
}

.moh-hero-img{
  width: 100%;
  height: clamp(360px, 42vw, 520px);
  object-fit: cover;
  display:block;
  opacity: .98;
}

/* Caption overlay bar */
.moh-hero-caption{
  position:absolute;
  left:0;
  right:0;
  bottom: 0;
  padding: 18px 18px 16px;
  background: rgba(0,0,0,.55);
  color:#fff;
  text-align:center;
}

.moh-hero-caption p{
  margin: 0 auto 14px;
  max-width: 980px;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.25;
  font-weight: 500;
}

.moh-hero-cta{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}

.moh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
  background: #ffffff;
  color:#222;
  border: 1px solid rgba(255,255,255,.35);
}

.moh-btn.primary{
  background:#7b0f2a;
  color:#fff;
  border-color: transparent;
}

/* Slider arrows */
.moh-hero-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(0,0,0,.30);
  color:#fff;
  font-size: 26px;
  cursor:pointer;
}
.moh-hero-arrow.left{ left: 14px; }
.moh-hero-arrow.right{ right: 14px; }
.moh-hero-arrow:hover{ background: rgba(0,0,0,.42); }

/* Right accessibility toolbar */
.moh-access{
  position: fixed;
  right: 14px;
  top: 42%;
  transform: translateY(-50%);
  display:flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.moh-access button{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  background:#fff;
  cursor:pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  font-size: 18px;
}

@media (max-width: 900px){
  .moh-topbar-inner{
    align-items:flex-start;
  }
  .moh-main-links{
    justify-content:flex-start;
  }
  .moh-access{ display:none; }
}
