.tt-faq {
  container-type: inline-size;
  /* margin: 40px 0 0; */
  padding-top: 20px;
  /* border-top: 1px solid rgba(55, 58, 54, 0.14); */
}

.tt-faq__inner {
  display: grid;
  gap: 8px 48px;
}

.tt-faq__title {
  margin: 0 0 10px;
  color: var(--color-tertiary-hover);
}

.tt-faq__list {
  display: flex;
  flex-direction: column;
}

.tt-faq__item {
  border-top: 1px solid rgba(55, 58, 54, 0.14);
}

.tt-faq__item:last-child {
  border-bottom: 1px solid rgba(55, 58, 54, 0.14);
}

.tt-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 18px 2px;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  text-align: left;
  color: var(--color-tertiary-hover);
  cursor: pointer;
}

.tt-faq__q:hover {
  color: var(--color-secondary);
}

.tt-faq__icon {
  flex: none;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.tt-faq__item.is-open .tt-faq__icon {
  transform: rotate(225deg);
}

.tt-faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.tt-faq__a-inner {
  padding: 0 0 20px;
  color: var(--color-tertiary-hover);
}

.tt-faq__a-inner > :first-child {
  margin-top: 0;
}

.tt-faq__a-inner > :last-child {
  margin-bottom: 0;
}

.tt-faq__a-inner a {
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tt-faq__a-inner a:hover {
  color: var(--color-secondary-hover);
}

@container (min-width: 720px) {
  .tt-faq__inner {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }

  .tt-faq__title {
    margin-top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tt-faq__a,
  .tt-faq__icon {
    transition: none;
  }
}
