section.tool-show {
  background: var(--primary-color-50);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: opacity 0.3s ease-in-out;
  flex: 1;
  min-height: 100%;
  --tool-show-pad: 40px;
  /* Desktop */
  @media (min-width: 768px) {
    padding: var(--tool-show-pad);
    padding-bottom: 0;
  }
  /* Mobile */
  @media (max-width: 767.5px) {
    --tool-show-pad: 20px;
    padding: var(--tool-show-pad);
    padding-bottom: 0;
  }

  &.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .tool-show-inner,
  .organisation-show-inner {
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  h1.name {
    font-size: 36px;
    font-weight: 700;
  }

  .description {
    margin-bottom: 20px;
  }

  .screenshots {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    img {
      max-height: 200px;
    }
  }

  .props {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

    .prop-group {
      font-weight: 600;
      font-size: 18px;
      margin-top: 10px;
      width: 100%;
      flex-shrink: 0;
    }

    .prop {
      display: flex;
      flex-direction: column;
      gap: 5px;
      min-width: max(40%, 300px);
      flex: 1;

      .prop-name {
        display: flex;
        align-items: center;
        color: var(--grey-500);
        cursor: default;

        .fa-info-circle {
          font-size: 12px;
          color: var(--grey-400);
          padding: 6px 6px 5px;

          &:hover {
            color: var(--grey-500);
          }
        }
      }

      .values {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      &[data-slug='business-blocks-versions'] {
        .values {
          flex-direction: row;
          flex-wrap: wrap;
          gap: 10px;

          .value {
            background: var(--primary-color-100);
            padding: 5px 10px;
            font-weight: 600;
            border-radius: 2px;
          }
        }
      }
    }
  }

  a {
    cursor: pointer;
  }

  .btn-primary {
    background-color: var(--primary-color-600);

    &:hover {
      background-color: var(--primary-color-700);
    }
  }

}
