/* LinkGraph — Frontend Styles
 * Styles the .linkgraph-further-reading <p> tag inserted into post content.
 * Intentionally minimal so it inherits from the active theme.
 */

.linkgraph-further-reading {
  display: block;
  margin: 1.4em 0;
  padding: 0.65em 1em 0.65em 1.1em;
  border-left: 3px solid #0070c0;
  background-color: #f0f7ff;
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.5;
  border-radius: 0 3px 3px 0;
}

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

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

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .linkgraph-further-reading {
    background-color: rgba(0, 112, 192, 0.1);
    border-left-color: #4da6ff;
  }
  .linkgraph-further-reading a {
    color: #4da6ff;
  }
}
