.tf-faqs {
  --tf-faq-red: #e30613;
  --tf-faq-black: #111214;
  --tf-faq-border: #dedfe2;
  clear: both;
  width: 100%;
  max-width: 1240px;
  margin: clamp(36px, 6vw, 76px) auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--tf-faq-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(12, 14, 18, .07);
}

.tf-faqs__heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.tf-faqs__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--tf-faq-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tf-faqs__eyebrow::before {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.tf-faqs__heading h2 {
  margin: 0;
  color: var(--tf-faq-black);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.tf-faqs__heading > p {
  margin: 14px 0 0;
  color: #5b5f67;
  font-size: 16px;
  line-height: 1.65;
}

.tf-faqs__list {
  border-top: 1px solid var(--tf-faq-border);
}

.tf-faqs__item {
  border-bottom: 1px solid var(--tf-faq-border);
}

.tf-faqs__item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 20px;
  align-items: center;
  min-height: 74px;
  padding: 18px 2px;
  color: var(--tf-faq-black);
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
}

.tf-faqs__item summary::-webkit-details-marker {
  display: none;
}

.tf-faqs__item summary i {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f2f4;
  transition: background-color .2s ease, transform .2s ease;
}

.tf-faqs__item summary i::before,
.tf-faqs__item summary i::after {
  position: absolute;
  top: 16px;
  left: 10px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--tf-faq-black);
  content: "";
}

.tf-faqs__item summary i::after {
  transform: rotate(90deg);
  transition: opacity .2s ease;
}

.tf-faqs__item[open] summary {
  color: var(--tf-faq-red);
}

.tf-faqs__item[open] summary i {
  background: var(--tf-faq-red);
  transform: rotate(180deg);
}

.tf-faqs__item[open] summary i::before,
.tf-faqs__item[open] summary i::after {
  background: #fff;
}

.tf-faqs__item[open] summary i::after {
  opacity: 0;
}

.tf-faqs__item summary:focus-visible {
  outline: 3px solid rgba(227, 6, 19, .25);
  outline-offset: 4px;
}

.tf-faqs__answer {
  max-width: 880px;
  padding: 0 56px 24px 2px;
  color: #42464e;
  font-size: 15.5px;
  line-height: 1.72;
}

.tf-faqs__answer p,
.tf-faqs__answer ul {
  margin: 0 0 12px;
}

.tf-faqs__answer ul {
  padding-left: 21px;
}

.tf-faqs__answer li + li {
  margin-top: 5px;
}

.tf-faqs__answer a {
  color: #b7000b;
  font-weight: 750;
  text-underline-offset: 3px;
}

.tf-faqs__review {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: #666a72;
  font-size: 13px;
}

.tf-faqs__review span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eaf7ee;
  color: #16743a;
  font-weight: 900;
}

.tf-faqs--vehicle {
  margin-top: 42px;
}

@media (max-width: 768px) {
  .tf-faqs {
    margin: 34px auto 46px;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .tf-faqs__heading {
    margin-bottom: 20px;
  }

  .tf-faqs__heading h2 {
    font-size: 30px;
  }

  .tf-faqs__item summary {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 12px;
    min-height: 68px;
    font-size: 16px;
  }

  .tf-faqs__item summary i {
    width: 32px;
    height: 32px;
  }

  .tf-faqs__item summary i::before,
  .tf-faqs__item summary i::after {
    top: 15px;
    left: 9px;
  }

  .tf-faqs__answer {
    padding: 0 0 20px;
    font-size: 15px;
  }

  .tf-faqs__review {
    align-items: flex-start;
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tf-faqs__item summary i,
  .tf-faqs__item summary i::after {
    transition: none;
  }
}
