

#article {
  background: #F9F9F9;
  margin-top: -20px;
  padding: 20px 0;
}
#article #article_content {
  background: #ffffff;
  margin-bottom: 20px;
  padding: 30px;
}
#article #article_content .article_title h1.section-heading {
  color: #565656;
  font-size: 1.5rem;
}
#article #article_content .author_date {
  color: #A3A3A3;
  fill: #A3A3A3;
  margin: 10px 0;
  font-size: 14px;
}
#article #article_content .author_date > div {
  display: inline-block;
}
#article #article_content .author_date svg, #article #article_content .author_date span {
  vertical-align: middle;
}
#article #article_content .article_author:after {
  content: "";
  border-right: 1px solid #A3A3A3;
  display: inline-block;
  height: 16px;
  margin: 0 8px 0 10px;
  vertical-align: middle;
}
#article #article_content .article_content {
  margin: 30px 0;
}
#article #article_content .article_tags_group {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px 0 10px;
}
#article #article_content .article_tags_group .tag_title {
  margin-right: 20px;
}
#article #article_content .article_tags_group .article_tags a {
  border: 1px solid #A3A3A3;
  border-radius: 5px;
  color: #A3A3A3;
  transition: all ease-in-out 0.15s;
  text-align: center;
}
#article #article_content .article_tags_group .article_tags a:hover {
  background: #A3A3A3;
  color: #ffffff;
}
#article #article_content .article_tags_group .article_tags a {
  border-radius: 15px;
  display: inline-block;
  font-size: 0.9rem;
  margin: 5px;
  padding: 5px 15px;
  text-decoration: none;
}
#article .blog_info .row {
  margin: -10px -15px;
}
#article .blog_info .row .col-12 {
  padding: 10px 15px;
}
#article #all_blogs_title, #article #blog_tags, #article #selected_blog, #article #recent_articles {
  background: #ffffff;
  padding: 15px;
}
#article #all_blogs_title .blog_title, #article #blog_tags .blog_title, #article #selected_blog .blog_title, #article #recent_articles .blog_title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0 -15px 15px;
  padding: 0 15px 15px;
}
#article #all_blogs_title .blog_title > .div, #article #blog_tags .blog_title > .div, #article #selected_blog .blog_title > .div, #article #recent_articles .blog_title > .div {
  font-size: 1.1rem;
  line-height: 1.3rem;
}
#article #all_blogs_title .mobile_blogs_group, #article #blog_tags .mobile_blogs_group, #article #selected_blog .mobile_blogs_group, #article #recent_articles .mobile_blogs_group {
  display: none;
}
#article #all_blogs_title a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  margin: 15px 12px auto;
  color: #A3A3A3;
}
#article #blog_tags a {
  display: inline-block;
  border: 1px solid #A3A3A3;
  border-radius: 5px;
  color: #A3A3A3;
  transition: all ease-in-out 0.15s;
  text-align: center;
}
#article #blog_tags a:hover {
  background: #A3A3A3;
  color: #ffffff;
}
#article #blog_tags a {
  border-radius: 13px;
  font-size: 0.9rem;
  margin: 3px 0;
  padding: 3px 8px;
  text-decoration: none;
}
#article #selected_blog .selected_article {
  grid-template-rows: auto 50px 25px;
  grid-template-areas: "image" "title" "date";
}
#article #selected_blog .selected_article .article_image a {
  min-height: 150px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#article #selected_blog .selected_article .article_image a img {
  width: 100%;
}
#article #selected_blog .selected_article .article_title a {
  color: #565656;
}
#article #selected_blog .selected_article .article_date {
  color: #808080;
  font-size: 14px;
}
#article #selected_blog .selected_article .article_tags {
  display: none;
}
#article #selected_blog .selected_article .article_title h3 {
  font-size: 1rem;
}
#article #recent_articles .recent_articles_group a {
  display: block;
  text-decoration: none;
  color: #565656;
  font-size: 16px;
  font-weight: 400;
  margin: 15px 0 0;
}
#article #recent_articles .recent_articles_group a span.circle_number {
  background: #837c3e;
  border-radius: 50%;
  color: #565656;
  width: 26px;
  height: 26px;
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
  text-align: center;
  margin-right: 3px;
}
@media (max-width: 991px) {
  #article #article #article_content .article_tags_group .article_tags a {
    margin: 3px 0px;
  }
}
@media (max-width: 768px) {
  #article #article h1 {
    font-size: 25px;
    line-height: 30px;
  }
  #article #article #article_content .article_content {
    margin: 20px 0;
  }
}

/* ===== Breadcrumb fixes ===== */
/* Hide the ::before pseudo-element for ALL breadcrumb items (removes "1" badge and circle backgrounds) */
ol.breadcrumb .breadcrumb-item::before {
  display: none !important;
}

/* Remove the extra padding-left from first item (was reserved for the badge) */
ol.breadcrumb .breadcrumb-item:first-child {
  padding-left: 0 !important;
}

/* Add simple ">" separator between items using a different approach */
ol.breadcrumb .breadcrumb-item + .breadcrumb-item::after {
  content: "" !important;
}
ol.breadcrumb .breadcrumb-item:not(:first-child)::before {
  display: inline !important;
  content: ">" !important;
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  color: #565656 !important;
  position: static !important;
  font-size: inherit !important;
  padding: 0 4px !important;
}

/* ===== Expand blog article container to match breadcrumb width (1140px) ===== */
#article .container {
  max-width: 1140px !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Breadcrumb: hide the ::before badge on first item (removes 1 badge) */
ol.breadcrumb .breadcrumb-item:first-child::before {
  display: none !important;
}

/* Breadcrumb: fix separator items - no dark circle, just plain text */
ol.breadcrumb .breadcrumb-item:not(:first-child)::before {
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  color: #565656 !important;
  position: static !important;
  display: inline !important;
  font-size: inherit !important;
  padding: 0 4px !important;
}

/* Breadcrumb: remove extra padding reserved for the badge */
ol.breadcrumb .breadcrumb-item:first-child {
  padding-left: 0 !important;
}

/* Expand blog article container to match breadcrumb width */
#article .container {
  max-width: 1140px !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
/* Hide numbered circle badges in recent articles sidebar */
#article .circle_number {
  display: none !important;
}

/* Fix: article inline styles pollute global li::before - reset navbar/footer li */
header li::before,
nav li::before,
footer li::before,
.navbar li::before,
.drawer-nav li::before,
.sidebar li::before {
  content: none !important;
  display: none !important;
}

/* Reference list: remove ::before circle badge, plain body text style */
.references .ref-list li::before {
  display: none !important;
}
.references .ref-list li {
  padding-left: 0 !important;
  list-style: none !important;
  margin-bottom: 6px !important;
  font-size: inherit !important;
  color: inherit !important;
  font-weight: inherit !important;
  background: none !important;
}

/* ref-num span: reset to plain inline text, no circle badge */
.references .ref-num {
  display: inline !important;
  background: none !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 3px 0 0 !important;
  line-height: inherit !important;
}
