/* 首頁使用的精簡 SVG 圖示共用樣式。 */
.hf-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: currentColor;
  overflow: visible;
}

.hf-icon.fa-spin {
  animation: hf-icon-spin 1s linear infinite;
}

@keyframes hf-icon-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
