/* جدول عنوان – خروجی pp-table بدون لینک/strong */
.pp-table-container { margin: 24px 0 8px; }
.pp-table { width: 100%; border-collapse: collapse; background: #fff; table-layout: fixed; }
.pp-table td { border: 1px solid #e5e7eb; padding: 12px 10px; text-align: center; vertical-align: middle; }
.pp-table .pp-h1 .pp-table-cell-text { font-weight: 700; }
.pp-table .pp-h2 .pp-table-cell-text { font-weight: 600; }
.pp-table .pp-h3 .pp-table-cell-text { font-weight: 500; }
.pp-table .pp-table-cell-text { display: inline-block; line-height: 1.8; font-size: 15px; color: #111827; }
@media (max-width: 560px) { .pp-table td { padding: 10px 8px; } }
/* Unified grid: desktop 3 cols, mobile 2 cols; centered content; RTL */
.pp-table-container { margin: 24px 0 8px; overflow-x: visible; }
.jo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: stretch;
  align-items: stretch;
  gap: 0;
  width: 100%;
  direction: rtl;
}
.jo-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #e5e7eb;
  padding: 12px 10px;
  box-sizing: border-box;
}
.pp-table .pp-h1 .pp-table-cell-text { font-weight: 700; }
.pp-table .pp-h2 .pp-table-cell-text { font-weight: 600; }
.pp-table .pp-h3 .pp-table-cell-text { font-weight: 500; }
.pp-table .pp-table-cell-text, .jo-cell .pp-table-cell-text { display:inline-block; line-height:1.8; font-size:15px; color:#111827; text-align:center; }
@media (max-width: 768px) {
  .jo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
