*{
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    transition:all .2s cubic-bezier(.34,1.12,.68,1.31);
}

.gallery{
    /* min-height: 100vh; */
    background:#eee;
    padding-bottom: 100px;
}

.gallery .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:20px 0;
    list-style: none;
}

.gallery .controls .buttons{
    height:70px;
    width: 120px;
    background:#fff;
    color:#666;
    font-size: 17px;
    cursor: pointer;
    margin:20px;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}

.gallery .controls .buttons.active{
    background:coral;
    color:#fff;
}

.gallery .image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.card-body {
    display: block;
    padding: 10px;
  }
  
  .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .card-text {
    font-size: 0.875rem;
    color: #6c757d;
  }

.gallery .image-container .image{
    height:auto;
    width: 400px;
    overflow: hidden;
    border:15px solid #fff;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    margin: 20px;
}
.gallery .image-container .image a{
    height: 100%;
}

.gallery .image-container .image img{
    height: 100%;
    width:100%;
    object-fit: cover;
}

.gallery .image-container .image:hover img{
    transform: scale(1.4);
}


.news-item {
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .news-item img {
    width: 100%;
    height: auto; /* Sesuaikan tinggi gambar sesuai kebutuhan */
    object-fit: contain;
    object-position: center;
  }
  
  .news-content {
    padding: 20px;
  }
  
  .pagination {
    margin-top: 30px;
  }
  
  .pagination .page-link {
    color: #333;
    border: none;
    background-color: #f0f0f0;
    margin: 0 5px;
    border-radius: 5px;
  }
  
  .pagination .page-item.active .page-link {
    background-color: #dc3545;
    color: #ffffff;
  }
  
  .pagination .page-item.disabled .page-link {
    color: #999;
    pointer-events: none;
  }

  .sidebar {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .search-box {
    position: relative;
    margin-bottom: 20px;
  }
  
  .search-box input {
    padding-right: 40px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
  }
  
  .search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    background: none;
    color: #999;
  }
  
  .info-list {
    padding-left: 0;
  }
  
  .info-list li {
    margin-bottom: 15px;
  }
  
  .info-list li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
  }
  
  .info-list li a:hover {
    color: #007bff;
    padding-left: 5px;
  }
  
  .info-list li a i {
    margin-right: 10px;
    color: #007bff;
  }
  
  /* Sisanya tetap sama seperti sebelumnya */