/* ============================================================
   Altris wordmark — final
   Custom-drawn SVG rendered via CSS mask so it inherits color
   from the surrounding context (currentColor). Width is driven
   by --wm-w; height tracks the wordmark's native aspect ratio.
   ============================================================ */

.altris-wordmark {
  display: inline-block;
  width: var(--wm-w, 360px);
  aspect-ratio: 1401.53 / 221.49;
  background-color: currentColor;
  -webkit-mask: url("altris-wordmark.svg") left center / contain no-repeat;
          mask: url("altris-wordmark.svg") left center / contain no-repeat;
  vertical-align: middle;
  /* collapse the literal "ALTRIS" text node kept inside the span
     for screen readers — the visible mark is the SVG mask */
  font-size: 0;
  line-height: 0;
  color: currentColor;
}
