.article {
  display: flex;
}

.article.contains-video .article__img {
  position: relative;
}

.article.contains-video .article__img::before {
  content: '';
  background-image: url('../images/icons/play.png');
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
}

.layout__3of3 .article.contains-video .article__img::before,
.article--column.article.contains-video .article__img::before {
  background-size: 36px 36px;

  bottom: 16px;
  right: 16px;

  width: 36px;
  height: 36px;
}

.article--column.article.contains-video .article__img::before {
  bottom: 22px;
}

.layout__5of5 .article.contains-video .article__img::before {
  background-size: 24px 24px;
  bottom: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
}

.article--single {
  flex-direction: column;
}

.article__wrap {
  display: block;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.layout__single .article__wrap {
  top: unset;
}

@media (min-width: 768px) {
  .article__wrap {
    display: flex;
    top: unset;
  }
}

.article__img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: flex;
}

.article__img img {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 330px;
}

@media (min-width: 768px) {
  .article__img img {
    max-height: initial;
  }
}

.article__title {
  margin: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

@media (min-width: 768px) {
  .article__title {
    margin-bottom: 10px;
    font-size: 22px;
  }
}

.article__category {
  text-transform: uppercase;
  color: #900;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 12px;
  display: inline-block;
}

.article__category a {
  color: #900;
  font-weight: 500;
  font-size: 12px;
}

@media (min-width: 768px) {
  .article__category {
    margin-bottom: 12px;
  }
}

.article__category--cat {
  margin-right: 8px;
}

.article__category--cat.marketing {
  background: #fff450;
  color: #3d3434;
  padding: 2px 5px;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #707070;
  line-height: 1rem;
  font-weight: 400;
}

.article__meta--row {
  margin-top: 0;
}

.article__author {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.article__meta--authors {
  display: block;
}

.article__meta--date {
  margin-right: 8px;
}

.article__meta--updated {
  position: relative;
  display: block;
  padding-left: 12px;
  margin-right: 8px;
  font-weight: 400;
  color: #900;
}

.article__meta--updated::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #900;
  border-radius: 50%;
  transform: translateY(-50%);
}

.article__meta .photo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 0.725rem;
  border: 1px solid #ebebeb;
}

.article__description {
  margin-bottom: 19px;
  font-family: "DM Sans", sans-serif, "Sharp Grotesk Bold 15", "-apple-system",
    "BlinkMacSystemFont", "Segoe UI", "Helvetica", "Arial", "Apple Color Emoji",
    "Segoe UI Emoji";
  font-weight: 400;
}

.article__description a {
  color: #000;
  line-height: 1.38;
  font-size: 14px;
}

@media (min-width: 768px) {
  .article__description a {
    font-size: 16px;
  }
}

.fast-posts {
  position: relative;
  overflow: hidden;
}

.fast-posts::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: linear-gradient(to bottom,
      rgba(255, 255, 255, 0),
      #fff 100%);
}

.fast-posts .article {
  flex-direction: column-reverse;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #ebebeb;
}

.fast-posts .article:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.fast-posts .article:nth-of-type(2) {
  margin-top: 24px;
  padding-top: 24px;
}

.fast-posts .article img {
  float: left;
  width: 72px;
  height: 72px;
  margin-right: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}

.fast-posts .article__description {
  margin: 0;
}

.fast-posts .article__description b,
.fast-posts .article__description strong {
  font-weight: 600;
}

.fast-posts .article__meta {
  margin-bottom: 4px;
}

.fast-posts .article--column {
  flex-direction: column;
}

.fast-posts .article--column .article__img {
  height: auto;
  max-height: 180px;
  width: 100%;
}

@media (min-width: 768px) {
  .fast-posts .article--column .article__img {
    height: auto;
    max-height: 405px;
  }
}

@media (min-width: 390px) {
  .fast-posts .article--column .article__img {
    max-height: 254px;
  }
}

.fast-posts .article--column .article__category {
  display: none;
}

.fast-posts .article--column .article__description {
  margin-bottom: 8px;
}

.fast-posts .article--column .article__meta {
  line-height: 1;
  color: #707070;
  margin: 0;
}