
/* KKK akordion */
.hnd_faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.wp-block-hnd_faq-accordion-child.open .hnd_faq__body {
  opacity: 1;
  max-height: 2000px;
}

.hnd_faq__expand {
  display: block;
}

.wp-block-hnd_faq-accordion-child.open .hnd_faq__expand {
  display: none;
}

.wp-block-hnd_faq-accordion-child.open .hnd_faq__collapse {
  display: block;
}

.hnd_faq__collapse {
  display: none;
}

.hnd_faq__head {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4;
  padding: 1rem 1.5rem;
  background-color: #f8f8f8;
  border-left: 4px solid transparent;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.hnd_faq__heading_txt h3 {
  padding: 5px 10px;
  margin: 0px;
}

.wp-block-hnd_faq-accordion {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.wp-block-hnd_faq-accordion-child {
  border-top: 1px solid #eee;
  background: #fff;
  transition: background 0.4s ease;
}

.wp-block-hnd_faq-accordion-child:first-child {
  border-top: none;
}

.wp-block-hnd_faq-accordion-child.open .hnd_faq__head {
background-color: #e8f4ff;
    border-left-color: #007cba;
}

.hnd_faq__head:hover {
  background-color: #f0f0f0;
}

.hnd_faq__heading_txt h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.hnd_faq__icon {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.hnd_faq__body {
  padding: 0.4rem 1.5rem;
  border-top: 1px solid #eee;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}