.sortion_block_head--full {
  width: 100% !important;
}

.pbsl {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  background: linear-gradient(1deg, #25252e 30%, #292932 100%);
  box-shadow: 0 5px 10px #13151a4f;
  --pbmn-a: #a254f2;
  --pbmn-a2: #4c83f5;
}

.pbsl_track {
  position: relative;
  width: 100%;
  height: 100%;
}

.pbsl_empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #68687c;
  font-size: 13px;
}

.pbsl_slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
}

.pbsl_slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: scale(1);
  transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform 1.1s cubic-bezier(.22, .61, .36, 1);
}

.pbsl_slide.is-entering-next {
  opacity: 0;
  transform: translateX(4%) scale(1.02);
  transition: none;
}

.pbsl_slide.is-entering-prev {
  opacity: 0;
  transform: translateX(-4%) scale(1.02);
  transition: none;
}

.pbsl_slide.is-leaving-next {
  opacity: 0;
  transform: translateX(-3%) scale(.98);
  transition: opacity .55s ease, transform .65s cubic-bezier(.22, .61, .36, 1);
}

.pbsl_slide.is-leaving-prev {
  opacity: 0;
  transform: translateX(3%) scale(.98);
  transition: opacity .55s ease, transform .65s cubic-bezier(.22, .61, .36, 1);
}

.pbsl_slide_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.pbsl_slide_scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 12, 24, 0.75) 0%, rgba(14, 12, 24, 0.45) 45%, rgba(14, 12, 24, 0.15) 75%, transparent 100%);
}

.pbsl_slide_body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 460px;
  height: 100%;
  padding: 0 20px 0 32px;
}

.pbsl_slide_title,
.pbsl_slide_subtitle,
.pbsl_slide_btn {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22, .61, .36, 1);
  transition-delay: 0s;
}

.pbsl_slide.is-active .pbsl_slide_title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .18s;
}

.pbsl_slide.is-active .pbsl_slide_subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .3s;
}

.pbsl_slide.is-active .pbsl_slide_btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .42s;
}

.pbsl_slide_title {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  /* Premium 1px neon purple outline + double shadow */
  text-shadow: 
    -1px -1px 0 rgba(162, 84, 242, 0.4),  
     1px -1px 0 rgba(162, 84, 242, 0.4),
    -1px  1px 0 rgba(162, 84, 242, 0.4),
     1px  1px 0 rgba(162, 84, 242, 0.4),
     0 0 10px rgba(162, 84, 242, 0.6),
     0 0 20px rgba(162, 84, 242, 0.3),
     0 4px 8px rgba(0, 0, 0, 0.95);
}

.pbsl_slide_subtitle {
  position: relative;
  margin: 0 0 22px;
  padding-left: 16px;
  color: #e2d5f8;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.01em;
  /* Symmetrical black outline + subtle purple glow */
  text-shadow: 
    -1px -1px 0 rgba(0, 0, 0, 0.8),  
     1px -1px 0 rgba(0, 0, 0, 0.8),
    -1px  1px 0 rgba(0, 0, 0, 0.8),
     1px  1px 0 rgba(0, 0, 0, 0.8),
     0 0 8px rgba(162, 84, 242, 0.35),
     0 2px 4px rgba(0, 0, 0, 0.95);
}

.pbsl_slide_subtitle:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #a254f2, #4c83f5);
  box-shadow: 0 0 8px rgba(162, 84, 242, 0.6);
}

.pbsl_slide_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Space between icon box and text */
  padding: 6px 14px; /* Fully symmetrical padding */
  border-radius: 10px;
  background: rgba(14, 12, 24, 0.45); /* Elegant dark glass backdrop */
  border: 1px solid rgba(162, 84, 242, 0.4); /* Glowing purple border */
  color: #ffffff;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.pbsl_slide_btn:hover {
  background: rgba(162, 84, 242, 0.25);
  border-color: rgba(162, 84, 242, 0.7);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(162, 84, 242, 0.5);
}

.pbsl_slide_btn i,
.pbsl_slide_btn svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(162, 84, 242, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(90deg); /* Points down initially */
  flex-shrink: 0;
}

.pbsl_slide_btn:hover i,
.pbsl_slide_btn:hover svg {
  background: rgba(162, 84, 242, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
  transform: rotate(0deg); /* Rotates to point right on hover */
}

.pbsl_timer {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 3;
  width: 34px;
  height: 34px;
  opacity: 0;
  transition: opacity .35s ease;
}

.pbsl_slide.is-active .pbsl_timer {
  opacity: 1;
}

.pbsl_timer_ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pbsl_timer_ring_bg {
  fill: rgba(0, 0, 0, .28);
  stroke: rgba(255, 255, 255, .16);
  stroke-width: 2;
}

.pbsl_timer_ring_fg {
  fill: none;
  stroke: var(--pbmn-a, #4fea9f);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 97.4;
  stroke-dashoffset: 97.4;
  transition: stroke-dashoffset .1s linear;
}

.pbsl_timer_num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.2px;
}

.pbsl_dots {
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 7px;
}

.pbsl_dot {
  position: relative;
  width: 10px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  cursor: pointer;
  overflow: hidden;
  transition: width .35s cubic-bezier(.22, .61, .36, 1), background .2s ease;
}

.pbsl_dot:hover {
  background: rgba(255, 255, 255, .4);
}

.pbsl_dot.is-active {
  width: 26px;
  background: rgba(255, 255, 255, .22);
}

.pbsl_dot_fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pbmn-a, #4fea9f), var(--pbmn-a2, #22b877));
  transform: scaleX(0);
  transform-origin: left center;
}

@media (max-width: 991px) {
  .pbsl {
    height: 230px;
  }
  .pbsl_slide_body {
    max-width: 62%;
    padding: 0 16px 0 22px;
  }
  .pbsl_slide_title {
    font-size: 24px;
  }
  .pbsl_slide_subtitle {
    margin-bottom: 16px;
    font-size: 12.5px;
  }
  .pbsl_slide_btn {
    padding: 5px 12px;
    font-size: 12.5px;
    gap: 8px;
  }
  .pbsl_slide_btn i,
  .pbsl_slide_btn svg {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .pbsl {
    height: 300px;
    border-radius: 14px;
  }
  .pbsl_timer {
    top: 12px;
    right: 14px;
    width: 28px;
    height: 28px;
  }
  .pbsl_slide_img {
    object-position: center 30%;
  }
  .pbsl_slide_scrim {
    background: linear-gradient(180deg, rgba(14, 11, 22, 0) 0%, rgba(14, 11, 22, 0.7) 62%, rgba(14, 11, 22, 0.95) 100%);
  }
  .pbsl_slide_body {
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 100%;
    padding: 0 18px 22px;
  }
  .pbsl_slide_title {
    font-size: 21px;
  }
  .pbsl_slide_subtitle {
    max-width: 300px;
    margin-bottom: 14px;
    font-size: 12px;
  }
  .pbsl_dots {
    right: 50%;
    bottom: 12px;
    transform: translateX(50%);
  }
}

@media (max-width: 420px) {
  .pbsl {
    height: 280px;
  }
  .pbsl_slide_title {
    font-size: 19px;
  }
}
