@media (max-width: 480px) {
  .burger-slider-container .slider {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
}

@media (max-width: 768px) {
  .burger-slider-container .slider {
    /* Change to column-reverse for mobile */
  }

  .slide {
    flex-direction: column-reverse;
    width: 100%; /* Make slides full width on mobile */
    display: flex; /* Ensure slides are displayed as flex containers */
    justify-content: center; /* Center content within the slide */
    align-items: center; /* Align content vertically in the center */
    margin: 0;
  }

  .pagination {
    position: absolute;
    bottom: 1px !important;
  }

  .slide-left {
    width: 70% !important;
  }

  .slide-right .inner-slide-right {
    left: 75% !important;
  }

  .slide-left p {
    font-size: 16px;
  }

  .slide-left h3 {
    line-height: 1;
  }

  .thumbnail {
    margin-bottom: 10px; /* Add space between thumbnails on mobile */
  }
}
