.article-row {
  display: flex;
  align-items: center;
  /* min-height: 72px; */
  padding: var(--size-4, 1rem) 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  width: 100%;
  box-sizing: border-box;
}

.article-image {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: var(--size-4, 1rem);
  /* background: var(--color-border-light, #f0f0f0); */
}

.article-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.article-content {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-title {
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
  line-height: var(--leading-tight);
  margin: 0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-date {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  white-space: nowrap;
  margin-left: var(--size-2, 0.5rem);
}

.article-publisher {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  margin-top: var(--size-1, 0.25rem);
}

.article-deck {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-top: var(--size-2, 0.5rem);
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}