/* ==========================================================
   Wildfire FAQ + Resource Search
   Static FAQ section lives outside: <div id="wildfire-faq-app"></div>
   ========================================================== */

.section-spacer {
  display: block;
  margin: 0.75rem 0;
}

/* ==========================================================
   FAQ Question Links Hover
   ========================================================== */

.wildfire-faq-question a {
  position: relative;

  color: var(--wf-blue);
  font-weight: 700;
  text-decoration: none !important;

  background-image: linear-gradient(var(--wf-gold), var(--wf-gold));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 2px;

  transition:
    color .2s ease,
    background-size .25s ease;
}

.wildfire-faq-question a:hover,
.wildfire-faq-question a:focus-visible {
  color: var(--wf-blue-dark);
  background-size: 100% 100%;
  text-decoration: none !important;
}

.content-grid {
  --wf-blue: #00205b;
  --wf-blue-2: #133960;
  --wf-gold: #d6a439;
  --wf-bg: #f6f8fb;
  --wf-card: #ffffff;
  --wf-text: #1f2933;
  --wf-muted: #5d6773;
  --wf-border: #d8e0ea;
  --wf-shadow: 0 14px 34px rgb(0 32 91 / 10%);

  color: var(--wf-text);
}

.content-grid,
.content-grid *,
.content-grid *::before,
.content-grid *::after {
  box-sizing: border-box;
}

/* Static FAQ section above the JS app */
.content-grid>.wildfire-top-faq {
  width: min(100%, 1180px);
  margin: 0 auto 1.5rem;
}

.content-grid>.wildfire-top-faq .wildfire-top-faq__header {
  padding: clamp(1.25rem, 2vw, 1.5rem);

  background: linear-gradient(135deg, var(--wf-blue), var(--wf-blue-2));
  color: #fff;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

  box-shadow: var(--wf-shadow);
}

.content-grid>.wildfire-top-faq .wildfire-top-faq__header h2 {
  position: relative;
  display: inline-block;

  margin: 0;
  padding-bottom: .75rem;

  color: #fff;

  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.content-grid>.wildfire-top-faq .wildfire-top-faq__header h2::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 84px;
  height: 4px;

  background: var(--wf-gold);

  border-radius: 999px;

  box-shadow: 0 2px 8px rgb(214 164 57 / 35%);
}

.content-grid>.wildfire-top-faq .wildfire-top-faq__accordion {
  padding: 0 25px 25px;

  background: var(--wf-bg);

  border: 1px solid var(--wf-border);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.content-grid>.wildfire-top-faq .wildfire-section-intro {
  margin: 0 auto;
  padding: 1rem 0 .75rem;

  color: var(--wf-muted);

  font-size: 0.98rem;
  line-height: 1.65;
  text-align: left;
}

/* ==========================================================
   Static FAQ Accordion
   ========================================================== */

.content-grid>.wildfire-top-faq .wildfire-static-accordion {
  display: grid;
  gap: .75rem;
}

/* ==========================================================
   Main Accordions
   ========================================================== */

.content-grid>.wildfire-top-faq>.wildfire-top-faq__accordion>.wildfire-static-accordion>.wildfire-static-accordion__item {
  overflow: hidden;

  background: #fff;

  border: 1px solid var(--wf-border);
  border-radius: 14px;

  box-shadow: 0 6px 18px rgb(0 32 91 / 6%);
}

.content-grid>.wildfire-top-faq>.wildfire-top-faq__accordion>.wildfire-static-accordion>.wildfire-static-accordion__item>.wildfire-static-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;

  width: 100%;
  min-height: 54px;
  padding: .95rem 1.15rem;

  background: #fff;
  color: var(--wf-blue);

  border: 0;

  font: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;

  cursor: pointer;

  transition:
    background .2s ease,
    color .2s ease;
}

.content-grid>.wildfire-top-faq>.wildfire-top-faq__accordion>.wildfire-static-accordion>.wildfire-static-accordion__item>.wildfire-static-accordion__trigger:hover {
  background: #f8fafc;
}

.content-grid>.wildfire-top-faq>.wildfire-top-faq__accordion>.wildfire-static-accordion>.wildfire-static-accordion__item>.wildfire-static-accordion__trigger[aria-expanded="true"] {
  background: #d4e5f5;
}

/* ==========================================================
   Static FAQ Question List
   ========================================================== */

.content-grid>.wildfire-top-faq .wildfire-faq-question {
  position: relative;

  margin: 0 1rem;
  padding: 1rem 0 1.35rem;
}

.content-grid>.wildfire-top-faq .wildfire-faq-question::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgb(0 32 91 / 10%) 20%,
      rgb(0 32 91 / 18%) 50%,
      rgb(0 32 91 / 10%) 80%,
      transparent 100%);
}

.content-grid>.wildfire-top-faq .wildfire-faq-question::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;

  background: #fff;
  border: 2px solid var(--wf-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgb(214 164 57 / 12%);
}

.content-grid>.wildfire-top-faq .wildfire-faq-question:last-child::after,
.content-grid>.wildfire-top-faq .wildfire-faq-question:last-child::before {
  display: none;
}

.content-grid>.wildfire-top-faq .wildfire-faq-question:first-child {
  padding-top: .25rem;
}

.content-grid>.wildfire-top-faq .wildfire-faq-question:last-child {
  border-bottom: 0;
}

.content-grid>.wildfire-top-faq .wildfire-faq-question h4 {
  position: relative;
  margin: 0.5rem 0 .55rem;
  padding-inline-start: 2.4rem;
  color: var(--wf-blue);

  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: capitalize;
}

