/* Indiott — Authorised Milesight Distributor badge (enqueued by indiott-authorised.php).
   Matches the child-theme design system (navy/paper/signal-orange, IBM Plex, 1px
   borders, pill shape, no gradients, no heavy shadows). Mirrors the .ind-brand__sister
   credential pill used on the brand pages. Namespaced .ind-authorised so nothing
   collides with the theme. */

.ind-authorised {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 14px;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink, #232458);
  background: var(--card, #fff);
  border: 1px solid var(--steel-300, #c6ccd2);
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s var(--ease, cubic-bezier(0.165, 0.84, 0.44, 1)),
              color 0.2s var(--ease, cubic-bezier(0.165, 0.84, 0.44, 1));
}
.ind-authorised svg {
  flex: none;
  width: 15px;
  height: 15px;
  color: var(--signal-press, #b8431a);
}
.ind-authorised b {
  color: var(--signal-press, #b8431a);
  font-weight: 600;
}
a.ind-authorised:hover {
  color: var(--ink, #232458);
  border-color: var(--signal, #ee6124);
}
