.usp-block { 
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin: 0 auto; 
  height: 100%; 
  background-color: var(--it-grey);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
}

.usp-block.awards h3 {
  text-align: center;
  color: #ffffff;
  max-width: 100%;
  font-size: 2rem;
  margin-top: 100px;
}

.usp-block.default h3 {
  text-align: center;
  color: #ffffff;
  font-size: 21px;
  margin: 30px auto 25px;
  max-width: 300px;
}

.usp-block .usps {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  box-sizing: border-box;
  max-width: var(--layout-screen);
  margin: 0 auto;
}

.usp-block.awards .usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  padding-bottom: 40px;
  padding-top: 30px;
}

.usp-block .usps .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.usp-block .usps .item > img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.usp-block.awards .usps .item > img {
  width: 60px;
  height: 60px;
}

.usp-block .usps .item > p {
  font-size: 19px;
  line-height: 26px;
  margin-top: 15px;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  max-width: 100%;
}

.usp-block.awards .usps .item > p {
  max-width: 70%;
}

@media only screen and (max-width: 1380px) { 
  .usp-block .usps { 
    max-width: var(--layout-inner);
  }
}

@media only screen and (max-width: 870px) {
  .usp-block .usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .usp-block .usps .item > p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px; 
  }
  .usp-block .usps .item {
    padding: 20px;
    box-sizing: border-box;
  }
  .usp-block.awards .usps {
    grid-template-columns: repeat(1, 1fr);
  }
}

.block-editor-block-list__block .usp-block {
  max-width: 100%;
  width: 100%; 
  padding-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 2rem;
  box-sizing: border-box;
  background: #3A4856;
}

 