/*
* Usage:
* 1. Same values for all properties:
*   .f-button {
*       @include transition(
*           (background-color, border-color, color, box-shadow, transform),
*           $transition-duration: $transition-duration-long
*       );
*   }
*
* 2. Different values for specific properties:
*   .f-button {
*       @include transition((
*           background-color: $transition-duration-short null null,
*           border-color: null,
*           box-shadow: 0.315s ease-in null,
*           transform: null ease null
*       ));
*   }
* (!) All values for each property is required.
* (!) 'null' is used for setting default value.
*/
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Mixin to cut off the rest of one-line text with dots */
/* Firefox+ CSS styles go here */
.f-checkbox__label .f-field,
.f-radio__label .f-field {
  cursor: default;
}

/*
   1.0 Utility functions for RTLCSS
*/
/* Replace. Replaces the declaration value with {value}.
** Usage:
** letter-spacing: 1px rtl(normal);
*/
/* Append. Appends {value} to the end of the declaration value.
** Usage:
** transform: rotate(45deg) rtl-append(scaleX(-1));
*/
/* Prepend. Prepend {value} to the begining of the declaration value.
** Usage:
** transform: rotate(45deg) rtl-prepend(scaleX(-1));
*/
/* Prepend. Prepend {value} to the begining of the declaration value.
** Usage:
** transform: rotate(45deg) rtl-prepend(scaleX(-1));
*/
/* Ignore. Ignores processing of this declaration
** Usage:
** text-align: left rtl-ignore();
*/
.article-block__wrapper {
  color: #111;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 769px) {
  .article-block__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.article-block__wrapper--reverse .article-block__left {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.article-block__right .article-block__content.m-truncated {
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.article-block__title {
  font-weight: 600;
  margin: 8px 0 16px;
}
@media (min-width: 769px) {
  .article-block__title {
    margin: 16px 0;
  }
}
.article-block__content {
  margin-bottom: 8px;
}
@media (min-width: 769px) {
  .article-block__content {
    margin-bottom: 16px;
  }
}
.article-block__btn {
  font-size: 14px;
  line-height: 20px;
  background: none;
  border: none;
  -webkit-box-shadow: inset 0 -1px 0 #111;
          box-shadow: inset 0 -1px 0 #111;
  color: #111;
  display: inline-block;
  font-weight: 600;
  margin-top: 10px;
  margin-right: 16px;
  padding: 0;
}

@media (max-width: 768.98px) {
  .experience-commerce_assets-2columnArticle {
    padding: 24px 0 !important;
  }
}
