
/* --- Strong overrides to center title + remove logo block --- */

/* Make header a flex container and center its contents */
.header{ display:flex !important; justify-content:center !important; }
.header .title{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:12px !important;
  width:100% !important;
  text-align:center !important;
  margin:0 auto !important;
}

/* Neutralize any preset styles on the logo span */
.title .logo{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  filter:none !important;
  padding:0 !important;
  margin:0 !important;
  width:auto !important; height:auto !important;
  border-radius:0 !important;
}
.title .logo::before,
.title .logo::after{ content:none !important; display:none !important; }

/* Actual logo image size */
.title .logo img{ display:block !important; height:60px !important; width:auto !important; border-radius:0 !important; }

/* Ensure the heading text doesn't push left */
.header .title > span:not(.logo){ display:block !important; line-height:1.2 !important; }