.content-grid>.wildfire-top-faq .wildfire-faq-question h4::before {
  content: "Q";

  position: absolute;

  inset-inline-start: 0;
  top: .1rem;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 1.6rem;
  height: 1.6rem;

  background: linear-gradient(135deg,
      var(--wf-gold) 0%,
      #c58d18 100%);

  color: #fff;

  border-radius: 50%;

  font-size: .8rem;
  font-weight: 900;
  line-height: 1;

  box-shadow:
    0 3px 8px rgb(214 164 57 / 35%),
    inset 0 1px 0 rgb(255 255 255 / 35%);
}

.content-grid>.wildfire-top-faq .wildfire-faq-question p {
  position: relative;
  margin: 25px 0 0 0;
  padding-inline-start: 2.4rem;
  color: var(--wf-text);

  font-size: .9rem;
  line-height: 1.75;
}

.content-grid>.wildfire-top-faq .wildfire-faq-question p:not(.no-faq-prefix)::before {
  content: "A";

  position: absolute;

  inset-inline-start: 0;
  top: .15rem;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 1.6rem;
  height: 1.6rem;

  background: linear-gradient(135deg,
      var(--wf-muted) 0%,
      #4b5662 100%);

  color: #fff;

  border-radius: 50%;

  font-size: .8rem;
  font-weight: 900;
  line-height: 1;

  box-shadow:
    0 3px 8px rgb(93 103 115 / 30%),
    inset 0 1px 0 rgb(255 255 255 / 35%);
}

.content-grid>.wildfire-top-faq .wildfire-faq-question a {
  color: var(--wf-blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.content-grid>.wildfire-top-faq .wildfire-faq-question a:focus-visible {
  outline: 3px solid var(--wf-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .content-grid>.wildfire-top-faq .wildfire-faq-question {
    margin: 0;
    padding: .95rem 0;
  }

  .content-grid>.wildfire-top-faq .wildfire-faq-question h4,
  .content-grid>.wildfire-top-faq .wildfire-faq-question p {
    padding-inline-start: 1.25rem;
  }

  .content-grid>.wildfire-top-faq .wildfire-faq-question h4 {
    font-size: 1rem;
  }

  .content-grid>.wildfire-top-faq .wildfire-faq-question p {
    font-size: .95rem;
  }
}

/* ==========================================================
   Nested Accordions
   ========================================================== */

.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>.wildfire-static-accordion {
  padding: .75rem;
  /*margin: .5rem 1rem 1rem;

    background: rgb(93 103 115 / 5%);

    border: 1px solid rgb(93 103 115 / 12%);
    border-radius: 14px;*/
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>.wildfire-static-accordion>.wildfire-static-accordion__item {
  overflow: hidden;
  margin-bottom: .01rem;
  background: #fff;
  border: 1px solid rgb(93 103 115 / 14%);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgb(93 103 115 / 8%);
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>.wildfire-static-accordion>.wildfire-static-accordion__item:last-child {
  margin-bottom: 0;
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>.wildfire-static-accordion>.wildfire-static-accordion__item>.wildfire-static-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;

  width: 100%;
  min-height: 46px;
  padding: .8rem 1rem;

  background: #e9edf1;
  color: var(--wf-muted);

  border: 0;

  font: inherit;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;

  cursor: pointer;

  transition:
    background .2s ease,
    color .2s ease;
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>.wildfire-static-accordion>.wildfire-static-accordion__item>.wildfire-static-accordion__trigger:hover {
  background: #dfe5ea;
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>.wildfire-static-accordion>.wildfire-static-accordion__item>.wildfire-static-accordion__trigger[aria-expanded="true"] {
  background: #d4dce3;
  color: var(--wf-blue);
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>.wildfire-static-accordion>.wildfire-static-accordion__item>.wildfire-static-accordion__trigger i {
  color: inherit;
}

/* ==========================================================
   Shared Trigger Styles
   ========================================================== */

.content-grid>.wildfire-top-faq .wildfire-static-accordion__trigger>span {
  flex: 1;
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__trigger i {
  flex: 0 0 auto;

  transition: transform .3s ease;
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* ==========================================================
   Animation + Scrollable Open FAQ Panels
   ========================================================== */

.content-grid>.wildfire-top-faq .wildfire-static-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;

  transition: grid-template-rows .35s ease;
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__item.is-open>.wildfire-static-accordion__panel {
  grid-template-rows: minmax(0, 1fr);
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__content {
  min-height: 0;
  overflow: hidden;
}

/*
  Only the direct content container of an open accordion becomes scrollable.
  This prevents every nested content wrapper from receiving its own scrollbar.
*/
.content-grid>.wildfire-top-faq .wildfire-static-accordion__item.is-open>.wildfire-static-accordion__panel>.wildfire-static-accordion__content {
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;

  padding-right: .65rem;

  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  scrollbar-width: thin;
  scrollbar-color: var(--wf-gold) #eef3f7;
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__item.is-open>.wildfire-static-accordion__panel>.wildfire-static-accordion__content::-webkit-scrollbar {
  width: 10px;
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__item.is-open>.wildfire-static-accordion__panel>.wildfire-static-accordion__content::-webkit-scrollbar-track {
  background: #eef3f7;
  border-radius: 999px;
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__item.is-open>.wildfire-static-accordion__panel>.wildfire-static-accordion__content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,
      var(--wf-gold) 0%,
      #d89c1c 100%);

  border: 2px solid #eef3f7;
  border-radius: 999px;
}

/* Nested accordion answers use a slightly shorter scroll area. */
.content-grid>.wildfire-top-faq .wildfire-static-accordion__content .wildfire-static-accordion__item.is-open>.wildfire-static-accordion__panel>.wildfire-static-accordion__content {
  max-height: 58vh;
}

/* ==========================================================
   Content
   ========================================================== */

.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>p,
.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>ul,
.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>ol {
  margin: 0;
  padding: 0 1.15rem 1.15rem;

  color: var(--wf-text);

  font-size: .95rem;
  line-height: 1.75;
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>ul,
.content-grid>.wildfire-top-faq .wildfire-static-accordion__content>ol {
  padding-inline-start: 2.4rem;
}

.content-grid>.wildfire-top-faq .wildfire-static-accordion__content li+li {
  margin-top: .45rem;
}

#wildfire-faq-app {
  --wf-blue: #00205b;
  --wf-blue-2: #133960;
  --wf-gold: #d6a439;
  --wf-bg: #f6f8fb;
  --wf-card: #ffffff;
  --wf-text: #1f2933;
  --wf-muted: #5d6773;
  --wf-border: #d8e0ea;
  --wf-shadow: 0 14px 34px rgb(0 32 91 / 10%);

  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--wf-text);
}

#wildfire-faq-app,
#wildfire-faq-app *,
#wildfire-faq-app *::before,
#wildfire-faq-app *::after {
  box-sizing: border-box;
}

#wildfire-faq-app .wildfire-faq-app,
#wildfire-faq-app .wildfire-top-faq,
#wildfire-faq-app .resource-search-panel {
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
}

#wildfire-faq-app .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================================
   Shared Headers
   ========================================================== */

#wildfire-faq-app .wildfire-top-faq__header,
#wildfire-faq-app .resource-search-panel__intro {
  padding: clamp(1.25rem, 2vw, 1.5rem);

  background: linear-gradient(135deg, var(--wf-blue), var(--wf-blue-2));
  color: #fff;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: var(--wf-shadow);
}

#wildfire-faq-app .wildfire-faq-app__eyebrow {
  margin: 0 0 .4rem;

  color: #f7d37a;

  font-size: .85rem !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

#wildfire-faq-app .wildfire-top-faq__header h2,
#wildfire-faq-app .resource-search-panel__intro h2 {
  position: relative;
  display: inline-block;

  margin: 0;
  padding-bottom: .75rem;

  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
}

#wildfire-faq-app .wildfire-top-faq__header h2::after,
#wildfire-faq-app .resource-search-panel__intro h2::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 84px;
  height: 4px;

  background: var(--wf-gold);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgb(214 164 57 / 35%);
}

#wildfire-faq-app .wildfire-top-faq__header p,
#wildfire-faq-app .resource-search-panel__intro p {
  margin: .6rem 0 0;

  color: rgb(255 255 255 / 90%);

  font-size: 0.98rem;
  line-height: 1.65;
}

/* Intro paragraph below the header */
#wildfire-faq-app .wildfire-section-intro {
  margin: 0 auto;
  padding: .15rem 0 .25rem;
  color: var(--wf-muted);

  font-size: 0.98rem;
  line-height: 1.65;
  text-align: left;
}

/* ==========================================================
   FAQ Above Search
   ========================================================== */

#wildfire-faq-app .wildfire-top-faq {
  margin-bottom: 1.5rem;
}

#wildfire-faq-app .wildfire-top-faq__accordion {
  padding: 0 25px 25px 25px;

  background: var(--wf-bg);
  border: 1px solid var(--wf-border);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

#wildfire-faq-app .wildfire-faq-section {
  margin-bottom: .75rem;
}

#wildfire-faq-app .wildfire-faq-section:last-child {
  margin-bottom: 0;
}

#wildfire-faq-section-0 .wildfire-faq-group {
  max-width: 1060px;
  margin: 0 auto;
}

#wildfire-faq-section-0-group-0 {
  max-width: 1020px;
  margin: 0 auto;
}


#wildfire-faq-app .wildfire-faq-section-toggle,
#wildfire-faq-app .wildfire-faq-group-toggle,
#wildfire-faq-app .wildfire-faq-question-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  min-height: 50px;
  padding: .85rem 1rem;
  border-radius: 14px;

  font-size: 0.9rem;
  text-align: left;
  white-space: normal;
  cursor: pointer;
}

#wildfire-faq-app .wildfire-faq-section-toggle span,
#wildfire-faq-app .wildfire-faq-group-toggle span,
#wildfire-faq-app .wildfire-faq-question-toggle span {
  min-width: 0;
  overflow-wrap: anywhere;
}

