/** Shopify CDN: Minification failed

Line 21:75 Unexpected "/"

**/
  .content-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
  }

  .main-content {
    width: 100%; /* Full width */
    min-width: 0;
  }

  /* .blog-sidebar {
    padding: 10px;
    position: -webkit-sticky;
    position: sticky; */
    /* top: 30px; /* Adjust this value based on your header/nav height */ */
  /* } */

  .blog-sidebar {
    padding: 10px;
  }

  /* .article-page .blog-sidebar {
    height: calc(100vh - 40px);
    overflow-y: auto;
  } */
  
  .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; 
  }

  .dtw-buying-guide-container {
    padding: 20px;
    background: #FFFFFF;
    margin-top: 20px;
    border-radius: 2px;
  }

  .dtw-latest-articles-container {
    padding: 20px;
    background: #FFFFFF;
    margin-top: 20px;
    border-radius: 2px;
  }
  
  .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: 0;
    margin-top: 0;
    color: rgb(var(--color-foreground));
  }

  #dtw-buying-guide-h2 {
    margin-bottom: 0;
    margin-top: 0;
    background: #46C178;
    color: #fff;
    text-align: center;
    font-size: 24px;
    padding: 10px;
    border-radius: 3px;
  }

  #dtw-latest-articles-h2 {
    margin-bottom: 0;
    margin-top: 0;
    background: #fff;
    color: #515151;
    text-align: center;
    font-size: 24px;
    padding: 10px;
    border-radius: 3px;
    border: 2px solid #515151;
  }
  
  .quick-links-sidebar ul {
    list-style-type: none;
    padding-left: 0; /* Ensure no default padding */
  }
  
  .quick-links-sidebar li {
    margin-bottom: 10px;
    font-weight: bold;
    border-bottom: 1px solid #cccccc;
  }

  .quick-links-sidebar li:last-child {
    border-bottom: 0;
  }
  
  .quick-links-sidebar li a {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 10px 0;
    margin: 0;
  }

  .related-post-link {
    text-decoration: none;
    text-align: center;
  }
  
  .related-post-title {
    color: #1a1b18;
  }

  /* Sidebar Search Bar Styles */
  .sidebar-search-bar {
    display: flex;
    align-items: center;
    background-color: #fff; /* White background for the search bar */
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 6px; /* Rounded corners */
    padding: 5px 10px; /* Inner padding for spacing */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  }
  
  .search-input {
    flex: 1; /* Allow the input to fill the available space */
    border: none; /* Remove default border */
    font-size: 14px; /* Match the font size in the screenshot */
    padding: 10px; /* Add spacing inside the input */
    color: #333; /* Dark text color */
    outline: none; /* Remove focus outline */
    background-color: transparent; /* Transparent to match the container */
  }
  
  .search-input::placeholder {
    color: #bbb; /* Light gray placeholder text */
    font-style: italic; /* Italicize placeholder for emphasis */
  }
  
  .search-button {
    background: none; /* No background for the button */
    border: none; /* Remove default border */
    padding: 0; /* Remove default padding */
    cursor: pointer; /* Change cursor to pointer on hover */
    display: flex; /* Center align the icon */
    align-items: center; 
    justify-content: center;
  }
  
  .search-button svg.icon-search {
    width: 20px; /* Adjust icon size */
    height: 20px;
    fill: #333; /* Dark color for the icon */
    transition: fill 0.3s ease; /* Smooth transition for hover effect */
  }
  
  .search-button:hover svg.icon-search {
    fill: #0073e6; /* Highlight color for the icon on hover */
  }

  @media (max-width: 1000px) {
      .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;
        margin-top: 40px;
      }
  
      .blog-page .featured-post {
        display: none;   
      }
  }
