/* =====================================================================
   Hi-Level FAQ widget
   ---------------------------------------------------------------------
   Design language: structural / architectural. Treats each FAQ row like
   a beam — a flush square card with a load-bearing left rule that
   appears when the row is open. Soft tint on hover/open ties the whole
   clickable target together, instead of recolouring the perimeter.
   All colour values derive from currentColor or --hl-faq-accent so the
   widget responds correctly to dark themes and per-instance overrides.
   ===================================================================== */

.hl-faq {
  /* Accent ----------------------------------------------------------- */
  --hl-faq-accent: currentColor;
  --hl-faq-on-accent: #ffffff;

  /* Neutrals (theme-aware via currentColor mix) ---------------------- */
  --hl-faq-border: color-mix(in srgb, currentColor 14%, transparent);
  --hl-faq-border-strong: color-mix(in srgb, currentColor 26%, transparent);
  --hl-faq-soft: color-mix(in srgb, currentColor 6%, transparent);
  --hl-faq-muted: color-mix(in srgb, currentColor 62%, transparent);

  /* Accent-derived surfaces ----------------------------------------- */
  --hl-faq-tint: color-mix(in srgb, var(--hl-faq-accent) 8%, transparent);
  --hl-faq-tint-strong: color-mix(in srgb, var(--hl-faq-accent) 14%, transparent);
  --hl-faq-accent-soft: color-mix(in srgb, var(--hl-faq-accent) 16%, transparent);

  /* Geometry --------------------------------------------------------- */
  --hl-faq-radius-md: 4px;
  --hl-faq-radius-sm: 999px;
  --hl-faq-stripe: 4px;

  position: relative;
}

/* ---------------------------------------------------------------------
   Controls bar (search + topic chips)
   --------------------------------------------------------------------- */

.hl-faq__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

/* --- Search ---------------------------------------------------------- */

.hl-faq__search {
  flex: 1 1 240px;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.hl-faq__search-icon {
  position: absolute;
  inset-inline-start: 12px;
  inset-block: 0;
  margin-block: auto;
  width: 18px;
  height: 18px;
  pointer-events: none;
  color: var(--hl-faq-muted);
}

.hl-faq__search-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Specificity bump — themes commonly style `input[type="search"]`
   (specificity 0,1,1), which would otherwise clobber our padding. */
.hl-faq .hl-faq__search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 40px 12px 40px;
  border: 1px solid var(--hl-faq-border);
  border-radius: var(--hl-faq-radius-md);
  font: inherit;
  background: var(--hl-faq-soft);
  color: inherit;
  transition: border-color 0.15s ease, background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.hl-faq .hl-faq__search-input::placeholder {
  color: var(--hl-faq-muted);
  opacity: 1;
}

.hl-faq .hl-faq__search-input:hover {
  border-color: var(--hl-faq-border-strong);
}

.hl-faq .hl-faq__search-input:focus-visible {
  outline: none;
  border-color: var(--hl-faq-accent);
  background: transparent;
  box-shadow: 0 0 0 3px var(--hl-faq-accent-soft);
}

/* Suppress the browser's native type=search clear glyph — we render our own. */
.hl-faq__search-input::-webkit-search-cancel-button,
.hl-faq__search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.hl-faq__search-input::-ms-clear,
.hl-faq__search-input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.hl-faq__search-clear {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 6px;
  width: 28px;
  margin-block: auto;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--hl-faq-muted);
  font-size: 1.25em;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--hl-faq-radius-sm);
}

.hl-faq__search-clear:hover {
  color: var(--hl-faq-accent);
  background: var(--hl-faq-soft);
}

.hl-faq__search-clear:focus-visible {
  outline: 2px solid var(--hl-faq-accent);
  outline-offset: 1px;
  color: var(--hl-faq-accent);
}

/* --- Topic chip filter ---------------------------------------------- */

