/* 复用 index 的 api-grid 与 card-glass 变量 */
.doc-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.36);
  transition: transform .25s ease;
}
.doc-card:hover { transform: translateY(-4px); }

.status-doc { background: #06d6a0; }   /* 绿色标签 */

.api-brief {
  margin: 8px 0 12px;
  font-size: 0.9em;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}