/* Prophecy color variables */
:root {
  --torah: #b8860b;
  --torah-bg: #fdf8eb;
  --prophets: #c0392b;
  --prophets-bg: #fdf0ee;
  --psalms: #2c3e80;
  --psalms-bg: #eef0f9;
  --fulfillment: #27ae60;
  --fulfillment-bg: #eef9f2;
}

/* Card color overrides */
.card--torah { --cat: var(--torah); --cat-bg: var(--torah-bg); }

.card--prophets { --cat: var(--prophets); --cat-bg: var(--prophets-bg); }

.card--psalms { --cat: var(--psalms); --cat-bg: var(--psalms-bg); }

/* Fulfillment block */
.fulfillment {
  background: var(--fulfillment-bg);
  border-left: 3px solid var(--fulfillment);
  padding: 10px 14px;
  margin: 10px 0;
  border-radius: 0 6px 6px 0;
  font-size: 0.92em;
}

.fulfillment strong {
  color: var(--fulfillment);
}

/* Prophecy comparison table */
.prophecy-compare th {
  background: var(--text);
  color: #fff;
  cursor: pointer;
}

.prophecy-compare th:hover { background: #3d2a1e; }

/* Color code table cells */
.prophecy-compare td:nth-child(2) { color: var(--torah); font-weight: 500; }
.prophecy-compare td:nth-child(4) { color: var(--fulfillment); font-weight: 500; }

/* Overview key verse list */
.key-verses {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}

.key-verses li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93em;
}

.key-verses li:last-child { border-bottom: none; }

@media (max-width: 600px) {
  .prophecy-compare td:first-child { white-space: normal; }
}
