.celot-statistics {
  width: 100%;
  background: #f4f5f6;
}

.celot-statistics__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  padding: 54px 24px;
}

.celot-statistics__item {
  min-width: 0;
  padding: 10px 18px;
  text-align: center;
}

.celot-statistics__value,
.celot-statistics__label {
  display: block;
}

.celot-statistics__value {
  color: #12548e;
  font-size: 46px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.celot-statistics__label {
  margin-top: 10px;
  color: #111827;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.celot-csr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.celot-csr-card {
  overflow: hidden;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  background: #fff;
}

.celot-csr-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.celot-csr-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.celot-csr-card__body {
  padding: 20px;
}

.celot-csr-card time {
  color: #667085;
  font-size: 13px;
}

.celot-csr-card h3 {
  margin: 7px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.celot-csr-card h3 a {
  color: #123f68;
  text-decoration: none;
}

.celot-csr-card p {
  margin: 0;
  color: #475467;
}

.celot-csr-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.celot-csr-gallery__item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 5px;
  background: #edf1f4;
}

.celot-csr-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.celot-csr-gallery__item:hover img,
.celot-csr-gallery__item:focus img {
  transform: scale(1.025);
}

.celot-gallery-lightbox {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 16px;
  padding: 64px 24px 28px;
  background: rgba(8, 14, 20, 0.94);
}

.celot-gallery-lightbox[hidden] {
  display: none;
}

.celot-gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 110px);
  margin: auto;
  object-fit: contain;
}

.celot-gallery-lightbox__close,
.celot-gallery-lightbox__nav {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.celot-gallery-lightbox__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  font-size: 27px;
  line-height: 1;
}

.celot-gallery-lightbox__nav {
  width: 52px;
  height: 52px;
  font-size: 31px;
  line-height: 1;
}

.celot-gallery-lightbox__counter {
  position: absolute;
  top: 27px;
  left: 24px;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 800px) {
  .celot-statistics__inner,
  .celot-csr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .celot-statistics__value {
    font-size: 42px;
  }

  .celot-csr-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .celot-statistics__inner,
  .celot-csr-grid {
    grid-template-columns: 1fr;
  }

  .celot-statistics__inner {
    padding: 30px 18px;
  }

  .celot-gallery-lightbox {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px;
    padding: 58px 8px 20px;
  }

  .celot-gallery-lightbox__nav {
    width: 40px;
    height: 48px;
  }
}
