/*
style.css
Theme Name: BackgroundCheckHub Child
Theme URI: https://backgroundcheckhub.com
Description: Child theme for MyTheme
Author: Kevin Siende / Patricia Sotelo
Author URI: https://bintoai.org
Template: astra
Version: 1.0.119
Text Domain: mytheme-child
*/

/* Add custom CSS below */

.site-header {
    display: none;
}

.bch-page a {
  text-decoration: none !important;
}

.bch-page p:empty {
  margin: 0;
  padding: 0;
  display: none;
}

.bch-page {
  --navy: #0f418d;
  --navy2: #1d5ab5;
  --teal: #008a7a;
  --teal2: #00a895;
  --darkteal: #00695c;	
  --soft-teal: #e9f8f5;	
  --lightteal: #eefafa;
  --blue: #0b74e5;
  --lightblue: #eef5ff;
  --text: #071b3a;
  --muted: #5b6680;
  --border: #dfe7f2;
  --white: #ffffff;
  --green: #54a63a;
  --purple: #7b45c7;
  --lavender: #DDD4F4;	
  --orange: #ff7a1a;
  --amber: #e39156;	
  --rose: #d6336c;
  --dusty-rose: #e69cac;	
	
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}

.bch-page * {
  box-sizing: border-box;
}

.bch-page-intro {
  max-width: 760px;
  margin-bottom: 18px;
}

.bch-page-intro h1 {
  font-size: 38px;
  line-height: 1.1;
  color: var(--teal);
  margin: 0 0 14px;
}

.bch-page-intro p {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  color: var(--text);
}

.bch-divider {
  margin: 10px 0 28px;
}

.bch-divider-line {
  height: 1px;
  background: #d9e1ec;
}

.interior-hero {
  position: relative;
  background: var(--soft-teal);
  padding: 44px 0 44px;
  margin-top: 16px;
  min-height: 200px;
}

/* Dot-grid texture, fading in left to right. Sits behind hero
   content; ::after is already used for the bottom fade. */

.interior-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#008a7a 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: .5;
  -webkit-mask-image: linear-gradient(to right, transparent 30%, #000 100%);
  mask-image: linear-gradient(to right, transparent 30%, #000 100%);
  pointer-events: none;
  z-index: 0;
}

.interior-hero > * {
  position: relative;
  z-index: 1;
}

.interior-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  background: linear-gradient(to bottom, var(--soft-teal), #ffffff);
  pointer-events: none;
}

.interior-hero-inner {
  max-width: 760px;
}

.interior-hero h1 {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--teal);
}

.interior-hero h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy);
}

.interior-hero p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
}

.interior-hero p:last-child {
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .interior-hero {
    padding: 40px 0 32px;
    min-height: 200px;
  }
	
  .interior-hero h1 {
    font-size: 30px;
  }
}

.bch-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

#primary {
	margin: 0;
}

/* Anchor jumps must clear the sticky header. Keep this value in sync with
   .bch-header height (16px border + 82px nav) if the header ever changes. */
html {
  scroll-padding-top: 114px;
}

.bch-header {
  background: #fff;
  border-top: 16px solid var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
}

.bch-nav {
	color: var(--navy);
  text-decoration: none;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bch-nav a:hover {
  color: var(--teal);
}

.bch-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.bch-header .bch-logo img {
  width: 285px;
  height: auto;
  display: block;
}

.bch-menu {
  display: flex;
  align-items: center;
  margin-left: auto;	
  gap: 26px;
  font-size: 16px;
  font-weight: 500;
}

.bch-menu a {
  color: var(--navy);
  text-decoration: none;
}

/* ---- Top-nav dropdown (Topics) ---- */
.bch-has-dropdown {
  position: relative;
  display: inline-block;
}

.bch-dropdown-label {
  color: var(--navy);
  cursor: pointer;
}

.bch-has-dropdown:hover .bch-dropdown-label {
  color: var(--teal);
}

.bch-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 31, 63, 0.12);
  padding: 2px 0;
  display: none;
  z-index: 30;
}

.bch-has-dropdown:hover .bch-dropdown {
  display: block;
}

.bch-dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--navy);
  white-space: nowrap;
}

