.tools-listing__container {
  padding: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.tools-listing {
  flex: 1;
  display: flex;
  flex-direction: row;
}

.tools-listing__left {
  display: flex;
  flex-direction: column;
}

.tools-listing__image {
  border-radius: 100%;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  flex: 0 0 auto;
  max-height: 14rem;
  max-width: 14rem;
  min-height: 14rem;
  min-width: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.tools-listing__image img {
  width: 100%;
  max-height: 14rem;
  max-width: 14rem;
}

.tools-listing__meta {
  padding: 1rem 2rem;
}

.tools-listing__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.tools-listing__description {
  color: var(--color-gray-700);
}

@media only screen and (max-width: 600px) {
  .tools-listing__container {
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 0;
  }

  .tools-listing {
    flex-direction: column;
    justify-content: flex-start;
  }

  .tools-listing__title {
    font-weight: normal;
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }

  .tools-listing__left {
    align-items: center;
  }

  .tools-listing__left,
  .tools-listing__right,
  .tools-listing__break {
    width: 100%;
  }

  .tools-listing__actions {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
  }

  .tools-listing__image,
  .tools-listing__image img {
    max-height: 8rem;
    max-width: 8rem;
  }

  .tools-listing__image {
    min-height: 8rem;
    min-width: 8rem;
    margin-bottom: 1rem;
  }

  .tools-listing__short-description {
    font-size: 0.9rem;
    margin: 1rem 0;
  }

  .tools-listing__short-description,
  .tools-listing__description {
    color: var(--color-gray-600);
  }

  .tools-listing__meta {
    padding: 0;
  }
}
