/*
Theme Name: Best Garden Channel
Theme URI: https://bestgardenchannel.com
Author: Best Garden Channel
Author URI: https://bestgardenchannel.com
Description: Custom theme for bestgardenchannel.com — fast, SEO-optimized, conversion-focused.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: bgc
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --red:         #D93D1A;
  --red-dark:    #B8310F;
  --red-light:   #FCF0EC;
  --red-mid:     #F4DDD6;
  --green:       #2D5A1B;
  --green-mid:   #3D7A24;
  --green-light: #EAF3DE;
  --green-pale:  #F4FAF0;
  --cream:       #FDF8F0;
  --amber:       #C4881A;
  --amber-light: #FEF3DC;
  --ink:         #1A1A14;
  --ink-mid:     #2E2E26;
  --muted:       #6B6B5A;
  --muted-light: #9A9A88;
  --border:      #E8E2D8;
  --border-mid:  #D8D2C8;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(26,26,20,0.06);
  --shadow-md:   0 6px 24px rgba(26,26,20,0.10);
  --shadow-lg:   0 16px 48px rgba(26,26,20,0.13);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --max-width:   1120px;
  --content-width: 760px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.bgc-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.bgc-content-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.full-bleed {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 0.75rem;
}
.view-all-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.view-all-link:hover { border-bottom-color: var(--red); }
.meta-dot {
  width: 3px; height: 3px;
  background: var(--border-mid);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.bgc-announcement {
  background: var(--green);
  color: rgba(255,255,255,0.95);
  text-align: center;
  padding: 9px 1rem;
  font-size: 13px;
  font-weight: 500;
}
.bgc-announcement a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bgc-announcement a:hover { opacity: 0.82; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.bgc-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.bgc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.bgc-nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.bgc-nav-logo-badge {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.bgc-nav-logo:hover .bgc-nav-logo-badge { transform: rotate(-8deg) scale(1.05); }
.bgc-nav-logo-badge svg { width: 22px; height: 22px; }
.bgc-nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.bgc-nav-wordmark-main {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
}
.bgc-nav-wordmark-sub {
  font-size: 10.5px; font-weight: 600;
  color: var(--muted-light);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px;
}
.bgc-nav-menu {
  display: flex; align-items: center; gap: 0.25rem;
}
.bgc-nav-menu a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 6px 12px; border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.bgc-nav-menu a:hover { color: var(--ink); background: var(--cream); }
.bgc-nav-menu a.current-menu-item { color: var(--red); }
.bgc-nav-right { display: flex; align-items: center; gap: 10px; }
.bgc-nav-search {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s; color: var(--muted);
}
.bgc-nav-search:hover { border-color: var(--border-mid); color: var(--ink); }
.bgc-nav-search svg { width: 15px; height: 15px; }
.bgc-nav-cta {
  background: var(--red); color: #fff;
  font-size: 13.5px; font-weight: 600;
  padding: 9px 20px; border-radius: var(--radius-sm);
  transition: all 0.2s; white-space: nowrap;
}
.bgc-nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.bgc-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.bgc-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.2s;
}
.bgc-mobile-nav {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
}
.bgc-mobile-nav.open { display: block; }
.bgc-mobile-nav a {
  display: block; padding: 10px 0;
  font-size: 15px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.bgc-mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  font-size: 15px; font-weight: 700;
  padding: 13px 28px; border-radius: var(--radius-md);
  border: 2px solid var(--red); transition: all 0.2s;
}
.btn-red:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,61,26,0.35);
}
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.85);
  font-size: 15px; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.22); transition: all 0.2s;
}
.btn-ghost-white:hover {
  border-color: rgba(255,255,255,0.55); color: #fff;
  background: rgba(255,255,255,0.06);
}
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--red);
  font-size: 15px; font-weight: 700;
  padding: 13px 28px; border-radius: var(--radius-md);
  transition: all 0.2s;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-amber {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: #fff;
  font-size: 15px; font-weight: 700;
  padding: 13px 28px; border-radius: var(--radius-md);
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.btn-amber:hover { background: #a8720f; transform: translateY(-1px); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.bgc-trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.bgc-trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; padding: 1.1rem 2rem; flex-wrap: wrap;
}
.bgc-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--muted); white-space: nowrap;
}
.bgc-trust-item svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }
.bgc-trust-divider { width: 1px; height: 18px; background: var(--border); }

/* ============================================================
   POST / CARD COMPONENTS
   ============================================================ */
