    
/* START rozwijana sekcja tekstu */    
.expandable-section .more-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.expandable-section.expanded .more-text {
  max-height: 500px; /* lub auto, je[li chcesz */
  opacity: 1;
}

.toggle-less {
  display: inline-block;
/*  margin-top: 0.5rem; */
  font-weight: bold;
}

.toggle-more {
  font-weight: bold;
}
    
/* END rozwijana sekcja tekstu */     