/* ===== Blog Post-Specific Styles (Single Posts) ===== */
body.single #primary a {
  color: #F84C5D !important;
  font-family: "FreightText", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.75rem;
}

body.single #primary a:hover {
  color: #7ED6D7 !important;
}
b, strong {
    font-weight: bolder;
    color: #424247;
}

body.single #primary ol,
body.single #primary ul,
body.single #primary menu {
  margin: 1em 0;
  padding-left: 40px;
}

/* Target ordered lists specifically */
body.single #primary ol {
  list-style-type: decimal !important; /* Forces numbers */
}

/* Target unordered lists specifically */
body.single #primary ul,
body.single #primary menu {
  list-style-type: disc !important; /* Forces bullets (optional) */
}

/* Headings */
body.single h1,
body.single h2,
body.single h3,
body.single h4,
body.single h5,
body.single h6 {
  font-weight: bold;
	font-size:revert!important;
	margin-bottom: 10px;
}

/* Images */
body.single img,
body.single svg,
body.single video,
body.single canvas,
body.single iframe {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

body.single img {
  margin: 0.75em 0;
}

/* Links */
body.single a {
  color: inherit;
}

/* Forms */
body.single button,
body.single input,
body.single select,
body.single textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

/* Tables */
body.single table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Quotes */
body.single blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 3px solid #ddd;
}

/* Horizontal Rule */
body.single hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid #ddd;
  margin: 1em 0;
}

/* Code/Pre */
body.single pre,
body.single code {
  font-family: monospace;
  font-size: 1em;
} 