.docs-panel {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
}

.docs-panel h3 {
  margin: 0 0 6px;
}

.docs-panel p {
  margin: 0 0 12px;
  color: var(--muted);
}

.docs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.docs-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(88, 118, 97, 0.22);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.docs-actions a:hover {
  border-color: rgba(106, 141, 115, 0.48);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
