/* ── NAV BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.breadcrumb a {
  color: var(--ink-4);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--gold); }
.bc-sep { color: var(--ink-4); font-size: 11px; }
.breadcrumb span:last-child { color: var(--ink-2); }

/* ── CARRIERS ── */
.carrier-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.c-label {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-4);
}
.carriers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.carrier {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--line2);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: .02em;
}

/* ── DEVICE TABLE ── */
.device-table {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
  padding: 4px 0;
}

.dev-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .18s;
  cursor: default;
}
.dev-row:last-child { border-bottom: none; }
.dev-row:hover { padding-left: 6px; }
.dev-row:hover .dev-brand { color: var(--gold); }

.dev-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}
.dev-brand {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .18s;
  white-space: nowrap;
}
.dev-model {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-3);
  white-space: nowrap;
}

.dev-carriers {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.dc {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
}
.dc.all {
  color: var(--gold);
  background: rgba(184,147,58,.07);
  border-color: rgba(184,147,58,.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .carrier-row { margin-bottom: 16px; }
  .dev-row:hover { padding-left: 0; }
  .dev-model { display: none; }
}