.hl-faq__topics-label {
  flex: 1 1 100%;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hl-faq-muted);
  margin: 4px 0 -4px;
}

.hl-faq__topics {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  /* Mobile: horizontal scroll with snap to keep chips on a single,
     legible line instead of producing a chaotic 3–4 row block. */
}

.hl-faq__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--hl-faq-border);
  border-radius: var(--hl-faq-radius-sm);
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease;
}

.hl-faq__chip:hover {
  border-color: var(--hl-faq-border-strong);
  background: var(--hl-faq-soft);
}

.hl-faq__chip:focus-visible {
  outline: 2px solid var(--hl-faq-accent);
  outline-offset: 2px;
}

/* Active state: outline-only, accent text. Keeps the page calm even
   when several topics are toggled on. */
.hl-faq__chip.is-active,
.hl-faq__chip[aria-pressed='true'] {
  background: var(--hl-faq-tint);
  border-color: var(--hl-faq-accent);
  color: var(--hl-faq-accent);
  font-weight: 600;
}

/* The "All topics" reset chip uses a bordered ghost variant so it
   reads as a control, not a topic. */
.hl-faq__chip[data-topic-id=''] {
  font-weight: 600;
}

.hl-faq__chip-count {
  font-size: 0.8em;
  font-variant-numeric: tabular-nums;
  color: var(--hl-faq-muted);
  opacity: 0;
  max-width: 0;
  margin-inline-start: 0;
  overflow: hidden;
  transition: opacity 0.15s ease, max-width 0.2s ease,
    margin-inline-start 0.2s ease;
}

.hl-faq__chip:hover .hl-faq__chip-count,
.hl-faq__chip:focus-visible .hl-faq__chip-count,
.hl-faq__chip[aria-pressed='true'] .hl-faq__chip-count {
  opacity: 1;
  max-width: 4em;
  margin-inline-start: 2px;
}

.hl-faq__chip[aria-pressed='true'] .hl-faq__chip-count {
  color: var(--hl-faq-accent);
}

/* ---------------------------------------------------------------------
   Status / aria-live row (search-result count)
   --------------------------------------------------------------------- */

.hl-faq__status {
  min-height: 1em;
  font-size: 0.875em;
  color: var(--hl-faq-muted);
  margin-bottom: 10px;
}

.hl-faq__status:empty {
  margin: 0;
  min-height: 0;
}

/* ---------------------------------------------------------------------
   List
   --------------------------------------------------------------------- */

.hl-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

/* ---------------------------------------------------------------------
   Item
   ---------------------------------------------------------------------
   Each row is a card with a left "stripe" that scales in when open.
   The card itself stays neutral; the open state is communicated by
   the stripe + a soft accent-tinted background. Far calmer than
   recolouring the entire perimeter.
   --------------------------------------------------------------------- */

.hl-faq__item {
  position: relative;
  border: 1px solid var(--hl-faq-border);
  border-radius: var(--hl-faq-radius-md);
  background: transparent;
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.15s ease;
}

.hl-faq__item::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--hl-faq-stripe);
  background: var(--hl-faq-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hl-faq__item:hover {
  border-color: var(--hl-faq-border-strong);
}

.hl-faq__item.is-open {
  background: var(--hl-faq-tint);
  border-color: var(--hl-faq-accent-soft);
}

.hl-faq__item.is-open::before {
  transform: scaleX(1);
}

/* --- Question (button) --------------------------------------------- */

.hl-faq__question {
  margin: 0;
  font-size: inherit;
}

.hl-faq__question-button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: inherit;
  line-height: 1.4;
  transition: background-color 0.15s ease, color 0.15s ease;
}

/* Tint the *whole* clickable row on hover, not just the text — gives
   the user a clear, full-width affordance. */
.hl-faq__question-button:hover {
  background: var(--hl-faq-tint);
  color: var(--hl-faq-accent);
}

