.btn-yellow {
  background-color: #EC8226;
  color: #fff;
}

.gap-12 {
  gap: 12px;
}
.category-block__preview__info{
  justify-content: space-between;
}
.link {
  color: var(--states-primary-primary);
}
.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.link:hover {
  color: var(--states-primary-primary-hover);
}

@media (max-width: 576px) {
  .mobile\:flex-column {
    flex-direction: column;
  }

  .mobile\:gap-8 {
    gap: 8px;
  }

  .mobile\:flex-wrap {
    flex-wrap: wrap;
  }

  .mobile\:gap-12 {
    gap: 12px;
  }
}

.category-block__content {
  padding: 0 !important;
  padding-top: 24px !important;
}

.article-pill {
  padding: 12px 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: rgba(33, 37, 41, 0.64);
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-bottom 0.3s;
  width: auto;
  text-decoration: none;
}

.article-pill.active {
  color: #212529;
  border-bottom: 2px solid #0d6efd;
}

.article-list {
  width: 100%;
}

.article-item {
  padding: 24px;
  border-radius: 16px;
  background: var(--background-bg-primary);
  box-shadow: 0px 0.5px 1px 0px var(--shadows-drop-3);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
  margin-bottom: 16px;
}

.radius-6 {
  border-radius: 6px;
}

.actions {
  display: flex;
}

.comments__btn {
  display: inline-flex;
  min-height: 24px;
  padding: 6px 10px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: none;
  border-radius: 999px;
  background: var(--states-primary-tertiary);
  color: var(--text-primary)!important;
  text-decoration: none!important;
}

.comments__btn:hover {
  background: var(--states-primary-tertiary-hover);
}

.comments__btn-img {
  width: 20px;
  height: 20px;
}

.comments__btn-count {
  color: var(--text-primary);
  font-family: var(--family-body);
  font-size: var(--type-size-xs);
  font-style: normal;
  font-weight: 500;
  line-height: var(--type-height-sm);
  padding: 0 2px;
}

.blog__image__link {
  color: var(--states-primary-primary);
}


@media (max-width: 450px) {
  .actions {
    flex-direction: column;
    width: 100%;
  }
}

.category-block__preview__info__img {
  border-radius: 50%;
  object-fit: cover;
  background: var(--background-bg-primary);
}

.dark .article-pill {
  color: rgba(255, 255, 255, 0.64);
}

.dark .article-pill.active {
  color: rgba(255, 255, 255, 1);
}