/* ============================================================
   Jobit - Job Tracker product page
   Builds on tokens.css + site.css + product-multiposter.css +
   product-ats.css. The page body carries .mp-page .ats-page so
   every section reuses the exact ATS styling for full consistency.
   This file only adds the NEW animated hero visuals
   (radar / feed / monitor).
   ============================================================ */

.jt-page { --mp-visual-col: 460px; }

.jt-hero-visual {
  height: auto;
  align-items: center;
}
.jt-hero-lead { margin-bottom: 32px; }

/* ------------------------------------------------------------
   SHARED card head (matches ats-card framing)
   ------------------------------------------------------------ */
.jt-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.jt-card-head-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--mp-accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(67,100,173,0.28);
}
.jt-card-head-id { flex: 1; min-width: 0; }
.jt-card-head-lbl {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mp-accent);
}
.jt-card-head-name { font-size: 15.5px; font-weight: 800; color: var(--fg-strong); letter-spacing: -0.01em; line-height: 1.15; }
.jt-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--success);
  white-space: nowrap;
}
.jt-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(46,157,111,0.18);
  animation: jtPulseDot 2.2s ease-in-out infinite;
}
@keyframes jtPulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.jt-avatar { border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: white; flex-shrink: 0; }

/* ------------------------------------------------------------
   VARIANT 2 · FEED (live stroom van gevonden vacatures)
   ------------------------------------------------------------ */
.jt-feed { display: flex; flex-direction: column; gap: 9px; padding-top: 14px; }
.jt-feed-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  animation: jtFeedIn 0.5s var(--ease-out) both;
}
@keyframes jtFeedIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.jt-feed-mk { width: 34px; height: 34px; font-size: 11px; border-radius: 9px; }
.jt-feed-txt { flex: 1; min-width: 0; }
.jt-feed-role { font-size: 12.5px; font-weight: 800; color: var(--fg-strong); letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jt-feed-src { font-size: 10.5px; font-weight: 600; color: var(--fg-subtle); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jt-feed-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.jt-feed-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--success);
  background: var(--success-bg);
  border-radius: var(--r-pill);
  padding: 2px 8px;
}
.jt-feed-badge.change { color: var(--warning); background: var(--warning-bg); }
.jt-feed-time { font-size: 10px; font-weight: 700; color: var(--neutral-400); }
.jt-feed-foot {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; padding-top: 13px;
  border-top: 1px solid var(--border);
  font-size: 11.5px; font-weight: 700; color: var(--fg-muted);
}
.jt-feed-foot svg { color: var(--mp-accent); flex-shrink: 0; }

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .jt-hero-visual { justify-self: center; max-width: 460px; width: 100%; }
}