.hl-faq__question-button:focus-visible {
  outline: 2px solid var(--hl-faq-accent);
  outline-offset: -2px;
  color: var(--hl-faq-accent);
}

.hl-faq__question-text {
  flex: 1;
}

/* --- Chevron icon --------------------------------------------------- */

.hl-faq__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--hl-faq-soft);
  color: var(--hl-faq-accent);
  transition: background-color 0.15s ease, transform 0.25s ease;
}

.hl-faq__icon svg {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hl-faq__question-button:hover .hl-faq__icon,
.hl-faq__item.is-open .hl-faq__icon {
  background: var(--hl-faq-tint-strong);
}

.hl-faq__item.is-open .hl-faq__icon svg {
  transform: rotate(180deg);
}

/* --- Panel (animated reveal) --------------------------------------- */

/* No-JS / pre-init fallback — the [hidden] attribute keeps closed
   panels collapsed before the script removes it on bootstrap. */
.hl-faq__panel[hidden] {
  display: none;
}

/* JS-managed state: grid-rows trick animates auto height. */
.hl-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease;
}

/* No padding on the clip box itself — padding here would survive
   `grid-template-rows: 0fr` (it lives inside the element's own box,
   not its content) and leave a visible strip below the question
   button when collapsed. Padding moves onto direct children, which
   the clip box hides via overflow:hidden. */
.hl-faq__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.hl-faq__panel-inner > * {
  padding-inline-start: 22px;
  padding-inline-end: 18px;
}

.hl-faq__panel-inner > *:last-child {
  padding-block-end: 18px;
}

.hl-faq__item.is-open .hl-faq__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* --- Answer body ---------------------------------------------------- */

.hl-faq__answer {
  line-height: 1.6;
}

.hl-faq__answer > *:first-child {
  margin-top: 0;
}
.hl-faq__answer > *:last-child {
  margin-bottom: 0;
}

/* --- Topic badges (in panel) ---------------------------------------
   These are informational meta — what topics this FAQ is filed under
   — not interactive chips. Style them as quiet, uppercase-tracked
   labels so they're clearly distinct from the clickable chip filter
   above. */

.hl-faq__badges {
  list-style: none;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hl-faq__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: color-mix(in srgb, currentColor 12%, transparent);
  color: color-mix(in srgb, currentColor 78%, transparent);
  border-radius: var(--hl-faq-radius-sm);
  line-height: 1.5;
}

/* Lucide-style tag glyph rendered via mask so it inherits text colour.
   Data URI is URL-encoded (`%3C`, `%3E`) so older CSS parsers and CSP
   strict-mode setups don't choke on raw `<` / `>` in url(). */
.hl-faq__badge::before {
  content: '';
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.2%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M20.59%2013.41%2013.42%2020.58a2%202%200%200%201-2.83%200L2%2012V2h10l8.59%208.59a2%202%200%200%201%200%202.82Z%27%2F%3E%3Ccircle%20cx%3D%277%27%20cy%3D%277%27%20r%3D%271.6%27%2F%3E%3C%2Fsvg%3E")
    no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.2%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M20.59%2013.41%2013.42%2020.58a2%202%200%200%201-2.83%200L2%2012V2h10l8.59%208.59a2%202%200%200%201%200%202.82Z%27%2F%3E%3Ccircle%20cx%3D%277%27%20cy%3D%277%27%20r%3D%271.6%27%2F%3E%3C%2Fsvg%3E")
    no-repeat center / contain;
}

/* ---------------------------------------------------------------------
   Skeleton placeholders (shown during refetch / initial filter swap)
   --------------------------------------------------------------------- */

.hl-faq__skeleton {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.hl-faq__list[aria-busy='true'] + .hl-faq__skeleton {
  display: flex;
}

.hl-faq__skeleton-item {
  height: 60px;
  border: 1px solid var(--hl-faq-border);
  border-radius: var(--hl-faq-radius-md);
  position: relative;
  overflow: hidden;
  background: var(--hl-faq-soft);
}

.hl-faq__skeleton-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, currentColor 4%, transparent) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: hl-faq-shimmer 1.4s linear infinite;
}

