.circle-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 240px;
  max-height: 240px;
  border-radius: 50%;
  background-color: #f8f9fa;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.circle-card:hover {
  transform: scale(1.05);
}

.circle-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.circle-card h5 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.circle-card a {
  font-size: 0.875rem;
  text-decoration: none;
}

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