.callout {
  position: relative;
  padding: 122px 0;
  background-color: var(--colour-light-green);
  text-align: center;
}
.callout .corner-boxes {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: auto;
  aspect-ratio: 1;
}
.callout .corner-boxes:last-child {
  top: 0;
  right: 0;
  bottom: unset;
  left: unset;
  transform: scale(-1);
}
.callout .corner-boxes:before {
  position:absolute;
  bottom: 0;
  left: 0;
  width: 66.66667%;
  height: 66.66667%;
  content: "";
  background-color: var(--colour-green);
}
.callout .corner-boxes:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.33333%;
  height: 33.33333%;
  content: "";
  background-color: var(--colour-green);
}
.callout .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.callout h2 {
  margin-bottom: 21px;
}
.callout p {
  max-width: 752px;
  margin: 0 auto 24px;
  font-size: 16.5px;
  font-weight: 400;
  line-height: 176.364%;
  letter-spacing: 0.07px;
}

@media (min-width: 1024px) {
  .callout {
    padding: 116px 0;  
  }
  .callout .corner-boxes {
    width: 180px;
  }
  .callout .inner {
    padding: 0 120px;
  }
  .callout h2 {
    margin-bottom: 24px;
  }
  .callout p {
    max-width: 752px;
    margin: 0 auto 48px;
    font-size: 20px;
    line-height: 172%;
    letter-spacing: 0.09px;
  }
}

@media (min-width: 1280px) {
  .callout .corner-boxes {
    width: 240px;
  }
}

@media (min-width: 1600px) {
  .callout .corner-boxes {
    width: 360px;
  }
}
