
/* article gallery */

.article-gallery {
    margin-bottom: 40px;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  
  .article-gallery .carousel-indicators li {
    list-style-type: none;
  }
  .article-gallery .carousel-inner {
    aspect-ratio: 4 / 3;
  }
  .article-gallery .carousel-item {
    background: var(--as-header-bg);   
    height: 100%;
  }
  .article-gallery .carousel-item img {
    object-fit: contain;
    object-position: center;
    height: 100%;
  }
  
  /* gallery icon */
  
  .article-icon {
    background-color: var(--as-header-bg) !important;
    color: var(--as-header-bg) !important;
  }
  
  .article-icon:before {
    height: 0;
    width: 0;
    border-bottom: 6px solid var(--link-hover) !important;
    border-right: 6px solid transparent;
  }
  
  .article-icon:after {
    height: 0;
    width: 0;
    border-left: 20px solid var(--as-header-bg) !important;
    border-right: 20px solid var(--as-header-bg) !important;
    border-bottom: 20px solid transparent;
  }
  
  .article-icon .fa-images:before {
    color: var(--as-stick-header-menu-link-color)
  }