/* Inline SVG icons — replaces Font Awesome (no icon font). */
.fd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
  line-height: 0;
  color: inherit;
}
.fd-icon svg {
  display: block;
  width: 1em;
  height: 1em;
}
.fd-icon--inherit svg {
  width: 100%;
  height: 100%;
}
.fd-icon--xs {
  font-size: 12px;
}
.fd-icon--sm {
  font-size: 14px;
}
.fd-icon--md {
  font-size: 18px;
}
.fd-icon--lg {
  font-size: 22px;
}
.fd-inline-r5 {
  margin-right: 0.35em;
}
.fd-inline-r10 {
  margin-right: 0.625em;
}
.btn .fd-icon svg,
.le-button .fd-icon svg,
.btn-lg .fd-icon svg {
  vertical-align: middle;
}
.grid-list-button-item .fd-icon {
  margin-right: 4px;
}
@keyframes fd-icon-spin {
  to {
    transform: rotate(360deg);
  }
}
.fd-icon--spin svg {
  animation: fd-icon-spin 1s linear infinite;
  transform-origin: center;
}
/* Legacy FA spacing helpers preserved on .fd-icon wrappers */
.fd-icon.fw-r10 {
  margin-right: 0.625em;
}
.fd-icon.fw-r5 {
  margin-right: 0.35em;
}
