.p-tool-categories__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(144px, 1fr));
  gap: 20px;
}

.p-tool-categories__item {
  height: 144px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  white-space: pre-wrap;

  &:hover {
    opacity: 0.8;
  }
}

.p-tool-categories__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
