/* ============================================================
   DNX Solutions — Graphic devices
   Signature brand motif from the guidelines:
   · Holding shape — bold angular frame (echoes the brandmark
     diamond) used to hold or overlay imagery.

   Vendored verbatim from the DNX Experience design system.
   ============================================================ */

/* ── Holding shape ─────────────────────────────────────────
   Angular frame that echoes the brandmark. Clip an image with
   `clip-path` to a leaning rhombus/notched rectangle. */
.dx-holding {
  --notch: 26px;
  clip-path: polygon(
    var(--notch) 0,
    100% 0,
    100% calc(100% - var(--notch)),
    calc(100% - var(--notch)) 100%,
    0 100%,
    0 var(--notch)
  );
  overflow: hidden;
}
