/* Prevent FOUC: make content visible by default since loader was removed */
.blog-content {
  visibility: visible;
  opacity: 1;
}

/* Keep a small fade-in for progressive paint */
.blog-content.initialized {
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
