/* ============================
   TITLE TAGS
============================ */
.tag-title {
  background: #111827;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1px;
}


/* ============================
   TAG LIST (GLOBAL)
============================ */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin: 10px 0 20px 0; /* jarak bawah biar ga ketutup Discussion */
  position: relative;
  z-index: 5;
}

.tag {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #111827;
  padding: 3px 8px;
  font-size: 12.5px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.15s ease;
}

.tag:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}


/* ============================
   TAG DALAM CARD POST
============================ */
.tags {
  margin-top: 8px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  text-align: center;
}


/* ============================
   WRAPPER BIAR TIDAK KETUTUP BOX
============================ */
.tag-section {
  margin-bottom: 20px;   /* nahan Discussion supaya tidak nutup */
  position: relative;
  z-index: 5;
}