/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.btjek-faq__container {
  max-width: 768px;
}

.btjek-faq__header {
  text-align: center;
  margin-bottom: 40px;
}

.btjek-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btjek-faq--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btjek-faq__item {
  border-radius: var(--btjek-radius-md);
  border: 1px solid var(--btjek-border);
  background: var(--btjek-white);
  padding: 16px 20px;
  box-shadow: var(--btjek-shadow);
}

.btjek-faq__item[open] {
  border-color: rgba(26, 86, 219, 0.3);
  background: var(--btjek-primary-light);
}

.btjek-faq__question {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--btjek-heading);
}

.btjek-faq__question::-webkit-details-marker {
  display: none;
}

.btjek-faq__chevron {
  flex-shrink: 0;
  color: var(--btjek-primary);
  transition: transform 0.2s;
}

.btjek-faq__item[open] .btjek-faq__chevron {
  transform: rotate(180deg);
}

.btjek-faq__answer {
  margin-top: 12px;
}

.btjek-faq__answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--btjek-body);
}

@media (max-width: 768px) {
  .btjek-faq--two-col {
    grid-template-columns: 1fr;
  }
}


