﻿.breadcrumb {
  display: flex;
  min-height: 1.2rem;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  color: #7e8490;
  font-size: 0.9rem;
  line-height: 1.4;
}

.breadcrumb a {
  transition: color 220ms ease;
}

.breadcrumb a:hover {
  color: #087dff;
}

@media (max-width: 640px) {
  .breadcrumb {
    flex-wrap: wrap;
    gap: 0.48rem;
    font-size: 0.78rem;
  }
  .news-detail-page .breadcrumb {
    gap: 0.45rem;
    min-height: 0;
    font-size: 0.58rem;
    white-space: nowrap;
  }
}

