.clipping-news {
  position: relative;
  width: 100%;
  padding: 48px $gutter;
  margin: 75px auto;
  background-color: $gray-10;

  @include sm {
    padding: 40px $gutter-mobile;
    margin: 50px auto;
  }

  &__wrapper {
    width: 100%;
    max-width: $projects-detail-width;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  &__title {
    width: 100%;
    color: $primary-color;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 3rem;
    margin: 0;
  }

  &__publication {
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 700;
    color: $primary-color;
    margin-top: .8rem;
  }

  &__container {
    margin-top: 48px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 48px;
    row-gap: 48px;

    @include md {
      grid-template-columns: 1fr 1fr;
      margin-top: 0;
      row-gap: 0;
    }

    @include sm {
      grid-template-columns: 1fr;
    }
  }

  &__item {
    width: 100%;

    @include md {
      padding: 24px 0;
      border-bottom: 1px solid $gray-bluish;
    }
  }

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

  &__item-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;
    }
  }

  &__item-type-container {
    margin-top: 24px;
  }

  &__item-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;
  }

  &__cta {
    margin: 48px auto 0;
    width: 100%;
    max-width: 440px;

    @include md {
      margin-top: 24px;
    }

    .std-button {
      width: 100%;
    }
  }
}
