/*
  trust-polish.v52_2.css
  Purpose: light styling for Trust sub-pages that use the compact "trust-nav" header.
  (Kept intentionally small; base site styling lives in styles.v58_9.css.)
*/

.trust-nav{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10,11,13,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
}

.trust-nav .trust-nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 0;
}

.trust-nav .trust-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--ink);
  font-weight: 800;
}

.trust-nav .trust-brand img{
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.trust-nav .trust-links{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

.trust-nav .trust-links a{
  text-decoration:none;
  color: var(--ink-2);
  font-size: 14px;
}

.trust-nav .trust-links a:hover{
  color: var(--ink);
}

@media (max-width: 860px){
  .trust-nav .trust-links{ display:none; }
}

/* Slightly denser table feel for deployment logs */

.deployment-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.deployment-row:first-child{ border-top: 0; }

.deployment-row .mono{ font-size: 12px; }

.deployment-meta{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap:wrap;
}

