/* ============================================================================
 * Cadence PATCH v3 — only swap the Postiz logo for Cadence wordmark
 * Everything else in brand.css is already working — leave it alone.
 * ========================================================================= */

/* Hide Postiz's SVG wordmark */
svg[viewBox="0 0 101 33"] {
  display: none !important;
}

/* Hide the purple "p" icon (it's a separate rect, viewBox may differ) */
a[href="/"] svg,
form svg:first-of-type {
  display: none !important;
}

/* Replace with Cadence wordmark using a CSS background image */
a[href="/"]::after,
form::before {
  content: '';
  display: block;
  width: 220px;
  height: 50px;
  background-image: url('/dirasuite-brand/logo.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 auto 20px;
}
