article .article_title{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.bortom_addons_grid_post_wrapper{
  margin-bottom: 3rem;
}
/*--------------------------------------------------------------------------------------
categories slide
--------------------------------------------------------------------------------------*/
.bortom_cats_wrapper{
  overflow-x: auto;
  border-bottom: 1px solid rgba(0,0,0,0.16);
}

#post_cat_nav{
  position: relative;
  margin-top:3rem;
  margin-bottom: 2rem;
}
.bortom_cats_wrapper::-webkit-scrollbar {
  display: none;
}
.bortom_cats_wrapper .cats_elements{
  display: flex;
  grid-gap: 16px;
  width: max-content;
}

.bortom_cats_wrapper .cats_elements .bortom_category .link{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1.15rem;
  font-weight: bold;
  display: inline-block;
  padding: 1.25rem 0;
  color: inherit;
  opacity: 0.5;
  border-bottom: 2px solid transparent;
}
.bortom_cats_wrapper .cats_elements .bortom_category.active .link{
  opacity: 1;
  border-color: #00369D
}
.bortom_cats_wrapper .navigation .prev{
  position: absolute;
  top: 0;
  height: 100%;
  width: 4rem;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, #ffffffff 0%, #ffffff00 50%);
  cursor: pointer;
}

.bortom_cats_wrapper .navigation .next{
  position: absolute;
  top: 0;
  height: 100%;
  width: 48px;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, #ffffff00 0%, #ffffffff 50%);
  cursor: pointer;
}


/*--------------------------------------------------------------------------------------
archive pagination
--------------------------------------------------------------------------------------*/
.bortom_addons_pagination_links{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
  border-top: 1px solid rgba(0,0,0,0.16);
  padding: 1.5rem 0;
}
.bortom_addons_pagination_links .bortom_nav,
.bortom_addons_pagination_links .bortom_nav a{
  display: inline-flex;
  grid-gap: 1.25rem;
  align-items: center;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;
}
.bortom_addons_pagination_links .bortom_nav:not(.active){
  opacity: 0.5
}
.bortom_addons_pagination_links .bortom_nav i{
  font-size: 1.5rem;
}


/*--------------------------------------------------------------------------------------
banner
--------------------------------------------------------------------------------------*/
.archive_banner{
  max-width: 1180px;
  margin: 2rem auto 3rem;
  background-color: #DF6A81;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 360px;
  overflow: hidden;
  border-radius: 1rem;
}
@media (min-width:1080px){
  body div.bortom_mws{
    padding:0;
  }
}
.archive_banner.taxonomy{
  grid-template-columns: 1fr;
  position: relative;
  background-color: #1a1a1a;
}
.archive_banner.taxonomy .the_title_container{
  position: relative;
  z-index: 99;
  text-align: center;
}
.archive_banner.taxonomy .tax_banner{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0
}
.archive_banner .the_title_container{
  display: grid;
  align-items: center;
  padding: 36px;
}
.archive_banner .img_banner{
  position: relative;
}
.archive_banner .img_banner img{
  width: 100%;
  height: 100%;
  background-position: center right;
  object-fit: cover;
}
.archive_banner .img_banner:after{
  content: '';
  background: linear-gradient(90deg, rgba(223,106,129,1) 0%, rgba(223,106,129,0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 180px;
}

/*--- For tablet ---*/
@media (max-width:1000px){
  .archive_banner{
    margin-left: 1rem;
    margin-right:1rem;
    grid-template-columns: 1fr;
    position: relative;
  }
  .archive_banner .the_title_container{
    position: relative;
    z-index: 99;
  }
  .archive_banner .img_banner{
    position: absolute;
    height: 100%;
    width: 75%;
    right: 0;
    top: 0;
  }
}
@media (max-width:520px){
  .section-title-wrapper .section-title{
    font-size: 2.5rem;
  }
  .section-title-wrapper{
    text-align: center;
  }
  .archive_banner .img_banner{
    opacity: 0.36;
  }
}
