/** Shopify CDN: Minification failed

Line 16:8 Unexpected "{"
Line 16:17 Expected ":"
Line 21:11 Unexpected "{"
Line 21:20 Expected ":"
Line 26:11 Unexpected "{"
Line 26:20 Expected ":"
Line 31:11 Unexpected "{"
Line 31:20 Expected ":"
Line 34:11 Unexpected "{"
Line 34:20 Expected ":"
... and 16 more hidden warnings

**/
 #blog-{{ section.id }} .blog-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      height: 100%;
    }
    #blog-{{ section.id }} .blog-left {
      position: sticky;
      align-self: start;
    }

    #blog-{{ section.id }} .blog-featured img {
      width: 100%;
      object-fit: cover;
      margin-bottom: 15px;
    }
    #blog-{{ section.id }} .blog-featured h3 {
      margin-bottom: 10px;
    }
    #blog-{{ section.id }} .blog-right {
      overflow-y: auto;
      padding-right: 10px;
      scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
    }
   #blog-{{ section.id }} .blog-card {
      margin-bottom: 25px;
    }
    #blog-{{ section.id }} .blog-card img {
      width: 100%;
      object-fit: cover;
      margin-bottom: 10px;
    }
    #blog-{{ section.id }} .blog-card h4 {
      margin-bottom: 5px;
    }
    #blog-{{ section.id }} .blog-right::-webkit-scrollbar {
      width: 6px;
        display: none; /* Chrome, Safari, Opera */

    }
    #blog-{{ section.id }} .blog-right::-webkit-scrollbar-thumb {
    
      border-radius: 6px;
    }

    @media (max-width: 900px) {
      #blog-{{ section.id }} .blog-wrapper {
        grid-template-columns: 1fr;
      }
      #blog-{{ section.id }} .blog-left {
        position: relative;
        top: auto;
      }
      #blog-{{ section.id }} .blog-right {
        max-height: none;
        overflow: visible;
      }
    }