.yct-statistic-grid .statistic {
  margin-bottom: var(--wp--preset--spacing--30);
}
.yct-statistic-grid .statistic .statistic-title {
  margin: 0;
  font-size: var(--wp--preset--font-size--20);
  text-align: center;
  color: var(--wp--preset--color--secondary);
}
.yct-statistic-grid .statistic .statistic-number {
  font-size: var(--wp--preset--font-size--30);
  font-weight: 600;
}
.yct-statistic-grid .statistic .statistic-block {
  background-color: #E5DFBC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--10);
  border-radius: 25px 0;
  color: var(--wp--preset--color--secondary);
}
@media (min-width: 768px) {
  .yct-statistic-grid .statistic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--wp--preset--spacing--30);
  }
  .yct-statistic-grid .statistic .statistic-block {
    width: 35%;
  }
  .yct-statistic-grid .statistic .statistic-phrase {
    width: 65%;
  }
  .yct-statistic-grid .statistic:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .yct-statistic-grid .statistic:nth-child(odd) .statistic-block {
    border-radius: 0 25px;
  }
}