.read-more-story__preview {
  margin-bottom: 2rem;
}

.read-more-story__full {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.read-more-story.is-expanded .read-more-story__full {
  max-height: 9999px;
  opacity: 1;
}

.read-more-story__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  margin-top: 1.25em;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: inherit;
  color: inherit;
  line-height: 1.2;
}

.read-more-story__toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Hide "up" chevron when collapsed, hide "down" chevron when expanded */
.read-more-story__chevron--up {
  display: none;
}

.read-more-story.is-expanded .read-more-story__chevron:not(.read-more-story__chevron--up) {
  display: none;
}

.read-more-story.is-expanded .read-more-story__chevron--up {
  display: block;
}
