.docs-panel {
  margin-top: 14px;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 249, 0.9);
}

.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: 8px;
}

.docs-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(106, 141, 115, 0.22);
  background: rgba(255, 254, 249, 0.98);
  color: var(--accent-strong);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.docs-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(51, 92, 68, 0.46);
  background: rgba(255, 250, 240, 1);
  box-shadow: 0 10px 18px rgba(38, 29, 17, 0.05);
}
