/* Styl dla głównego slidera */
.slider-single {
	max-width: 200px;
	margin: 0 auto;
  }
  
  .slider-single .slick-slide {
	display: flex !important;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
  }
  
  .slider-single img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 10px;
  }
  
  /* Opisy */
  .speaker-info {
	text-align: center;
	padding: 10px;
  }
  
  .speaker-info h5 {
	font-size: 1.2rem;
	font-weight: bold;
  }
  
  .speaker-info p {
	font-size: 1rem;
	color: #666;
  }
  
  /* Styl dla miniatur */
  .slider-nav {
	max-width: 100px;
	margin: 10px auto;
  }
  
  .slider-nav .slick-slide {
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.3s ease-in-out;
	text-align: center;
  }
  
  .slider-nav .slick-slide.is-active {
	opacity: 1;
	border: 2px solid #007bff;
  }
  
  .slider-nav img {
	width: 100%;
	height: 100px;
	object-fit: cover;
	border-radius: 5px;
  }
  
  /* Pasek postępu */
  .slick-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 5px;
	background: #007bff;
	transition: width 13s linear;
  }
  