/* === NEW ARTICLES STICKY (article page, desktop only) === */
.new-articles-sticky {
  display: none;
}
@media (min-width: 992px) {
  .new-articles-sticky {
    display: block;
    position: fixed;
    left: calc(50% - 620px);
    top: 100px;
    width: 220px;
    z-index: 100;
  }
}
.new-articles-sticky__heading {
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}
.new-articles-sticky__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.new-articles-sticky__item {
  margin-bottom: 12px;
}
.new-articles-sticky__link {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.new-articles-sticky__link img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}
.new-articles-sticky__title {
  font-size: 10px;
  line-height: 1.3;
  color: #000;
}
.new-articles-sticky__link:hover .new-articles-sticky__title {
  text-decoration: underline;
}
