.carousel-wrapper {
    flex: 1; /* otomatis isi sisa ruang */
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .card-track {
    overflow:hidden;
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: 100%;
  }

  .card-item {
    flex: 0 0 300px;
    margin: 0 5px;
  }

  .card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }

/* tombol prev/next di atas card */
.carousel-control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 99;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }

  .card-img-top {
    border-radius: 20px 20px 0 0;
    height: 180px;
    object-fit: cover;
  }

  .card-body-section-9{
    height: 100%;
    padding: 0;
  }
  
  .card-body-section-9 p {
    margin-bottom: 0.5rem;
  }

  .no-radius,
  .no-radius img{
    border-radius: 0;
  }