/* Perbesar ikon 'Program Kami' tanpa ubah frame */
.program-grid .program-icon {
  display: grid !important;
  place-items: center !important;
}

/* Desktop default: isi frame lebih penuh */
.program-grid .program-icon img {
  width: 96px !important;
  height: 96px !important;
  max-width: 100% !important;   /* tidak melebihi frame */
  max-height: 100% !important;  /* tidak melebihi frame */
  object-fit: contain !important;
  image-rendering: -webkit-optimize-contrast;
}

/* Mobile: ikon sedikit lebih besar biar jelas */
@media (max-width: 576px) {
  .program-grid .program-icon img {
    width: 112px !important;
    height: 112px !important;
  }
}
