/* MS Project Stats block. Mirrors the static MS Project landing stats section. */
.ms-project-stats-section__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.ms-project-stats-section__inner > .acf-innerblocks-container,
.editor-styles-wrapper .ms-project-stats-section__inner > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: contents;
}

.ms-project-stats-section__title {
  text-align: center;
  margin: 0 0 40px;
}

.ms-project-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.ms-project-stat-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #FAFAFA;
  border-radius: 12px;
  padding: 44px;
  box-sizing: border-box;
}

.ms-project-stat-card__label-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ms-project-stat-card__number-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ms-project-stat-card__number-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ms-project-stat-card__label {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  color: #3C3C73;
  margin: 0;
}

.ms-project-stat-card__intro {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #808080;
  margin: 0;
}

.ms-project-stat-card__number {
  font-weight: 700;
  font-size: 56px;
  line-height: 56px;
  color: #3C3C73;
  margin: 0;
}

.ms-project-stat-card__number-label {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #3C3C73;
  margin: 0;
}

.ms-project-stat-card__divider {
  display: block;
  width: 100%;
  border: 0;
  border-top: 1px dashed #B6B6B6;
  margin: 0;
}

.ms-project-stat-card__note {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #3C3C73;
  margin: 0;
}

.ms-project-guarantee-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  background: #202060;
  border-radius: 12px;
  padding: 44px;
  box-sizing: border-box;
}

.ms-project-guarantee-banner__figure {
  font-weight: 700;
  font-size: 56px;
  line-height: 56px;
  color: #F4F5FC;
  margin: 0;
}

.ms-project-guarantee-banner__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  margin: 0;
  max-width: 800px;
  padding-bottom: 0;
}

.ms-project-guarantee-banner__text strong {
  font-weight: 700;
}

@media (max-width: 1200px) {
  .ms-project-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ms-project-stats-grid {
    grid-template-columns: 1fr;
  }

  .ms-project-stat-card {
    padding: 24px;
  }

  .ms-project-guarantee-banner {
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
  }
}