#wildfire-faq-app .wildfire-faq-section-toggle {
  background: var(--wf-blue);
  color: #fff;
  border: 0;
  font-size: 1.05rem;
  font-weight: 850;
}

#wildfire-faq-app .wildfire-faq-group-toggle {
  margin-top: .65rem;

  background: #d3dbe8;
  color: var(--wf-blue);

  border: 1px solid var(--wf-border);

  font-weight: 850;
}

#wildfire-faq-app .wildfire-faq-question {
  margin-top: .65rem;

  background: #fff;
  border: 1px solid var(--wf-border);
  border-radius: 14px;

  overflow: hidden;
}

#wildfire-faq-app .wildfire-faq-question-toggle {
  background: #fff;
  color: var(--wf-blue);

  border: 0;

  font-weight: 850;
}

#wildfire-faq-app .wildfire-faq-question-toggle[aria-expanded="true"] {
  background: #f8fafc;
}

#wildfire-faq-app .wildfire-faq-section-toggle i,
#wildfire-faq-app .wildfire-faq-group-toggle i,
#wildfire-faq-app .wildfire-faq-question-toggle i {
  flex: 0 0 auto;
  transition: transform .2s ease;
}

#wildfire-faq-app .wildfire-faq-section-toggle[aria-expanded="true"] .fa-chevron-down,
#wildfire-faq-app .wildfire-faq-group-toggle[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

#wildfire-faq-app .wildfire-faq-answer {
  padding: 0 1rem 1rem;

  color: var(--wf-text);

  line-height: 1.7;
  overflow-wrap: anywhere;
}

#wildfire-faq-app .wildfire-faq-answer p {
  margin: .75rem 0;
}

#wildfire-faq-app .wildfire-faq-answer p:last-child {
  margin-bottom: 0;
}

#wildfire-faq-app .wildfire-faq-answer a {
  color: var(--wf-blue) !important;
  font-weight: 800;
  text-decoration-thickness: 2px;
}

/* ==========================================================
   Resource Search App
   ========================================================== */

#wildfire-faq-app .resource-search-panel {
  margin-bottom: 1.5rem;
}

#wildfire-faq-app .resource-search-app {
  padding: 0 25px 25px 25px;

  background: var(--wf-bg);
  border: 1px solid var(--wf-border);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

#wildfire-faq-app .resource-search-controls {
  display: grid;
  grid-template-columns: 1fr;
  /*grid-template-columns: minmax(0, 1fr) minmax(210px, 280px) auto;*/
  gap: .8rem;
  align-items: center;

  margin-bottom: 0rem;
}

#wildfire-faq-app .resource-search-box {
  min-width: 0;
}

#wildfire-faq-app .resource-search-box input,
#wildfire-faq-app .resource-filter-select {
  width: 100%;
  min-height: 48px;
  padding: .75rem 1rem;
  margin-bottom: 0;

  background: #fff;
  color: var(--wf-text);
  border: 2px solid var(--wf-border);
  border-radius: 999px;
  font-size: 1rem;
}

#wildfire-faq-app .resource-search-box input:focus,
#wildfire-faq-app .resource-filter-select:focus {
  border-color: var(--wf-blue);
  outline: 3px solid rgb(214 164 57 / 35%);
  outline-offset: 2px;
}

/* Search icon */

#wildfire-faq-app .resource-search-box {
  position: relative;
  min-width: 0;
}

#wildfire-faq-app .resource-search-box__icon {
  position: absolute;
  top: 50%;
  right: 1rem;

  transform: translateY(-50%);

  color: var(--wf-blue);
  font-size: 1rem;

  pointer-events: none;
  z-index: 2;
}

#wildfire-faq-app .resource-search-box input {
  padding-inline-start: 1rem;
  padding-right: 2.9rem;
}

#wildfire-faq-app .resource-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 1.5rem 0 1.25rem;
  padding-bottom: .9rem;

  border-bottom: 1px solid rgb(0 32 91 / 12%);
}

#wildfire-faq-app .resource-results-header::after {
  content: "";

  flex: 1;
  height: 1px;
  margin-left: 1rem;

  background: linear-gradient(90deg,
      rgb(0 32 91 / 18%),
      rgb(0 32 91 / 6%),
      transparent);
}

#wildfire-faq-app .resource-count {
  display: inline-flex;
  align-items: center;
  gap: .6rem;

  margin: 0;
  padding: .35rem 1rem;

  background: linear-gradient(180deg,
      #ffffff 0%,
      #f6f9fc 100%);

  color: var(--wf-blue);

  border: 1px solid rgb(0 32 91 / 12%);
  border-radius: 999px;

  box-shadow:
    0 2px 8px rgb(0 32 91 / 6%),
    inset 0 1px 0 rgb(255 255 255 / 80%);

  font-size: .7rem;
  font-weight: 800;
  line-height: 1;

  white-space: nowrap;
}

#wildfire-faq-app .resource-count::before {
  content: "\f15c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  background: linear-gradient(135deg,
      var(--wf-blue) 0%,
      var(--wf-blue-2) 100%);

  color: #fff;
  border-radius: 50%;

  font-size: .6rem;

  box-shadow: 0 2px 8px rgb(0 32 91 / 18%);
}

/* ==========================================================
   Result Grid
   ========================================================== */

#wildfire-faq-app #wildfireResourceResults {
  margin-right: -.5rem;
  margin-left: -.5rem;
}

#wildfire-faq-app #wildfireResourceResults>[class*="col-"] {
  padding-right: .5rem;
  padding-inline-start: .5rem;
}

