.btn-primary {
    background-color: #FFBE00;
}

@media print {
  .topic-media__video-item {
    display: none;
  }
}
/* =========================================================
   CANARY LABS — HELP CENTER FOOTER STYLES
   ---------------------------------------------------------
   Paste this entire file into Forumbee:
     Admin → Theme → Custom CSS

   Every selector is prefixed with `body` (or `body .canary-footer`)
   to raise specificity above Forumbee's default theme rules.
   The companion HTML snippet lives in canary-footer-html.html.
   ========================================================= */

/* ---------- Reset (defensive against Forumbee theme) ---------- */
body .canary-footer,
body .canary-footer * {
  box-sizing: border-box;
}

/* ---------- Footer container ---------- */
body footer.canary-footer {
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: 'Montserrat', 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  padding: 80px 0 60px;
  margin: 0;
  border: 0;
}

body .canary-footer .canary-footer__page-padding {
  padding-left: 5%;
  padding-right: 5%;
}

body .canary-footer .canary-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ---------- Top centered brand ---------- */
body .canary-footer .canary-footer__brand-wrap {
  text-align: center;
  margin-bottom: 60px;
}
body .canary-footer .canary-footer__brand-link {
  display: inline-block;
  text-decoration: none;
  border: 0;
  background: none;
}
body .canary-footer .canary-footer__brand-link img {
  display: inline-block;
  max-width: 220px;
  width: 100%;
  height: auto;
  border: 0;
}

/* ---------- Three-column grid ---------- */
body .canary-footer .canary-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

/* ---------- Column headings (yellow) ---------- */
body .canary-footer .canary-footer__heading {
  color: #FFBF00;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin: 0 0 16px 0;
  padding: 0;
  line-height: 1.3;
  border: 0;
  background: none;
}

/* ---------- Body paragraphs ---------- */
body .canary-footer .canary-footer__text {
  color: #1a1a1a;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 32px 0;
  padding: 0;
  font-weight: 400;
}

/* ---------- "Canary System" numbered subheadings ---------- */
body .canary-footer .canary-footer__section-title {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 8px 0;
  padding: 0;
  line-height: 1.3;
}
body .canary-footer .canary-footer__section-title:first-child {
  margin-top: 0;
}
body .canary-footer .canary-footer__section-title a {
  color: #1a1a1a;
  text-decoration: none;
  background: none;
}
body .canary-footer .canary-footer__section-title a:hover {
  color: #FFBF00;
}

/* ---------- Link lists (kill bullets, tighten spacing) ---------- */
body .canary-footer ul.canary-footer__nav-list {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0 0 16px 0;
  line-height: 1;
  background: none;
}
body .canary-footer ul.canary-footer__nav-list li {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: none;
  background-image: none;
  line-height: 1;
  min-height: 0;
  height: auto;
  border: 0;
}
/* Kill any bullet pseudo-elements injected by Forumbee */
body .canary-footer ul.canary-footer__nav-list li::before,
body .canary-footer ul.canary-footer__nav-list li::after,
body .canary-footer ul.canary-footer__nav-list li::marker {
  content: none;
  display: none;
  background: none;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
/* Spacing between rows — single knob to tune */
body .canary-footer ul.canary-footer__nav-list li + li {
  margin-top: 4px;
}

body .canary-footer .canary-footer__link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  transition: color 0.2s ease;
  display: block;
}
body .canary-footer .canary-footer__link:hover {
  color: #FFBF00;
  text-decoration: none;
}

/* ---------- Phone link with underline ---------- */
body .canary-footer .canary-footer__tel-link {
  display: inline-block;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 2px;
  background: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
body .canary-footer .canary-footer__tel-link:hover {
  color: #FFBF00;
  border-bottom-color: #FFBF00;
}

/* ---------- Responsive: tablet ---------- */
@media (max-width: 991px) {
  body footer.canary-footer {
    padding: 60px 0 40px;
  }
  body .canary-footer .canary-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  body .canary-footer .canary-footer__col--about {
    grid-column: 1 / -1;
  }
}

/* ---------- Responsive: mobile ---------- */
@media (max-width: 640px) {
  body footer.canary-footer {
    padding: 48px 0 32px;
  }
  body .canary-footer .canary-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body .canary-footer .canary-footer__col--about {
    grid-column: auto;
  }
  body .canary-footer .canary-footer__brand-wrap {
    margin-bottom: 40px;
  }
  body .canary-footer .canary-footer__brand-link img {
    max-width: 180px;
  }
  body .canary-footer .canary-footer__heading {
    font-size: 16px;
  }
  body .canary-footer .canary-footer__text,
  body .canary-footer .canary-footer__link,
  body .canary-footer .canary-footer__section-title {
    font-size: 16px;
  }
  body .canary-footer .canary-footer__tel-link {
    font-size: 20px;
  }
}