img.icon-popup {
  width: 40px;
  height: auto;
  transition: all 0.3s ease;
  display: block;
  margin: 10px auto;
}

.grid-card-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* default 1 kolom */
  gap: 3rem; /* sama dengan g-5 (48px) */
}

/* sm (≥576px) */
@media (min-width: 576px) {
  .grid-card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* md (≥768px) */
@media (min-width: 768px) {
  .grid-card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* lg (≥992px) */
@media (min-width: 992px) {
  .grid-card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.item {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}


.card:hover .icon-circle img.icon-popup {
  width: 70px; /* Membesar saat hover */
}

.card-body {
  text-align: center;
  transition: padding 0.3s ease;
}

.card-title {
  margin-bottom: 10px;
}



.custom-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-card:hover {
  background-color: var(--bs-primary);
}

.custom-link {
  text-decoration: none;
  color: var(--bs-primary);
  transition: color 0.3s ease;
}

.custom-link:hover {
  text-decoration: underline !important;
  color: #FFDE21 !important;
}

.custom-card:hover .custom-link {
  color: white;
}



.icon-circle {
  width: 75px;
  height: 75px;
  background-color: var(--bs-primary); /* Bootstrap primary */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card:hover .icon-circle {
  width: 70px;
  height: 70px;
}

.circle-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 220px;
  max-height: 220px;
  border-radius: 50%;
  background: linear-gradient(209deg, #e0f1d9, #fffbfb);
  /*background: linear-gradient(135deg, #ffffff, #f9f9f9); */
  border: 2px solid var(--bs-primary); /* garis sesuai tema */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.circle-card:hover {
  transform: translateY(-6px) scale(1.05);
  /*background: var(--bs-primary);*/
  background: linear-gradient(209deg, #ace5c3, #ffffff);
  color: green;
}

.circle-card img {
  width: 55px;
  height: 55px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}


.circle-card h5 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.circle-card a {
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--bs-primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.circle-card:hover a {
  color: var(--bs-primary); /* aksen kuning saat hover */
  text-decoration: underline;
}


a.lihat-selengkapnya:hover {
	text-decoration: underline !important;
}