.wcl-two-columns-block {
  color: var(--color-white);
  background: var(--color-dark);
  display: flex;
  justify-content: center;
}
.wcl-two-columns-block--blue {
  background: var(--gradient1);
}
.wcl-two-columns-block--full-image {
  position: relative;
}
.wcl-two-columns-block--full-image .wcl-two-columns-block__container {
  padding-bottom: 180px;
}
.wcl-two-columns-block--full-image .wcl-two-columns-block__bg-image {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wcl-two-columns-block--full-image .wcl-two-columns-block__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom left;
     object-position: bottom left;
}
.wcl-two-columns-block__container {
  display: flex;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.wcl-two-columns-block__columns {
  display: flex;
  align-items: center;
  gap: 40px;
}
.wcl-two-columns-block__columns--left {
  flex-direction: row;
}
.wcl-two-columns-block__columns--right {
  flex-direction: row-reverse;
}
.wcl-two-columns-block__media {
  width: 100%;
  max-width: calc(50% - 20px);
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Optional: Provide P3 variant for wide-gamut displays (e.g., Safari on iOS/macOS) */
}
.wcl-two-columns-block__media::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 760px;
  height: 990px;
  border-radius: 65%; /* Vendor prefix for Safari */
  filter: blur(300px);
  transform: translate(-50%, -50%) rotate(-18deg) translate3d(0, 0, 0); /* GPU acceleration for consistent rendering */
  opacity: 0.4; /* Keep opacity separate if needed for layering */
  /* Fallback background for older browsers */
  background-color: #412273;
  /* Modern rgba for better alpha blending */
  background-color: rgba(65, 34, 115, 0.4);
  /* CSS Color Module 4 syntax for explicit sRGB */
  background-color: rgba(65, 34, 115, 0.4);
  /* Explicit color space for better consistency across color-managed browsers */
  background-color: color(srgb 0.2549 0.1333 0.451 / 0.4);
}
@supports (color: color(display-p3 1 1 1)) {
  .wcl-two-columns-block__media::after {
    background-color: color(display-p3 0.2549 0.1333 0.451 / 0.4);
  }
}
.wcl-two-columns-block__media .animation {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
}
.wcl-two-columns-block__media img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.wcl-two-columns-block__media video {
  position: relative;
  z-index: 1;
  width: auto;
  height: -moz-fit-content;
  height: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.wcl-two-columns-block__content {
  width: 100%;
  max-width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.wcl-two-columns-block__title {
  margin-bottom: 16px;
}
.wcl-two-columns-block__text {
  color: var(--color-alto);
  margin-bottom: 24px;
}
@media only screen and (max-width: 1280px) {
  .wcl-two-columns-block--full-image .wcl-two-columns-block__bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    opacity: 0.4;
    z-index: 1;
  }
  .wcl-two-columns-block--full-image .wcl-two-columns-block__media {
    display: none;
  }
  .wcl-two-columns-block--full-image .wcl-two-columns-block__content {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .wcl-two-columns-block__container {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .wcl-two-columns-block__media::after {
    width: 550px;
    height: 700px;
  }
}
@media only screen and (max-width: 768px) {
  .wcl-two-columns-block--full-image .wcl-two-columns-block__container {
    padding-bottom: 300px;
  }
  .wcl-two-columns-block__container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .wcl-two-columns-block__columns--left {
    flex-direction: column-reverse;
  }
  .wcl-two-columns-block__columns--right {
    flex-direction: column-reverse;
  }
  .wcl-two-columns-block__media {
    max-width: 100%;
  }
  .wcl-two-columns-block__media video {
    max-width: 400px;
    width: 100%;
  }
  .wcl-two-columns-block__content {
    max-width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .wcl-two-columns-block__media::after {
    width: 370px;
    height: 480px;
  }
}
