.faq {
  position: relative;
}

.faq__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

@media (min-width: 46.25rem) {
  .faq__item {
    margin-bottom: 1.5rem;
  }
}

.faq__content {
  position: relative;
}

.faq__content::before {
  content: '';
  position: absolute;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.faq__content > *:not(.link) {
  font-size: clamp(0.9375rem, 2vw, 1rem);
  line-height: 1.38;
}

.faq__content > .link {
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
}

.faq__question,
.faq__answer {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

.faq__question .faq__content,
.faq__answer .faq__content {
  flex: 1;
  padding: 0.875rem 1.25rem;
}

.faq__question {
  max-width: 35rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 46.25rem) {
  .faq__question {
    margin-bottom: 0.75rem;
  }
}

.faq__question .faq__content {
  background-color: var(--color-beige);
  margin-left: 1.25rem;
}

.faq__question .faq__content::before {
  left: -0.875rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3E%3Cpath d='M499.911 10c0-5.523-4.477-10-10-10H10C4.477 0 0 4.477 0 10v29c0 5.523 4.477 10 10 10h479.911c.65 0 1.294-.063 1.922-.186 1.79-.14 4.225-.385 7.27-.814C506.225 46.907 511 37.94 511 37.94s-4.14 3.297-8.563 2.06c-1.208-.313-2.005-.805-2.526-1.356V10Z' style='fill:%23f9f6ee;fill-rule:nonzero' transform='rotate(-180 255.5 24.5)'/%3E%3C/svg%3E");
}

.faq__answer {
  max-width: 28.25rem;
  margin-left: auto;
}

.faq__answer .faq__content {
  background-color: var(--color-gray-200);
  margin-right: 1.25rem;
}

.faq__answer .faq__content::before{
  right: -0.625rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 17' xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3E%3Cpath d='M14.27 28.747s5.448 10.456 13.574 11.697c8.126 1.242 12.426 1.199 12.426 1.199l-13-16.823s-.942 5.318-4.447 6.324c-3.506 1.006-8.553-2.397-8.553-2.397Z' style='fill:none;fill-rule:nonzero' transform='rotate(-180 18 21)'/%3E%3Cpath d='M14.27 28.747s5.448 10.456 13.574 11.697c8.126 1.242 12.426 1.199 12.426 1.199l-13-16.823s-.942 5.318-4.447 6.324c-3.506 1.006-8.553-2.397-8.553-2.397Z' style='fill:%2361eeff;fill-opacity:.1;fill-rule:nonzero' transform='rotate(-180 18 21)'/%3E%3Cpath d='M14.27 28.747s5.448 10.456 13.574 11.697c8.126 1.242 12.426 1.199 12.426 1.199l-13-16.823s-.942 5.318-4.447 6.324c-3.506 1.006-8.553-2.397-8.553-2.397Z' style='fill:%23eff4f7;fill-rule:nonzero' transform='rotate(-180 18 21)'/%3E%3C/svg%3E");
}

.faq__contact {
  padding: 1rem;
  border: 0.0625rem dashed var(--color-blue);
}