.two-column-boxed {
  border: 1px solid var(--Light-Periwinkle);
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--White);
}
@media screen and (width >= 60rem) {
  .two-column-boxed {
    flex-direction: row;
    border-radius: 0.75rem;
  }
  .two-column-boxed.layout-content-image {
    flex-direction: row-reverse;
  }
  .two-column-boxed > * {
    flex: 1;
  }
}
.two-column-boxed--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-column-boxed--content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(2.5rem, -13.8636rem + 25.5682vw, 5.3125rem) clamp(1.25rem, -22.3864rem + 36.9318vw, 5.3125rem);
}
.two-column-boxed--heading, .two-column-boxed--text {
  max-width: 542px;
}
.two-column-boxed--stat {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (width >= 60rem) {
  .two-column-boxed--stat {
    gap: 20px;
    flex-direction: row;
    align-items: center;
  }
}
.two-column-boxed--stat > * {
  position: relative;
  z-index: 1;
}
.two-column-boxed--stat-number {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.two-column-boxed--stat-label {
  max-width: 245px;
}