.bgc-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bgc-post-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; display: block; transition: all 0.25s;
}
.bgc-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}
.bgc-post-card-img {
  height: 200px;
  background: linear-gradient(145deg, #2D5A1B 0%, #1E3D12 55%, #0F2008 100%);
  display: flex; align-items: flex-end; padding: 1rem;
  position: relative; overflow: hidden;
}
.bgc-post-card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 0;
}
.bgc-post-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,32,8,0.75) 0%, transparent 55%);
}
.bgc-cat-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 10.5px; font-weight: 700; padding: 4px 10px;
  border-radius: 4px; letter-spacing: 0.05em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.bgc-post-card-body { padding: 1.25rem 1.4rem 1.4rem; }
.bgc-post-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--ink);
  line-height: 1.3; margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.bgc-post-card-excerpt {
  font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 0.9rem;
}
.bgc-post-card-meta {
  font-size: 12px; color: var(--muted-light);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.bgc-post-card-readmore {
  font-size: 13px; font-weight: 600; color: var(--red);
  display: inline-flex; align-items: center; gap: 4px; margin-top: 0.6rem;
}

/* ============================================================
   CATEGORY BADGE COLOURS
   ============================================================ */
.bgc-cat-badge.green  { background: var(--green-mid); }
.bgc-cat-badge.amber  { background: var(--amber); }
.bgc-cat-badge.ink    { background: var(--ink); }

/* ============================================================
   AFFILIATE CTA BOX (reusable in posts + pages)
   ============================================================ */
.bgc-aff-box {
  background: var(--red); border-radius: var(--radius-lg);
  padding: 1.75rem 2rem; margin: 2.5rem 0; position: relative; overflow: hidden;
}
.bgc-aff-box::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.07); pointer-events: none;
}
.bgc-aff-box-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem;
}
.bgc-aff-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: #fff;
  margin-bottom: 0.6rem; line-height: 1.2;
}
.bgc-aff-box-desc {
  font-size: 14.5px; color: rgba(255,255,255,0.75);
  line-height: 1.65; margin-bottom: 1.25rem;
}
.bgc-aff-codes { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 1.25rem; }
.bgc-code-pill {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md); padding: 8px 14px; cursor: pointer;
  transition: background 0.2s;
}
.bgc-code-pill:hover { background: rgba(255,255,255,0.2); }
.bgc-code-pill-label {
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px;
}
.bgc-code-pill-value {
  font-family: 'Courier New', monospace;
  font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.03em;
}
.bgc-aff-disc {
  font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 10px; line-height: 1.5;
}

/* ============================================================
   TIP / WARNING BOXES (for blog posts)
   ============================================================ */
.bgc-tip {
  background: var(--green-light);
  border: 1.5px solid rgba(45,90,27,0.2);
  border-radius: var(--radius-md); padding: 1.1rem 1.4rem;
  margin: 1.75rem 0; display: flex; gap: 12px; align-items: flex-start;
}
.bgc-tip-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.bgc-tip-body { font-size: 15px; color: var(--green); line-height: 1.65; }
.bgc-tip-body strong { color: var(--green); }
.bgc-warning {
  background: var(--amber-light);
  border: 1.5px solid rgba(196,136,26,0.3);
  border-radius: var(--radius-md); padding: 1.1rem 1.4rem;
  margin: 1.75rem 0; display: flex; gap: 12px; align-items: flex-start;
}
.bgc-warning-body { font-size: 15px; color: #7a5010; line-height: 1.65; }

/* ============================================================
   EMAIL CAPTURE (reusable section)
   ============================================================ */
.bgc-email-section {
  background: var(--green); padding: 5rem 0; position: relative; overflow: hidden;
}
.bgc-email-section::before {
  content: ''; position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%); width: 500px; height: 500px;
  border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none;
}
.bgc-email-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.bgc-email-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem;
}
.bgc-email-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
  color: #fff; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.bgc-email-title em { font-style: italic; color: rgba(255,255,255,0.7); }
