/** Shopify CDN: Minification failed

Line 16:2 Unexpected "}"

**/
  .content-container {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 10px;
  }

  .main-content {
    width: 100%; /* Full width */
    min-width: 0;
}
  }

  .blog-sidebar {
    padding: 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 10px; /* Adjust this value based on your header/nav height */
  }

  .article-page .blog-sidebar {
    height: calc(100vh - 40px);
    overflow-y: auto;
    
  }
   @media screen and (min-width: 750px) {
.article-page .blog-sidebar {
border-right: 1px solid #bbb;
  }
    }
  
  .blog-page .blog-sidebar {
    height: auto;
    overflow-y: visible;
  }
  
  .blog-sidebar .featured-article-card {
    margin-bottom: 20px; /* space between cards */
  }
  
  .blog-sidebar .featured-post .article {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
    border-radius: 8px; 
  }
  
  .tag-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px; /* Adjust spacing above the tag list */ 
    gap: 5px; /* Adjust the spacing between tags */
  }
  
  .badge.tag-badge {
    text-decoration: none; 
  }
  
  .badge.tag-badge.hover-underline:hover {
    text-decoration: underline; /* Underline on hover */
  }
  
  .badge.tag-badge.hover-bold:hover {
    font-weight: bold; /* Bold text on hover */
  }
  
  .card__badge .tag-badge {
    margin-right: 5px;
  }

  .tag-buttons .tag-badge.active { 
    background-color: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border: 1px solid rgb(var(--color-background));
  } 
  
  .quick-links-sidebar {
    background-color: rgb(var(--color-background)); 
    padding: 10px; 
    white-space: normal;
    overflow-wrap: break-word;
  }
  
  .quick-links-sidebar h2 {
    margin-bottom: 10px;
    color: rgb(var(--color-foreground));

  }
  
  .quick-links-sidebar ul {
    list-style-type: none;
    padding-left: 10px; /* Ensure no default padding */
  }
  
  .quick-links-sidebar li {
    margin-bottom: 15px;
    font-weight: 400;
  }
  
  .quick-links-sidebar li a {
    display: block;  
    color: rgb(var(--color-foreground));   
    text-decoration: none; 
    line-height: 1.2;  
  }
  
  .quick-links-sidebar li.h2-link a {
    padding-left: 0px;  /* No padding for h2 links */
  }
  
  .quick-links-sidebar li.h3-link a {
    font-size: 0.875em;
    padding-left: 10px; /* Indent h3 links for hierarchy, applies to all content */
    display:none
  }
   @media (min-width: 750px) {

    .blog-sidebar {
     
      width: 250px; 
    
    }
    
  }

  @media (min-width: 750px) {
    .main-content {
      padding: 0 1rem; 
      width: 90%; /* Full width */
    }
    
  }

  @media (max-width: 749px) {
    .content-container {
      display: block; /* Stack sidebar and main content vertically */
    }

    .blog-sidebar {
      position: static; /* Remove sticky positioning */
      width: 100%; 
      height: auto; 
      top: auto; 
      overflow-y: visible; /* No scrolling needed */
      border: none; 
    }

    .article-page .blog-sidebar {
      height: auto;
      overflow-y: visible;
      
    }

    .blog-page .featured-post {
      display: none;   
    }
    
  }
