/* Anchor link styling on headings */

.post h2 {
    position: relative;
  }
  
.header-anchor {
    position: absolute;
    left: -1.2em;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
.post h2:hover .header-anchor, .header-anchor:focus {
    opacity: 1;
  }
  
.header-anchor__symbol {
    font-weight: normal;
    font-size: 0.85em;
    color: var(--link-color);
  }