.bch-dropdown a:hover {
  background: var(--soft-teal);
  color: var(--teal);
}

.bch-search-icon {
  font-size: 24px;
}

.bch-breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.bch-breadcrumb .bch-current {
  color: var(--text);
  font-weight: 700;
}

.bch-topic-chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}

.bch-topic-chevron img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bch-topic-chevron:disabled {
  opacity: .3;
  cursor: default;
}

.bch-topic-icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
}

.bch-topic-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  background: var(--teal);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s ease;
}

.bch-button:hover {
  background: var(--navy2);
  color: #fff;
}

.bch-footer {
  background: #071b3a;
  color: #ffffff;
  padding: 42px 0 28px;
}

.bch-footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.bch-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 28px;
}

.bch-footer .footer-logo-img {
  width: 260px;
  height: auto;
  display: block;
}

.bch-footer a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}

.bch-footer a:hover {
  color: var(--teal2);
}

.bch-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 20px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
}


/* =========================================
   Responsive Styles
========================================= */

@media (max-width: 980px) {
  html {
    scroll-padding-top: 190px;
  }

  .bch-nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-bottom: 16px;
  }

  .bch-logo img {
    width: 260px;
  }

  .bch-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    gap: 14px 18px;
    font-size: 15px;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .bch-container {
    width: min(100% - 30px, 1120px);
  }

  .bch-logo img {
    width: 240px;
  }

  .bch-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    gap: 10px 14px;
    font-size: 14px;
    width: 100%;
  }

  .bch-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-logo-img {
    width: 220px;
  }	
	
  .site-footer {
  display: none;
  }
	
}

/* ======================================================
   SEARCH RESULTS PAGE
====================================================== */

.bch-search-results-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 24px 70px;
}

.bch-search-results-page h1 {
  color: #0f418d;
  font-size: 38px;
  margin-bottom: 10px;
}

.bch-search-summary {
  font-size: 18px;
  margin-bottom: 28px;
}

.bch-search-results-list {
  display: grid;
  gap: 18px;
}

.bch-search-result-card {
  display: block;
  padding: 22px;
  border: 1px solid #dfe7f2;
  border-radius: 14px;
  background: #ffffff;
  text-decoration: none !important;
  color: #071b3a;
  box-shadow: 0 8px 22px rgba(15, 65, 141, 0.08);
}

.bch-search-result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 65, 141, 0.14);
}

.bch-result-type {
  display: inline-block;
  color: #008a7a;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bch-search-result-card h2 {
  color: #0f418d;
  font-size: 22px;
  margin: 0 0 8px;
}

.bch-search-result-card p {
  margin: 0;
  color: #5b6680;
  line-height: 1.5;
}

.bch-highlight {
  background: rgba(0,168,149,.20);
  color: inherit;
  font-weight: 700;
  padding: 0 2px;
  border-radius: 2px;
}

.bch-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--lightteal);
  border: 1px solid #cdefe9;
  border-radius: 8px;
  padding: 14px 28px;
  margin-top: 48px;
}

.bch-bottom-cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bch-bottom-cta-icon {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bch-bottom-cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bch-bottom-cta h4 {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.4;
}

.bch-bottom-cta p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
}

.bch-bottom-cta .bch-button {
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

/* No-button variant: Screening Components, For Applicants */
.bch-bottom-cta--note {
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .bch-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   .bch-fcra-box — reusable light blue federal accent band.
   Sitewide.
   ============================================================ */
.bch-fcra-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--lightblue);
  border: 1px solid #dce6fb;
  border-radius: 8px;
  padding: 20px 22px;
  margin-bottom: 32px;
}

.bch-fcra-box-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bch-fcra-box-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bch-fcra-box h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 16px;
}

.bch-fcra-box p {
  margin: 0;
  font-size: 14px;
  max-width: 730px;
}

.bch-fcra-box .bch-button {
  margin-top: 14px;
  background: #fff;
  color: var(--navy) !important;
  border: 1px solid #c7d5f2;
  white-space: nowrap;
}

.bch-fcra-box .bch-button:hover {
  background: var(--navy);
  color: #fff !important;
  border-color: var(--navy);
}