#wildfire-faq-app .resource-card,
#wildfire-faq-app .wildfire-result-card {
  display: flex;
  flex-direction: column;

  height: 100%;
  overflow: visible;

  background: var(--wf-card);
  border: 1px solid var(--wf-border);
  border-radius: 18px;

  box-shadow: 0 8px 22px rgb(0 32 91 / 8%);
}

.resource-pagination-wrap .page-link-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;

  padding: .45rem .9rem;

  white-space: nowrap;
}

.resource-pagination-wrap .page-link-status .page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 28px;
  height: 28px;

  padding: 0 .4rem;

  background: rgb(0 32 91 / 8%);
  color: var(--wf-blue);

  border-radius: 999px;

  font-size: .9rem;
  font-weight: 800;
}

/* ==========================================================
   Document Cards
   ========================================================== */

#wildfire-faq-app .card-img-top-background {
  position: relative;
  display: flex;
  align-items: flex-end;

  min-height: 210px;
  padding: 1rem;
  overflow: hidden;

  background-color: #dfe7f0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  border-radius: 18px 18px 0 0;
}

#wildfire-faq-app .card-img-top-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(180deg,
      rgb(0 0 0 / 10%) 0%,
      rgb(0 0 0 / 18%) 45%,
      rgb(0 0 0 / 82%) 100%);

  pointer-events: none;
}

/* Keep this static so the label positions from .card-img-top-background */
#wildfire-faq-app .card-img-top-title {
  position: static;
  z-index: auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;

  width: 100%;
  padding-top: 2.4rem;
}

/* Category badge - fixed top-left of image area */
#wildfire-faq-app .resource-card-label {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 4;

  display: inline-flex;
  align-items: center;
  gap: .35rem;

  max-width: calc(100% - 1.5rem);
  margin: 0;
  padding: .38rem .7rem;

  background: rgb(255 255 255 / 94%);
  color: var(--wf-blue) !important;

  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 12px;

  font-size: .6rem;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;

  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;

  box-shadow: 0 5px 14px rgb(0 0 0 / 18%);
}

#wildfire-faq-app .resource-card-label i {
  flex: 0 0 auto;
}

/* Title */
#wildfire-faq-app .card-img-top-title .card-title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;

  width: 100%;
  min-height: 3.25rem;
  margin: 0;
  color: #fff;

  font-size: .88rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 2px 8px rgb(0 0 0 / 38%);
}

/* Cards without a date */
#wildfire-faq-app .card-img-top-title--no-date {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 2.5rem 1rem 1rem;

  text-align: center;
}

#wildfire-faq-app .card-img-top-title--no-date .card-title {
  min-height: auto;
  margin: 0;
}

#wildfire-faq-app .card-img-top-title--no-date .resource-card-label {
  position: absolute;
  top: .75rem;
  left: .75rem;
}

/* Date badge - below title */
#wildfire-faq-app .resource-card-date {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: .32rem .62rem;
  background: rgb(0 32 91 / 92%);
  color: #fff;

  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 750;
  line-height: 1;
  box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
}

#wildfire-faq-app .resource-card-date i {
  color: var(--wf-gold);
}

#wildfire-faq-app .resource-card-description {
  margin: 0 0 .85rem;

  color: var(--wf-muted);

  font-size: .95rem;
  line-height: 1.55;
}

#wildfire-faq-app .resource-card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;

  margin-top: auto;
}

/* PDF preview fallback */
#wildfire-faq-app .wildfire-result-card__preview {
  justify-content: center;
  align-items: center;

  background: linear-gradient(180deg, #edf3f8 0%, #dfe7f0 100%);
}

#wildfire-faq-app .wildfire-result-card__preview::after {
  background: linear-gradient(180deg,
      rgb(0 32 91 / 8%) 0%,
      rgb(0 32 91 / 20%) 45%,
      rgb(0 32 91 / 72%) 100%);
}

#wildfire-faq-app .wildfire-resource-card__pdf-preview {
  position: absolute;
  inset: 0;
  z-index: 0;

  display: block;

  width: 100%;
  height: 100%;
  max-height: none;

  background: #f8fafc;
  object-fit: cover;
}

/* ==========================================================
   Action Buttons / Dropdowns
   ========================================================== */

#wildfire-faq-app .resource-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;

  width: 100%;
  min-height: 42px;
  padding: .65rem .9rem;

  background: linear-gradient(180deg, #f8f1da 0%, #f1e1ae 100%);
  color: var(--wf-blue) !important;

  border: 1px solid #d9bf73;
  border-radius: 12px;

  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;

  cursor: pointer;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .18s ease,
    box-shadow .2s ease;
}

#wildfire-faq-app .resource-action-btn:hover {
  background: linear-gradient(180deg, #fbf6e7 0%, #f5e7b8 100%);
  border-color: var(--wf-gold);

  transform: translateY(-1px);

  box-shadow: 0 6px 16px rgb(0 32 91 / 12%);
}

#wildfire-faq-app .resource-action-btn .fa-chevron-down {
  transition: transform .22s ease;
}

#wildfire-faq-app .wildfire-resource-dropdown {
  position: relative;
  width: 100%;
}

#wildfire-faq-app .wildfire-resource-dropdown summary {
  list-style: none;
}

#wildfire-faq-app .wildfire-resource-dropdown summary::-webkit-details-marker {
  display: none;
}

#wildfire-faq-app .wildfire-resource-dropdown[open] .fa-chevron-down {
  transform: rotate(180deg);
}

#wildfire-faq-app .wildfire-resource-dropdown__menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 500;

  max-height: 260px;
  overflow-y: auto;

  background: #fff;
  border: 1px solid var(--wf-border);
  border-radius: 14px;

  box-shadow: 0 18px 34px rgb(0 32 91 / 16%);
}

#wildfire-faq-app .wildfire-resource-dropdown__link {
  position: relative;

  display: flex;
  align-items: center;
  gap: .75rem;

  padding: .85rem 1rem;

  background: #fff;
  color: var(--wf-blue) !important;

  font-weight: 800;
  text-decoration: none !important;

  transition:
    background .18s ease,
    padding-left .18s ease;
}

#wildfire-faq-app .wildfire-resource-dropdown__link:hover {
  background: #eef7f9;
  padding-inline-start: 1.2rem;
}

#wildfire-faq-app .wildfire-resource-dropdown__link:not(:last-child) {
  border-bottom: 1px solid #edf2f7;
}

#wildfire-faq-app .wildfire-resource-dropdown__link i {
  color: #d9534f;
}

/* ==========================================================
   Pagination
   ========================================================== */

#wildfire-faq-app .resource-pagination-wrap {
  display: flex;
  justify-content: center;

  width: 100%;
  margin-top: 1.25rem;
}

#wildfire-faq-app .resource-pagination-wrap .pagination {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .4rem;

  margin: 0;
  padding: .5rem;

  list-style: none;

  background: #fff;
  border: 1px solid var(--wf-border);
  border-radius: 999px;

  box-shadow: 0 6px 18px rgb(0 32 91 / 8%);
}

