.article-sources {
  margin-bottom: 2.5rem;
  padding: 2rem;
  border-radius: 1rem;
  background: #eef0e6;
}

.article-sources h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

.article-sources ol {
  margin: 0;
  padding-left: 1.3rem;
}

.article-sources li + li {
  margin-top: 1rem;
}

.article-sources a {
  color: #285331;
  font-weight: 750;
}

.article-sources span {
  display: block;
  margin-top: .2rem;
  color: var(--muted);
  font-size: .88rem;
}

.article-reader {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-top: 2rem;
  padding: clamp(1.4rem, 4vw, 2.25rem);
  border-radius: 1.25rem;
  background: #17291d;
  color: #fff;
}

.article-reader-copy .kicker {
  margin: 0 0 .55rem;
  color: #dce87b;
}

.article-reader-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.article-reader-copy > p:last-child {
  max-width: 42rem;
  margin: .7rem 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: .92rem;
}

.article-reader-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .65rem;
}

.reader-button {
  min-height: 2.9rem;
  padding: .75rem 1rem;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.reader-button-primary {
  border-color: #dce87b;
  background: #dce87b;
  color: #17291d;
}

.reader-button:hover:not(:disabled),
.reader-button:focus-visible {
  border-color: #fff;
  outline: 3px solid rgba(220, 232, 123, .45);
  outline-offset: 3px;
}

.reader-button:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.article-reader-status {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .85rem;
}

.article-reader[data-reader-unsupported] .article-reader-controls {
  display: none;
}

@media (max-width: 760px) {
  .article-reader {
    grid-template-columns: 1fr;
  }

  .article-reader-controls {
    justify-content: flex-start;
  }
}
