.article_listing .articles {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
}

.article_listing .article-wrap {
  height: 100%;
  border-radius: 16px;
  background-color: var(--second-bg-color);
}

.article_listing {
  margin: 0 auto;
  padding: 24px 40px;
  max-width: 1920px;
}

.article_listing .article {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 0;
  padding: 16px;  /* TODO: article tags */
  text-decoration: unset;
}

.article_listing .article:hover .name {
  color: #e43f4a;
}

.article_listing .article img {
  border-radius: 12px;
  width: 100%;
  max-height: 430px;
  max-width: 100%;
  object-fit: cover
}

.article_listing .article .name {
  min-height: 46px;
  margin: 16px 0 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}

.article_listing .article .date {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}

.article_listing .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 16px 16px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  display: none; /* TODO: article tags */
}

@media (max-width: 1600px) {
  .container-fluid:has(.articles),
  .article_listing .articles {
    padding: 0;
  }

  .article_listing .article img {
    height: 350px;
  }

  .article_listing .owl-theme .owl-controls .owl-nav > div.owl-next {
    transform: translate(-15px, 0) !important;
  }

  .article_listing .owl-theme .owl-controls .owl-nav > div.owl-prev {
    transform: translate(15px, 0) !important;
  }
}

@media (max-width: 991px) {
  .article_listing .owl-stage {
    padding-left: 16px !important;
  }

  .article_listing a#tab-show-more.open-all {
    margin-top: 56px;
    max-width: 160px;
  }
}

@media (max-width: 767px) {
  .article_listing .articles {
    padding: 16px;
  }

  .article_listing .owl-stage {
    padding-left: 0 !important;
  }
}

@media (max-width: 600px) {
  
  .article_listing .articles {
    padding: 16px;
  }
  

  .article_listing .owl-stage {
    padding-left: 0 !important;
  }

  .article_listing .article {
    flex-direction: column;
    padding: 12px 12px 0;
    text-decoration: unset;
  }

  .article_listing .article img {
    height: 136px;
  }
  

  .article_listing .article .name {
    height: 63px;
    margin: 12px 0 16px;
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
            line-clamp: 3; 
    -webkit-box-orient: vertical;
  }

  .article_listing .tags {
    gap: 4px;
    padding: 0 12px 12px;
  }
}