#wildfire-faq-app .resource-pagination-wrap .page-item {
  display: inline-flex;
  margin: 0;
}

#wildfire-faq-app .resource-pagination-wrap .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 38px;
  min-height: 38px;
  padding: .45rem .7rem;

  color: var(--wf-blue);
  background: #fff;

  border: 1px solid rgb(0 32 91 / 20%);
  border-radius: 999px;

  font-size: .9rem;
  font-weight: 800;
  line-height: 1;

  cursor: pointer;
}

#wildfire-faq-app .resource-pagination-wrap .page-link:hover {
  background: #eef7f9;
  border-color: var(--wf-blue);
}

#wildfire-faq-app .resource-pagination-wrap .page-item.disabled .page-link,
#wildfire-faq-app .resource-pagination-wrap .page-link:disabled {
  opacity: .45;
  cursor: not-allowed;
}

#wildfire-faq-app .resource-pagination-wrap .page-item-status .page-link {
  cursor: default;
  color: var(--wf-muted);
}

/* ==========================================================
   Loading / Error / No Results
   ========================================================== */

#wildfire-faq-app .wildfire-faq-loading,
#wildfire-faq-app .wildfire-faq-error,
#wildfire-faq-app .wildfire-faq-no-results {
  max-width: 900px;
  margin: 1rem auto;
  padding: 1rem;

  background: #fff8e1;
  color: #3f2e00;

  border: 1px solid #f3d27a;
  border-radius: 14px;

  font-weight: 800;
}

/* ==========================================================
   Focus
   ========================================================== */

#wildfire-faq-app button:focus-visible,
#wildfire-faq-app a:focus-visible,
#wildfire-faq-app summary:focus-visible,
#wildfire-faq-app input:focus-visible,
#wildfire-faq-app select:focus-visible {
  outline: 3px solid var(--wf-gold);
  outline-offset: 3px;
}

/* ==========================================================
   Resource Filter Buttons
   ========================================================== */

#wildfire-faq-app .resource-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .65rem;

  margin: 1rem 0 1rem;
  padding: 1rem;

  background: linear-gradient(180deg,
      #fbfdff 0%,
      #f3f8fc 100%);

  border: 1px solid rgb(0 32 91 / 10%);
  border-radius: 18px;

  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 80%),
    0 4px 16px rgb(0 32 91 / 6%);
}

#wildfire-faq-app .resource-filter-title {
  flex: 0 0 100%;
  margin-bottom: .15rem;

  color: var(--wf-blue);

  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}

#wildfire-faq-app .resource-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;
  padding: .55rem 1rem;

  background: #fff;
  color: var(--wf-blue);

  border: 1px solid rgb(0 32 91 / 15%);
  border-radius: 999px;

  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;

  cursor: pointer;

  transition:
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

#wildfire-faq-app .resource-filter-btn:hover {
  background: rgb(0 32 91 / 6%);
  border-color: rgb(0 32 91 / 25%);
  transform: translateY(-1px);

  box-shadow: 0 4px 10px rgb(0 32 91 / 10%);
}

#wildfire-faq-app .resource-filter-btn.active,
#wildfire-faq-app .resource-filter-btn[aria-pressed="true"] {
  background: linear-gradient(135deg,
      var(--wf-blue) 0%,
      var(--wf-blue-2) 100%);

  color: #fff;

  border-color: var(--wf-blue);

  box-shadow:
    0 6px 14px rgb(0 32 91 / 18%);
}

#wildfire-faq-app .resource-filter-btn:focus-visible {
  outline: 3px solid rgb(214 164 57 / 45%);
  outline-offset: 2px;
}

#wildfire-faq-app .resource-filter-btn:active {
  transform: translateY(0);
}

/* Mobile category dropdown */
#wildfire-faq-app .resource-filter-mobile {
  display: none;
}

/* ==========================================================
   FAQ Lists
   ========================================================== */

.wildfire-faq-question ul,
.wildfire-faq-question ol {
  margin: 1.25rem auto;
  padding: 1.1rem 1.35rem;

  background: rgb(243 177 37 / 6%);
  /*background: linear-gradient(180deg,
            #fbfdff 0%,
            #f6f9fc 100%);*/

  border: 1px solid rgb(0 43 77 / 10%);
  border-left: 4px solid var(--wf-gold);
  border-right: 4px solid var(--wf-gold);
  border-radius: 14px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 6px 16px rgb(0 43 77 / 5%);
  font-size: 0.86rem;
}

/* ==========================================================
   Unordered Lists
   ========================================================== */

.wildfire-faq-question ul {
  list-style: none;
}

.wildfire-faq-question ul li {
  position: relative;

  margin: 0 0 .45rem;
  padding-inline-start: 1.75rem;

  line-height: 1.7;
}

.wildfire-faq-question ul li:last-child {
  margin-bottom: 0;
}

.wildfire-faq-question ul li::before {
  content: "";

  position: absolute;
  left: 0;
  top: .72rem;

  width: 8px;
  height: 8px;

  background: var(--wf-gold);

  border-radius: 50%;

  box-shadow: 0 0 0 3px rgb(243 177 37 / 18%);
}

/* ==========================================================
   Ordered Lists
   ========================================================== */

.wildfire-faq-question ol {
  list-style: none;
  counter-reset: faq-step;
}

.wildfire-faq-question ol li {
  position: relative;

  counter-increment: faq-step;

  margin: 0 0 1rem;
  padding-inline-start: 2.5rem;

  line-height: 1.7;
}

.wildfire-faq-question ol li:last-child {
  margin-bottom: 0;
}

.wildfire-faq-question ol li::before {
  content: counter(faq-step);

  position: absolute;
  left: 0;
  top: .1rem;

  width: 1.7rem;
  height: 1.7rem;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--wf-gold);
  color: #fff;

  border-radius: 50%;

  font-size: .78rem;
  font-weight: 800;

  box-shadow:
    0 3px 8px rgb(0 63 112 / 20%),
    inset 0 1px 0 rgb(255 255 255 / 30%);
}

/* ==========================================================
   FAQ List Section Headers - ADA Safe
   ========================================================== */

.content-grid>.wildfire-top-faq .wildfire-faq-question ul>li.no-list-style {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0 0 .55rem;
  color: var(--wf-blue);

  font-size: 1.05rem;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.35;
  border-bottom: 2px solid rgb(0 32 91 / 18%);
}

.content-grid>.wildfire-top-faq .wildfire-faq-question ul>li.no-list-style::before {
  display: none;
}

.content-grid>.wildfire-top-faq .wildfire-faq-question ul>li.no-list-style strong {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.content-grid>.wildfire-top-faq .wildfire-faq-question ul>li.no-list-style strong::before {
  content: "\f0c2";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--wf-blue);
  color: #fff;
  border-radius: 50%;
  font-size: .85rem;
  box-shadow: 0 4px 10px rgb(0 32 91 / 15%);
}

/* HVAC icon */
.content-grid>.wildfire-top-faq .wildfire-faq-question ul:nth-of-type(2)>li.no-list-style strong::before {
  content: "\f863";
}

