.indicators-second-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.indicators-second-section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.indicators-second-section-title {
  font-family: Satoshi, sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px; /* 112.5% */
  color: #F5F7FC;
}

.indicators-second-section-text {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  gap: 16px;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: rgb(240 243 250 / 80%);
}

.indicators-second-section-text p,
.indicators-second-section-item-value p,
.indicators-second-section-item-text p {
  padding: 0;
  margin: 0;
}

.indicators-second-section-text strong {
  padding: 0;
  margin: 0;
  font-family: Satoshi, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  color: #F5F7FC;
}

.indicators-second-section-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: custom-counter;
}

.indicators-second-section-item {
  position: relative;
  overflow: hidden;
  counter-increment: custom-counter;
  border-radius: 12px;
}

.indicators-second-section-item::before {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 4;
  display: block;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: rgb(240 243 250 / 24%);
  text-transform: uppercase;
  content: counter(custom-counter, decimal-leading-zero);
}

.indicators-second-section-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 320px;
  padding: 32px;
  background: rgb(14 16 21 / 40%);
  backdrop-filter: blur(60px);
  border-radius: 12px;
}

.indicators-second-section-item-value {
  font-family: Satoshi, sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px; /* 114.286% */
  color: #F5F7FC;
  text-transform: capitalize;
}

.indicators-second-section-item-text {
  font-family: Satoshi, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  color: rgb(240 243 250 / 80%);
}

@media screen and (min-width: 1560px) {
  .indicators-second-section {
    padding-top: 100px;
  }

  .indicators-second-section-title {
    max-width: initial;
  }
}

@media screen and (max-width: 1560px) {
  .indicators-second-section-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1440px) {
  .indicators-second-section {
    padding-top: clamp(40px, 0px + 8.3333vw, 120px);
    padding-bottom: clamp(40px, 0px + 8.3333vw, 120px);
  }

  .indicators-second-section-title {
    font-size: clamp(40px, 28px + 2.5vw, 64px);
    line-height: 1.12;
  }

  .indicators-second-section-text strong {
    font-size: clamp(20px, 18px + 0.4167vw, 24px);
    line-height: 1.33;
  }

  .indicators-second-section-item-value {
    font-size: clamp(32px, 20px + 2.5vw, 56px);
    line-height: 1.14;
  }

  .indicators-second-section-item-text {
    font-size: clamp(20px, 18px + 0.4167vw, 24px);
    line-height: 1.33;
  }
}

@media screen and (max-width: 768px) {
  .indicators-second-section-heading {
    flex-direction: column;
    gap: 24px;
  }

  .indicators-second-section-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .indicators-second-section-item {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 480px) {
  .indicators-second-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .indicators-second-section-title {
    font-size: 40px;
    line-height: 48px;
  }

  .indicators-second-section-text strong {
    font-size: 20px;
    line-height: 28px;
  }

  .indicators-second-section-item-value {
    font-size: 36px;
    line-height: 44px; /* 114.286% */
  }

  .indicators-second-section-item-text {
    font-size: 20px;
    line-height: 28px;
  }
}
