.box, .box--half {
  /* Existing styles here */
  border-bottom: 1px solid #ccc; /* Adds a light grey line below each item */
  //margin-bottom: 10px; /* Adds some space below each item, adjust as needed */
}

/* Target every 2nd item to add a right border, creating the middle vertical line */
.box:nth-child(2n), .box--half:nth-child(2n) {
  border-left: 1px solid #ccc;
}

/* If you have a container wrapping your items, ensure its horizontal padding is set to 0 
   to prevent unexpected spacing on the sides. */
.container {
  padding-left: 0;
  padding-right: 0;
}
.box .box-inner {
  padding: 15px;
}
.boxlist {
 padding: 0px;
}
.section--list .boxlist {
   padding: 0px;
}