/* Decision / choose-between icon */
.content-grid>.wildfire-top-faq .wildfire-faq-question ul>li.no-list-style--decision strong::before {
  content: "\f126";
  /* fa-code-branch */
  background: var(--wf-gold, #d6a439);
  color: #00205b;
}

/* Outdoor Cleaning */
.content-grid>.wildfire-top-faq .wildfire-faq-question ul:nth-of-type(1)>li.no-list-style strong::before {
  content: "\f773";
  /* fa-water */
}

/* Indoor Cleaning */
.content-grid>.wildfire-top-faq .wildfire-faq-question ul:nth-of-type(2)>li.no-list-style strong::before {
  content: "\f863";
  /* fa-pump-soap */
}

/* Soil Maintenance */
.content-grid>.wildfire-top-faq .wildfire-faq-question ul:nth-of-type(3)>li.no-list-style strong::before {
  content: "\f1bb";
  /* fa-tree */
}

/* Air Quality */
.content-grid>.wildfire-top-faq .wildfire-faq-question ul>li.no-list-style--air-quality strong::before {
  content: "\f72e";
  /* fa-wind */
}

/* ==========================================================
   FAQ Content Footer
   ========================================================== */

.content-grid>.wildfire-top-faq .wildfire-content-footer {
  width: 100%;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.75rem;
  padding: 1rem 0.5rem;

  border-top: 1px solid rgb(0 32 91 / 12%);
  text-align: right;
}

.content-grid>.wildfire-top-faq .wildfire-content-footer small {
  display: inline-flex;
  align-items: center;
  gap: .45rem;

  margin-left: auto;

  color: var(--wf-muted);

  font-size: .82rem;
  font-style: italic;
  line-height: 1.4;
}

.content-grid>.wildfire-top-faq .wildfire-content-footer strong {
  color: var(--wf-blue);
  font-weight: 700;
}

.content-grid>.wildfire-top-faq .wildfire-content-footer i {
  color: var(--wf-gold);
  font-size: .85rem;
}

.content-grid>.wildfire-top-faq .wildfire-faq-section-title {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;

  margin: 1.5rem auto 0;
  padding: .85rem 1.5rem;

  background: linear-gradient(180deg,
      #fbfdff 0%,
      #f2f6fa 100%);

  color: var(--wf-blue);
  border: 1px solid rgb(0 32 91 / 10%);
  border-left: 5px solid var(--wf-gold);
  border-right: 5px solid var(--wf-gold);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 80%),
    0 6px 16px rgb(0 32 91 / 6%);

  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: .08em;
  max-width: 780px;
}

.content-grid>.wildfire-top-faq .wildfire-faq-section-title em {
  color: inherit;
  font-style: normal;
  text-transform: uppercase;
}

.content-grid>.wildfire-top-faq .wildfire-faq-section-title::before,
.content-grid>.wildfire-top-faq .wildfire-faq-section-title::after {
  content: "";

  width: 10px;
  height: 10px;

  background: var(--wf-gold);

  border-radius: 50%;

  box-shadow: 0 0 0 4px rgb(214 164 57 / 14%);
}

.content-grid>.wildfire-top-faq .wildfire-trigger-header {
  display: flex;
  align-items: center;
  gap: .85rem;

  width: 100%;

  flex-wrap: nowrap;
}

.content-grid>.wildfire-top-faq .wildfire-trigger-title {
  flex: 1 1 auto;

  font-weight: 800;
}

.content-grid>.wildfire-top-faq .wildfire-trigger-subtitle {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-left: auto;
  padding: 0;

  overflow: hidden;

  background: rgb(214 164 57 / 10%);
  border: 1px solid rgb(214 164 57 / 25%);
  border-radius: 999px;

  font-size: .75rem;
  font-weight: 700;
  line-height: 1;

  box-shadow: 0 2px 8px rgb(214 164 57 / 10%);

  transition:
    transform .18s ease,
    box-shadow .2s ease,
    border-color .2s ease,
    background-color .2s ease;
}

.content-grid>.wildfire-top-faq .wildfire-trigger-subtitle a {
  display: flex;
  align-items: center;
  gap: .4rem;

  padding: .35rem .8rem;

  color: var(--wf-blue);
  text-decoration: none;
  font-weight: 800;

  transition:
    color .2s ease,
    background-color .2s ease;
}

.content-grid>.wildfire-top-faq .wildfire-trigger-subtitle a::before {
  content: "\f1c1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  color: #d9534f;

  font-size: .8rem;
}

.content-grid>.wildfire-top-faq .wildfire-trigger-subtitle:hover {
  transform: translateY(-2px);

  background: var(--wf-gold);
  border-color: var(--wf-gold);

  box-shadow: 0 6px 16px rgb(214 164 57 / 28%);
}

.content-grid>.wildfire-top-faq .wildfire-trigger-subtitle:hover a,
.content-grid>.wildfire-top-faq .wildfire-trigger-subtitle:focus-within a {
  color: var(--wf-blue);
}

.content-grid>.wildfire-top-faq .wildfire-trigger-subtitle a:focus-visible {
  outline: none;
}

.content-grid>.wildfire-top-faq .wildfire-panel-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;

  margin: 0 1rem;
  padding: .6rem 0;

  border-bottom: 1px solid rgb(0 32 91 / 8%);
}

.content-grid>.wildfire-top-faq .wildfire-panel-actions::before {
  content: "Prefer a printable version?";

  margin-right: .65rem;

  color: var(--wf-muted);

  font-size: .8rem;
  font-style: italic;
  font-weight: 500;
}

.content-grid>.wildfire-top-faq .wildfire-panel-actions a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;

  padding: .2rem 0;

  background: none;
  color: var(--wf-blue);

  border: 0;
  border-radius: 0;

  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;

  transition: color .2s ease;
}

.content-grid>.wildfire-top-faq .wildfire-panel-actions a::before {
  content: "\f1c1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  color: #d9534f;
  font-size: .85rem;
}

.content-grid>.wildfire-top-faq .wildfire-panel-actions a:hover,
.content-grid>.wildfire-top-faq .wildfire-panel-actions a:focus-visible {
  color: var(--wf-blue-2);
  text-decoration: underline;
}


/* ==========================================================
   Wildfire Tip / Notice (Compact)
   ========================================================== */

.wildfire-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;

  margin: 0 0 1rem;
  padding: .65rem .85rem;
  font-size: 0.55rem;

  background: #fffaf0;
  border: 1px solid rgb(214 164 57 / 28%);
  border-left: 4px solid #d6a439;
  border-right: 4px solid #d6a439;
}

.wildfire-tip i {
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  background: #d6a439;
  color: #fff;
  font-size: .75rem;
}

.wildfire-tip p {
  margin: 0;

  color: #2f2f2f;
  font-size: .92rem;
  line-height: 1.45;
}

.wildfire-tip strong {
  color: #061c60;
  font-weight: 700;
}

.wildfire-tip em {
  font-style: italic;
  color: inherit;
}

/* ==========================================================
   Wildfire Quote
   ========================================================== */

