.qa-carousel {
    position: relative;
    margin: 0 auto;
    padding: 25px;
    font-family: sans-serif;
    overflow: hidden;
    min-height: 180px;
  }
  
  .qa-carousel .qa-pair {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    height: 100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .qa-carousel .qa-pair.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .question{
    color: var(--e-global-color-de0341c);
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2em;
    font-weight: 600;
    line-height: 43px;
  }

  .question .highlight {
    font-size: 1.6em;
    line-height: 0em;
    font-weight: 500;
    margin: 0;
    font-family: 'Cookie', Sans-Serif;
    color: var(--e-global-color-primary)!important;
    text-align: center;
    text-transform: capitalize;
  }
  
  .answer {
    margin: 10px 0 0 0;
    font-size: 1.1em;
    font-weight: var(--e-global-typography-1e29b50-font-weight);
    color: var(--e-global-color-de0341c);
    text-align: center;
	text-transform: uppercase;
  }

  .qa-carousel-wrapper {
    position: relative;
    overflow: hidden;
  }

  .qa-progress-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 4px;
      width: 100%;
      background: rgba(0, 0, 0, 0.1);
  }

  .qa-progress-fill {
      height: 100%;
      width: 0;
      background: #B2934B; /* vagy amit szeretnél */
      transition: width linear;
  }
  
  @media (max-width: 1024px) {
    .question{
      font-size: 1em;
		line-height: 1em;
    }
    .answer{
      font-size: 0.7em;
    }
	  .qa-carousel{
		  min-height:120px;
	  }
  }