.wgt-geo-faq {
  --gap-2xl-42: 42px;

  padding-top: var(--gap-section-120);
  margin-bottom: var(--gap-section-120);
}

.geo-faq-panel {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: var(--gap-2xl-42);
  align-items: stretch;
  width: 100%;
  padding: var(--padding-xl-32);
  overflow: visible;
  border-radius: var(--radius-sm);
  background: var(--background-gray);
}

.geo-faq-head {
  display: flex;
  flex: none;
  gap: var(--gap-2xl-42);
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.geo-faq-heading {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: var(--gap-md-12);
  min-width: 0;
}

.wgt-geo-faq .home-tag {
  flex-shrink: 0;
  background: var(--background-primary-light);
  border-color: var(--primary-color-05);
}

/* Title: 26px → 38px (375→1920) */
.wgt-geo-faq .geo-faq-title,
.wgt-geo-faq .geo-faq-title :is(h1, h2, h3, h4, h5, h6, p) {
  margin: 0;
  color: var(--text-title);
  font-size: clamp(1.625rem, 1.4434rem + 0.7767vw, 2.375rem);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-display);
  text-align: left;
}

/* Description: 14px → 16px (375→1920) */
.wgt-geo-faq .geo-faq-description,
.wgt-geo-faq .geo-faq-description p {
  margin: 0;
  color: var(--text-body);
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
}

.geo-faq-accordion {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: var(--gap-lg2-28);
  width: 100%;
  padding: var(--padding-2lg-28);
  overflow: visible;
  border: 1px solid var(--border-default-purple);
  border-radius: var(--radius-sm);
  background: var(--background-white);
}

.wgt-geo-faq .faq-item {
  display: flex;
  flex: none;
  flex-direction: column;
  width: 100%;
  padding-bottom: var(--padding-lg-20);
  overflow: visible;
  border-bottom: 1px solid var(--primary-color-11);
}

.wgt-geo-faq .faq-item:last-child {
  border-bottom: none;
}

.wgt-geo-faq .faq-question {
  display: flex;
  gap: var(--gap-md-14);
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 var(--padding-lg-20);
  color: var(--text-title);
  font-family: inherit;
  font-weight: var(--font-weight-medium);
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  appearance: none;
}

.wgt-geo-faq .faq-question span {
  flex: 1 1 auto;
  min-width: 0;
}

.wgt-geo-faq .faq-question span,
.wgt-geo-faq .faq-question span :is(p, h1, h2, h3, h4, h5, h6) {
  margin: 0;
  color: var(--text-title);
  font-size: clamp(1rem, 0.9091rem + 0.3883vw, 1.375rem);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
}

.wgt-geo-faq .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.wgt-geo-faq .faq-item.active .faq-icon {
  transform: rotate(0deg);
}

.wgt-geo-faq .faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.45s ease;
}

.wgt-geo-faq .faq-answer-content {
  padding: var(--gap-md-14) var(--padding-lg-20) 0;
}

.wgt-geo-faq .faq-answer-content p {
  max-width: 735px;
  margin: 0;
  color: var(--text-body);
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
}

@media (max-width: 768px) {
  .wgt-geo-faq {
    padding: var(--padding-4xl-80) var(--padding-md-15);
    padding-bottom: 0;
    margin-bottom: var(--padding-4xl-80);
  }

  .geo-faq-panel {
    gap: var(--gap-lg-24);
    padding: var(--padding-lg-24) var(--padding-md-14);
  }

  .geo-faq-head {
    gap: var(--gap-sm-8);
  }

  .wgt-geo-faq .geo-faq-title,
  .wgt-geo-faq .geo-faq-title :is(h1, h2, h3, h4, h5, h6, p) {
    text-transform: uppercase;
  }

  .geo-faq-accordion {
    padding: var(--padding-18);
  }

  .wgt-geo-faq .faq-item {
    padding-bottom: var(--padding-sm-12);
  }

  .wgt-geo-faq .faq-question {
    align-items: flex-start;
    padding: 0;
  }

  .wgt-geo-faq .faq-icon {
    width: 22px;
    height: 22px;
  }

  .wgt-geo-faq .faq-answer-content {
    padding: var(--gap-md-14) var(--padding-lg-24) 0 0;
  }

  .wgt-geo-faq .faq-answer-content p {
    max-width: none;
  }
}