.wildfire-quote {
  position: relative;
  margin: 1rem 0;
  padding: 1.35rem 1.5rem;

  background: linear-gradient(180deg, #fbfcfd 0%, #f5f8fb 100%);
  border-left: 4px solid var(--wf-gold);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 12px rgb(0 32 91 / 6%);
}

.wildfire-quote::before,
.wildfire-quote::after {
  position: absolute;
  color: rgb(214 164 57 / 32%);
  font-family: Georgia, serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.wildfire-quote::before {
  content: "\201C";
  top: .15rem;
  left: .75rem;
}

.wildfire-quote::after {
  content: "\201D";
  right: .85rem;
  bottom: -.65rem;
}

.wildfire-quote p {
  position: relative;
  z-index: 1;

  margin: 0 0 .85rem;
  padding: 0;

  color: var(--wf-text);
  font-size: .92rem;
  line-height: 1.7;
}

.wildfire-quote p::before {
  content: none !important;
  display: none !important;
}

.wildfire-quote p:last-of-type {
  margin-bottom: .75rem;
}

.wildfire-quote footer {
  position: relative;
  z-index: 1;

  color: var(--wf-muted);
  font-size: .82rem;
  font-style: italic;
  font-weight: 600;
  text-align: right;
  right: 2.4rem;
}

.wildfire-quote strong {
  color: var(--wf-blue);
}

.wildfire-quote a {
  font-weight: 700;
}

/* ==========================================================
   FAQ Resource Language Tooltip
   ========================================================== */

#wildfire-faq-app .wildfire-resource-dropdown__link[data-tooltip] {
  position: relative;
}

#wildfire-faq-app .wildfire-resource-dropdown__link[data-tooltip]::before {
  content: attr(data-tooltip);

  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 9999;

  display: block;

  min-width: max-content;
  max-width: 220px;
  padding: .45rem .7rem;

  background: #1f2937;
  color: #fff;

  border-radius: 6px;
  box-shadow: 0 6px 16px rgb(0 0 0 / 22%);

  font-size: .8rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, 5px);

  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility .18s ease;
}

#wildfire-faq-app .wildfire-resource-dropdown__link[data-tooltip]::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  z-index: 10000;

  width: 0;
  height: 0;

  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #1f2937;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(-50%);

  transition:
    opacity .18s ease,
    visibility .18s ease;
}

#wildfire-faq-app .wildfire-resource-dropdown__link[data-tooltip]:hover::before,
#wildfire-faq-app .wildfire-resource-dropdown__link[data-tooltip]:hover::after,
#wildfire-faq-app .wildfire-resource-dropdown__link[data-tooltip]:focus-visible::before,
#wildfire-faq-app .wildfire-resource-dropdown__link[data-tooltip]:focus-visible::after {
  opacity: 1;
  visibility: visible;
}

#wildfire-faq-app .wildfire-resource-dropdown__link[data-tooltip]:hover::before,
#wildfire-faq-app .wildfire-resource-dropdown__link[data-tooltip]:focus-visible::before {
  transform: translate(-50%, 0);
}


/* ==========================================================
   Mobile
   ========================================================== */

@media (max-width: 768px) {

  .content-grid>.wildfire-top-faq .wildfire-static-accordion__item.is-open>.wildfire-static-accordion__panel>.wildfire-static-accordion__content {
    max-height: 65vh;
    padding-right: .45rem;
  }

  .content-grid>.wildfire-top-faq .wildfire-static-accordion__content .wildfire-static-accordion__item.is-open>.wildfire-static-accordion__panel>.wildfire-static-accordion__content {
    max-height: 56vh;
  }

  .content-grid>.wildfire-top-faq .wildfire-trigger-header {
    flex-wrap: wrap;
  }

  .content-grid>.wildfire-top-faq .wildfire-trigger-subtitle {
    margin-left: 0;
  }

  .content-grid>.wildfire-top-faq .wildfire-content-footer {
    justify-content: flex-end;
    text-align: right;
  }

  .content-grid>.wildfire-top-faq .wildfire-content-footer small {
    margin-left: auto;
  }

  .content-grid>.wildfire-top-faq .wildfire-faq-question ul>li.no-list-style {
    font-size: 1rem;
  }

  .content-grid>.wildfire-top-faq .wildfire-faq-question ul>li.no-list-style strong::before {
    width: 1.8rem;
    height: 1.8rem;
    font-size: .8rem;
  }

  .content-grid>.wildfire-top-faq .wildfire-faq-question h4,
  .content-grid>.wildfire-top-faq .wildfire-faq-question p {
    padding-inline-start: 2.35rem;
  }

  .content-grid>.wildfire-top-faq .wildfire-faq-question h4::before,
  .content-grid>.wildfire-top-faq .wildfire-faq-question p:not(.no-faq-prefix)::before {
    left: 0;
    top: .05rem;
    width: 1.45rem;
    height: 1.45rem;
    font-size: .72rem;
  }


  #wildfire-faq-app .resource-filter-mobile {
    display: block;
    margin: 1rem 0 1.25rem;
    padding: 1rem;
    background: linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
    border: 1px solid rgb(0 32 91 / 10%);
    border-radius: 18px;
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 80%),
      0 4px 16px rgb(0 32 91 / 6%);
  }

  #wildfire-faq-app .resource-filter-buttons {
    display: none;
  }
}

@media (max-width: 600px) {

  .wildfire-quote {
    margin: .85rem 0;
    padding: 1rem 1rem 1.1rem;
    border-left-width: 3px;
    border-radius: 0 10px 10px 0;
  }

  .wildfire-quote::before,
  .wildfire-quote::after {
    font-size: 3.75rem;
  }

  .wildfire-quote::before {
    top: .1rem;
    left: .55rem;
  }

  .wildfire-quote::after {
    right: .65rem;
    bottom: -.45rem;
  }

  .wildfire-quote p {
    font-size: .9rem;
    line-height: 1.65;
  }

  .wildfire-quote footer {
    font-size: .78rem;
  }

  .wildfire-tip {
    gap: .75rem;
    padding: .9rem;
    border-radius: 12px;
  }

  .wildfire-tip i {
    width: 36px;
    height: 36px;
    font-size: .9rem;
  }

  .wildfire-tip p {
    font-size: .95rem;
    line-height: 1.6;
  }
}

/* ==========================================================
   Small Phones
   ========================================================== */

