/* ========================================
   Aethel Research — Article Supplementary Styles
   The Day the Internet Held Its Breath
   These styles COMPLEMENT the main style.css
   They do not override it.
   ======================================== */

/* ---------- Article-specific container ---------- */
.article-cable-break {
  /* Nothing here — uses existing styles */
}

/* ---------- Tables (only inside this article) ---------- */
.page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-family: var(--font-mono, 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace);
  font-size: 0.85rem;
  border: 1px solid #ddd;
}

.page-body table thead th {
  text-align: left;
  padding: 0.7rem 0.8rem;
  background: #f5f5f5;
  border-bottom: 2px solid #ccc;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
}

.page-body table tbody td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid #eee;
}

.page-body table tbody tr:last-child td {
  border-bottom: none;
}

.page-body table tbody tr:hover td {
  background: #fafafa;
}

/* ---------- Callout box for key findings ---------- */
.page-body .callout {
  background: #f8f8f8;
  border-left: 3px solid #ccc;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 1rem;
}

.page-body .callout p {
  margin-bottom: 0;
}

/* ---------- Small utility for soft text ---------- */
.page-body .text-soft {
  font-size: 0.9rem;
  color: #666;
}

/* ---------- Responsive table ---------- */
@media (max-width: 768px) {
  .page-body table {
    font-size: 0.75rem;
  }

  .page-body table thead th,
  .page-body table tbody td {
    padding: 0.5rem 0.5rem;
  }
}