.telked-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.telked-faq-list,
.telked-faq-list *,
.telked-faq-list *::before,
.telked-faq-list *::after {
  box-sizing: border-box;
}

.telked-faq {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid #dfe5e2;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(23, 26, 24, 0.025);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.telked-faq:hover {
  border-color: #c8d0cc;
}

.telked-faq[open] {
  background: #fafffc;
  border-color: rgba(1, 191, 96, 0.3);
  box-shadow: 0 8px 26px rgba(23, 26, 24, 0.045);
}

.telked-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 21px 23px;
  color: #171a18;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  user-select: none;
}

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

.telked-faq__question::marker {
  display: none;
  content: "";
}

.telked-faq__question:focus-visible {
  outline: 3px solid rgba(1, 191, 96, 0.28);
  outline-offset: -3px;
  border-radius: 14px;
}

.telked-faq__chevron {
  flex: 0 0 auto;
  color: #01bf60;
  transform: rotate(0deg);
  transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.telked-faq__chevron path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.telked-faq__answer {
  padding: 0 62px 22px 23px;
  color: #5f6663;
  font-size: 0.98rem;
  line-height: 1.7;
}

.telked-faq__answer p {
  margin: 0;
}

.telked-faq__answer p + p {
  margin-top: 0.75em;
}

@media (max-width: 560px) {
  .telked-faq-list {
    gap: 8px;
  }

  .telked-faq {
    border-radius: 14px;
  }

  .telked-faq__question {
    gap: 14px;
    padding: 18px 17px;
    font-size: 0.99rem;
  }

  .telked-faq__answer {
    padding: 0 48px 19px 17px;
    font-size: 0.93rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .telked-faq,
  .telked-faq__chevron {
    transition: none;
  }
}
