/* ===============================
   BLOG ARTICLE STYLES
   DynamicRoute Global
================================ */

/* Page background */
body.blog-article {
  background-color: #F6F7F9;
  color: #111111;
}

/* Remove inherited backgrounds */
body.blog-article .inner-page {
  background: transparent;
}

/* Main article container */
.blog-content {
  background: #FFFFFF;
  max-width: 880px;
  margin: 3rem auto;
  padding: 3rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Headings */
.blog-content h1 {
  font-size: 2.6rem;
  color: #C9A227; /* brand gold */
}

.blog-content h2,
.blog-content h3 {
  color: #111111;
  margin-top: 2.5rem;
}

/* Text */
.blog-content p,
.blog-content li {
  color: #333333;
  line-height: 1.75;
  font-size: 1.05rem;
}

/* Tables */
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  margin: 2rem 0;
}

.blog-content th {
  background: #F0F0F0;
  padding: 0.75rem;
}

.blog-content td {
  padding: 0.75rem;
  border-bottom: 1px solid #E0E0E0;
}

/* CTA box */
.cta-box {
  background: #F8F9FB;
  border: 1px solid #E0E0E0;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

/* Related articles */
.related-articles {
  background: #F8F9FB;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 3rem;
}
/* ===============================
   RELATED BUYING GUIDES – FINAL FIX
================================ */

/* Base state */
.related-articles a {
  display: inline-block;
  color: #111111;
  font-weight: 500;
  text-decoration: none;
  background: transparent !important;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}

/* Hover state – TEXT ONLY */
.related-articles a:hover {
  color: #C9A227; /* brand gold */
  background: transparent !important;
  box-shadow: none !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  text-decoration: underline;
}

/* Kill pseudo-elements if any exist */
.related-articles a::before,
.related-articles a::after {
  content: none !important;
}


/* Normal link state */
.related-articles a {
  color: #111111;
  font-weight: 500;
  text-decoration: none;
}

/* Hover state */
.related-articles a:hover {
  color: #C9A227; /* brand gold */
  text-decoration: underline;
}
/* ===============================
   FOOTER VISIBILITY FIX
================================ */

footer.footer {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 2rem 1rem;
}

footer.footer p {
  color: #FFFFFF;
  opacity: 0.85;
  font-size: 0.95rem;
}
/* ===============================
   DISABLE FLOATING / STICKY UI
   ON BLOG PAGES
================================ */

/* Kill any fixed or floating buttons */
body.blog-article .floating-btn,
body.blog-article .sticky-btn,
body.blog-article .sticky-cta,
body.blog-article .floating-cta,
body.blog-article .btn.fixed,
body.blog-article .btn.sticky {
  display: none !important;
}

/* Prevent buttons from becoming fixed */
body.blog-article .btn,
body.blog-article button {
  position: static !important;
}

/* Disable any JS-applied fixed positioning */
body.blog-article * {
  scroll-margin-top: 0 !important;
}
/* ===============================
   REMOVE FLOATING MOBILE MENU
   FROM BLOG PAGES
================================ */

/* Hide the floating hamburger button */
body.blog-article .mobile-nav-toggle {
  display: none !important;
}

/* Ensure mobile nav itself is hidden unless explicitly opened */
body.blog-article .mobile-nav {
  display: none !important;
}
/* ===============================
   BLOG MODE: REMOVE STICKY HEADER
================================ */

body.blog-article .header {
  position: static !important;
  top: auto !important;
  box-shadow: none !important;
}

/* Also hide mobile hamburger just in case */
body.blog-article .mobile-nav-toggle {
  display: none !important;
}

/* Ensure mobile menu cannot appear */
body.blog-article .mobile-nav {
  display: none !important;
}
/* ===============================
   BLOG MODE — KILL STICKY HEADER
   (FINAL, GUARANTEED)
================================ */

body.blog-article {
  overflow-x: hidden;
}

/* Completely neutralize header behavior */
body.blog-article .header {
  position: relative !important;
  top: unset !important;
  z-index: auto !important;
  box-shadow: none !important;
}

/* Remove hamburger entirely */
body.blog-article .mobile-nav-toggle {
  display: none !important;
}

/* Ensure mobile nav never shows */
body.blog-article .mobile-nav {
  display: none !important;
}
.blog-wrapper {
  padding: 2rem 1rem;
}

.blog-content {
  max-width: 1100px; /* wider, more premium */
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 14px;
}
/* ===============================
   CTA BOX – FINAL SPACING & LOOK
================================ */

.cta-box {
  background: #f8f9fb;
  border: 1px solid #e0e0e0;
  padding: 2.5rem;
  border-radius: 14px;
  margin: 3rem 0;
}

/* CTA title */
.cta-box h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

/* CTA text */
.cta-box p {
  margin-bottom: 1.6rem;
  color: #444;
  max-width: 700px;
}

/* CTA button */
.cta-box .btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 1rem;
  border-radius: 999px;
}
/* ===============================
   RELATED BUYING GUIDES – CLICKABLE UI
================================ */

