.project-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.project-guide-actions .project-tool-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 0;
  min-height: 46px;
  padding: 10px 16px;
  border: 2px solid #202522;
  border-bottom: 2px solid #202522;
  border-radius: 4px;
  background: #f5b400;
  color: #151714;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(32,37,34,.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.project-guide-actions .project-tool-link span {
  color: inherit;
  font-size: 1.1rem;
}

.project-guide-actions .project-tool-link:hover {
  transform: translateY(-2px);
  box-shadow: 4px 5px 0 rgba(32,37,34,.2);
  filter: brightness(1.03);
}

.project-guide-actions .project-tool-link:active {
  transform: translateY(1px);
  box-shadow: 1px 1px 0 rgba(32,37,34,.25);
}

@media (max-width: 640px) {
  .project-guide-actions .project-tool-link {
    width: 100%;
  }
}
