/* ============================================================
   BLOG DETAIL PAGE — blog-detail.css
   Loads ONLY on single blog post pages (is_single).
   ============================================================ */


/* ═══════════════════════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════════════════════ */

.bd-hero {
  position: relative;
  min-height: 640px;
  background-color: #030A12;
  background-image: linear-gradient(135deg, #030A12 0%, #0E2238 60%, #030A12 100%); /* fallback */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.bd-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 18, 0.72);
  z-index: 1;
}

.bd-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: calc(var(--site-header-full-height, 153px) + 40px) 20px 72px;
}

.bd-hero__content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ── Badge ── */
.bd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

/* ── Title ── */
.bd-hero__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  max-width: 760px;
}

/* ── Meta Row ── */
.bd-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 24px;
}

.bd-hero__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bd-hero__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D6B54A, #c4a33d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 13px;
  color: #071B2E;
  flex-shrink: 0;
}

.bd-hero__author-name {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
}

.bd-hero__sep {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.40);
}

.bd-hero__date,
.bd-hero__read-time,
.bd-hero__views {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.75);
}

/* ── Social Share ── */
.bd-hero__share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bd-hero__share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.bd-hero__share-btn:hover {
  background: #D6B54A;
  border-color: #D6B54A;
  color: #071B2E;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 2: MAIN LAYOUT (ARTICLE + SIDEBAR)
   ═══════════════════════════════════════════════════════════ */

.bd-main {
  background: #F6F7FA;
  padding: 80px 0;
}

.bd-main__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 48px;
  align-items: start;
}

/* ── Article Column ── */
.bd-article {
  min-width: 0; /* prevent grid blowout */
}

/* ── Prose Text ── */
.bd-prose p {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 17px;
  line-height: 32px;
  color: #334155;
  margin: 0 0 20px;
}
.bd-prose p:last-child { margin-bottom: 0; }

.bd-prose__h2 {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #071B2E;
  margin: 42px 0 18px;
  letter-spacing: -0.01em;
  scroll-margin-top: calc(var(--site-header-full-height, 153px) + 20px);
}

.bd-prose__h3 {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #071B2E;
  margin: 32px 0 12px;
  scroll-margin-top: calc(var(--site-header-full-height, 153px) + 20px);
}

/* ── Quote Block ── */
.bd-quote {
  background: #071B2E;
  border-radius: 16px;
  padding: 28px 32px;
  border-left: 5px solid #D6B54A;
  margin: 36px 0;
}

.bd-quote__icon {
  display: block;
  margin-bottom: 14px;
}

