My objective is:
https://i.sstatic.net/UIPsq.png
However, the current layout appears like this (the issue isn't the bottom margins, I've already decided they should be smaller):
https://i.sstatic.net/GbLFE.png
The problem lies in the gutter size which is determined by padding, as indicated by the grey area in the image above. I want each section to have a consistent size of 15px.
The specific code I am mentioning is where the 'groups-margin' class sets the bottom margin for each button:
<div class="row">
<div class="col-sm-6 groups-margin">
<a class="btn btn-primary btn-large btn-block outline" href="#">Group 1 <span class="group-stations-count">Stations: 3</span></a>
<a class="btn btn-primary btn-large btn-block outline" href="#">Group 2 <span class="group-stations-count">Stations: 1</span></a>
<a class="btn btn-primary btn-large btn-block outline" href="#">Group 3 <span class="group-stations-count">Stations: 3</span></a>
<a class="btn btn-primary btn-large btn-block outline" href="#">Group 4 <span class="group-stations-count">Stations: 6</span></a>
</div>
<div class="col-sm-6 groups-margin">
<a class="btn btn-primary btn-large btn-block outline" href="#">Group 5 <span class="group-stations-count">Stations: 4</span></a>
<a class="btn btn-primary btn-large btn-block outline" href="#">Group 6 <span class="group-stations-count">Stations: 6</span></a>
<a class="btn btn-primary btn-large btn-block outline" href="#">Group 7 <span class="group-stations-count">Stations: 7</span></a>
<a class="btn btn-primary btn-large btn-block outline" href="#">Group 8 <span class="group-stations-count">Stations: 2</span></a>
</div>
</div>