.gpp-tools-directory {
  margin: 0 0 48px;
}

.gpp-tools-group {
  margin: 0 0 38px;
}

.gpp-tools-group h2 {
  border-left: 0;
  font: inherit;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 18px;
  padding-left: 0;
}

.gpp-tools-grid {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gpp-tools-directory .gpp-tool-card {
  align-items: center;
  background: #fff;
  border: 1px solid #e3efeb;
  border-radius: 12px;
  box-shadow: none;
  box-sizing: border-box;
  color: #242b29;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  gap: 12px;
  height: 100%;
  justify-self: stretch;
  line-height: 1.3;
  margin: 0;
  max-width: none;
  min-height: 64px;
  min-width: 0;
  overflow: visible;
  padding: 12px 14px;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  width: 100%;
}

.gpp-tools-directory .gpp-tool-card:hover,
.gpp-tools-directory .gpp-tool-card:focus {
  border-color: #00846b;
  box-shadow: 0 7px 22px rgba(19, 55, 47, .08);
  color: #00846b;
  transform: translateY(-1px);
}

.gpp-tool-icon {
  align-items: center;
  background: #e8f5f1;
  border-radius: 8px;
  color: #00846b;
  display: inline-flex;
  flex: 0 0 38px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.gpp-tool-name {
  min-width: 0;
}

@media (max-width: 1018px) {
  .gpp-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .gpp-tools-grid {
    grid-template-columns: 1fr;
  }
}
