.tool-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-left: auto;
}

.tool-source .tool-source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0;
  padding: 9px 14px;
  border: 2px solid #7da51e;
  border-radius: 10px;
  background: #fff;
  color: #365600;
  box-shadow: 0 4px 12px rgba(91, 128, 18, .12);
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s, background .18s, box-shadow .18s, border-color .18s;
}

.tool-source .tool-source-links a:hover,
.tool-source .tool-source-links a:focus-visible {
  transform: translateY(-2px);
  border-color: #5f850f;
  background: #eaf7d5;
  box-shadow: 0 8px 20px rgba(91, 128, 18, .22);
  text-decoration: none;
  outline: none;
}

@media (max-width: 760px) {
  .tool-source-links { width: 100%; margin-left: 0; }
  .tool-source .tool-source-links a { width: 100%; justify-content: space-between; }
}
