.continent-box-list {
  margin-top: -$margin-normal;
  margin-bottom: $margin-enterprise;

  &:last-child {
    margin-bottom: 0;
  }
}

.country-box-list {
  display: flex;
  flex-direction: column;

  @include breakpoint(sm) {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  a:hover {
    text-decoration: none;
  }

  > div {
    margin-bottom: $margin-half;

    @include breakpoint(sm) {
      margin-bottom: $margin-normal;
    }

    @include breakpoint(sm) {
      flex-basis: calc(#{percentage(1 / 2)} - #{$margin-half});
    }

    @include breakpoint(lg) {
      flex-basis: calc(#{percentage(1 / 3)} - #{$margin-half});

      &:last-child:nth-child(3n + 2) {
        margin: 0 calc(#{percentage(1 / 3)} + 3px) $margin-normal 0;
      }
    }
  }
}
