  /* Rounded corners on logo */                                                                                                        
  [class*="logoWrapper"] img {
    border-radius: 16px;                                                                                                                                                                                           
  }

  /* Remove original cover background, set to pure black */
  div[class*="_gridItem_"][class*="_cover_"] {
    background-image: none !important;
    background-color: #000000 !important;
  }

  /* Cover image styling */
  img.cover-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background-color: #000000 !important;
    z-index: 0 !important;
  }

  /* Semi-transparent overlay on top of everything */
  [class*="coverOverlay"] {
    background: rgba(0, 0, 0, 0.0) !important;
  }
