.projects-intro {

  & .projects-intro__wrapper {

    & .projects-intro__list {

      & .projects-intro__item {

        &:not(:first-child) {
          display: none;
        }
      }
    }
  }
}

/* Only show hover effects on tablet and up */
@media(min-width:768px) {
  .projects__item {
    & .projects__item-media {
      &:hover {
        .projects__item-overlay {
          transform: translateY(0);
        }

        >.projects__item-thumbs-wrapper {
          transform: translateY(0);
        }
      }

      & .projects__item-thumbs-link {
        transition: all .35s ease-in-out;

        &:hover {
          background-color: var(--_colors---hope);

          >.projects__item-thumb-icon {
            transform: scale(0.8);
          }
        }
      }

      & .projects__item-thumb-icon {
        transition: all .35s ease-in-out;
      }
    }
  }
}

.project-teaser__description {

  & p:last-child,
  & p:only-of-type {
    margin-bottom: 0;
  }
}
