#article-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
}

#article-overlay.open {
  transform: translateX(0);
}

.article-back {
  position: sticky;
  top: 0;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 0px solid #000;
  cursor: pointer;
  font-family:
    Arial Black,
    sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  user-select: none;
  z-index: 1;
}

.article-body {
  padding: 24px 24px 80px;
}

.article-heading {
  font-family:
    Arial Black,
    sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 18px;
  transform: scaleY(1.2);
  transform-origin: left top;
  display: block;
}

.article-text {
  font-size: 13px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
  white-space: pre-wrap;
}

.article-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 6px;
}

.article-caption {
  font-size: 11px;
  color: #777;
  margin-bottom: 24px;
  line-height: 1.5;
}
