.pmb-stats {
  padding: 34px 0;
}

.pmb-stats__grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 22px 28px;
  align-items: center;
}

.pmb-stats__center {
  grid-column: 2;
  grid-row: 2;
  text-align: center;
}

.pmb-stats__header-image {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.pmb-stats__header-image-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

.pmb-stats__brand {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .85;
}

.pmb-stats__title {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-top: 6px;
}

.pmb-stats__item {
  text-align: center;
}

.pmb-stats__value {
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
}

.pmb-stats__suffix {
  font-size: 0.45em;
  font-weight: 700;
  margin-left: 4px;
  vertical-align: top;
}

.pmb-stats__label {
  margin-top: 8px;
  font-size: 18px;
  opacity: .9;
}

/* pozycje: 4 rogi */
.pmb-stats__item--1 { grid-column: 1; grid-row: 1; }
.pmb-stats__item--2 { grid-column: 3; grid-row: 1; }
.pmb-stats__item--3 { grid-column: 1; grid-row: 3; }
.pmb-stats__item--4 { grid-column: 3; grid-row: 3; }

@media (max-width: 900px) {
  .pmb-stats__title { font-size: 38px; }
  .pmb-stats__value { font-size: 54px; }
}

@media (max-width: 680px) {
  .pmb-stats__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 18px;
  }

  .pmb-stats__center { grid-column: 1; grid-row: auto; }
  .pmb-stats__item { grid-column: 1; grid-row: auto; }

  .pmb-stats__title { font-size: 40px; }
  .pmb-stats__value { font-size: 52px; }
  .pmb-stats__label { font-size: 16px; }
}

.pmb-stats__prefix {
  font-weight: 600;
  margin-right: 4px;
  opacity: .9;
}