.bgc-email-desc { font-size: 15.5px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 2rem; }
.bgc-email-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; }
.bgc-email-bullet { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,0.8); }
.bgc-bullet-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.bgc-bullet-check svg { width: 10px; height: 10px; stroke: #fff; }
.bgc-email-form { display: flex; gap: 8px; }
.bgc-email-form.sendfox-form p { margin: 0; display: contents; }
.bgc-email-form div[style*="left:-5000px"] { display: none !important; }
.bgc-email-input {
  flex: 1; padding: 13px 16px; border-radius: var(--radius-md); border: none;
  font-size: 15px; font-family: 'DM Sans', sans-serif;
  background: #fff; color: var(--ink); outline: none; transition: box-shadow 0.2s;
}
.bgc-email-input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
.bgc-email-input::placeholder { color: #a0a090; }
.bgc-email-fine { font-size: 11.5px; color: rgba(255,255,255,0.38); margin-top: 10px; }

/* Giveaway card */
.bgc-giveaway-card {
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl); padding: 2rem; text-align: center;
}
.bgc-prize-icon { font-size: 52px; margin-bottom: 1rem; display: block; }
.bgc-giveaway-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.6rem;
}
.bgc-giveaway-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; line-height: 1.2;
}
.bgc-giveaway-value { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.bgc-giveaway-value strong { color: var(--amber); font-size: 1.2rem; }
.bgc-entries-bar { background: rgba(255,255,255,0.1); border-radius: 50px; height: 8px; margin-bottom: 0.6rem; overflow: hidden; }
.bgc-entries-fill { height: 100%; width: 67%; background: linear-gradient(90deg, var(--amber), #e8a830); border-radius: 50px; }
.bgc-entries-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.bgc-btn-giveaway {
  display: block; background: #fff; color: var(--green);
  font-size: 14px; font-weight: 700; padding: 12px 24px;
  border-radius: var(--radius-md); text-decoration: none;
  transition: all 0.2s; margin-bottom: 8px;
}
.bgc-btn-giveaway:hover { background: var(--cream); transform: translateY(-1px); }
.bgc-giveaway-fine { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.bgc-footer {
  background: var(--ink); padding: 4rem 0 2.5rem; color: rgba(255,255,255,0.55);
}
.bgc-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.bgc-footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem;
}
.bgc-footer-brand-desc {
  font-size: 13.5px; line-height: 1.65; margin-bottom: 1.25rem; color: rgba(255,255,255,0.45);
}
.bgc-footer-yt-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--red); transition: opacity 0.2s;
}
.bgc-footer-yt-link:hover { opacity: 0.8; }
.bgc-footer-yt-link svg { width: 16px; height: 16px; }
.bgc-footer-col-head {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem;
}
.bgc-footer-links { display: flex; flex-direction: column; gap: 7px; }
.bgc-footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.bgc-footer-links a:hover { color: rgba(255,255,255,0.9); }
.bgc-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; }
.bgc-footer-bottom-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem; font-size: 12.5px; margin-bottom: 1rem;
}
.bgc-footer-bottom-links { display: flex; gap: 1.25rem; }
.bgc-footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.38); transition: color 0.15s; }
.bgc-footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
.bgc-footer-disclosure { font-size: 11.5px; color: rgba(255,255,255,0.28); line-height: 1.6; max-width: 700px; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.bgc-single-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  align-items: start;
}
.bgc-single-header { margin-bottom: 2rem; }
.bgc-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted-light); margin-bottom: 1.5rem;
}
.bgc-breadcrumb a { color: var(--muted-light); transition: color 0.15s; }
.bgc-breadcrumb a:hover { color: var(--red); }
.bgc-breadcrumb-sep { opacity: 0.5; }
.bgc-post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700;
  color: var(--ink); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.bgc-post-subtitle {
  font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem;
}
.bgc-post-meta-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted-light); flex-wrap: wrap; margin-bottom: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border);
}
.bgc-author-badge { display: flex; align-items: center; gap: 7px; }
.bgc-author-avatar {
  width: 28px; height: 28px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.bgc-author-name { font-weight: 600; color: var(--ink); }
.bgc-aff-notice {
  font-size: 12px; color: var(--red); font-weight: 600;
  background: var(--red-light); padding: 2px 8px; border-radius: 4px;
}

/* Video embed */
.bgc-video-embed { margin: 0 0 2.5rem; }
.bgc-video-ratio {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--ink);
}
.bgc-video-ratio iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: none; border-radius: var(--radius-lg);
}