@media (max-width: 480px) {

  #dph-mycarousel .back-home-btn span {
    display: none !important;
  }

  .content-grid>.wildfire-top-faq .wildfire-static-accordion__item.is-open>.wildfire-static-accordion__panel>.wildfire-static-accordion__content {
    max-height: 62vh;
    padding-right: .35rem;
  }

  .content-grid>.wildfire-top-faq .wildfire-static-accordion__content .wildfire-static-accordion__item.is-open>.wildfire-static-accordion__panel>.wildfire-static-accordion__content {
    max-height: 52vh;
  }

  .content-grid>.wildfire-top-faq .wildfire-static-accordion__item.is-open>.wildfire-static-accordion__panel>.wildfire-static-accordion__content::-webkit-scrollbar {
    width: 7px;
  }

  .wildfire-quote {
    padding: .9rem .85rem 1rem;
  }

  .wildfire-quote::before,
  .wildfire-quote::after {
    font-size: 3rem;
  }

  .wildfire-quote p {
    font-size: .88rem;
  }

  .wildfire-tip {
    padding: .85rem;
    gap: .65rem;
  }

  .wildfire-tip i {
    width: 32px;
    height: 32px;
    font-size: .8rem;
  }

  .wildfire-tip p {
    font-size: .9rem;
  }

  .content-grid>.wildfire-top-faq .wildfire-faq-question h4,
  .content-grid>.wildfire-top-faq .wildfire-faq-question p {
    padding-inline-start: 2.2rem;
  }

  .content-grid>.wildfire-top-faq .wildfire-faq-question h4::before,
  .content-grid>.wildfire-top-faq .wildfire-faq-question p:not(.no-faq-prefix)::before {
    width: 1.35rem;
    height: 1.35rem;
    font-size: .68rem;
  }


  .content-grid>.wildfire-top-faq .wildfire-faq-question {
    margin: 0;
    padding: .85rem 0.4rem;
  }

  .content-grid>.wildfire-top-faq .wildfire-faq-question h4 {
    font-size: .95rem;
  }

  .content-grid>.wildfire-top-faq .wildfire-faq-question p,
  .content-grid>.wildfire-top-faq .wildfire-faq-question li {
    font-size: .9rem;
    line-height: 1.65;
  }
}

/* ==========================================================
   Back to Main Button
   ========================================================== */

.banner-wrap {
  position: relative;
}

.banner-wrap .back-home-btn {
  position: absolute !important;
  right: 12px !important;
  bottom: 12px !important;
  top: auto !important;
  left: auto !important;
  z-index: 9999 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .55rem !important;

  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 8px 12px !important;

  background: rgb(0 32 91 / 92%) !important;
  color: #fff !important;

  border: 0 !important;
  border-radius: 999px !important;

  font-size: .95rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.banner-wrap .back-home-btn i {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;

  color: #fff !important;

  font-size: .95rem !important;
  line-height: 1 !important;
}

.banner-wrap .back-home-btn .back-home-btn__text {
  display: inline !important;
}

/* ==========================================================
   Icon-Only Version
   ========================================================== */

.banner-wrap .back-home-btn.is-icon-only {
  right: 8px !important;
  bottom: 8px !important;

  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;

  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;

  padding: 0 !important;
  gap: 0 !important;

  border-radius: 50% !important;
  overflow: hidden !important;
}

.banner-wrap .back-home-btn.is-icon-only .back-home-btn__text {
  display: none !important;
}

.banner-wrap .back-home-btn.is-icon-only i {
  display: block !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #fff !important;

  font-size: 1rem !important;
  line-height: 1 !important;
}

/* ==========================================================
   RESOURCE CARD DATE — RTL POSITIONING
   Keep date badge physically on the left for Arabic/Farsi
========================================================== */

html[dir="rtl"] #wildfire-faq-app .resource-card-date,
html:lang(ar) #wildfire-faq-app .resource-card-date,
html:lang(fa) #wildfire-faq-app .resource-card-date {
  /*
     * The parent is flex-direction: column.
     * In RTL, flex-start becomes the right side.
     * flex-end therefore places this badge on the left.
     */
  align-self: flex-end;

  /* Keep the translated date readable as RTL */
  direction: rtl;
  text-align: right;
}

/* Keep the calendar icon and text aligned */
html[dir="rtl"] #wildfire-faq-app .resource-card-date,
html:lang(ar) #wildfire-faq-app .resource-card-date,
html:lang(fa) #wildfire-faq-app .resource-card-date {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: .35rem;
}

/* Prevent translation-generated font wrappers from breaking layout */
#wild‌fire-faq-app .resource-card-date>font,
#wildfire-faq-app .resource-card-date>font>font {
  display: inline;
}

/* ==========================================================
   ARABIC / FARSI — PREVENT HORIZONTAL OVERFLOW
========================================================== */

html:lang(ar),
html:lang(fa),
html[dir="rtl"] {
  overflow-x: hidden;
}

html:lang(ar) #wildfire-faq-app,
html:lang(fa) #wildfire-faq-app,
html[dir="rtl"] #wildfire-faq-app {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Prevent translated children from forcing the layout wider */
html:lang(ar) #wildfire-faq-app *,
html:lang(fa) #wildfire-faq-app *,
html[dir="rtl"] #wildfire-faq-app * {
  min-width: 0;
  max-width: 100%;
}

/* Remove negative grid margins in RTL */
html:lang(ar) #wildfire-faq-app #wildfireResourceResults,
html:lang(fa) #wildfire-faq-app #wildfireResourceResults,
html[dir="rtl"] #wildfire-faq-app #wildfireResourceResults {
  margin-inline: 0;
  margin-left: 0;
  margin-right: 0;
}

/* Keep equal spacing without negative margins */
html:lang(ar) #wildfire-faq-app #wildfireResourceResults > [class*="col-"],
html:lang(fa) #wildfire-faq-app #wildfireResourceResults > [class*="col-"],
html[dir="rtl"] #wildfire-faq-app #wildfireResourceResults > [class*="col-"] {
  padding-inline: .5rem;
}

/* Allow translated controls to wrap */
html:lang(ar) #wildfire-faq-app .resource-filter-btn,
html:lang(fa) #wildfire-faq-app .resource-filter-btn,
html[dir="rtl"] #wildfire-faq-app .resource-filter-btn,
html:lang(ar) #wildfire-faq-app .resource-action-btn,
html:lang(fa) #wildfire-faq-app .resource-action-btn,
html[dir="rtl"] #wildfire-faq-app .resource-action-btn {
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Prevent pagination from exceeding the viewport */
html:lang(ar) #wildfire-faq-app .resource-pagination-wrap,
html:lang(fa) #wildfire-faq-app .resource-pagination-wrap,
html[dir="rtl"] #wildfire-faq-app .resource-pagination-wrap {
  max-width: 100%;
  overflow-x: hidden;
}

html:lang(ar) #wildfire-faq-app .resource-pagination-wrap .pagination,
html:lang(fa) #wildfire-faq-app .resource-pagination-wrap .pagination,
html[dir="rtl"] #wildfire-faq-app .resource-pagination-wrap .pagination {
  max-width: 100%;
  flex-wrap: wrap;
}

/* Keep translated labels and badges inside cards */
html:lang(ar) #wildfire-faq-app .resource-card-label,
html:lang(fa) #wildfire-faq-app .resource-card-label,
html[dir="rtl"] #wildfire-faq-app .resource-card-label,
html:lang(ar) #wildfire-faq-app .resource-card-date,
html:lang(fa) #wildfire-faq-app .resource-card-date,
html[dir="rtl"] #wildfire-faq-app .resource-card-date {
  max-width: calc(100% - 1.5rem);
  white-space: normal;
  overflow-wrap: anywhere;
}