.publication-item {
  width: 100%;
  display: block;
  padding: 24px;
  background-color: transparent;
  transition: background-color 0.3s;

  &:hover {
    background-color: $background-blue;
  }

  &__image {
    @include image-aspect-ratio(100%, 66%);

    background-color: $gray-bluish;
    margin-bottom: 24px;
  }

  &__date {
    color: $primary-color;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.6rem;
    letter-spacing: 0.02rem;
  }

  &__title {
    color: $primary-color;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 3rem;
    margin: 16px 0 0;

    @include sm {
      font-size: 2.1rem;
      line-height: 2.5rem;
    }
  }

  &__type-container {
    margin-top: 24px;
  }

  &__type {
    color: $blue;
    background-color: rgba($color: $blue, $alpha: 0.1);
    padding: 6px 8px;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2rem;
    margin-right: 16px;
  }
}