/* Post content typography */
.bgc-post-content { font-size: 17px; line-height: 1.8; color: var(--ink); }
.bgc-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem; font-weight: 700; color: var(--ink);
  line-height: 1.2; letter-spacing: -0.015em; margin: 2.5rem 0 1rem;
}
.bgc-post-content h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 2rem 0 0.75rem;
}
.bgc-post-content p { margin-bottom: 1.4rem; }
.bgc-post-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.bgc-post-content a:hover { color: var(--red-dark); }
.bgc-post-content strong { font-weight: 700; }
.bgc-post-content ul, .bgc-post-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; list-style: revert; }
.bgc-post-content li { margin-bottom: 0.5rem; padding-left: 0.25rem; }
.bgc-post-content ul li::marker { color: var(--red); }
.bgc-post-content blockquote {
  background: var(--red-light); border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0; padding: 1.1rem 1.4rem;
  margin: 1.75rem 0; font-style: italic; color: var(--ink);
}
.bgc-post-content blockquote p { margin-bottom: 0; font-size: 16px; }
.bgc-post-content hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.bgc-post-content img { border-radius: var(--radius-md); margin: 1.5rem 0; }

/* Post footer */
.bgc-post-footer { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.bgc-post-footer-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--muted-light); margin-bottom: 1rem;
}
.bgc-tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.bgc-tag {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 50px; padding: 5px 13px; font-size: 13px; color: var(--muted);
  transition: all 0.15s;
}
.bgc-tag:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.bgc-author-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 2.5rem;
}
.bgc-author-box-avatar {
  width: 60px; height: 60px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.bgc-author-box-name { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.bgc-author-box-role {
  font-size: 12px; color: var(--red); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem;
}
.bgc-author-box-bio { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Share bar */
.bgc-share-bar {
  background: var(--green-light); border: 1px solid rgba(45,90,27,0.15);
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.bgc-share-label { font-size: 14px; font-weight: 600; color: var(--green); }
.bgc-share-buttons { display: flex; gap: 8px; }
.bgc-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; padding: 7px 14px;
  border-radius: var(--radius-sm); text-decoration: none;
  transition: all 0.15s; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.bgc-share-btn.yt { background: #FF0000; color: #fff; }
.bgc-share-btn.copy { background: var(--ink); color: #fff; }
.bgc-share-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* Related posts */
.bgc-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bgc-related-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1rem;
  text-decoration: none; display: block; transition: all 0.2s;
}
.bgc-related-card:hover { border-color: var(--red); transform: translateY(-2px); }
.bgc-related-cat {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--red); margin-bottom: 5px;
}
.bgc-related-title { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.bgc-sidebar { position: sticky; top: 88px; }
.bgc-sidebar-widget {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; margin-bottom: 1.25rem;
}
.bgc-sidebar-widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.bgc-sidebar-aff { background: var(--red); border: none; }
.bgc-sidebar-aff .bgc-sidebar-widget-title { color: rgba(255,255,255,0.6); border-bottom-color: rgba(255,255,255,0.15); }
.bgc-sidebar-posts { display: flex; flex-direction: column; gap: 12px; }
.bgc-sidebar-post { display: flex; gap: 10px; align-items: flex-start; text-decoration: none; }
.bgc-sidebar-post-thumb {
  width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center; font-size: 20px; overflow: hidden;
}
.bgc-sidebar-post-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.bgc-sidebar-post-title { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.35; transition: color 0.15s; }
.bgc-sidebar-post:hover .bgc-sidebar-post-title { color: var(--red); }
.bgc-sidebar-post-date { font-size: 11.5px; color: var(--muted-light); margin-top: 3px; }

/* ============================================================
   ARCHIVE / CATEGORY PAGE
   ============================================================ */
.bgc-archive-header {
  background: var(--ink); padding: 4rem 0; position: relative; overflow: hidden;
}
.bgc-archive-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.bgc-archive-header-inner { position: relative; z-index: 1; }
.bgc-archive-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem;
}
.bgc-archive-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.bgc-archive-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 560px; }
.bgc-archive-content { padding: 4rem 0 5rem; }
.bgc-archive-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem;
}
.bgc-pagination {
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.bgc-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--border); background: var(--white); transition: all 0.15s;
}
.bgc-pagination .page-numbers:hover,
.bgc-pagination .page-numbers.current {
  background: var(--red); color: #fff; border-color: var(--red);
}
.bgc-pagination .page-numbers.dots { border: none; background: none; }

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.bgc-search-header { background: var(--cream); padding: 3rem 0 2rem; border-bottom: 1px solid var(--border); }
.bgc-search-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--ink); }
.bgc-search-count { font-size: 15px; color: var(--muted); margin-top: 0.5rem; }
.bgc-search-form-wrap { margin-top: 1.5rem; max-width: 520px; }
.bgc-search-form { display: flex; gap: 8px; }
.bgc-search-input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-md); font-size: 15px; font-family: 'DM Sans', sans-serif;
  background: var(--white); color: var(--ink); outline: none; transition: border-color 0.2s;
}
.bgc-search-input:focus { border-color: var(--red); }
.bgc-search-submit {
  background: var(--red); color: #fff; font-size: 14px; font-weight: 600;
  padding: 12px 20px; border-radius: var(--radius-md); border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s;
}
.bgc-search-submit:hover { background: var(--red-dark); }

