/* LinkGraph — Frontend Styles
 * Styles the .linkgraph-further-reading <p> tag inserted into post content.
 */

.linkgraph-further-reading {
  display: block;
  margin: 1.4em 0;
  padding: 0.65em 1em;
  background-color: transparent;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  border-left: none;
  border-right: none;
  font-style: italic;
  font-size: 0.9em;
  line-height: 1.5;
  border-radius: 0;
  text-align: center;
}

.linkgraph-further-reading a {
  color: #c0392b;
  font-weight: 600;
  text-decoration: none;
}

.linkgraph-further-reading a:hover {
  text-decoration: underline;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .linkgraph-further-reading {
    background-color: transparent;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-left: none;
    font-size: 12px !important;
    font-style: italic;
    text-align: center;
  }
}