.related-articles {
  background: #f8f9fb;
  padding: 2rem;
  border-radius: 14px;
  margin-top: 3rem;
}

/* Title */
.related-articles h3 {
  margin-bottom: 1.2rem;
}

/* List reset */
.related-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each link as a card-row */
.related-articles li {
  margin-bottom: 0.75rem;
}

/* Link styling */
.related-articles a {
  display: block;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  color: #111;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Hover */
.related-articles a:hover {
  border-color: #d4af37;
  background: #fffdf5;
  color: #000;
}
/* ===============================
   CTA BUTTON – HOVER STATE
================================ */

.cta-box .btn {
  background: #d4af37;
  color: #000;
  font-weight: 600;
  border: none;
  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

/* Hover effect */
.cta-box .btn:hover {
  background: #c9a227; /* slightly deeper gold */
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
/* ===============================
   RELATED GUIDES – HOVER INTERACTION
================================ */

.related-articles a {
  position: relative;
  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

/* Hover state */
.related-articles a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  border-color: #d4af37;
}

/* Optional arrow cue (visual affordance) */
.related-articles a::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #d4af37;
  transition: opacity 0.2s ease, right 0.2s ease;
}

/* Arrow appears on hover */
.related-articles a:hover::after {
  opacity: 1;
  right: 14px;
}
/* =========================
   LIGHT CONTENT SURFACE
========================= */

.blog-article,
.review-article {
  background: #f6f7f9;
}

/* Article container */
.blog-content,
.review-content {
  background: #ffffff;
  color: #111;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Headings */
.blog-content h1,
.blog-content h2,
.blog-content h3 {
  color: #111;
}

/* Paragraphs */
.blog-content p,
.review-content p,
.review-content li {
  color: #222;
}

/* Intro text */
.blog-content .intro {
  color: #444;
}
/* =========================
   VISIBILITY HARD RESET
   (Fix faded / 30% opacity text)
========================= */

.blog-content,
.review-content {
  opacity: 1 !important;
  filter: none !important;
}

/* Force readable text */
.blog-content *,
.review-content * {
  opacity: 1 !important;
}

/* Fix inherited light text */
.blog-content p,
.blog-content li,
.blog-content td,
.blog-content th,
.review-content p,
.review-content li,
.review-content td,
.review-content th {
  color: #1a1a1a !important;
}

/* Headings */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.review-content h1,
.review-content h2,
.review-content h3 {
  color: #111 !important;
}
/* =========================
   BRAND TITLE COLOR (GOLD)
========================= */

/* Main page title */
.blog-content h1,
.review-content h1 {
  color: #d4af37 !important; /* Brand gold */
}

/* Section headings */
.blog-content h2,
.review-content h2 {
  color: #111 !important;
}

/* Sub-headings */
.blog-content h3,
.review-content h3 {
  color: #222 !important;
}
/* =========================
   WIDE BLOG LAYOUT (EDITORIAL)
========================= */

.blog-content {
  max-width: 1200px;   /* wider than before */
  margin: 0 auto;      /* still centered */
  padding: 40px 56px;  /* small left/right margin */
}
@media (max-width: 768px) {
  .blog-content {
    padding: 28px 20px;
  }
}
/* Blog-only behavior */
body.blog-article .header,
body.blog-article .mobile-nav,
body.blog-article .mobile-nav-toggle {
  display: none !important;
}
.btn.outline {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
