.post-content a {
    color: var(--brand-color-primary);
  }
  .post-content p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
  .post-content ul,
  .post-content ol {
    padding: 1rem;
  }
  .post-content ul li {
    position: relative;
      margin: 1rem;
}
  .post-content ul li:before {
    font-weight: 300;
        content: "o";
        font-size: 1rem;
        position: absolute;
        text-align: center;
        width: 1rem;
        height: 1rem;
        left: -1.125rem;
        top: -0.125rem;
        color: var(--brand-color-primary);
}
  .post-content ol {
    font-size: .875rem;
    counter-reset: item;
}
  .post-content ol li {
    position: relative;
      counter-increment: item;
      margin: 1.125rem;
}
  .post-content ol li:before {
    font-weight: 600;
        content: counter(item);
        padding-top: 0.4rem;
        position: absolute;
        text-align: center;
        left: -1.125rem;
        top: -0.5rem;
        height: 2px;
        width: 1rem;
        border-top: 2px solid var(--brand-color-primary);
}
  .post-content hr {
    margin: 2rem 0 2rem 2rem;
    width: 20%;
  }

