/* The original alpha preserves the approved emblem silhouette and ribbon.
   The colour-edited raster has identical dimensions (1254 × 1254). */
.nursing-brand-logo {
  -webkit-mask-image: url("../../images/logo-dpto-enfermeria.png");
  mask-image: url("../../images/logo-dpto-enfermeria.png");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-mode: alpha;
}

/* Keep a clean transparent emblem in older browsers without masking. */
@supports not ((mask-image: url("")) or (-webkit-mask-image: url(""))) {
  .nursing-brand-logo {
    content: url("../../images/logo-dpto-enfermeria.png");
  }
}
