/* =========================================================
   KAOKAB5GC – Cards & Containers
   ========================================================= */

/* ================= CARD BASE ================= */

.card {
  background: linear-gradient(180deg, #0f1826, #0b1220);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all .25s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.card:hover::after {
  border-color: var(--brand-dark-gold);
}

.card.full {
  grid-column: 1 / -1;
}

/* ================= CARD TITLES ================= */

.card h2 {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.6px;
  color: #dbeafe;
}

/* ================= NF GROUPS ================= */

.nf-group {
  margin-bottom: 18px;
}

.nf-group-title {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  border-left: 3px solid rgba(255,138,0,.45);
  padding-left: 6px;
}
