@charset "utf-8";

.faq__wrap {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1010px;
    margin-inline: auto;
}

.faq__title {
  display: flex;
  align-items: center;
  gap: 7px;
}
.faq__title::before {
  content: "";
  background: url('../images/icon-faq__title.svg') center / contain no-repeat;
  width: 19px;
  height: 18px;
}

.faq__boxes {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq__box {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 25px 20px;
}
@media screen and (min-width: 768px) {
  .faq__box {
    padding: 30px 23px 36px 27px;
  }
}

.faq__head,
.faq__body {
  display: flex;
  gap: 15px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .faq__head,
  .faq__body {
    gap: 26px;
  }
}
.faq__head-q,
.faq__head-a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #FFAC46;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    letter-spacing: 0.05em;
    line-height: 1;
}
.faq__head-q p,
.faq__head-a p {
  translate: 0 -2px;
}
.faq__head-a {
  background: #FF9D2A;
}
.faq__head-title {
  flex-grow: 1;
  padding-bottom: 22px;
  background-image: linear-gradient(to right, #707070 1px, transparent 1px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}








