/* ── Grade badge pulse ──────────────────────────────── */
@keyframes ssl-grade-in {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.ssl-grade-badge {
  animation: ssl-grade-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ── SAN tags scroll ─────────────────────────────────── */
.ssl-san-list {
  max-height: 80px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #27272a transparent;
}
.ssl-san-list::-webkit-scrollbar { width: 4px; }
.ssl-san-list::-webkit-scrollbar-thumb { background: #27272a; border-radius: 99px; }
