/* xl - DESKTOP STYLES */ 
 .cai-active-bg {
        background: #e74dff;
        border-radius: 30px;
      }

      .cai-inactive-bg {
        background: #e74dff;
        border-radius: 30px;
        border: 1px solid #fff;
      }

      .cai-after-text {
        transition: all 0.3s ease;
      }

      .cai-before-text {
        transition: all 0.3s ease;
      }

      /* Initial state - both buttons 74px from divider NO border */
      .cai-after-text {
        border-radius: 30px;
        transform: translateX(-74px);
        border: none;
      }

      .cai-before-text {
        border-radius: 30px;
        transform: translateX(74px);
        border: none;
      }

      /* Active states */
      .cai-after-text.cai-active-bg {
        border-radius: 30px 0 0 30px;
        border: none;
        transform: translateX(0);
      }

      .cai-before-text.cai-active-bg {
        border-radius: 0 30px 30px 0;
        border: none;
        transform: translateX(0);
      }

      /* Inactive states */
      .cai-after-text.cai-inactive-bg {
        border-radius: 30px;
        border: 1px solid #fff;
        transform: translateX(-74px);
      }

      .cai-before-text.cai-inactive-bg {
        border-radius: 30px;
        border: 1px solid #fff;
        transform: translateX(74px);
      }

 /* --- FIXED BLUR LOGIC --- */
      /* Blur right (after image) */
      .cai-slider.cai-blur-right .cai-slider-image {
        filter: blur(4px);
        opacity: 0.9; /* keeps it visible but not see-through */
      }

      /* Blur left (before image only, not container) */
      .cai-slider.cai-blur-left .cai-before-image {
        filter: blur(4px);
        opacity: 0.9;
      }

      .cai-slider {
        position: relative;
        width: 80vw;
		height: 100%;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        user-select: none;
        background: none;
        cursor: ew-resize;
        border-radius: 24px;
        background: linear-gradient(
          214deg,
          rgba(110, 100, 190, 0.8) -10.28%,
          rgba(90, 80, 170, 0.8) 12.37%,
          rgba(130, 120, 210, 0.7) 84.11%,
          rgba(100, 90, 180, 0.8) 120.61%
        );
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 8px 32px 0 rgba(90, 80, 170, 0.4);
      }
		
	.cai-blog-list--style-blog-list-default.cai-slider,
	.cai-blog-list--style-blog-list-default .cai-slider,
	.cai-blog-list--style-case-study-standard .cai-slider,
	.cai-blog-list--style-case-study-standard.cai-slider{
		width: unset;
		height: unset;
		max-width: unset;
		margin: unset;
		overflow: hidden;
		user-select: none;
		background: none;
		cursor: unset;
		border-radius: 24px;
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		box-shadow: none;
		border-radius: 0;
	}
      .cai-slider-image {
        background-color: transparent;
        max-width: 100%;
        margin-left: auto;
        width: 100%;
        height: auto;
        color: transparent;
        padding: 1.25rem;
        transition: all 0.3s ease;
      }

      @media (min-width: 1024px) {
        .cai-slider-image {
          padding: 100px 90px;
        }
      }

  .cai-before-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        overflow: hidden;
        user-select: none;
        padding: 1.25rem;
        background: linear-gradient(
          214deg,
          rgba(25, 10, 60, 0.8) -10.28%,
          rgba(37, 20, 79, 0.9) 12.37%,
          rgba(20, 5, 50, 0.7) 84.11%,
          rgba(30, 15, 65, 0.8) 120.61%
        );
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        box-shadow: 0 8px 32px 0 rgba(15, 5, 40, 0.5);
        transition: all 0.3s ease;
        -webkit-mask-image: linear-gradient(
          to right,
          black 50%,
          transparent 50%
        );
        mask-image: linear-gradient(to right, black 50%, transparent 50%);
      }

      @media (min-width: 1024px) {
        .cai-before-container {
          padding: 110px 90px;
        }
      }

      .cai-before-image {
        margin: auto;
        width: 100%;
        height: auto;
        color: transparent;
        background-color: transparent;
        position: relative;
        transition: all 0.3s ease;
      }

      .cai-before-container::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50%;
        height: 50%;
        background: radial-gradient(
          64.57% 50% at 50% 50%,
          #fff 2.4%,
          rgba(0, 0, 0, 0) 100%
        );
        mix-blend-mode: color-dodge;
        filter: blur(157px);
        z-index: 1;
        pointer-events: none;
      }

 .cai-slider-divider {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 2px;
        cursor: ew-resize;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        left: calc(50% - 1px);
        background: linear-gradient(
          0deg,
          rgb(101, 77, 247) 0%,
          rgb(141, 142, 253) 100%
        );
        z-index: 10;
      }

      @media (min-width: 1024px) {
        .cai-slider-divider {
          width: 7px;
          left: calc(50% - 3.5px);
        }
      }

      .cai-slider-handle {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        background: transparent;
        overflow: visible;
        white-space: nowrap;
        height: auto;
        z-index: 20;
        gap: 0;
      }

      .cai-slider-text {
        flex: 0 0 auto;
        transition: all 0.3s ease;
        overflow: hidden;
        color: #fff;
        text-align: center;
        font-size: 11.475px;
        font-style: normal;
        font-weight: 500;
        line-height: 14.344px;
        padding: 12px 16px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        margin: 0;
        background: #e74dff;
        min-width: 120px;
        position: relative;
      }


      @media (min-width: 1024px) {
        .cai-slider-text {
          padding: 14px 18px;
          min-height: 44px;
        }
      }

