.article-post-head{
    position: relative;
}
.article-post__badge{
    padding: 0.25rem 1rem;
    font-family: 'Anton', 'Antonio', sans-serif;
    font-size: 1rem;
    color: #fff;
    line-height: 1.375;
    background-color: var(--bs-primary);
    display: inline-flex;
    margin-bottom: .5rem;
}
.article-post__title{
    color: var(--bs-primary);
    line-height: 1.375;
    margin-bottom: 1.5rem;
}
.article-post-body{
    line-height: 1.5;
    font-family: 'Barlow Condensed', sans-serif;
    padding: 1rem;
    background-color: #fff;
    border: 8px solid;
    border-image: url(../../img/base-charcoal-border.svg) 24;
    border-image-outset: 8px;
}
.article-post-body .article-thumbnail {
  position: relative;
  display: block;
  mask-image: url('../../img/article-img-mask.svg');
}
.article-post-body ul,
.article-post-body ol{
    padding-left: 1rem;
    margin-bottom: 1rem;
    margin-top: .5rem;
}
.article-post-body ol ol ol ol ol {
    list-style-type: upper-roman;
}
.article-post-body ol ol ol ol {
    list-style-type: upper-alpha;
}

.article-post-body ol ol ol {
    list-style-type: lower-roman;
}

.article-post-body ol ol {
    list-style-type: lower-alpha;
}

.article-post-body ul {
    list-style-type: disc;
}
.article-post-body p{
    margin-top: 1rem;
    margin-bottom: 0;
}
.article-post-body li > p{
    margin: 0.25rem;
}
.article-post-body h1,
.article-post-body h2,
.article-post-body h3,
.article-post-body h4,
.article-post-body h5,
.article-post-body h6{
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--bs-primary);
}
.article-post-body p > img, .article-post-body > img, .article-post-body figure > img {
  height: auto;
}
.article-post-related{
    position: sticky;
    top: 112px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.article-post-related__title{
    color: var(--bs-primary);
    font-size: 2rem;
    border-bottom: 4px dashed white;
    padding-bottom: 1rem;
}
.article-post__img{
    width: 100%;
}
.related-post{
    display: block;
    /* padding: .25rem; */
    border: 8px solid;
    border-image: url(../../img/base-charcoal-border.svg) 24;
    border-image-outset: 8px;
    background-color: #fff;
    text-decoration: none;
}
.related-post__title{
    color: var(--bs-primary);
    font-size: 1.25rem;
    text-decoration: none;
}
.related-post__img{
  display: block;
  mask-image: url('../../img/article-img-mask.svg');
}
.related-post__info{
    font-size: 0.875rem;
    display: block;
    line-height: 1.25;
}
/* tagcloud styling with hover */
.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tagcloud > a {
  display: inline-block;
  padding-inline: 0.125rem;
  background-color: #fff;
  color: var(--bs-primary);
  border: 4px solid;
  border-image: url(../../img/base-charcoal-border.svg) 4;
  border-image-outset: 2px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.25s ease;
  font-weight: 500;
}
.tagcloud > a:hover {
  color: var(--hilo-pink);
  transform: translateY(-2px);
}
.article-post-body table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.article-post-body table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.article-post-body table > tbody {
  vertical-align: inherit;
}
.article-post-body table > thead {
  vertical-align: bottom;
}

.article-post-body table > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.article-post-body table > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.article-post__meta { display: flex; align-items: center; gap: .5rem; margin-top: .75rem; color: #6c757d; font-size: .875rem; }
.apm-wrap { font-weight: 600; color: var(--bs-accent); }
.article-post__date.small { font-weight: 400; color: #6c757d; }