
  /* Scoped styles to ensure uniform sizing */
  .sm-container { max-width: 800px; margin: auto; }
  .uniform-section { padding: 40px 20px; }
  .uniform-section + .uniform-section { border-top: 1px solid #e5e7eb; }
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); height: 100%; }
  table.uniform-table { width: 100%; border-collapse: collapse; }
  table.uniform-table th, table.uniform-table td { border: 1px solid #ddd; padding: 12px; text-align: left; }
  table.uniform-table th { background: #f9fafb; }
  .prose { font-family: Cambria, serif; color: #333; line-height: 1.6; }
