/* Headers, links, lists, blockquotes, hr */

h2 {
  display: block;
  position: relative;
  font-weight: normal; 
}

h2::after {
  content: '';
  display: block;
  width: inherit;
  height: 2px;
  background-color: var(--link-color);
  margin-top: 1px; 
}

h3 {
  display: inline-block;
  position: relative;
  font-weight: normal; 
}

h3::after {
  content: '';
  display: block;
  width: inherit;
  height: 1px;
  background-color: var(--link-color);
  margin-top: 1px; 
}

h1, h2, h3, h4, h5, h6 {
    margin: 1.25rem 0 0.5rem;
    font-weight: 600;
  }
  
p, ol, pre, blockquote {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
  }
  
ul, ol {
    padding-left: 1.5rem;
    margin-left: 0.5rem;
  }
  
a {
    color: var(--link-color);
    text-decoration: none;
  }
  
a:hover {
    text-decoration: underline;
  }
  
blockquote {
    border-left: 4px solid var(--link-color);
    padding-left: 1rem;
    color: var(--text-color);
    font-style: italic;
  }
  
hr {
    border: none;
    border-top: 2px solid var(--hr-color);
    margin: var(--spacing) 0;
  }
  
code {
    background: var(--code-bg);
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: monospace;
  }
  
pre {
    background: var(--pre-bg);
    padding: 1em;
    overflow-x: auto;
    border-radius: 4px;
    margin-bottom: 1.5rem;
  }