/* ============================================================
   Movora Education (CYPHER / MATRIX LMS)
   Profile header background accessibility fix
   ============================================================
   Problem: the built-in "profile_background" pattern behind the
   title on profile-style headers is a very light, low-contrast
   decorative SVG that isn't exposed anywhere in the portal
   customization UI.

   Fix: override it with Movora's on-brand dark banner image
   everywhere this header component appears — course/catalog
   registration pages, user profiles, groups, and organization
   pages all share the same ".profile_header" markup — and
   reinforce the title's contrast with an explicit white color +
   text-shadow so it stays readable regardless of image content.
   ============================================================ */

.profile_header .profile_background {
  background-image: url('/files/3686258/LMS_WebBanner.png?lmsauth=7353035ca6acee035532e7cbab726a20e0445da3') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.profile_header .profile_name {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
