.ps-chiasm {
  background-color: rgba(51, 51, 51, 0.8);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 160%;
  padding: 8px 20px;
  border-style: solid;
  border-width: 3px;
  border-color: rgba(51, 51, 51, 0);
  border-radius: 2px;
  font-size: 20px;
  font-weight: 600;
}
#psalms-15-24 {
    display: flex;
    flex-direction: row; /* Default row layout */
    flex-wrap: wrap; /* Ensures it doesn't break unexpectedly */
    justify-content: left; /* Centers the row */
    gap: 0; /* Spaces out elements in row view */
    transition: all 0.5s ease-in-out;
  }

#psalms-15-24.chiasm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  flex-direction: column; /* Enables chiastic layout */
  max-height: 500px; /* Adjust as needed */
  opacity: 1;
}

#psalms-15-24.chiasm .ps-num:nth-child(1) {
  margin-left: calc(0em);
} /* Psalm 15 */
#psalms-15-24.chiasm .ps-num:nth-child(2) {
  margin-left: 2em;
} /* Psalm 16 */
#psalms-15-24.chiasm .ps-num:nth-child(3) {
  margin-left: 4em;
} /* Psalm 17 */
#psalms-15-24.chiasm .ps-num:nth-child(4) {
  margin-left: 6em;
} /* Psalm 18 */
#psalms-15-24.chiasm .ps-num:nth-child(5) {
  margin-left: 8em;
  font-weight: bold;
} /* Psalm 19 (center) */
#psalms-15-24.chiasm .ps-num:nth-child(6) {
  margin-left: 6em;
} /* Psalms 20–21 */
#psalms-15-24.chiasm .ps-num:nth-child(7) {
  margin-left: 4em;
} /* Psalm 22 */
#psalms-15-24.chiasm .ps-num:nth-child(8) {
  margin-left: 2em;
} /* Psalm 23 */
#psalms-15-24.chiasm .ps-num:nth-child(9) {
  margin-left: 0em;
} /* Psalm 24 */