.bd-quote__text {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.bd-quote__cite {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Benefits Box ── */
.bd-benefits-box {
  background: rgba(214, 181, 74, 0.10);
  border: 1px solid rgba(214, 181, 74, 0.18);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 24px 0;
}

.bd-benefits-box__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.bd-benefits-box__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.bd-benefits-box__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #071B2E;
}

.bd-benefits-box__text {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  line-height: 26px;
  color: #334155;
  margin: 0;
}

/* ── Benefit List ── */
.bd-benefit-list {
  list-style: none;
  margin: 16px 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bd-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 16px;
  line-height: 26px;
  color: #334155;
}

.bd-benefit-list__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(214, 181, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Checklist ── */
.bd-checklist {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 28px;
  margin: 32px 0;
}

.bd-checklist__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 18px;
  color: #071B2E;
  margin: 0 0 22px;
}

.bd-checklist__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.bd-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bd-checklist__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(214, 181, 74, 0.12);
  border: 1px solid rgba(214, 181, 74, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.bd-checklist__item-title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #071B2E;
  display: block;
  margin-bottom: 2px;
}

.bd-checklist__item-text {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  line-height: 20px;
  color: #64748B;
  margin: 0;
}

/* ── Inline CTA Banner ── */
.bd-cta-inline {
  background: #071B2E;
  border-radius: 18px;
  padding: 28px 32px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bd-cta-inline__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.bd-cta-inline__text {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 420px;
}

.bd-cta-inline__btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.bd-cta-inline__btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.bd-cta-inline__btn--primary {
  background: #D6B54A;
  color: #071B2E;
}
.bd-cta-inline__btn--primary:hover { background: #c4a33d; color: #071B2E; }

.bd-cta-inline__btn--secondary {
  background: rgba(255, 255, 255, 0.10);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.bd-cta-inline__btn--secondary:hover { background: rgba(255, 255, 255, 0.18); color: #FFFFFF; }

/* ── Common Mistakes Cards ── */
.bd-mistakes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}

.bd-mistake-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bd-mistake-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bd-mistake-card__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #071B2E;
  display: block;
  margin-bottom: 4px;
}

.bd-mistake-card__text {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  line-height: 22px;
  color: #64748B;
  margin: 0;
}

/* ── Trust Features Grid ── */
.bd-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 32px;
}

.bd-trust-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bd-trust-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(214, 181, 74, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bd-trust-card__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #071B2E;
  display: block;
  margin-bottom: 2px;
}

.bd-trust-card__text {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 12px;
  line-height: 18px;
  color: #64748B;
  margin: 0;
}

/* ── Tags ── */
.bd-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #E5E7EB;
}

.bd-tags__label {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  margin-right: 4px;
}

.bd-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  color: #334155;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}
.bd-tag:hover { border-color: #D6B54A; color: #071B2E; }


/* ═══════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════ */

.bd-sidebar {
  position: sticky;
  top: calc(var(--site-header-full-height, 153px) + 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bd-sidebar-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 28px;
}

/* ── Author Card ── */
.bd-author-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bd-author-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D6B54A, #c4a33d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 28px;
  font-weight: 700;
  color: #071B2E;
  margin-bottom: 14px;
}

.bd-author-card__name {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #071B2E;
  display: block;
  margin-bottom: 4px;
}

.bd-author-card__role {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  color: #64748B;
  display: block;
  margin-bottom: 12px;
}

.bd-author-card__bio {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  line-height: 22px;
  color: #64748B;
  margin: 0 0 16px;
}

.bd-author-card__socials {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.bd-author-card__social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F6F7FA;
  border: 1px solid #E5E7EB;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.bd-author-card__social-link:hover { background: #071B2E; color: #FFFFFF; }

/* ── TOC Card ── */
.bd-toc-card { padding: 24px; }

.bd-toc-card__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94A3B8;
  margin: 0 0 14px;
}

.bd-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bd-toc-list__item { }

.bd-toc-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  color: #334155;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.bd-toc-list__link:hover { background: #F6F7FA; color: #071B2E; }
.bd-toc-list__link svg { flex-shrink: 0; color: #CBD5E1; }

/* ── Sidebar CTA ── */
.bd-sidebar-cta {
  background: #071B2E;
  border-color: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bd-sidebar-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(214, 181, 74, 0.12);
  border-radius: 12px;
  margin-bottom: 16px;
}

.bd-sidebar-cta__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 17px;
  color: #FFFFFF;
  margin: 0 0 10px;
}

.bd-sidebar-cta__text {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.70);
  margin: 0 0 20px;
}

.bd-sidebar-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  background: #D6B54A;
  color: #071B2E;
  border-radius: 8px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
  justify-content: center;
}
.bd-sidebar-cta__btn:hover { background: #c4a33d; color: #071B2E; }

/* ── Sidebar Newsletter ── */
.bd-sidebar-newsletter__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 16px;
  color: #071B2E;
  margin: 0 0 8px;
}

.bd-sidebar-newsletter__text {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  line-height: 22px;
  color: #64748B;
  margin: 0 0 16px;
}

