.theories-breadcrumbs {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.theories-breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  gap: var(--space-2);
}

.theories-breadcrumbs li::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--color-text-muted);
}

.theories-breadcrumbs li:last-child::after {
  content: "";
}

.theories-hero {
  padding: var(--space-6);
}

.theories-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
}

.theories-hero-lead {
  max-width: 40rem;
}

.theories-hero-actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.theories-hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.theories-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theories-overview-grid {
  margin-top: var(--space-4);
}

.theories-chat-section .chat-thread {
  margin-top: var(--space-3);
}

.theories-suspect-table-wrapper {
  padding: var(--space-4);
  overflow-x: auto;
}

.theories-suspect-table {
  width: 100%;
  border-spacing: 0;
}

.theories-suspect-table th,
.theories-suspect-table td {
  padding: var(--space-3);
  font-size: var(--font-size-sm);
  vertical-align: top;
}

.theories-suspect-table thead th {
  text-align: left;
  border-bottom: 1px solid var(--color-border-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.theories-suspect-table tbody tr:nth-child(2n) {
  background: rgba(9, 13, 22, 0.7);
}

.theories-timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: flex-start;
}

.theories-timeline-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.theories-timeline-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theories-missing-links-grid {
  margin-top: var(--space-4);
}

.theories-vote-form {
  padding: var(--space-4);
}

.theories-vote-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.theories-vote-option {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.theories-vote-option input[type="radio"] {
  margin-top: 0.3rem;
}

.theories-vote-option-body {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: rgba(7, 10, 18, 0.95);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.theories-vote-option:hover .theories-vote-option-body {
  border-color: rgba(106, 156, 255, 0.6);
  box-shadow: var(--shadow-subtle);
  background: rgba(11, 16, 26, 0.98);
}

.theories-vote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.theories-vote-score {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.theories-vote-actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.theories-vote-actions .small {
  font-size: var(--font-size-xs);
}

.theories-feedback-hint h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.theories-compare-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: var(--space-6);
  align-items: flex-start;
}

.theories-compare-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.theories-compare-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theories-compare-panel {
  padding: var(--space-4);
}

.theories-consensus ul {
  list-style: none;
  padding-left: 0;
}

.theories-consensus li + li {
  margin-top: var(--space-2);
}

.theories-summary-section .card {
  height: 100%;
}

@media (max-width: 960px) {
  .theories-hero-grid,
  .theories-timeline-layout,
  .theories-compare-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .theories-vote-options {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .theories-hero {
    padding: var(--space-4);
  }

  .theories-suspect-table th,
  .theories-suspect-table td {
    padding: var(--space-2);
  }

  .theories-vote-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
