/* Canvas fallback and styling for the Blog WebGL fluid background */
body {
  isolation: isolate;
}

.webgl-background_container__Ojc1v[data-background="3"] {
  z-index: 0;
  pointer-events: none;
  background: #f2eee8;
}

.webgl-background_container__Ojc1v[data-background="3"] .blog-fluid-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.Heading_heading__fhmAd,
.FeaturedBlogPost_featuredPost__aRcs9,
.Blog_postsWithFilters__aXNNs {
  position: relative;
  z-index: 2;
}

/* Card reveal animation matching published experience */
.BlogPostCard_post__fNGbL {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}

.BlogPostCard_post__fNGbL.blog-revealed {
  opacity: 1;
  transform: none;
}

.FeaturedBlogPost_featuredPost__aRcs9 .BlogPostCard_post__fNGbL {
  opacity: 1;
  transform: none;
}

.BlogPostCard_postImage__Q4k_I img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.BlogPostCard_post__fNGbL:hover .BlogPostCard_postImage__Q4k_I img {
  transform: scale(1.04);
}

/* Featured post & category filter tags spacing */
.FeaturedBlogPost_featuredPost__aRcs9 {
  margin-bottom: 3.5rem;
}

.FeaturedBlogPost_featuredPost__aRcs9 .BlogPostCard_postText__V0sxg {
  margin-bottom: 0;
  padding: 1.5rem 0 0;
}

.CategoryFilters_taxonomyTerms__y6yzK {
  margin-bottom: 2rem;
}

.CategoryFilters_clearAll__FIvKM,
.CategoryFilter_filter__zpR21 {
  cursor: pointer;
}

@media (min-width: 850px) {
  .FeaturedBlogPost_featuredPost__aRcs9 {
    margin-bottom: 5.5rem;
  }

  .CategoryFilters_taxonomyTerms__y6yzK {
    margin-bottom: 3.5rem;
  }
}