@keyframes hl-faq-shimmer {
  to {
    transform: translateX(100%);
  }
}

/* When the skeleton is showing we don't need the corner spinner — it
   would be redundant noise. */
.hl-faq__list[aria-busy='true'] {
  opacity: 0.55;
  transition: opacity 0.15s ease;
}

/* ---------------------------------------------------------------------
   Empty state
   --------------------------------------------------------------------- */

.hl-faq__empty {
  padding: 32px 20px;
  text-align: center;
  color: var(--hl-faq-muted);
  font-style: normal;
  border: 1px dashed var(--hl-faq-border);
  border-radius: var(--hl-faq-radius-md);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hl-faq__empty-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hl-faq-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hl-faq-muted);
}

.hl-faq__empty-icon svg {
  width: 18px;
  height: 18px;
}

.hl-faq__empty-message {
  margin: 0;
  font-size: 0.95em;
}

.hl-faq__empty-reset {
  appearance: none;
  background: transparent;
  border: 1px solid var(--hl-faq-border-strong);
  color: var(--hl-faq-accent);
  font: inherit;
  font-weight: 600;
  font-size: 0.875em;
  padding: 6px 14px;
  border-radius: var(--hl-faq-radius-sm);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.hl-faq__empty-reset:hover {
  background: var(--hl-faq-tint);
  border-color: var(--hl-faq-accent);
}

.hl-faq__empty-reset:focus-visible {
  outline: 2px solid var(--hl-faq-accent);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------------
   Footer (load more + progress)
   --------------------------------------------------------------------- */

.hl-faq__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.hl-faq__progress {
  font-size: 0.8em;
  color: var(--hl-faq-muted);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.hl-faq__progress strong {
  font-weight: 600;
  color: inherit;
}

.hl-faq__load-more {
  position: relative;
  padding: 12px 28px;
  border: 1px solid var(--hl-faq-border-strong);
  border-radius: var(--hl-faq-radius-md);
  background: transparent;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: inherit;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease;
}

.hl-faq__load-more:hover:not(:disabled) {
  border-color: var(--hl-faq-accent);
  background: var(--hl-faq-tint);
  color: var(--hl-faq-accent);
}

.hl-faq__load-more:focus-visible {
  outline: 2px solid var(--hl-faq-accent);
  outline-offset: 2px;
  border-color: var(--hl-faq-accent);
  color: var(--hl-faq-accent);
}

.hl-faq__load-more:disabled {
  opacity: 0.6;
  cursor: wait;
}

.hl-faq__load-more.is-loading::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-inline-start: 8px;
  vertical-align: -2px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: hl-faq-spin 0.7s linear infinite;
}

/* Auto-load on scroll: invisible IntersectionObserver target with a spinner
   that only shows while the list is fetching the next page. */
.hl-faq__scroll-sentinel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  width: 100%;
}

.hl-faq__scroll-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--hl-faq-soft, rgba(0, 0, 0, 0.08));
  border-top-color: var(--hl-faq-accent, currentColor);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.hl-faq__list[aria-busy='true'] ~ .hl-faq__footer--scroll .hl-faq__scroll-spinner {
  opacity: 1;
  animation: hl-faq-spin 0.7s linear infinite;
}

@keyframes hl-faq-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------------------------------------------------------------------
   Mobile: horizontal-scrolling chip rail
   --------------------------------------------------------------------- */

