body.dark-mode .IAkategori-boxgabung,
body.dark-mode .Isidebar-program {
  background: #000; /* box hitam */
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff; /* default text putih */
}

body.dark-mode .IAkategori-boxgabung p {
  color: rgba(255, 255, 255, 0.7); /* meta pakai transparan */
}

body.dark-mode .IAkategori-lin {
  color: #fff;
}

body.dark-mode .tgl {
  color: rgba(255, 255, 255, 0.7); /* dark mode */
}

body.dark-mode .IAkategori-link1 {
  color: #66c2a8; /* optional: hijau tosca biar kontras */
}

body.dark-mode .Isidebar-program h4 {
  color: #fff;
}

body.dark-mode .Isidebar-program ul.program-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* garis halus */
}

body.dark-mode .Isidebar-program ul.program-list li .program-time,
body.dark-mode .Isidebar-program ul.program-list li .program-title {
  color: #fff;
}

body.dark-mode .Isidebar-program ul.program-list li.live .program-title {
  color: #ff7676; /* tetap merah untuk live, lebih soft */
}

body.dark-mode .Isidebar-program .live-label {
  background-color: #000;
  color: #fff;
  border: 1px solid #E23838;
}

body.dark-mode .Isidebar-program a.selengkapnya {
  color: #66aaff; /* link biru lebih cerah */
}

.container-headline {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.container-headline .left {
  flex: 2;
}

.container-headline .right {
  flex: 1;
}

.iinfografik-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}

.iinfografik-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iinfografik-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.iinfografik-item {
  overflow: hidden;
  position: relative;
}

.iinfografik-item img {
  width: 100%;
  height: auto; /* atau sesuaikan sendiri */
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.iinfografik-item:hover img {
  transform: scale(1.1); /* zoom 10% */
}

/* Overlay judul*/
.overlay-judul {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 14px;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.iinfografik-item:hover .overlay-judul {
  opacity: 1;
}

.infografik-pagination {
  margin-top: 50px;
  text-align: center;
}

.infografik-pagination a {
  border: none;
  background: #ccc ;
  margin: 0 3px;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 0px;
  text-decoration: none;
  color: black;
  font-weight: 500;
}


.infografik-pagination a.active {
  background: #939393;
  color: white;
}

.infografik-sidebar-wrap {
  margin-top: 40px;
}

.infografik-sidebar-wrap {
  margin-top: 40px;
}

.IAkategori-sidebar {
  margin-left: 50px;
}


