/* VG Perelinkovka v3 — breadcrumbs styles */
/* Date: 2026-05-18, Chat D Phase 4.5 */
.breadcrumbs {
  background: #fafafa;
  border-bottom: 1px solid #eee;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  margin: 0;
  max-width: 1200px;
  list-style: none;
  font-size: 13px;
  font-family: inherit;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: #999;
  font-weight: normal;
}
.breadcrumbs a {
  color: #555;
  text-decoration: none;
  transition: color .15s ease;
}
.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: #e2231a;
  text-decoration: underline;
}
.breadcrumbs li:last-child span {
  color: #111;
  font-weight: 500;
}
@media (max-width: 640px) {
  .breadcrumbs ol {
    font-size: 12px;
    padding: 10px 14px;
    gap: 6px;
  }
  .breadcrumbs li:not(:last-child)::after {
    margin-left: 6px;
  }
}
