div.items_8,
div.items_6 {
  box-sizing: border-box;
  display: grid;
  gap: 1px;
}

div.items_8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

div.items_6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

div.items_8 > a,
div.items_6 > a {
  display: block;
  text-decoration: none;
}

div.items_8 > a:hover,
div.items_6 > a:hover {
  text-decoration: none !important;
}

div.items_8 div.bluebox,
div.items_6 div.bluebox {
  background-color: var(--lor-color);
  box-sizing: border-box;
  color: white;
  display: flex;
  flex-direction: column;
  font-size: 4em;
  font-weight: bold;
  justify-content: center;
  margin-right: 0;
  min-height: 90px;
  padding: 15px 1%;
  text-align: center;
  width: 100%;
  border-radius: 0;
}

div.items_8 div.blueboxTitle,
div.items_6 div.blueboxTitle {
  font-size: 0.33em;
  line-height: 1.2;
  margin-bottom: 12px;
}

div.items_8 span.blueboxValue,
div.items_6 span.blueboxValue {
  display: block;
  line-height: 1;
}

div.items_8 > :first-child div.bluebox,
div.items_8 > div.bluebox:first-child,
div.items_6 > :first-child div.bluebox,
div.items_6 > div.bluebox:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

div.items_8 > :last-child div.bluebox,
div.items_8 > div.bluebox:last-child,
div.items_6 > :last-child div.bluebox,
div.items_6 > div.bluebox:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

@media (max-width: 1000px) {
  div.items_8 div.bluebox,
  div.items_6 div.bluebox {
    font-size: 3em;
    min-height: 75px;
    padding: 12px 1%;
  }

}

@media (max-width: 900px) {
  div.items_8 div.bluebox,
  div.items_6 div.bluebox {
    font-size: 2.5em;
    min-height: 65px;
    padding: 10px 1%;
  }

}

@media (max-width: 750px) {
  div.items_8 div.bluebox,
  div.items_6 div.bluebox {
    min-height: 55px;
    padding: 5px 1%;
  }

  div.items_8 div.blueboxTitle,
  div.items_6 div.blueboxTitle {
    margin-bottom: 10px;
  }

  div.items_8 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  div.items_6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  div.items_8 div.bluebox,
  div.items_6 div.bluebox {
    font-size: 1.9em;
  }

  div.items_8 div.blueboxTitle,
  div.items_6 div.blueboxTitle {
    font-size: 0.45em;
  }

  div.items_8,
  div.items_6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

div.items_8 div.bluebox.clickable:hover,
div.items_6 div.bluebox.clickable:hover {
  cursor: pointer;
  background-color: var(--lor-color-dark);
}