.full-width-layout {
  display: flex;
  align-items: var(--full-page-section-content-aligment, center);
  text-align: center;
  background-color: var(--section-background-color);
  padding: var(--full-page-section-padding);
  flex-direction: column;
}

.full-width-layout__content {
  display: flex;
  margin-left: calc(var(--hero-gutter) - var(--full-page-content-gutter));
  flex-direction: column;
  max-width: var(--section-content-max-width, 1130px);
}

.old-way {
  background: linear-gradient(#090622, #171336);
  padding-bottom: 0;
}

.text-gradient {
  background: linear-gradient(0deg, #feba01, #f22089);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.new-way {
  background-color: #171336;
  gap: 48px;

  .full-width-layout__content {
    gap: 48px;
  }
}

.new-way img {
  margin-bottom: var(--old-way-image-margin, 64px);
  width: 100%;
}

.old-way h2 {
  margin-bottom: var(--old-way-heading-margin, 24px);
}

.old-way img {
  margin-top: var(--old-way-image-margin, 30px);
  width: 100%;
}

.old-way img.mobile {
  max-width: 300px;
}

.new-way img.mobile {
  max-width: 300px;
}

.metrics {
  display: flex;
  width: 100%;
  background-color: #291d50;
  text-align: left;
}

.metrics .banner {
  width: 100%;

  /* background: var(--royal-800); */
  background-color: #291d50;
  align-content: center;
  padding: 0 76px 0 67px;
  flex: 1;
}

.metrics .banner img {
  width: 100px;
  height: auto;
}

.metrics .list {
  width: 100%;

  /* background: var(--royal-600); */
  background-color: #52338c;
  padding: 37px 74px 37px 25px;
  flex: 2;
}

.metrics .list li {
  font-weight: 200;
}

.metrics .list h3 {
  margin-bottom: 17px;
  font-size: 24px;
}

.metrics-grid {
  display: grid;
  grid-template: "metrics-top metrics-top" 230px "metrics-bottom-left metrics-bottom-right" 230px / 1fr 1fr;
  gap: 30px 60px;
  grid-auto-flow: row;
}

.metrics-top {
  grid-area: metrics-top;
}

.metrics-top ol {
  columns: 2;
}

.metrics-bottom-left {
  grid-area: metrics-bottom-left;
}

.metrics-bottom-right {
  grid-area: metrics-bottom-right;
}

.metrics .badge {
  font-weight: 800;
  margin-bottom: 20px;
  width: 30px;
  height: 30px;
  background-color: #ff007a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
