/* --------- FAQ -Slider -------------------- */
/* ------------------------------------------ */
.FAQ-slide {
  display: none;
}
.FAQ-slide.active {
  display: block;
}
.FAQ-slide.hidden {
  display: none;
}

.FAQ-headline {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 450;
  margin: 1.5rem 0 0.5rem;
}
.divFAQ {
  border: solid 1px green;
  border-radius: 8px;
  margin-bottom: 0.2rem;
}

#divFAQContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.FAQ-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 950px;
  gap: 1.5rem;
  padding: 0.5rem;
}

.FAQ-block h1,
.FAQ-block h2{
  font-size: 1.4em;
  letter-spacing: 0.05em;
  font-weight: 450;
  margin: 1rem 0.5rem;
  background-color: transparent;
  border-bottom: solid 1px rgb(180, 179, 179);
  color: blue;
}

.FAQ-img {
  width: 100px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.FAQ-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.FAQ-title {
  font-size: 1.18rem;
  font-style: italic;
  margin: 0 0 0.5rem;
  font-weight: 480;
}

.FAQ-text {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.FAQ-link {
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: #336699;
  text-decoration: none;
}

.FAQ-link:hover {
  text-decoration: underline;
}

.FAQ-block.wechsel {
  animation: teaserFade 0.4s ease;
}

.divFAQFunction {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.FAQButtonSmall {
  flex: 1 1 50px;          
  max-width: 75px;        
  min-width: 35px;         
  box-sizing: border-box;   
  background-color: rgba(0, 78, 18, 0.07);
  border-radius: 0.6rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 78, 18, 0.35); 
}
.FAQbtnIcon {
  font-size: 1.8rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

@keyframes FAQFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
