/* Collapsible post content + Read more */
.gc-read-more {
  position: relative;
}

.gc-read-more__content.is-collapsed {
  position: relative;
  max-height: 12em;
  overflow: hidden;
}

.gc-read-more__content.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4em;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.gc-read-more .read-more-button {
 margin-top: 1rem;
    padding: 0;
    border: none;
    border-bottom: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
    font: inherit;
    margin-bottom: 1rem;
}

.gc-read-more .read-more-button:hover,
.gc-read-more .read-more-button:focus {
  text-decoration: underline;
}
