/* News Feed Section */
.news-feed {
    padding: 60px 15px;
    background-color: #f0efef;
  }
  
  .news-feed .container {
    padding: 5px 50px;
  }
  
  .segment-head{
      flex-direction: column;
  }
  
  .segment-title{
      font-weight: 700;
      color: black;
  }
  
  .carousel-main .carousel-item {
    height: 400px;
  }
  
  .carousel-main .carousel-item .carousel-caption h5,
  .carousel-main .carousel-item .carousel-caption p {
    color: white;
  }
  
  .carousel-main .carousel-item img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    min-height: 400px;
    -webkit-filter: brightness(70%);
    transition: ease-in-out 0.3s;
  }
  
  .carousel-main .carousel-item:hover img {
    cursor: pointer;
    scale: 1.2;
    transition: ease-in-out 0.3s;
  }
  
  /* End of Newsfeed area */
  
  /* Article Area */
  
  .article {
    padding: 60px 15px;
  }
  
  .article .container {
    padding: 5px 50px;
  }
  
  .article .card {
    border-radius: 0;
    border: none;
  }
  
  .article .card .card-img-top {
    border-radius: 0;
    transition: ease 0.3s;
  }
  
  .article .card .card-title {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: black;
    transition: ease 0.3s;
  }
  
  .article .card .card-body {
    padding: 10px 0px;
  }
  
  .article .card .card-body .update-time {
    font-size: 14px;
  }
  
  .article .card .card-body .card-title:hover {
    color: #5a9e25;
    transition: ease 0.3s;
  }
  
  .article .card .card-img-top:hover {
    -webkit-filter: brightness(70%);
    cursor: pointer;
    transition: ease 0.3s;
  }
  
  .article .category-heading {
    font-size: 20px;
    font-weight: 600;
    color: #2e2e2e;
    display: inline-block;
    padding: 10px 0px;
    position: relative;
    margin: 0px 15px 50px 0px;
    width: 100%;
  }
  
  .article .heading-sub {
    font-size: 16px;
    position: absolute;
    right: 0;
    bottom: 9px;
    text-decoration: none;
    color: #797986;
    transition: ease 0.3s;
  }
  
  .article .heading-sub:hover {
    color: #5a9e25;
    transition: ease 0.3s;
  }
  
  .article .category-heading .highlight::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    color: #2e2e2e;
    background-color: #5a9e25;
    color: white;
    width: 90px;
    height: 4px;
  }
  
  .article .category-heading .highlight::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    color: #2e2e2e;
    background-color: #5a9e25;
    color: white;
    width: 30px;
    margin-left: 95px;
    height: 4px;
  }
  
  .iklan-tengah {
    overflow: hidden;
    background-color: #fff;
  }
  
  /* .article .category-heading::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px; 
    bottom: 0;
    width: 10px;
    background-color: #5a9e25;
  } */
  
  .article .category-heading::after {
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    right: 0;
  }
  
  .horizontal-card-title{
    font-weight: 700;
    font-size: 20px;
    color: #2e2e2e;
  }
  
  .right-inner{
    padding: 55px;
  }
  
  .right-inner .row{
    background-color: #fff;
  }
  
  .carousel-right .carousel-item {
    height: 500px;
  }
  
  .carousel-right .carousel-item img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    min-height: 400px;
    -webkit-filter: brightness(70%);
    transition: ease-in-out 0.3s;
  }

  .card-body .meta .title{
    height: 80px;
    }
  /* End of Article area */

  @media(max-width:767px){
    *{
      padding: 0;
      margin: 0;
    }
      .right-inner {
        padding: 0;
      }
    .heading-sub{
      display:none;
    }
    
    .card-body .meta .title{
      height: 50px;
    }
    
    }