.click-box {
  display: block;
  padding: 30px;
  background:#f4f4f4;
  border-radius: 15px;
  transition: 0.3s ease;
}

.click-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.click-box-title {
  font-size: 16px;
  font-weight: 600; /* optional */
  margin-bottom: 8px;
}

.click-box-desc {
  font-size: 12px;
  line-height: 1.4;
}
.click-box {
  text-decoration: none;
  color: inherit;
}

.click-box:hover {
  text-decoration: none;
}

.click-box * {
  text-decoration: none !important;
}