/* Page Breaking Signals — carte +50 % vs 720px, grille alignée (même logique que l’accueil) */
.bs-page { padding: 24px 0 48px; }
.bs-page-head { max-width: 1080px; margin: 0 auto 20px; padding: 0 16px; }
.bs-page-title {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--red);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bs-page-title::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
.bs-page-h1 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--t1);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.bs-page-lead { font-size: 0.95rem; color: var(--t2); margin: 0; line-height: 1.5; }
.bs-panel { max-width: 1080px; margin: 0 auto; padding: 0 16px; }
.bs-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.bs-list { list-style: none; margin: 0; padding: 0; }
/* Grille : heure | rubrique | point | titre — couleurs rubriques = bloc Rubriques index-v2 */
.bs-row {
  display: grid;
  grid-template-columns: 52px 104px 18px minmax(0, 1fr);
  gap: 12px 14px;
  align-items: start;
  padding: 14px 20px;
  border-bottom: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
a.bs-row:hover { background: #f9fafb; }
.bs-row:last-child { border-bottom: none; }
.bs-row--static { cursor: default; }
.bs-row--static:hover { background: transparent; }
.bs-col-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  padding-top: 4px;
}
.bs-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 5px 10px;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 104px;
  line-height: 1.2;
}
/* Aligné sur narr-nm index : SaaS #5b21b6, Chipset #b45309, Cyber #047857, Sov #be185d, GenAI = rouge marque */
.bs-pill--genai { background: rgba(214, 0, 42, 0.1); color: #d6002a; }
.bs-pill--saas { background: rgba(91, 33, 182, 0.1); color: #5b21b6; }
.bs-pill--chipset { background: rgba(180, 83, 9, 0.12); color: #b45309; }
.bs-pill--cyber { background: rgba(4, 120, 87, 0.1); color: #047857; }
.bs-pill--sov { background: rgba(190, 24, 93, 0.1); color: #be185d; }
.bs-pill--default { background: #f3f4f6; color: #55556a; }
.bs-col-dot {
  display: flex;
  justify-content: center;
  padding-top: 6px;
  width: 18px;
}
.bs-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: #d6002a;
  border-radius: 50%;
  flex-shrink: 0;
}
.bs-col-title {
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  color: #111827;
  line-height: 1.4;
}
.bs-title-text { font-weight: 400; }
a.bs-row .bs-col-title { color: #111827; }
.bs-meta { font-size: 11px; color: #6b7280; margin-top: 4px; font-weight: 400; line-height: 1.35; }
.bs-meta .brk-manual-country { font-weight: 700; color: #6b7280; letter-spacing: 0.02em; }
.bs-meta .brk-manual-source { font-style: italic; font-weight: 400; }
.bs-meta .brk-manual-sep { color: #9ca3af; font-style: normal; }
.bs-empty, .bs-loading {
  padding: 32px 20px;
  text-align: center;
  color: var(--t2);
  font-size: 0.95rem;
}
.bs-empty {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .bs-row {
    grid-template-columns: 48px 92px 14px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 14px;
  }
  .bs-pill { max-width: 92px; font-size: 7px; }
}
