.sub2api-home-docs-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.sub2api-home-docs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  min-height: 48px;
  padding: 12px 32px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgb(15 23 42 / 8%);
  transition: border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sub2api-home-docs-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.sub2api-home-docs-button:hover {
  border-color: #14b8a6;
  color: #0f9f91;
  box-shadow: 0 10px 24px rgb(20 184 166 / 16%);
  transform: translateY(-1px);
}

.sub2api-home-docs-button:focus-visible {
  outline: 3px solid rgb(20 184 166 / 30%);
  outline-offset: 3px;
}

@media (max-width: 420px) {
  .sub2api-home-docs-actions {
    align-items: stretch;
  }

  .sub2api-home-docs-actions > * {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sub2api-home-docs-button {
    transition: none;
  }

  .sub2api-home-docs-button:hover {
    transform: none;
  }
}
