/* Task 1212b — compact read count in the article inventory card corner. */
.operator-articles-page .operator-article-title-cell {
  position: relative;
  padding-right: 2rem;
}

.operator-articles-page .operator-article-read-count {
  color: var(--yen-muted, #6f665f);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  right: .6rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 640px) {
  .operator-articles-page .operator-article-title-cell {
    min-height: 2rem;
    padding-right: 1.6rem !important;
  }

  .operator-articles-page .operator-article-read-count {
    right: 0;
    top: 0;
    transform: none;
  }
}
