/* Row-style card (like list view in the reference) */
.sa-am-card{
  display:block;
  background:#ffffff;
  border:1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(2,6,23,.06);
}
.sa-am-card:hover{
  border-color: var(--line-2);
  box-shadow: 0 10px 28px rgba(2,6,23,.08);
}

/* Title + link */
.sa-am-title{ margin: 0 0 6px; font-size: 1.06rem; }
.sa-am-title a{ color:#0f172a; text-decoration:none; }
.sa-am-title a:hover{ color:var(--brand); text-decoration: underline; }

/* Excerpt */
.sa-am-excerpt{ margin:.25rem 0 .6rem; color:#475569; }

/* Metadata row */
.sa-am-meta{
  display:flex; gap:.5rem; flex-wrap:wrap;
  font-size:.86rem; color: var(--muted);
}
.sa-am-provider a{ color:#334155; }

/* Pills */
.sa-am-chip{
  background: #f3f4f6;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .18rem .55rem;
  color:#374151;
}

/* === Centered empty state + panel shadow === */
.sa-am-results {
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* N items */
.sa-am-empty {
  display: grid;
  place-items: center;
  grid-column: 1 / -1;
  width: 100%;
  min-height: 56vh;
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #475569;
  opacity: 1;
  border-radius: 12px;
}

.sa-am-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 10px;
}