/* Make wide tables scroll horizontally inside post content */
.post__content table {
  display: block;
  /* width: max-content; */
  /* max-width: none; */
}

.post__content table {
  overflow-x: scroll;
}

/* Wrap table in a scrolling container without breaking layout */
/* .post__content {
  overflow-x: auto;
} */

/* Optional: keep cells from squishing too hard on narrow screens */
.post__content th,
.post__content td {
  white-space: nowrap;
}
