/** Shopify CDN: Minification failed

Line 19:24 Expected identifier but found whitespace
Line 19:26 Unexpected "{"
Line 19:35 Expected ":"
Line 19:69 Expected ":"
Line 20:22 Expected identifier but found whitespace
Line 20:24 Unexpected "{"
Line 20:33 Expected ":"
Line 20:65 Expected ":"

**/


/* CSS from section stylesheet tags */
.blog-posts {
    --columns-gap: 36px;
    --rows-gap: 36px;
    padding-block-start: {{ section.settings.padding-block-start }}px;
    padding-block-end: {{ section.settings.padding-block-end }}px;
  }

  .blog-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--rows-gap) var(--columns-gap);
  }

  .blog-post-item {
    border: 1px solid rgba(from var(--color-foreground) r g b / 0.2);
    padding: 0 1rem 1rem;
    transition: transform 0.3s ease;
  }

  .blog-post-item:hover {
    transform: translateY(-4px);
  }

  .blog-post-item:has(.blog-post-card__image-container) {
    border: none;
    padding: 0;
  }

  @media screen and (max-width: 749px) {
    .blog-posts-container {
      grid-template-columns: 1fr;
    }
  }