
  :root{
    --ta-red: #831A0E;
    --ta-gold: #FFC458;
    --ta-brown: #522110;
    --ta-text: #1a1a1a;
    --ta-muted: rgba(26,26,26,.72);
    --ta-ring: rgba(255,196,88,.55);
  }

  .ta-faq{
    max-width: 860px;
    margin: 0 auto;
    padding: 8px 0;
    color: var(--ta-text);
  }

  .ta-faq__title{
    margin: 0 0 14px;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.2;
    letter-spacing: .2px;
    color: var(--ta-brown);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .ta-faq__title::before{
    content:"";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--ta-gold);
    box-shadow: 0 0 0 3px rgba(131,26,14,.12);
  }

  .ta-faq__list{
    border-top: 1px solid rgba(82,33,16,.18);
  }

  .ta-faq__item{
    border-bottom: 1px solid rgba(82,33,16,.18);
  }

  .ta-faq__q{
    width: 100%;
    appearance: none;
    border: 0;
    background: transparent;
    padding: 16px 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    color: var(--ta-brown);
    font-weight: 650;
    font-size: 16px;
    line-height: 1.35;
    position: relative;
  }

  .ta-faq__item.is-open .ta-faq__q{
    color: var(--ta-red);
  }
  .ta-faq__item.is-open .ta-faq__q::before{
    content:"";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--ta-gold), var(--ta-red));
  }

  .ta-faq__q:focus-visible{
    outline: none;
    box-shadow: 0 0 0 3px var(--ta-ring);
    border-radius: 10px;
  }

  .ta-faq__qtext{
    padding-left: 10px;
  }

  .ta-faq__icon{
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 18px;
  }
  .ta-faq__icon::before,
  .ta-faq__icon::after{
    content:"";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: var(--ta-brown);
    transform: translate(-50%,-50%);
    border-radius: 2px;
    transition: transform .18s ease, background .18s ease, opacity .18s ease;
  }
  .ta-faq__icon::after{
    transform: translate(-50%,-50%) rotate(90deg);
  }
  .ta-faq__item.is-open .ta-faq__icon::before,
  .ta-faq__item.is-open .ta-faq__icon::after{
    background: var(--ta-red);
  }
  .ta-faq__item.is-open .ta-faq__icon::after{
    opacity: 0;
  }

  .ta-faq__a{
    overflow: hidden;
    max-height: 0;
    transition: max-height .22s ease;
    padding: 0 6px;
  }
  .ta-faq__a p{
    margin: 0;
    padding: 0 0 16px 16px;
    color: var(--ta-muted);
    line-height: 1.65;
    font-size: 15px;
    border-left: 1px dashed rgba(131,26,14,.35);
  }

  @media (prefers-reduced-motion: reduce){
    .ta-faq__a, .ta-faq__icon::before, .ta-faq__icon::after{
      transition: none !important;
    }
  }
