/* BUTTON */
.btn-primary {
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}

/* CARD */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card-thumb {
  height: 160px;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 14px;
}

/* BADGE */
.badge {
  font-size: 11px;
  background: #eef4ee;
  padding: 4px 10px;
  border-radius: 999px;
}