.result {
   display: block;
   border: 2px solid var(--tisc-border-primary);
   background: var(--tisc-bg-secondary);
   padding: 1.25rem;
   color: var(--tisc-text-primary);
   margin-bottom: 1.25rem;

   h2,
   p {
      margin: 0;
   }

   h2 {
      font-size: 16px;
   }

   p {
      display: flex;
      align-items: center;
      line-height: 24px;

      span:last-child {
         margin-left: 1.25rem;
      }
   }

   &:hover {
      text-decoration: none;
      cursor: pointer;
      background: var(--tisc-hover-secondary);
   }
}