/* ---- Breadcrumb ---- */
.ivx-breadcrumb {
  background: transparent;
  padding: 12px 0;
}

.ivx-breadcrumb .container {
  padding-left: 15px;
  padding-right: 15px;
}

.ivx-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  line-height: 1.4;
}

.ivx-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  color: #6b7280;
  margin-bottom: 0;
}

.ivx-breadcrumb__item+.ivx-breadcrumb__item::before {
  content: "\203A";
  margin: 0 8px;
  color: #b0b6bf;
  font-size: 14px;
}

.ivx-breadcrumb__item a {
  color: #6b7280;
  text-decoration: none;
  transition: color .15s;
}

.ivx-breadcrumb__item a:hover {
  color: #00B14F;
}

.ivx-breadcrumb__item--current {
  color: #111827;
  font-weight: 600;
}

.ivx-breadcrumb__item--current span {
  max-width: 60vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---- Byline (tác giả + ngày đăng/cập nhật) ---- */
.ivx-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  margin: 8px 0 16px;
}

.ivx-byline__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ivx-byline__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.ivx-byline__author a,
.ivx-byline__author strong {
  color: #111827;
  font-weight: 600;
  text-decoration: none;
}

.ivx-byline__author a:hover {
  color: #00B14F;
}

.ivx-byline__sep {
  color: #d1d5db;
}

.ivx-byline__date i {
  margin-right: 4px;
  color: #9ca3af;
}

.ivx-byline__date--updated {
  color: #00874d;
}