/* PrimeWeb Blog Navigation (scoped) */
.pwbn {
  direction: rtl;
  width: 100%;
  display: grid;
  gap: 10px;
}

.pwbn__row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  padding: 6px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pwbn__row::-webkit-scrollbar { display: none; }

.pwbn__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.85);
  color: rgba(0,0,0,0.85);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.pwbn__chip:hover {
  transform: translateY(-1px);
  border-color: rgba(0,0,0,0.28);
  background: rgba(255,255,255,1);
}

.pwbn__chip:focus-visible {
  outline: 2px solid rgba(0,0,0,0.6);
  outline-offset: 2px;
}

.pwbn__chip.is-active {
  background: rgba(0,0,0,0.92);
  border-color: rgba(0,0,0,0.92);
  color: #fff;
}

.pwbn__chip.is-context {
  border-color: rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.05);
}

.pwbn__chip--sub {
  font-size: 13px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.7);
}
