.article-breadcrumb {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  color: #52606d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.article-breadcrumb__list {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-breadcrumb__item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.article-breadcrumb__item:not(:last-child)::after {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-top: 1.5px solid #94a3b8;
  border-right: 1.5px solid #94a3b8;
  content: "";
  transform: rotate(45deg);
}

.article-breadcrumb__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #2f6f3e;
  text-decoration: underline;
  text-decoration-color: #b7d8be;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.article-breadcrumb__link:hover {
  color: #245832;
  text-decoration-color: currentColor;
}

.article-breadcrumb__link:focus-visible {
  border-radius: 4px;
  outline: 2px solid #2f6f3e;
  outline-offset: 3px;
}

.article-breadcrumb__current {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #475569;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .article-breadcrumb {
    margin-top: 12px;
    font-size: 12px;
  }

  .article-breadcrumb__list,
  .article-breadcrumb__item {
    gap: 6px;
  }
}