@media (max-width: 600px) {
  .hl-faq__topics {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    /* Edge fade so the user understands more chips exist off-screen. */
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 12px,
      #000 calc(100% - 24px),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 12px,
      #000 calc(100% - 24px),
      transparent 100%
    );
    padding-block: 2px;
    margin-inline: -2px;
    scrollbar-width: none;
  }

  .hl-faq__topics::-webkit-scrollbar {
    display: none;
  }

  .hl-faq__chip {
    scroll-snap-align: start;
    flex: 0 0 auto;
  }

  /* Counts stay visible on mobile — there's no hover state to gate them. */
  .hl-faq__chip-count {
    opacity: 1;
    max-width: 4em;
    margin-inline-start: 2px;
  }

  .hl-faq__question-button {
    padding: 14px 14px;
    gap: 10px;
  }

  .hl-faq__panel-inner > * {
    padding-inline-start: 18px;
    padding-inline-end: 14px;
  }
  .hl-faq__panel-inner > *:last-child {
    padding-block-end: 14px;
  }
}

/* ---------------------------------------------------------------------
   Reduced motion
   --------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .hl-faq__item,
  .hl-faq__item::before,
  .hl-faq__icon,
  .hl-faq__icon svg,
  .hl-faq__chip,
  .hl-faq__chip-count,
  .hl-faq__question-button,
  .hl-faq__load-more,
  .hl-faq__panel,
  .hl-faq__list {
    transition: none;
  }
  .hl-faq__skeleton-item::after,
  .hl-faq__load-more.is-loading::after {
    animation: none;
  }
}

/* ---------------------------------------------------------------------
   Print: expand every panel, drop chrome, keep items together.
   --------------------------------------------------------------------- */

@media print {
  .hl-faq__controls,
  .hl-faq__footer,
  .hl-faq__icon,
  .hl-faq__status,
  .hl-faq__skeleton {
    display: none !important;
  }
  .hl-faq__item {
    border: none;
    padding: 0;
    margin: 0 0 1em 0;
    background: transparent !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .hl-faq__item::before {
    display: none;
  }
  .hl-faq__panel,
  .hl-faq__panel[hidden] {
    display: block !important;
    grid-template-rows: 1fr;
    opacity: 1 !important;
  }
  .hl-faq__panel-inner {
    overflow: visible;
  }
  .hl-faq__panel-inner > * {
    padding: 0;
  }
  .hl-faq__panel-inner > *:first-child {
    padding-block-start: 4px;
  }
  .hl-faq__question-button {
    padding: 0;
    font-weight: 700;
    background: transparent !important;
  }
}

/* ---------------------------------------------------------------------
   Elementor editor preview only — these classes only render when
   render() detects edit mode. Never paints on the published frontend.
   --------------------------------------------------------------------- */

.hl-faq--editor .hl-faq__editor-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 10px 14px;
  margin-bottom: 14px;
  background: var(--hl-faq-soft);
  border: 1px dashed var(--hl-faq-border-strong);
  border-radius: var(--hl-faq-radius-md);
  font-size: 0.8em;
  line-height: 1.4;
  color: var(--hl-faq-muted);
}

.hl-faq__editor-bar-label {
  font-weight: 700;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85em;
}

.hl-faq__editor-bar-meta {
  flex: 1 1 auto;
}

.hl-faq__editor-bar-link {
  color: var(--hl-faq-accent);
  text-decoration: underline;
  font-weight: 600;
}

.hl-faq__editor-empty {
  padding: 32px 24px;
  text-align: center;
  border: 2px dashed var(--hl-faq-border-strong);
  border-radius: var(--hl-faq-radius-md);
  background: var(--hl-faq-soft);
  color: var(--hl-faq-muted);
}

.hl-faq__editor-empty-title {
  margin: 0 0 8px;
  font-size: 1em;
}

.hl-faq__editor-empty p {
  margin: 0 0 8px;
}

.hl-faq__editor-empty-meta {
  font-size: 0.85em;
}

.hl-faq__editor-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  background: var(--hl-faq-accent);
  color: var(--hl-faq-on-accent);
  border-radius: var(--hl-faq-radius-md);
  text-decoration: none;
  font-weight: 600;
}

.hl-faq__editor-cta:hover {
  opacity: 0.9;
}
