.tod-faq {
  padding: 32px 0;
}

.tod-faq__title {
  margin-bottom: 32px;
}

.tod-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}

.tod-faq__item {
  background: var(--color-card-3);
  border: 1px solid var(--color-border-2);
  border-radius: 10px;
  overflow: hidden;
}

.tod-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

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

.tod-faq__icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}

.tod-faq__icon::before,
.tod-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.tod-faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.tod-faq__icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.tod-faq__item[open] .tod-faq__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.tod-faq__answer {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: 0;
}

.tod-faq__answer p {
  margin: 0;
}

@media (max-width: 640px) {
  .tod-faq__question {
    font-size: 12px;
    padding: 14px 16px;
    letter-spacing: 0.4px;
  }

  .tod-faq__answer {
    padding: 0 16px 16px;
  }
}
