.fact-icon {
  display: grid;
  place-items: center;
  height: 76px;
  margin-bottom: 4px;
}

.fact-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  filter: drop-shadow(0 0 5px rgba(241, 18, 28, .08));
}

.fact:hover .fact-icon svg {
  stroke-width: 2.2;
  filter: drop-shadow(0 0 7px rgba(241, 18, 28, .28));
}

@media (max-width: 991px) {
  .fact-icon svg { width: 48px; height: 48px; }
}
