
/* projectLinks.css — buttons row under the date/title */
.proj-links{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 6px;
}
.proj-links .projbtn{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font: 600 13px/1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}
.proj-links .projbtn-primary{
  background: #2ea043;
  color: #fff;
  box-shadow: 0 3px 10px rgba(46,160,67,.35);
}
.proj-links .projbtn-primary:hover{ transform: translateY(-1px); box-shadow: 0 6px 18px rgba(46,160,67,.35); }
.proj-links .projbtn-ghost{
  background: rgba(255,255,255,.06);
  color: #dce6f2;
  border: 1px solid rgba(255,255,255,.12);
}
.proj-links .projbtn-ghost:hover{ background: rgba(255,255,255,.12); transform: translateY(-1px); }
