li.inline {
  display: inline-block;
  width: 50%;
}

select option:hover {
  background-color: #e03a3c;
  color: #fff;
}

.btn-orange {
  background: #fff;
  border: 1px solid #dee2e6;
  padding: 10px 15px;
  border-radius: 4px;
  color: #e03a3c;
  transition: 0.4s;
}

.btn-orange:hover {
  background: #e03a3c;
  color: #fff;
  transition: 0.4s;
}

.image_news {
  width: 100%;
  /* Atur lebar kontainer sesuai kebutuhan, misal 100% atau ukuran tetap */
  aspect-ratio: 297/210;
  overflow: hidden;
  /* Sembunyikan bagian yang keluar dari kontainer */
  position: relative;
}

.image_news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Paksa gambar menutupi area kontainer */
  object-position: center;
  /* Fokus di tengah gambar */
  display: block;
  /* Hindari ruang ekstra di sekitar gambar */
}

.mih_128 {
  min-height: 128px !important;
}

.mih_256 {
  min-height: 256px !important;
}

.rating i {
  cursor: pointer;
  color: #6c757d;
}

.rating i:hover,
.rating i.active {
  color: #ffc107;
}

.row {
  /* margin-right: 0 !important; */
  margin: 0 !important;
}

.square-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}

.square-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-justify {
  text-align: justify;
}

.w-lg-50 {
  width: 100%;
}

@media (min-width: 992px) {
  .w-lg-50 {
    width: 50%;
  }
}