/* Basic styles - preserves original classes */
.wp-block-columns.is-layout-flex { /* keep existing */ }
.image-carousel-section, .image-carousel-editor {
  display: flex;
  gap: 20px;
}
.image-carousel-section .carousel-column, .image-carousel-editor .carousel-column {
  flex: 1 1 50%;
}
.image-carousel-section .content-column, .image-carousel-editor .content-column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.carousel-slider img { width: 100%; 
  height: auto; 
  padding: 2.5rem;
  border-radius: 4rem;
}
.carousel-button, .carousel-button-preview {
  display: inline-block;
  margin-top: 15px;
  background: #ff6a00;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
}

/* === Custom Slick dots for Image Carousel Section === */
.image-carousel-section .slick-dots {
  bottom: -25px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 1px; 
  list-style: none;
  padding: 0;
  margin: 0;
}

.image-carousel-section .slick-dots li {
  flex: 0 0 10px;
  height: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-carousel-section .slick-dots li button {
  width: 12px;
  height: 6px;
  background-color: #C6CACE;
  border-radius: 5px;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.image-carousel-section .slick-dots li.slick-active button {
  width: 23px;
  height: 6px;
  background-color: #B081CA;
  border-radius: 5px;
}

.image-carousel-section .slick-dots li button::before {
  content: "";
}
.image-carousel-section h2 {
  margin-top: 0 !important;
}

.carousel-slide.slick-active {
  position: relative; 
}

.carousel-slide.slick-active::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 1px;
  width: 110px;
  height: 110px;
  background-image: url('/wp-content/plugins/kyruus-token-status/assets/beforCar.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: 2;
}
.carousel-slide.slick-active::after {
  content: "";
  position: absolute;
  bottom: 5rem;
  right: 0px;
  width: 95px;
  height: 110px;
  background-image: url('/wp-content/plugins/kyruus-token-status/assets/purpleCar.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 2; 
}

.page-template-default .carousel-slider img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 5%;
}    
.slick-active {
 
}
.page-template-default .carousel-column {
  min-width: 100% !important;
}

.carouselBlock > .wp-block-column:nth-of-type(2) {
  display: grid;
  align-content: center;

}