/* stylelint-disable-next-line wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-disable wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-enable wrap-rem-on-px/wrap-rem-on-px */
/*
USAGE:
font-size: fluid(12, 62); : from rem(12)@380px to  rem(62)@1440px
gap: fluid(10, 33, 992);  : from rem(10)@991px to  rem(33)@1440px
margin-right: fluid(32, 65, 320, 2560);  : from rem(32)@320px to  rem(65)@2560px
*/
/*
AUTOFILL

USAGE:
@include mixin.autofill(background-color, text-color);
@include mixin.autofill;

Note: Call this mixin in the wrapper or container to where you intend to manipulate the
      default chrome autofill styles for input, textarea and select elements.
*/
/* stylelint-disable */
/* stylelint-enable */
.filter-pill {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.75rem;
  border: 0;
  border-radius: 0.75rem;
  background-color: #fbc8b4;
  color: #1b2a4b;
  font-family: "Figtree", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.filter-pill--active, .filter-pill:hover {
  background-color: #cf4b27;
  color: #fff;
}
.filter-pill:focus-visible {
  outline: 0.125rem solid #1b2a4b;
  outline-offset: 0.125rem;
}

a.filter-pill {
  text-decoration: none;
}
a.filter-pill:hover, a.filter-pill:active, a.filter-pill--active {
  color: #fff;
  background-color: #cf4b27;
}

.site-main a.filter-pill:hover, .site-main a.filter-pill:active, .site-main a.filter-pill--active {
  color: #fff;
  background-color: #cf4b27;
}

.search-panel {
  width: 100%;
  max-width: 100%;
  padding: 2.5rem 1.25rem;
  border-radius: 1rem;
  background-color: #e4eef3;
}
@media screen and (min-width:991px) {
  .search-panel {
    padding: 2.5rem;
    border-radius: 1.5rem;
  }
}
@media screen and (min-width:1440px) {
  .search-panel {
    max-width: 82.5rem;
  }
}
.search-panel h3 {
  margin: 0 0 1.5rem;
  color: #1b2a4b;
  font-family: "Radio Canada", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width:991px) {
  .search-panel h3 {
    font-size: 1.875rem;
  }
}
.search-panel form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: #fff;
}
.search-panel form > span[aria-hidden=true] {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #cf4b27;
}
.search-panel form > span[aria-hidden=true] svg {
  display: block;
  width: 100%;
  height: 100%;
}
.search-panel input[type=search] {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1b2a4b;
  font-family: "Figtree", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width:991px) {
  .search-panel input[type=search] {
    font-size: 1.25rem;
  }
}
.search-panel input[type=search]::placeholder {
  color: #1b2a4b;
  opacity: 1;
}
.search-panel input[type=search]:focus, .search-panel input[type=search]:focus-visible {
  outline: none;
}

.visually-hidden,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section.section--faq-section {
  padding: 1.5rem 0 2.5rem;
  background-color: #fff;
}
@media screen and (min-width:991px) {
  .section.section--faq-section {
    padding: 2rem 0 1.5625rem;
  }
}

.section.section--hero + .section.section--faq-section {
  padding-top: 0.5rem;
}
@media screen and (min-width:991px) {
  .section.section--hero + .section.section--faq-section {
    padding-top: 0.875rem;
  }
}

.faq-section__search {
  margin: 0 0 1.625rem;
}
@media screen and (min-width:700px) {
  .faq-section__search {
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width:991px) {
  .faq-section__search {
    margin-bottom: 3.75rem;
  }
}
.faq-section__search .search-panel {
  margin: 0;
}
.faq-section__search .faq-search__status {
  margin: 0.75rem 0 0;
  color: #1b2a4b;
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (min-width:700px) {
  .faq-section__search .faq-search__status {
    margin-top: 1rem;
  }
}
.faq-section__heading {
  margin: 0 0 1.5rem;
  color: #1b2a4b;
  font-family: "Radio Canada", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width:991px) {
  .faq-section__heading {
    margin-bottom: 2rem;
    font-size: 1.875rem;
  }
}
.faq-section__empty {
  margin: 2rem 0 0;
  padding: 1.5rem 1.25rem;
  width: 100%;
  color: #cf4b27;
  font-family: "Figtree", sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width:991px) {
  .faq-section__empty {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    font-size: 1.5rem;
  }
}
.faq-section__empty[hidden] {
  display: none;
}
.faq-section .faq-tags__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0 0 1.5rem;
  padding: 0 1.25rem 0 0;
  overflow-x: auto;
  list-style: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.faq-section .faq-tags__list::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width:991px) {
  .faq-section .faq-tags__list {
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3.25rem;
    padding: 0;
    overflow: visible;
  }
}
.faq-section .faq-questions__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width:700px) {
  .faq-section .faq-questions__grid {
    gap: 1.75rem;
  }
}
.faq-section .faq-questions__card {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  height: 100%;
  padding: 2.5rem 1.25rem;
  border-radius: 1rem;
  background-color: #f7eae4;
}
@media screen and (min-width:700px) {
  .faq-section .faq-questions__card {
    gap: 1.5rem;
  }
}
.faq-section .faq-questions__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin: 0;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background-color: #cf4b27;
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}
.faq-section .faq-questions__card h3 {
  margin: 0;
  color: #1b2a4b;
  font-family: "Radio Canada", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}
.faq-section .faq-questions__card > p:not(.faq-questions__tag) {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}
.faq-section .faq-questions__card .editor {
  color: #222;
  font-family: "Figtree", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}
.faq-section .faq-questions__card .editor p,
.faq-section .faq-questions__card .editor li {
  margin: 0 0 0.5rem;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.faq-section .faq-questions__card .editor p:last-child,
.faq-section .faq-questions__card .editor li:last-child {
  margin-bottom: 0;
}
.faq-section .faq-questions__card .editor ul,
.faq-section .faq-questions__card .editor ol {
  margin: 0 0 0.5rem;
  padding: 0 0 0 1.5rem;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.faq-section .faq-questions__card .editor ul:last-child,
.faq-section .faq-questions__card .editor ol:last-child {
  margin-bottom: 0;
}
.faq-section .faq-questions__card .editor ul {
  list-style-type: disc;
  list-style-position: outside;
}
.faq-section .faq-questions__card .editor ol {
  list-style-type: decimal;
  list-style-position: outside;
}
.faq-section .faq-questions__card .editor ul > li {
  display: list-item;
  list-style-type: disc;
  list-style-position: outside;
}
.faq-section .faq-questions__card .editor ol > li {
  display: list-item;
  list-style-type: decimal;
  list-style-position: outside;
}
.faq-section .faq-questions__card .editor a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}
.faq-section .faq-questions__card .editor a:hover, .faq-section .faq-questions__card .editor a:focus-visible {
  color: #cf4b27;
}
.faq-section .faq-questions__card .editor a:focus-visible {
  outline: 0.125rem solid #cf4b27;
  outline-offset: 0.125rem;
}
@media screen and (min-width:991px) {
  .faq-section .faq-questions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-section .faq-questions__card {
    padding: 2.5rem;
    border-radius: 1.5rem;
  }
  .faq-section .faq-questions__card h3 {
    max-width: 31.25rem;
    font-size: 1.875rem;
  }
  .faq-section .faq-questions__card > p:not(.faq-questions__tag),
  .faq-section .faq-questions__card .editor {
    font-size: 1.25rem;
  }
}
