/* Universal styling for SEE question paper content.
   Scoped to <article> (the question-paper main wrapper) so it
   doesn't leak onto blog / unrelated pages. */

article table {
  border-collapse: collapse;
  margin: 0.5rem 0;
  font-size: 0.95em;
}

article table th,
article table td {
  border: 1px solid currentColor;
  padding: 0.25rem 0.5rem;
  vertical-align: top;
}

article table th {
  font-weight: 600;
  text-align: left;
}

/* Reading-comprehension passage block.
   Used by English and Nepali papers — wrap the passage in
   <div class="passage">…</div> in the YAML question body. */
article .passage {
  /* border-left: 3px solid rgba(0, 0, 0, 0.25); */
  background: rgba(0, 0, 0, 0.03);
  padding: 0.5rem 0.75rem;
  margin: 0.5rem 0;
  border: 1px solid black;
  /* border-radius: 0.25rem; */
  line-height: 1.6;
}

.dark article .passage {
  border-left-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
