/* Marketing tab */
.marketingGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mBlock{
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,0.30);
}

.mBlock.wide{ grid-column: 1 / -1; }

@media (min-width: 980px){
  .marketingGrid{ grid-template-columns: 1fr 1fr; }
  .mBlock{ min-height: 120px; }
}

.kpiRow{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kpiChip{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
}

.kpiChip .k{ font-size: 12px; color: rgba(255,255,255,.70); }
.kpiChip .v{ font-size: 14px; font-weight: 900; color: rgba(255,255,255,.95); }

.mCampaign{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.10);
}

.mCampaign .top{ display:flex; justify-content:space-between; gap:12px; align-items:flex-start; }
.mCampaign .name{ font-weight: 950; letter-spacing:.2px; }
.mCampaign .meta{ color: rgba(255,255,255,.70); font-size: 12px; margin-top: 2px; }
.mCampaign .pill{
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(57,255,20,.30);
  background: rgba(57,255,20,.10);
  color: rgba(235,255,240,.92);
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

.mAction{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.mAction .bucket{ font-weight: 900; }
.mAction .text{ color: rgba(255,255,255,.86); margin-top: 2px; }

.mOrgLead{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.10);
}
.mOrgLead .top{ display:flex; justify-content:space-between; gap:12px; align-items:flex-start; }
.mOrgLead .name{ font-weight: 950; letter-spacing:.2px; }
.mOrgLead .meta{ color: rgba(255,255,255,.70); font-size: 12px; margin-top: 2px; }
.mOrgLead .pill{
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}
