/* /css/faq/faq.css
   ==========================================================================
   GFC – FAQ Page
   --------------------------------------------------------------------------
   Purpose:
   - Styles the German and English FAQ pages.
   - Supports the FAQ hero, project-status card, category navigation,
     native details accordions and final verification actions.
   - Keeps all FAQ-specific rules scoped to .gfc-faq-page.
   ========================================================================== */


/* ==========================================================================
   1) PAGE TOKENS AND BASE
   ========================================================================== */

.gfc-faq-page {
  --faq-bg: #020617;
  --faq-bg-soft: #07101f;

  --faq-surface: rgba(255, 255, 255, 0.055);
  --faq-surface-soft: rgba(255, 255, 255, 0.032);
  --faq-surface-hover: rgba(92, 200, 255, 0.045);

  --faq-border: rgba(255, 255, 255, 0.14);
  --faq-border-soft: rgba(255, 255, 255, 0.105);
  --faq-border-accent: rgba(92, 200, 255, 0.28);

  --faq-ink: #eaf2f7;
  --faq-muted: rgba(234, 242, 247, 0.74);
  --faq-muted-strong: rgba(234, 242, 247, 0.86);

  --faq-accent: #5cc8ff;
  --faq-accent-hover: #8fddff;
  --faq-accent-soft: rgba(92, 200, 255, 0.09);

  --faq-status: #fde68a;

  --faq-radius: 14px;
  --faq-radius-large: 20px;

  --faq-shadow:
    0 14px 42px rgba(0, 0, 0, 0.36);

  --faq-shadow-open:
    0 10px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  --faq-aside-width: 290px;
  --faq-sticky-top: calc(var(--header-h, 78px) + 22px);

  background:
    radial-gradient(
      circle at top center,
      rgba(92, 200, 255, 0.06),
      transparent 34rem
    ),
    var(--faq-bg);

  color: var(--faq-ink);
}

.gfc-faq-page main,
.gfc-faq-page .faq-content,
.gfc-faq-page .faq-aside {
  min-width: 0;
}

.gfc-faq-page .muted {
  color: var(--faq-muted);
}


/* ==========================================================================
   2) FAQ HERO
   ========================================================================== */

.gfc-faq-page .faq-hero {
  position: relative;
  overflow: hidden;

  padding:
    clamp(42px, 7vw, 82px)
    0
    clamp(36px, 5vw, 60px);

  border-bottom: 1px solid var(--faq-border);

  background:
    radial-gradient(
      1100px 360px at 18% -10%,
      rgba(92, 200, 255, 0.14),
      transparent 60%
    ),
    radial-gradient(
      860px 280px at 82% 0%,
      rgba(92, 200, 255, 0.085),
      transparent 55%
    ),
    var(--faq-bg-soft);
}

.gfc-faq-page .faq-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.12;

  background-image:
    radial-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );

  background-size: 28px 28px;
}

