/* ======================================================
   SINGLE POST TEMPLATE
====================================================== */

.bch-post-breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin: 24px 0 18px;
}

.bch-post-breadcrumb a {
  color: var(--teal);
  text-decoration: none;
}

.bch-post-breadcrumb a:hover {
  color: var(--navy);
}

.bch-post-category-badge {
  display: inline-block;
  background: var(--teal);
  color: #ffffff;
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bch-post-header h1 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.2;
  color: var(--navy);
}

.bch-post-excerpt {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 14px;
}

.bch-post-meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.bch-post-featured-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 28px;
  display: block;
}

/* Content typography */
.bch-post-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}

.bch-post-content p {
  margin: 0 0 18px;
}

.bch-post-content h2 {
  font-size: 24px;
  color: var(--teal);
  margin: 34px 0 14px;
}

.bch-post-content h3 {
  font-size: 19px;
  color: var(--navy);
  margin: 26px 0 10px;
}

/* Checklist (green checkmarks) */
.bch-checklist {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.bch-checklist li {
  position: relative;
  padding: 0 0 10px 30px;
  line-height: 1.6;
}

.bch-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url("https://backgroundcheckhub.com/wp-content/uploads/2026/07/checkmark-teal.png") no-repeat center / contain;
}

/* Important callout */
.bch-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--lightblue);
  border: 1px solid #cfdcf8;
  border-radius: 8px;
  padding: 16px 20px 14px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.bch-callout p {
  margin: 0;
}

.bch-callout img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-top: 3px;
  flex-shrink: 0;
}

.bch-callout strong {
  color: var(--navy);
}

/* Share buttons */
.bch-post-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.bch-post-share span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-right: 4px;
}

.bch-post-share a,
.bch-post-share button {
  width: 28px;
  height: 28px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.bch-post-share a img,
.bch-post-share button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bch-post-share a:hover,
.bch-post-share button:hover {
  opacity: .7;
}

.bch-copy-tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #ffffff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.bch-copy-tooltip.show {
  opacity: 1;
}

/* Prev/Next nav */
.bch-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0 8px;
}

.bch-post-nav a {
  flex: 1;
  font-size: 14px;
  color: var(--teal);
  text-decoration: none;
  line-height: 1.4;
}

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

.bch-post-nav .bch-nav-next {
  text-align: right;
}

.bch-post-nav small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 2px;
}

/* Related Articles (full width) */
.bch-related-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.bch-related-wrap h2 {
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 16px;
}

.bch-related-list {
  margin: 0 0 24px 20px;
  padding: 0;
}

.bch-related-list li {
  margin-bottom: 8px;
}

.bch-related-list a {
  color: var(--teal);
  text-decoration: none;
  font-size: 15px;
}

.bch-related-list a:hover {
  color: var(--navy);
}

.bch-related-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.bch-related-disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.bch-view-all {
  text-align: center;
  margin-top: 8px;
}

.bch-view-all a {
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.bch-view-all a:hover {
  color: var(--navy);
}

@media (max-width: 560px) {
  .bch-post-header h1 {
    font-size: 27px;
  }
}// Write file here