*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  width: 100%;
  margin: 8px;
}

header {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 1.25rem;
  color: #222222;
  line-height: 12px;
  margin-top: 2rem;
}

.container {
  width: 75%;
  margin: 0 auto;
  max-width: 900px;
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.observer {
  height: 2rem;
}

#virtual-list {
  width: 100%;
  min-height: 0;
  flex: 1;
}

.article {
  position: absolute;
  overflow: hidden;
  left: 0;
  right: 0;
}

.article__title {
  width: fit-content;
  max-width: 100%;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.article__details {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 7pt;
  color: #828282;
}

@media (width <= 640px) {
  .container {
    width: 100%;
    max-width: 100%;
  }

  .article {
    right: 1rem;
  }
}
