/** Shopify CDN: Minification failed

Line 20:21 Expected identifier but found whitespace
Line 20:23 Unexpected "{"
Line 20:32 Expected ":"
Line 31:10 Expected identifier but found whitespace
Line 31:12 Unexpected "{"
Line 31:21 Expected ":"
Line 59:10 Expected identifier but found whitespace
Line 59:12 Unexpected "{"
Line 59:21 Expected ":"
Line 83:10 Expected identifier but found whitespace
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
#section-news-list {
    background-color: {{ section.settings.bg_color }};
  }

  #section-news-list .news-list-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }

  #section-news-list .news-list-heading a {
    color: {{ section.settings.link_color }};
    text-decoration: none;
  }

  #section-news-list .news-list-heading a:hover {
    text-decoration: underline;
  }

  #section-news-list .container{
    max-width: 1290px;
    margin: 0 auto;
        padding: 55px 45px;
  }
 
  #section-news-list .news-list-item{
    border-bottom: 1px solid #ccc;
    cursor: pointer;
  }

  #section-news-list .news-list-item>a{
    display: flex;
    align-items: center;
    padding: 20px;
  }

  #section-news-list .news-list-date{
    font-size: 12px;
    margin-right: 15px;
    color: {{ section.settings.date_color }};
  }

  #section-news-list .news-list-category{
    font-size: 10px;
    color: #fff;
    background: var(--bg-color--accent-3);
    padding: 5px;
    margin-right: 15px;
  }

  #section-news-list .news-list-info{
    position: relative;
    top: -1px;
  }

  #section-news-list .news-list-title{
    font-size: 14px;
    margin-bottom: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    top: 1px;
    color: {{ section.settings.title_color }};
  }

  @media screen and (max-width: 768px){
    #section-news-list .container{
      padding: 35px 20px;
    }
    #section-news-list .news-list-item>a{
      display: block;
      padding: 15px;
    }
    #section-news-list .news-list-info{
      margin-bottom: 5px;
    }
  }