.exterior-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: var(--size-space-1200);
  padding: var(--size-space-1600) var(--size-space-1200);
  background-color: var(--themasecondary-100);
  box-sizing: border-box;
}

.exterior-faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  gap: var(--size-space-200);
}

.exterior-faq__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin: 0;
  color: var(--baseblack);
  font-family: var(--h-2-font-family);
  font-size: var(--h-2-font-size);
  font-style: var(--h-2-font-style);
  font-weight: var(--h-2-font-weight);
  line-height: var(--h-2-line-height);
  letter-spacing: var(--h-2-letter-spacing);
  text-align: center;
}

.exterior-faq__label {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin: 0;
  color: var(--themasecondary-700);
  font-family: "Wendy One", Helvetica;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
}

.exterior-faq__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  gap: var(--size-space-200);
}

.exterior-faq__item {
  width: 100%;
  padding: var(--size-space-400) var(--size-space-600);
  background-color: var(--basewhite);
  border-radius: var(--size-radius-400);
  box-sizing: border-box;
}

.exterior-faq__item summary {
  list-style: none;
}

.exterior-faq__item summary::-webkit-details-marker {
  display: none;
}

.exterior-faq__question {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: var(--size-space-400);
  cursor: pointer;
}

.exterior-faq__mark {
  flex-shrink: 0;
  font-family: "Wendy One", Helvetica;
  font-size: 24px;
  font-weight: 400;
  line-height: 33.6px;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.exterior-faq__mark--question {
  color: var(--themaprimary-700);
}

.exterior-faq__mark--answer {
  color: var(--thematertiary-700);
}

.exterior-faq__question-text,
.exterior-faq__answer-text {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: var(--baseblack);
  font-family: var(--body-1-font-family);
  font-size: var(--body-1-font-size);
  font-style: var(--body-1-font-style);
  font-weight: var(--body-1-font-weight);
  line-height: var(--body-1-line-height);
  letter-spacing: var(--body-1-letter-spacing);
  word-break: break-word;
}

.exterior-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
  margin-top: 4px;
  background-image: url("../img/mingcute-down-fill-5.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.exterior-faq__item[open] .exterior-faq__icon {
  background-image: url("../img/mingcute-up-fill-1.svg");
}

.exterior-faq__answer {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: var(--size-space-400);
  margin-top: var(--size-space-400);
}

.exterior-faq__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  max-width: 500px;
  gap: var(--size-space-300);
  padding: var(--size-space-400) var(--size-space-600);
  color: var(--themaprimary-700);
  font-family: var(--button-font-family);
  font-size: var(--button-font-size);
  font-style: var(--button-font-style);
  font-weight: var(--button-font-weight);
  line-height: var(--button-line-height);
  letter-spacing: var(--button-letter-spacing);
  text-align: center;
  text-decoration: none;
  background-color: var(--basewhite);
  border: 2px solid var(--themaprimary-700);
  border-radius: 99px;
  box-shadow: 0 5px 0 #ff6f00;
  box-sizing: border-box;
}

.exterior-faq__button-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

@media (max-width: 1280px) {
  .exterior-faq {
    padding: var(--size-space-1600) var(--size-space-800);
  }
}

@media (max-width: 768px) {
  .exterior-faq {
    gap: var(--size-space-800);
    padding: var(--size-space-1200) var(--size-space-600);
  }

  .exterior-faq__item {
    padding: var(--size-space-400) var(--size-space-600);
  }

  .exterior-faq__question {
    align-items: center;
  }

  .exterior-faq__mark {
    font-size: 24px;
    line-height: 1.4;
  }

  .exterior-faq__question-text,
  .exterior-faq__answer-text {
    font-size: 18px;
    line-height: 1.6;
  }

  .exterior-faq__question-text {
    font-weight: 700;
  }
}
