/* 2x2 counter grid borders — first two items get bottom border, odd items get right border */
.aboutus-counter-grid > *:nth-child(-n+2) {
  @apply border-b pb-6 border-light-grey;
}
.aboutus-counter-grid > *:nth-child(n+3) {
  @apply pt-6;
}
.aboutus-counter-grid > *:nth-child(odd) {
  @apply border-r border-light-grey;
}
