.notif-card {
  display: flex;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
}
.notif-card:active { background: rgba(255,255,255,0.03); }
.notif-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--bg4);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.notif-body { flex: 1; min-width: 0; }
.notif-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.notif-text {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.5;
}
.notif-time {
  font-size: 10.5px;
  color: var(--text3);
  margin-top: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
