.slider{
    width: 100%;
    max-width: 100vw;
    margin: auto;
    position: relative;
    overflow: hidden;
    margin-top: 125px;

    /* FIX UTAMA → slider harus punya tinggi */
    height: auto;
}

.list {
    position: relative; /* FIX: jangan absolute */
    display: flex;
    transition: 1s;
}

.item {
    min-width: 100vw; /* FIX: supaya slider punya lebar */
}

.list img{
    width: 100%;
    height: auto;        /* gambar full tanpa crop */
    object-fit: contain; /* tidak terpotong */
    display: block;
    background: #000;
}

/* Buttons */
.buttons{
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.buttons button {
    width: 50px;
    height: 50px;
    border-radius: 10%;
    background-color: #eee7;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}

/* Dots */
.dots{
    position: absolute;
    bottom: 10px;
    color: #ddd;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #ddd;
    margin: 10px;
    border-radius: 20px;
    transition: 0.3s;
}

.dots li.active {
    width: 30px;
    background-color:#26a29a;
}

/* MOBILE */
@media screen and (max-width: 768px) { 
    .slider {
        margin-top: -120px;
    }

    .buttons button {
        width: 40px;
        height: 40px;
    }
}


@media screen and (max-width: 768px) {
    .news__title
 {
        font-size: 1.75rem!important;
    }
}

.others{
  background-color: #f3f3f3!important;
}
.others .section{
  background-color: #f3f3f3!important;
  padding: 80px 0 100px 0;
}
@media screen and ( min-width: 769px) { 
.pickup_bg .section {
  padding: 80px;
}
.others .section{
  padding: 80px 20px;
}
}

.pickup_bg .section {
  padding: 80px 0;
}

@media only screen and (max-width: 767px) {
  .Grid-Column4 .Grid__Item,
  .List-Column4 .Grid__Item, .Grid-Column4
  .List__Item,
  .List-Column4
  .List__Item {
    width: 100%;
    margin-left: 0 !important;
    padding:20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .Grid-Column4 .Grid__Item _:-ms-lang(x), .Grid-Column4 .Grid__Item,
  .List-Column4 .Grid__Item _:-ms-lang(x),
  .List-Column4 .Grid__Item, .Grid-Column4
  .List__Item _:-ms-lang(x), .Grid-Column4
  .List__Item,
  .List-Column4
  .List__Item _:-ms-lang(x),
  .List-Column4
  .List__Item {
    width: 100%;
  }
}

