/* Blog list: skeleton while CMS API hydrates the grid. */

html.if-blogs-pending [data-intrafit='blog-grid'] {
  visibility: visible;
  min-height: 12rem;
}

html.if-blogs-ready [data-intrafit='blog-grid'] {
  visibility: visible;
}

html.if-blogs-pending [data-intrafit='blog-grid'] .animate-pulse {
  animation: if-blog-shimmer 1.4s ease-in-out infinite;
}

@keyframes if-blog-shimmer {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
