/* Shared FAQ presentation for ForecastGuard content pages. */
.pdi-forecastguard-faq {
  padding: clamp(48px, 7vw, 88px) 0;
  background: #f6f8fc;
}

.pdi-forecastguard-faq__inner {
  width: min(100% - 40px, 980px);
  margin: 0 auto;
}

.pdi-forecastguard-faq__intro {
  max-width: 700px;
  margin-bottom: 28px;
}

.pdi-forecastguard-faq__intro h2 {
  margin: 10px 0 0;
  color: #071f3d;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.pdi-forecastguard-faq__list {
  max-width: 820px;
}

.pdi-forecastguard-faq details {
  margin: 12px 0;
  border: 1px solid #dfe6f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(7, 31, 61, 0.05);
  overflow: hidden;
}

.pdi-forecastguard-faq summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  color: #071f3d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.pdi-forecastguard-faq summary::-webkit-details-marker {
  display: none;
}

.pdi-forecastguard-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: #233c98;
  font-size: 23px;
  line-height: 1;
  transform: translateY(-50%);
}

.pdi-forecastguard-faq details[open] summary::after {
  content: "−";
}

.pdi-forecastguard-faq details > p {
  margin: 0;
  padding: 0 20px 20px;
  color: #334155;
  font-size: 16px;
  line-height: 1.65;
}

.pdi-forecastguard-faq a {
  color: #0b6bcb;
  font-weight: 600;
}

@media (max-width: 640px) {
  .pdi-forecastguard-faq__inner {
    width: min(100% - 28px, 980px);
  }

  .pdi-forecastguard-faq summary {
    padding-left: 16px;
    padding-right: 46px;
    font-size: 16px;
  }

  .pdi-forecastguard-faq details > p {
    padding-left: 16px;
    padding-right: 16px;
  }
}