/**
* Block Name: facts_and_figures
*/

/* Default */

section.facts_and_figures {
  background: #f9f9f9;
}

section.facts_and_figures h3 {
  color: #ffb200;
  font-weight: 700;
}

section.facts_and_figures .entry {
  border-bottom: 1px solid #c7d1d9;
}

section.facts_and_figures .entry:last-of-type {
  border-bottom: none;
}

@media (max-width: 767px) {
  section.facts_and_figures {
    padding-top: 50px;
    padding-bottom: 0;
  }

  section.facts_and_figures .row.mb_50 {
    margin-bottom: 0;
  }
}

/* Tile */

section.facts_and_figures.tile {
  background: #fff;
}

section.facts_and_figures.tile .facts_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-gap: 30px;
}

section.facts_and_figures.tile .entry {
  border: none;
  background-color: #f7f8f9;
  padding: 30px;
  border-radius: 15px;
}

@media (max-width: 992px) {
  section.facts_and_figures.tile .facts_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 578px) {
  section.facts_and_figures.tile .facts_grid {
    grid-template-columns: 1fr;
  }
}