.bd-sidebar-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bd-sidebar-newsletter__input {
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid #E5E7EB;
  padding: 0 14px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  color: #071B2E;
  outline: none;
  transition: border-color 0.18s;
  width: 100%;
}
.bd-sidebar-newsletter__input:focus { border-color: #D6B54A; }
.bd-sidebar-newsletter__input::placeholder { color: #94A3B8; }

.bd-sidebar-newsletter__btn {
  height: 44px;
  border-radius: 10px;
  background: #071B2E;
  color: #FFFFFF;
  border: none;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.bd-sidebar-newsletter__btn:hover { background: #0E2238; }


/* ═══════════════════════════════════════════════════════════
   SHARED SECTION HEADING
   ═══════════════════════════════════════════════════════════ */

.bd-section-heading {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 28px;
  color: #071B2E;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.bd-section-heading--sm {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 22px;
  color: #071B2E;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}


/* ═══════════════════════════════════════════════════════════
   RELATED SERVICES
   ═══════════════════════════════════════════════════════════ */

.bd-related-services {
  background: #FFFFFF;
  padding: 72px 0;
}

.bd-related-services__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.bd-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bd-service-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}
.bd-service-card:hover {
  box-shadow: 0 6px 28px rgba(7, 27, 46, 0.10);
  transform: translateY(-2px);
}

.bd-service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(214, 181, 74, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.bd-service-card__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 16px;
  color: #071B2E;
  margin: 0 0 8px;
}

.bd-service-card__desc {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  line-height: 22px;
  color: #64748B;
  margin: 0 0 18px;
  flex: 1;
}

.bd-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #D6B54A;
  text-decoration: none;
  transition: gap 0.2s;
}
.bd-service-card__link:hover { gap: 10px; color: #c4a33d; }


/* ═══════════════════════════════════════════════════════════
   RELATED ARTICLES
   ═══════════════════════════════════════════════════════════ */

.bd-related-articles {
  background: #F6F7FA;
  padding: 72px 0;
}

.bd-related-articles__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.bd-related-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bd-related-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
  transition: box-shadow 0.22s;
}
.bd-related-card:hover { box-shadow: 0 4px 24px rgba(7, 27, 46, 0.09); }

.bd-related-card__image-wrap {
  overflow: hidden;
  background: linear-gradient(135deg, #0E2238 0%, #1a3a5c 100%);
  min-height: 140px;
}

.bd-related-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bd-related-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bd-related-card__body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}

.bd-related-card__cat {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  align-self: flex-start;
  background: rgba(214, 181, 74, 0.12);
  color: #8B6914;
}

.bd-related-card__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #071B2E;
  margin: 0 0 auto;
  padding-bottom: 14px;
}
.bd-related-card__title a { color: inherit; text-decoration: none; }
.bd-related-card__title a:hover { color: #D6B54A; }

.bd-related-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
}

.bd-related-card__date {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 12px;
  color: #94A3B8;
}

.bd-related-card__link {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: #D6B54A;
  text-decoration: none;
}
.bd-related-card__link:hover { color: #c4a33d; }


/* ═══════════════════════════════════════════════════════════
   COMMENTS + FORM
   ═══════════════════════════════════════════════════════════ */

.bd-comments-section {
  background: #FFFFFF;
  padding: 72px 0;
}

.bd-comments-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.bd-comments {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bd-comment-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 24px;
}

.bd-comment-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bd-comment-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D6B54A, #c4a33d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #071B2E;
  flex-shrink: 0;
}

.bd-comment-card__name {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #071B2E;
  display: block;
}

.bd-comment-card__date {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 12px;
  color: #94A3B8;
  display: block;
  margin-top: 2px;
}

.bd-comment-card__text {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  line-height: 26px;
  color: #334155;
  margin: 0;
}

/* ── Comment Form ── */
.bd-comment-form-wrap { }

.bd-comment-form {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bd-comment-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bd-comment-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bd-comment-form__label {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.bd-comment-form__input {
  height: 48px;
  border-radius: 10px;
  border: 1.5px solid #E5E7EB;
  padding: 0 14px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  color: #071B2E;
  outline: none;
  transition: border-color 0.18s;
  width: 100%;
}
.bd-comment-form__input:focus { border-color: #D6B54A; }
.bd-comment-form__input::placeholder { color: #94A3B8; }

.bd-comment-form__textarea {
  height: 120px;
  border-radius: 10px;
  border: 1.5px solid #E5E7EB;
  padding: 12px 14px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  color: #071B2E;
  outline: none;
  resize: vertical;
  transition: border-color 0.18s;
  width: 100%;
}
.bd-comment-form__textarea:focus { border-color: #D6B54A; }
.bd-comment-form__textarea::placeholder { color: #94A3B8; }

.bd-comment-form__submit {
  align-self: flex-start;
  padding: 14px 28px;
  background: #071B2E;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.bd-comment-form__submit:hover { background: #0E2238; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

  /* Hero */
  .bd-hero { min-height: 520px; }
  .bd-hero__title { font-size: 38px; line-height: 48px; }

  /* Main two-column → single column */
  .bd-main__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bd-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bd-sidebar-cta { grid-column: 1 / -1; }

  /* Trust grid */
  .bd-trust-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .bd-services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Comments layout */
  .bd-comments-container { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 767px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* Hero */
  .bd-hero { min-height: 440px; }
  .bd-hero__inner { padding: calc(var(--site-header-full-height, 153px) + 30px) 20px 60px; }
  .bd-hero__title { font-size: 28px; line-height: 38px; }
  .bd-hero__meta  { gap: 8px; }
  .bd-hero__sep   { display: none; }

  /* Main */
  .bd-main { padding: 48px 0; }

  /* Checklist */
  .bd-checklist__grid { grid-template-columns: 1fr; }

  /* CTA inline */
  .bd-cta-inline { flex-direction: column; align-items: flex-start; gap: 20px; }
  .bd-cta-inline__btns { width: 100%; }
  .bd-cta-inline__btn { width: 100%; justify-content: center; }

  /* Trust */
  .bd-trust-grid { grid-template-columns: 1fr; }

  /* Sidebar */
  .bd-sidebar { grid-template-columns: 1fr; }
  .bd-sidebar-cta { grid-column: auto; }

  /* Services */
  .bd-services-grid { grid-template-columns: 1fr; }

  /* Related articles: image stacks */
  .bd-related-card { grid-template-columns: 1fr; }
  .bd-related-card__image-wrap { min-height: 180px; }

  /* Comments form row */
  .bd-comment-form__row { grid-template-columns: 1fr; }
  .bd-comment-form__submit { width: 100%; }

  .bd-related-services,
  .bd-related-articles,
  .bd-comments-section { padding: 48px 0; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .bd-hero__title  { font-size: 24px; line-height: 34px; }
  .bd-prose__h2    { font-size: 24px; line-height: 32px; }
  .bd-prose__h3    { font-size: 18px; line-height: 28px; }
  .bd-section-heading { font-size: 22px; }
}
