/* ==========================================================
   CHEP-like banner header for "Indico style" (legacy conf pages)
   - Big banner image at top
   - Hide the title text (but keep the header block)
   ========================================================== */

/* 1) Make the logo/header area behave like a full-width banner */
.confLogo {
  /* Replace with your own uploaded logo/banner URL */
  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("/event/38947/images/9904-unnamed.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Banner height: adjust as you like */
  min-height: 220px;
  border-radius: 0;          /* banners are usually not rounded */
}

/* 2) Keep the header container, but remove the title text only */
.conference-title-link > span {
  display: none !important;  /* hides only the text span */
}

/* Fallback: if title isn’t in a span, make it invisible without removing the block */
.conference-title-link {
  color: transparent !important;
  text-shadow: none !important;
}

/* 3) Remove extra vertical space that was meant for the title line */
.confTitleBox {
  background: transparent !important;
  border: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
}

/* If the logo used to be floated next to the title, neutralize that layout */
.confLogoBox {
  float: none !important;
  padding-right: 0 !important;
}

/* Optional: hide the subtitle strip (date/place bar) if you want a cleaner header */
 /* .confSubTitleBox { display: none !important; } */

/* Optional: reduce the gap between header and content */
#confSectionsBox {
  margin-top: 16px !important;
}