/* ============================================================
   404 PAGE
   ============================================================ */
.bgc-404 { text-align: center; padding: 6rem 2rem; }
.bgc-404-num {
  font-family: 'Playfair Display', serif;
  font-size: 8rem; font-weight: 900; color: var(--red);
  line-height: 1; margin-bottom: 1rem; opacity: 0.15;
}
.bgc-404-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.bgc-404-desc { font-size: 16px; color: var(--muted); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
   STATIC PAGES (About, Gear, etc.)
   ============================================================ */
.bgc-page-header {
  background: var(--ink); padding: 4.5rem 0; position: relative; overflow: hidden;
}
.bgc-page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.bgc-page-header-inner { position: relative; z-index: 1; }
.bgc-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em;
}
.bgc-page-subtitle { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-top: 0.75rem; max-width: 560px; }
.bgc-page-content-wrap { max-width: 820px; margin: 0 auto; padding: 4rem 2rem 5rem; }
.bgc-page-content { font-size: 17px; line-height: 1.8; color: var(--ink); }
.bgc-page-content h2 {
  font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 700;
  color: var(--ink); line-height: 1.2; margin: 2.5rem 0 1rem;
}
.bgc-page-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 2rem 0 0.75rem; }
.bgc-page-content p { margin-bottom: 1.4rem; }
.bgc-page-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.bgc-page-content ul, .bgc-page-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; list-style: revert; }
.bgc-page-content li { margin-bottom: 0.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bgc-post-grid { grid-template-columns: repeat(2, 1fr); }
  .bgc-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .bgc-footer-grid { grid-template-columns: 1fr 1fr; }
  .bgc-single-wrap { grid-template-columns: 1fr; }
  .bgc-sidebar { position: static; }
}
@media (max-width: 768px) {
  .bgc-nav-menu { display: none; }
  .bgc-nav-cta { display: none; }
  .bgc-hamburger { display: flex; }
  .bgc-trust-bar-inner { gap: 1.25rem; }
  .bgc-trust-divider { display: none; }
  .bgc-email-inner { grid-template-columns: 1fr; }
  .bgc-giveaway-card { display: none; }
  .bgc-post-grid { grid-template-columns: 1fr; }
  .bgc-archive-grid { grid-template-columns: 1fr; }
  .bgc-related-grid { grid-template-columns: 1fr; }
  .bgc-share-bar { flex-direction: column; align-items: flex-start; }
  .bgc-author-box { flex-direction: column; }
  .bgc-email-form { flex-direction: column; }
  .bgc-footer-grid { grid-template-columns: 1fr; }
  .bgc-footer-bottom-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .bgc-wrap { padding: 0 1rem; }
  .bgc-single-wrap { padding: 2rem 1rem 3rem; }
}
