/* =========================
   REVIEW LAYOUT SYSTEM
   ========================= */

/* Reviews use same readable width as blogs */
.review-content,
.review-article .blog-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* Headings spacing */
.review-content h1,
.review-content h2,
.review-content h3 {
  margin-top: 40px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.review-content h1 {
  font-size: 2.4rem;
}

.review-content h2 {
  font-size: 1.6rem;
}

.review-content h3 {
  font-size: 1.25rem;
}

/* Paragraph rhythm */
.review-content p {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: #eaeaea;
}

/* =========================
   COMPARISON TABLES
   ========================= */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: left;
}

.compare-table th {
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.compare-table tr:hover {
  background: rgba(255,255,255,0.03);
}

/* =========================
   REVIEW CARDS
   ========================= */

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px;
  margin: 30px 0;
}

.review-card h3 {
  margin-top: 0;
}

.review-card p {
  margin-bottom: 14px;
}

/* =========================
   BUTTONS (REVIEWS)
   ========================= */

.review-card .btn,
.review-content .btn {
  display: inline-block;
  margin-top: 12px;
}

/* Disabled buttons (intentional, not broken) */
.btn.disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Hover (only for active buttons) */
.btn:not(.disabled):hover {
  transform: translateY(-1px);
}

/* =========================
   CTA BOX (REVIEWS)
   ========================= */

.review-content .cta-box {
  margin: 50px 0;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .review-content,
  .review-article .blog-content {
    padding: 40px 18px;
  }

  .review-content h1 {
    font-size: 2rem;
  }

  .compare-table {
    font-size: 0.9rem;
  }
}
/* =========================
   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;
}
/* ===============================
   CONTENT SYSTEM (BLOG + REVIEW)
   DynamicRoute Global
================================ */

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

/* Main content card */
.blog-content,
.review-content {
  background: #ffffff;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 3rem 3.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Titles */
.blog-content h1,
.review-content h1 {
  color: #d4af37;
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
}

/* Section headings */
.blog-content h2,
.review-content h2 {
  color: #111;
  margin-top: 2.5rem;
}

/* Sub-headings */
.blog-content h3,
.review-content h3 {
  color: #222;
  margin-top: 2rem;
}

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

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

.blog-content th,
.review-content th {
  background: #f0f0f0;
  padding: 0.75rem;
}

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

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

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

/* Mobile */
@media (max-width: 768px) {
  .blog-content,
  .review-content {
    padding: 28px 20px;
  }
}
/* ===============================
   REVIEW VISIBILITY FIX
================================ */

.review-content,
.review-content * {
  opacity: 1 !important;
  color: #1a1a1a !important;
  filter: none !important;
}

/* Small text */
.review-content small {
  color: #555 !important;
}

/* Lists */
.review-content li {
  color: #1a1a1a !important;
}
/* ===============================
   NAV FIX FOR REVIEWS
================================ */

.review-article .header {
  background: #000;
}

/* Nav links */
.review-article .main-nav a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

/* Hover */
.review-article .main-nav a:hover {
  color: #d4af37;
  border-bottom-color: #d4af37;
}

/* Active */
.review-article .main-nav a.active {
  color: #d4af37;
  border-bottom-color: #d4af37;
}
/* ===============================
   REVIEW FOOTER VISIBILITY FIX
================================ */

.review-article footer.footer {
  background: #000;           /* keep brand black */
}

.review-article footer.footer p {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 0.95rem;
}
/* ===============================
   PRIMARY REVIEW CTA BUTTON
================================ */

.review-article .cta-box .btn {
  background: #d4af37;           /* brand gold */
  color: #000;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 999px;
  border: none;
  display: inline-block;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

/* Hover effect */
.review-article .cta-box .btn:hover {
  background: #c9a227;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}
/* =========================
   REVIEW HEADER SPACING FIX
   (Shared Across All Reviews)
========================= */

/* Reduce top padding from layout wrapper */
.review-article .inner-page {
  padding-top: 2rem; /* was larger */
}

/* Pull content up slightly */
.review-article .review-content {
  margin-top: 0;
}

/* Control title spacing */
.review-article .review-content h1 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.affiliate-disclosure {
  font-size: 0.9rem;
  color: #bbb;
  background: rgba(255,255,255,0.04);
  padding: 10px 14px;
  border-left: 3px solid #f5c400;
  margin: 16px 0 24px;
}
.btn.outline {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
