/*!************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/faq-directory/style.scss ***!
  \************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Breakpoints.
 *
 * Sass cannot read the `--breakpoint-*` custom properties out of the Tailwind
 * theme at compile time, so this map mirrors them by hand. Keep the two in step:
 * `src/global/tailwind/design-system.css` is the source of truth, and the names
 * and values here are deliberately identical to it so there is one vocabulary
 * across utilities and SCSS.
 *
 * Values are the breakpoint's *min-width*, matching Tailwind. The mixin
 * subtracts a pixel when it needs a max-width query.
 */
/**
 * Breakpoint query.
 *
 * The map stores each breakpoint's min-width, the same way Tailwind's
 * `--breakpoint-*` variables do, so `$mobileFirst: true` uses the value as-is
 * and the max-width case stops a pixel short of it. That means
 * `breakpoint("sm")` and `breakpoint("sm", true)` never both match a width.
 */
/*********************
* BREAKPOINTS
*
* Names match the Tailwind scale in design-system.css:
* xxs 320, xs 375, sml 479, smlr 568, sm 768, md 992,
* lg 1025, wd 1200, lp 1400, bigLp 1600, xl 1930.
*
* @example
* below the breakpoint (max-width)
* @include breakpoint('sm') {
*	@content;
* }
*
* from the breakpoint up (min-width), matching the `sm:` utility prefix
* @include breakpoint('sm', true) {
*	@content;
*}
*********************/
/**
* Mixin to declare Font-face
*
*/
/**
 * FAQ Directory. Tailwind lays the two columns out; this carries the states the
 * utilities cannot express — the category the reader is on, and the plus that
 * becomes a minus when a question opens.
 */
.block-faq-directory {
  /* Clicking a category parks its heading below the fixed header instead of
     behind it — the same offset the article headings use, and the value the
     rail measures its line from. */
}
.block-faq-directory [data-faq-section] {
  scroll-margin-top: 140px;
}
.block-faq-directory__jump {
  transition: color 0.32s ease;
  position: relative;
}
.block-faq-directory__jump:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.32s ease;
}
.block-faq-directory__jump:hover, .block-faq-directory__jump.is-current {
  color: var(--color-bf-brand);
}
.block-faq-directory__jump:hover:after, .block-faq-directory__jump.is-current:after {
  height: 2px;
  background-color: var(--color-bf-brand);
}
.block-faq-directory__trigger[aria-expanded=true] {
  color: var(--color-bf-brand);
}
.block-faq-directory__trigger[aria-expanded=true] .block-faq-directory__icon span:nth-child(2) {
  visibility: hidden;
}
.block-faq-directory .accordion-text a {
  color: var(--color-bf-brand);
  text-decoration: underline;
}
.block-faq-directory .accordion-text a:hover {
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .block-faq-directory__icon,
  .block-faq-directory__jump {
    transition: none;
  }
}

/*# sourceMappingURL=style-index.css.map*/