.cr-article-card {
  max-height: 180px;
  width: 100%;
  background-color: #fff;
  transition: box-shadow 0.5s ease-in-out;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.02), 0px 4px 4px -1px rgba(0, 0, 0, 0.15),
    0px 0px 10px -1px rgba(0, 0, 0, 0.08);
  overflow: hidden;

  &__block-box {
    position: absolute;
    right: 10px;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-direction: column;
  }

  &__disabled {
    opacity: 0.2;
    // filter: grayscale(100%);
  }

  &__image {
    width: 180px;
    height: 180px;
    background-color: #f5f5f5;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    &--small {
      width: 106px;
      height: 106px;
    }
  }

  &__image-mobile {
    width: 134px;
    min-width: 134px;
    height: 134px;
  }

  &__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
  }

  &__content {
    padding-left: 30px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 10px;

    &--small {
      padding-left: 10px;
    }
  }

  &--mobile-content {
    padding: 8px;
  }

  &__title {
    font-weight: 600;
    font-size: 25px;
    line-height: 28px;
    margin-bottom: 0;
    color: #000000;
    font-family: "Noto Serif";

    &--small {
      font-size: 12px;
      line-height: 16px;
    }

    &--short {
      font-size: 20px;
      line-height: 16px;
    }

    &--mobile {
      font-size: 16px;
      line-height: 23px;
    }
  }

  &__create-date {
    margin-top: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 32px;
    color: #1b1d20;
    display: flex;
    align-items: center;
    text-transform: uppercase;

    &--small {
      font-size: 12px;
      line-height: 16px;
    }
  }

  &__description {
    margin-top: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    font-family: "Mulish";
  }

  &__actions {
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }

  &__expand-action {
    display: flex;
    flex-direction: column;
  }

  &--has-actions {
    cursor: pointer;
  }

  &--small {
    box-shadow: none;
  }
}
