/* GPG Link Sentinel — front-end styles for replaced dead links. */

a[data-gpg-replaced="1"] .gpg-ls-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(245, 158, 11, 0.18);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 4px;
  vertical-align: middle;
}

a[data-gpg-replaced="1"]:hover .gpg-ls-badge {
  background: rgba(245, 158, 11, 0.28);
  color: #fbbf24;
}

/* Subtle pulse so users notice it's a replacement */
@keyframes gpg-ls-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
a[data-gpg-replaced="1"] .gpg-ls-badge {
  animation: gpg-ls-pulse 2.4s ease-in-out infinite;
}
