/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
.sn_article_bottom__tags {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.sn_article_bottom__tags .btn {
  --bs-btn-color: currentColor;
  --bs-btn-border-color: #009640;
  --bs-btn-hover-bg: var(--bs-btn-border-color);
}
.sn_article_bottom__author {
  display: flex;
  gap: 1.25rem;
}
@media only screen and (min-width: 0em) and (max-width: 35.99em) {
  .sn_article_bottom__author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.sn_article_bottom__author__avatar {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 1;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
}
.sn_article_bottom__author__info {
  flex-grow: 1;
}
.sn_article_bottom__author__info .intro {
  text-transform: uppercase;
  color: #999999;
}
.sn_article_bottom__author__info .intro {
  line-height: 1;
}
.sn_article_bottom__author__info .bio {
  text-wrap: balance;
}