.marquee {
  overflow: hidden;
  background: #222;
  color: #fff;
  padding: 10px 0;
  position: relative;
}

.marquee-inner {
  display: flex;
  animation: marquee 20s linear infinite;
}

.marquee span {
  padding-right: 50px;
  white-space: nowrap;
  font-size: 1rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive content page */
.content-page{
    width:100%;
    max-width:1400px;
    margin:auto;
}

/* berita image responsive */
.featured-img img{
    width:100%;
    height:auto;
    object-fit:cover;
}

/* mobile spacing */
@media (max-width:768px){

    .section{
        padding:60px 15px;
    }

    .post-title{
        font-size:20px;
    }

    .featured-img img{
        height:200px !important;
    }

}