.gfc-faq-page .faq-hero-grid {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(310px, 0.8fr);

  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.gfc-faq-page .faq-hero h1 {
  max-width: 18ch;
  margin: 0 0 18px;

  color: var(--faq-ink);

  font-size: var(--h1-size);
  line-height: 1.06;
  letter-spacing: -0.04em;

  text-wrap: balance;
}

.gfc-faq-page .faq-hero .lead {
  max-width: 76ch;
  margin: 0 0 14px;

  color: var(--faq-muted-strong);
  line-height: 1.65;
}

.gfc-faq-page .faq-hero .lead-subtle {
  color: var(--faq-muted);
}


/* ==========================================================================
   3) SHARED SURFACES
   ========================================================================== */

.gfc-faq-page .faq-status-card,
.gfc-faq-page .faq-section,
.gfc-faq-page .faq-final,
.gfc-faq-page .faq-toc {
  min-width: 0;

  border: 1px solid var(--faq-border);
  border-radius: var(--faq-radius-large);

  background:
    linear-gradient(
      180deg,
      var(--faq-surface),
      var(--faq-surface-soft)
    ),
    var(--faq-bg-soft);

  box-shadow: var(--faq-shadow);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gfc-faq-page .faq-noscript {
  margin: 18px 0 0;
  padding: 12px 14px;

  border: 1px solid var(--faq-border-accent);
  border-radius: var(--faq-radius);

  background: var(--faq-accent-soft);
  color: var(--faq-muted-strong);

  font-size: 0.92rem;
  line-height: 1.55;
}


/* ==========================================================================
   4) PROJECT-STATUS CARD
   ========================================================================== */

.gfc-faq-page .faq-status-card {
  padding: clamp(19px, 2.7vw, 26px);

  border-color: var(--faq-border-accent);

  background:
    radial-gradient(
      circle at top right,
      rgba(92, 200, 255, 0.13),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      var(--faq-surface),
      var(--faq-surface-soft)
    );
}

.gfc-faq-page .faq-status-card h2 {
  margin: 0 0 16px;

  color: var(--faq-ink);

  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.25;
}

.gfc-faq-page .faq-status-updated {
  margin: -4px 0 14px;

  color: var(--faq-muted);

  font-size: 0.78rem;
  line-height: 1.45;
}

.gfc-faq-page .faq-status-updated strong {
  color: var(--faq-muted-strong);
}

.gfc-faq-page .faq-status-list {
  display: grid;
  gap: 10px;

  margin: 0;
}

.gfc-faq-page .faq-status-list div {
  display: grid;

  grid-template-columns:
    minmax(105px, 0.8fr)
    minmax(0, 1.2fr);

  gap: 16px;
  align-items: center;

  padding: 12px 13px;

  border: 1px solid var(--faq-border-soft);
  border-radius: var(--faq-radius);

  background: var(--faq-surface-soft);
}

.gfc-faq-page .faq-status-list dt {
  color: var(--faq-muted);

  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.gfc-faq-page .faq-status-list dd {
  min-width: 0;
  margin: 0;

  color: var(--faq-status);

  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.4;
  text-align: right;

  overflow-wrap: anywhere;
}


/* ==========================================================================
   5) ACTION GROUPS
   ========================================================================== */

.gfc-faq-page .faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 20px;
}

.gfc-faq-page .faq-actions .btn {
  min-height: 46px;

  text-align: center;
}


/* ==========================================================================
   6) MAIN FAQ LAYOUT
   ========================================================================== */

.gfc-faq-page .faq-layout {
  display: grid;

  grid-template-columns:
    minmax(0, var(--faq-aside-width))
    minmax(0, 1fr);

  gap: clamp(26px, 4vw, 44px);
  align-items: start;

  padding-block: clamp(42px, 6vw, 74px);
}

.gfc-faq-page .faq-aside {
  position: sticky;
  top: var(--faq-sticky-top);

  align-self: start;
}


/* ==========================================================================
   7) CATEGORY NAVIGATION
   ========================================================================== */

.gfc-faq-page .faq-toc {
  max-height: calc(100vh - var(--faq-sticky-top) - 24px);
  padding: 18px;

  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color:
    rgba(92, 200, 255, 0.35)
    transparent;
}

.gfc-faq-page .faq-toc::-webkit-scrollbar {
  width: 8px;
}

.gfc-faq-page .faq-toc::-webkit-scrollbar-track {
  background: transparent;
}

.gfc-faq-page .faq-toc::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;

  background:
    rgba(92, 200, 255, 0.32)
    padding-box;
}

.gfc-faq-page .faq-toc h2 {
  margin: 0 0 14px;

  color: var(--faq-ink);

  font-size: 1rem;
  line-height: 1.3;
}

.gfc-faq-page .faq-toc ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.gfc-faq-page .faq-toc li + li {
  margin-top: 6px;
}

.gfc-faq-page .faq-toc a {
  display: flex;
  align-items: center;
  min-height: 44px;

  padding: 9px 10px;

  border: 1px solid transparent;
  border-radius: 10px;

  color: var(--faq-muted);

  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;

  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 150ms ease;
}

.gfc-faq-page .faq-toc a:focus-visible {
  border-color: var(--faq-border-accent);
  background: var(--faq-accent-soft);
  color: var(--faq-accent);

  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.gfc-faq-page .faq-toc a[aria-current="location"],
.gfc-faq-page .faq-toc a.is-active {
  border-color: var(--faq-border-accent);
  background: var(--faq-accent-soft);
  color: var(--faq-accent);
  font-weight: 800;
}


/* ==========================================================================
   8) FAQ SECTIONS
   ========================================================================== */

.gfc-faq-page .faq-section {
  margin-bottom: 24px;

  padding: clamp(23px, 3.5vw, 36px);
}

.gfc-faq-page .faq-section > .eyebrow {
  margin-bottom: 9px;
}

.gfc-faq-page .faq-section > h2 {
  max-width: 34ch;

  margin: 0 0 20px;

  color: var(--faq-ink);

  line-height: 1.2;
  text-wrap: balance;
}

.gfc-faq-page .faq-content > .faq-section:last-of-type {
  margin-bottom: 30px;
}


/* ==========================================================================
   9) FAQ ACCORDIONS
   ========================================================================== */

.gfc-faq-page .faq-section details {
  border: 1px solid var(--faq-border-soft);
  border-radius: var(--faq-radius);

  background: var(--faq-surface-soft);

  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 180ms ease;
}

.gfc-faq-page .faq-section details + details {
  margin-top: 10px;
}

.gfc-faq-page .faq-section details[open] {
  border-color: var(--faq-border-accent);

  background: var(--faq-surface-hover);

  box-shadow: var(--faq-shadow-open);
}

.gfc-faq-page .faq-section details:target {
  border-color: rgba(92, 200, 255, 0.52);
  box-shadow:
    0 0 0 2px rgba(92, 200, 255, 0.08),
    var(--faq-shadow-open);
}

.gfc-faq-page .faq-section summary {
  position: relative;

  display: block;

  padding:
    16px
    50px
    16px
    17px;

  color: var(--faq-ink);

  font-weight: 850;
  line-height: 1.45;

  cursor: pointer;
  list-style: none;

  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.gfc-faq-page .faq-section summary::-webkit-details-marker {
  display: none;
}

.gfc-faq-page .faq-section summary::marker {
  content: "";
}

.gfc-faq-page .faq-section summary::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 19px;

  width: 9px;
  height: 9px;

  border-right: 2px solid var(--faq-accent);
  border-bottom: 2px solid var(--faq-accent);

  opacity: 0.82;

  transform:
    translateY(-68%)
    rotate(45deg);

  transition:
    transform 170ms ease,
    opacity 170ms ease;
}

.gfc-faq-page .faq-section details[open] summary {
  color: var(--faq-ink);
}

.gfc-faq-page .faq-section details[open] summary::after {
  opacity: 1;

  transform:
    translateY(-30%)
    rotate(225deg);
}

.gfc-faq-page .faq-section summary:focus-visible {
  border-radius: calc(var(--faq-radius) - 1px);

  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}


/* ==========================================================================
   10) FAQ ANSWER CONTENT
   ========================================================================== */

.gfc-faq-page .faq-section details > p,
.gfc-faq-page .faq-section details > ul,
.gfc-faq-page .faq-section details > ol,
.gfc-faq-page .faq-section details > a,
.gfc-faq-page .faq-section details > .btn {
  margin-inline: 17px;
}

.gfc-faq-page .faq-section details > p:first-of-type,
.gfc-faq-page .faq-section details > ul:first-of-type,
.gfc-faq-page .faq-section details > ol:first-of-type {
  margin-top: 0;
}

.gfc-faq-page .faq-section details > p:first-of-type {
  padding-top: 1px;
}

.gfc-faq-page .faq-section details > p {
  max-width: 84ch;

  margin-top: 12px;
  margin-bottom: 0;

  color: var(--faq-muted);

  line-height: 1.7;
}

.gfc-faq-page .faq-section details > p + p {
  margin-top: 10px;
}

.gfc-faq-page .faq-section details strong {
  color: var(--faq-ink);
}

.gfc-faq-page .faq-section details > ul,
.gfc-faq-page .faq-section details > ol {
  max-width: 84ch;

  margin-top: 12px;
  margin-bottom: 0;

  padding-left: 1.35rem;
}

.gfc-faq-page .faq-section details li {
  margin: 7px 0;

  color: var(--faq-muted);

  line-height: 1.64;
}

.gfc-faq-page .faq-section details li::marker {
  color: var(--faq-accent);

  font-weight: 850;
}

.gfc-faq-page .faq-section details > a {
  display: inline-block;

  margin-top: 16px;
  margin-bottom: 18px;

  color: var(--faq-accent);

  font-weight: 750;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 3px;

  transition: color 150ms ease;
}

.gfc-faq-page .faq-section details > .btn {
  max-width: calc(100% - 34px);
  margin-top: 16px;
  margin-bottom: 18px;
}

.gfc-faq-page .faq-section details > p:last-child,
.gfc-faq-page .faq-section details > ul:last-child,
.gfc-faq-page .faq-section details > ol:last-child {
  margin-bottom: 18px;
}

.gfc-faq-page .faq-section details > a:focus-visible {
  border-radius: 4px;

  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}


/* ==========================================================================
   11) FINAL VERIFICATION CARD
   ========================================================================== */

.gfc-faq-page .faq-final {
  padding: clamp(24px, 4vw, 38px);

  border-color: var(--faq-border-accent);

  background:
    radial-gradient(
      circle at top right,
      rgba(92, 200, 255, 0.14),
      transparent 36%
    ),
    linear-gradient(
      180deg,
      var(--faq-surface),
      var(--faq-surface-soft)
    );
}

.gfc-faq-page .faq-final > .eyebrow {
  margin-bottom: 9px;
}

.gfc-faq-page .faq-final h2 {
  max-width: 30ch;

  margin: 0 0 13px;

  color: var(--faq-ink);

  line-height: 1.2;
  text-wrap: balance;
}

.gfc-faq-page .faq-final p {
  max-width: 76ch;

  margin: 0;

  color: var(--faq-muted);

  line-height: 1.68;
}


/* ==========================================================================
   12) POINTER-SPECIFIC HOVER EFFECTS
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {
  .gfc-faq-page .faq-toc a:hover {
    border-color: rgba(92, 200, 255, 0.14);

    background: var(--faq-accent-soft);
    color: var(--faq-accent);

    transform: translateX(2px);
  }

  .gfc-faq-page .faq-section details:hover {
    border-color: rgba(92, 200, 255, 0.22);
  }

  .gfc-faq-page .faq-section summary:hover {
    color: var(--faq-ink);
  }

  .gfc-faq-page .faq-section details > a:hover {
    color: var(--faq-accent-hover);
  }
}


/* ==========================================================================
   13) RESPONSIVE – TABLET
   ========================================================================== */

@media (max-width: 1040px) {
  .gfc-faq-page .faq-hero-grid {
    grid-template-columns:
      minmax(0, 1.1fr)
      minmax(290px, 0.9fr);
  }

  .gfc-faq-page {
    --faq-aside-width: 255px;
  }
}

@media (max-width: 900px) {
  .gfc-faq-page .faq-hero-grid,
  .gfc-faq-page .faq-layout {
    grid-template-columns: 1fr;
  }

  .gfc-faq-page .faq-aside {
    position: static;
  }

  .gfc-faq-page .faq-status-card {
    width: 100%;
    max-width: 760px;
  }

  .gfc-faq-page .faq-toc {
    max-height: none;

    overflow: hidden;
  }

  .gfc-faq-page .faq-toc ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gfc-faq-page .faq-toc li {
    min-width: 0;
  }

  .gfc-faq-page .faq-toc li + li {
    margin-top: 0;
  }

  .gfc-faq-page .faq-toc a {
    height: 100%;
    white-space: normal;

    border-color: var(--faq-border-soft);

    background: var(--faq-surface-soft);
  }

  .gfc-faq-page .faq-toc a:hover {
    transform: none;
  }
}


/* ==========================================================================
   14) RESPONSIVE – MOBILE
   ========================================================================== */

@media (max-width: 760px) {
  .gfc-faq-page .faq-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gfc-faq-page .faq-actions .btn {
    width: 100%;
  }

  .gfc-faq-page .faq-actions .btn-primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .gfc-faq-page .faq-hero {
    padding-block: 26px 28px;
  }

  .gfc-faq-page .faq-hero h1 {
    max-width: none;

    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .gfc-faq-page .faq-hero .lead {
    margin-bottom: 10px;
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .gfc-faq-page .faq-hero .lead-subtle {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .gfc-faq-page .faq-hero-actions {
    margin-top: 16px;
  }

  .gfc-faq-page .faq-layout {
    gap: 20px;

    padding-block: 24px 50px;
  }

  .gfc-faq-page .faq-section,
  .gfc-faq-page .faq-final,
  .gfc-faq-page .faq-status-card,
  .gfc-faq-page .faq-toc {
    padding: 18px;
  }

  .gfc-faq-page .faq-status-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gfc-faq-page .faq-status-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    align-content: start;
    padding: 10px 11px;
  }

  .gfc-faq-page .faq-status-list dd {
    text-align: left;
  }

  .gfc-faq-page .faq-section summary {
    padding:
      15px
      44px
      15px
      14px;

    font-size: 0.96rem;
  }

  .gfc-faq-page .faq-section summary::after {
    right: 16px;
  }

  .gfc-faq-page .faq-section details > p,
  .gfc-faq-page .faq-section details > ul,
  .gfc-faq-page .faq-section details > ol,
  .gfc-faq-page .faq-section details > a,
  .gfc-faq-page .faq-section details > .btn {
    margin-inline: 14px;
  }

  .gfc-faq-page .faq-section details > .btn {
    max-width: calc(100% - 28px);
  }

  .gfc-faq-page .faq-section details > p,
  .gfc-faq-page .faq-section details li {
    font-size: 0.94rem;
  }
}

@media (max-width: 420px) {
  .gfc-faq-page .faq-toc a {
    padding-inline: 8px;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .gfc-faq-page .faq-status-list dt {
    font-size: 0.76rem;
  }

  .gfc-faq-page .faq-status-list dd {
    font-size: 0.82rem;
  }

  .gfc-faq-page .faq-status-card,
  .gfc-faq-page .faq-section,
  .gfc-faq-page .faq-final,
  .gfc-faq-page .faq-toc {
    border-radius: 16px;
  }

  .gfc-faq-page .faq-section details {
    border-radius: 12px;
  }

  .gfc-faq-page .faq-toc {
    padding-inline: 14px;
  }
}




@media (max-width: 360px) {
  .gfc-faq-page .faq-status-list {
    grid-template-columns: 1fr;
  }

  .gfc-faq-page .faq-hero-actions {
    grid-template-columns: 1fr;
  }

  .gfc-faq-page .faq-hero-actions .btn:not(.btn-primary) {
    display: none;
  }

  .gfc-faq-page .faq-hero-actions .btn-primary {
    grid-column: auto;
  }
}


/* ==========================================================================
   15) REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .gfc-faq-page .faq-toc a,
  .gfc-faq-page .faq-section details,
  .gfc-faq-page .faq-section summary,
  .gfc-faq-page .faq-section summary::after,
  .gfc-faq-page .faq-section details > a {
    transition: none;
  }

  .gfc-faq-page .faq-toc a:hover {
    transform: none;
  }
}



/* ==========================================================================
   16) LIGHT COLOR SCHEME
   ========================================================================== */

@media (prefers-color-scheme: light) {
  .gfc-faq-page {
    --faq-bg: #ffffff;
    --faq-bg-soft: #f4f7fa;

    --faq-surface: rgba(255, 255, 255, 0.96);
    --faq-surface-soft: rgba(14, 24, 42, 0.025);
    --faq-surface-hover: rgba(8, 122, 170, 0.055);

    --faq-border: rgba(14, 24, 42, 0.14);
    --faq-border-soft: rgba(14, 24, 42, 0.105);
    --faq-border-accent: rgba(8, 122, 170, 0.3);

    --faq-ink: #111827;
    --faq-muted: rgba(17, 24, 39, 0.68);
    --faq-muted-strong: rgba(17, 24, 39, 0.84);

    --faq-accent: #087aaa;
    --faq-accent-hover: #045f86;
    --faq-accent-soft: rgba(8, 122, 170, 0.08);

    --faq-status: #805300;

    --faq-shadow:
      0 14px 36px rgba(14, 24, 42, 0.09);

    --faq-shadow-open:
      0 10px 26px rgba(14, 24, 42, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);

    background:
      radial-gradient(
        circle at top center,
        rgba(8, 122, 170, 0.055),
        transparent 34rem
      ),
      var(--faq-bg);
  }

  .gfc-faq-page .faq-hero {
    background:
      radial-gradient(
        1100px 360px at 18% -10%,
        rgba(8, 122, 170, 0.1),
        transparent 60%
      ),
      radial-gradient(
        860px 280px at 82% 0%,
        rgba(8, 122, 170, 0.06),
        transparent 55%
      ),
      var(--faq-bg-soft);
  }

  .gfc-faq-page .faq-hero::before {
    opacity: 0.07;

    background-image:
      radial-gradient(
        rgba(14, 24, 42, 0.12) 1px,
        transparent 1px
      );
  }

  .gfc-faq-page .faq-status-card,
  .gfc-faq-page .faq-final {
    background:
      radial-gradient(
        circle at top right,
        rgba(8, 122, 170, 0.08),
        transparent 40%
      ),
      linear-gradient(
        180deg,
        var(--faq-surface),
        var(--faq-surface-soft)
      );
  }
}


/* ==========================================================================
   17) HIGH-CONTRAST SUPPORT
   ========================================================================== */

@media (forced-colors: active) {
  .gfc-faq-page .faq-status-card,
  .gfc-faq-page .faq-section,
  .gfc-faq-page .faq-final,
  .gfc-faq-page .faq-toc,
  .gfc-faq-page .faq-section details {
    border: 1px solid CanvasText;

    background: Canvas;
    color: CanvasText;

    box-shadow: none;
  }

  .gfc-faq-page .faq-section summary::after {
    border-color: LinkText;
  }

  .gfc-faq-page .faq-section details > a,
  .gfc-faq-page .faq-toc a {
    color: LinkText;
  }
}


/* ==========================================================================
   18) PRINT
   ========================================================================== */

@media print {
  .gfc-faq-page {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .gfc-faq-page .faq-hero,
  .gfc-faq-page .faq-section,
  .gfc-faq-page .faq-final,
  .gfc-faq-page .faq-status-card,
  .gfc-faq-page .faq-toc,
  .gfc-faq-page .faq-section details {
    border: 1px solid #000000 !important;

    background: #ffffff !important;
    color: #000000 !important;

    box-shadow: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .site-header,
  .site-footer,
  .modal,
  [data-modal-backdrop],
  .gfc-faq-page .faq-aside,
  .gfc-faq-page .faq-actions {
    display: none !important;
  }

  .gfc-faq-page .faq-hero {
    padding-block: 20px !important;
  }

  .gfc-faq-page .faq-hero-grid,
  .gfc-faq-page .faq-layout {
    display: block;
  }

  .gfc-faq-page .faq-layout {
    padding-block: 20px 0;
  }

  .gfc-faq-page .faq-status-card,
  .gfc-faq-page .faq-section,
  .gfc-faq-page .faq-final {
    margin-bottom: 18px;

    break-inside: avoid;
  }

  .gfc-faq-page .faq-section details {
    break-inside: avoid;
  }

  .gfc-faq-page .faq-section details:not([open]) > *:not(summary) {
    display: block !important;
  }

  .gfc-faq-page .faq-section summary::after {
    display: none;
  }

  .gfc-faq-page .faq-hero h1,
  .gfc-faq-page .faq-hero .lead,
  .gfc-faq-page .faq-section h2,
  .gfc-faq-page .faq-section summary,
  .gfc-faq-page .faq-section details p,
  .gfc-faq-page .faq-section details li,
  .gfc-faq-page .faq-final h2,
  .gfc-faq-page .faq-final p,
  .gfc-faq-page .faq-status-list dt,
  .gfc-faq-page .faq-status-list dd {
    color: #000000 !important;
  }

  .gfc-faq-page .faq-section details > a {
    color: #000000 !important;
    text-decoration: underline !important;
  }
}