/* =============================================================================
   COMPONENT: link-action — a standalone text link (not a button) that still
   meets the 44px tap-target floor (experience gate / a11y). Use for header
   "see all" links, breadcrumbs, and auth secondary links — never for links
   that sit mid-sentence in prose.
   ========================================================================== */
@layer components {
  .link-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xs, 0.125rem);
    min-inline-size: var(--touch-target);
    min-block-size: var(--touch-target);
  }
}
