/* Blog post CSS extracted verbatim from the approved Alternatives page (11261). */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root { --gold: #F5A623; --blue: #29ABE2; --green: #39B54A; --dark: #2c2c2c; --mid: #555; --light: #f9f7f4; --white: #fff; --border: #e5e2de; }
  body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }

  nav { position: sticky; top: 0; background: var(--white); border-bottom: 1px solid var(--border); z-index: 100; padding: 0 60px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .nav-logo img { height: 36px; object-fit: contain; display: block; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--mid); font-size: 14px; }
  .nav-links a:hover { color: var(--dark); font-weight: 500; }
  .nav-cta { background: var(--dark); color: var(--white); padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 500; text-decoration: none; }
  .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 200; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); z-index: 150; flex-direction: column; padding: 12px 0 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 14px 24px; font-size: 15px; color: var(--dark); text-decoration: none; border-bottom: 1px solid #f5f3f0; }
  .mobile-menu a:last-child { margin: 12px 20px 0; background: var(--dark); color: var(--white); border-radius: 7px; border-bottom: none; text-align: center; font-weight: 500; padding: 12px 20px; }

  /* POST HERO */
  .post-hero { background: var(--dark); padding: 80px 60px 60px; position: relative; overflow: hidden; }
  .hero-diamonds { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); display: grid; grid-template-columns: repeat(5, 24px); gap: 10px; opacity: 0.07; }
  .diamond { width: 20px; height: 20px; transform: rotate(45deg); }
  .post-breadcrumb { font-size: 12px; color: #888; margin-bottom: 20px; }
  .post-breadcrumb a { color: #888; text-decoration: none; }
  .post-breadcrumb a:hover { color: #ccc; }
  .post-cat { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; margin-bottom: 18px; background: rgba(245,166,35,0.15); color: #B37A00; }
  .post-hero h1 { font-family: 'DM Serif Display', serif; font-size: 44px; font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 20px; max-width: 760px; }
  .post-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .post-meta-item { font-size: 13px; color: #888; display: flex; align-items: center; gap: 6px; }
  .post-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: #555; }

  /* LAYOUT */
  .post-layout { max-width: 1100px; margin: 0 auto; padding: 60px; display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }

  /* ARTICLE */
  .post-article { min-width: 0; }
  .post-article h2 { font-family: 'DM Serif Display', serif; font-size: 28px; font-weight: 400; color: var(--dark); margin: 40px 0 14px; line-height: 1.2; }
  .post-article h3 { font-size: 18px; font-weight: 500; color: var(--dark); margin: 28px 0 10px; }
  .post-article h4 { font-size: 15px; font-weight: 500; color: var(--dark); margin: 20px 0 8px; }
  .post-article p { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 18px; }
  .post-article ul, .post-article ol { padding-left: 22px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
  .post-article li { font-size: 15px; color: var(--mid); line-height: 1.6; }
  .post-article strong { color: var(--dark); font-weight: 500; }
  .post-article a { color: #0077AA; text-decoration: none; }
  .post-article a:hover { text-decoration: underline; }

  /* CALLOUT BOXES */
  .callout { border-radius: 10px; padding: 20px 24px; margin: 24px 0; }
  .callout-gold { background: #FFF3DC; border-left: 4px solid var(--gold); }
  .callout-blue { background: #E3F6FF; border-left: 4px solid var(--blue); }
  .callout-green { background: #E8F8EB; border-left: 4px solid var(--green); }
  .callout p { font-size: 14px; line-height: 1.7; margin: 0; }
  .callout-gold p { color: #7A5200; }
  .callout-blue p { color: #005077; }
  .callout-green p { color: #155720; }
  .callout strong { color: inherit; }

  /* COMPARISON TABLE */
  .compare-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
  .compare-table th { padding: 12px 16px; text-align: left; background: var(--dark); color: var(--white); font-weight: 500; font-size: 13px; }
  .compare-table th:first-child { border-radius: 8px 0 0 0; }
  .compare-table th:last-child { border-radius: 0 8px 0 0; }
  .compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--mid); vertical-align: top; line-height: 1.5; }
  .compare-table tr:hover td { background: var(--light); }
  .compare-table tr:last-child td { border-bottom: none; }
  .check-yes { color: #1E7A2E; font-weight: 500; }
  .check-part { color: #B37A00; }
  .check-no { color: #aaa; }

  /* FAQ SCHEMA */
  .faq-section { margin: 40px 0; }
  .faq-section h2 { font-family: 'DM Serif Display', serif; font-size: 28px; font-weight: 400; color: var(--dark); margin-bottom: 24px; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-question { padding: 18px 0; font-size: 15px; font-weight: 500; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.2s, background 0.2s; }
  .faq-answer { font-size: 14px; color: var(--mid); line-height: 1.7; padding-bottom: 18px; display: none; }
  .faq-item.open .faq-answer { display: block; }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); }

  /* SIDEBAR */
  .post-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
  .sidebar-card { background: var(--light); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
  .sidebar-card h3 { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 14px; }
  .sidebar-card p { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 14px; }
  .sidebar-btn { display: block; text-align: center; padding: 10px 16px; border-radius: 7px; font-size: 13px; font-weight: 500; text-decoration: none; transition: opacity 0.2s; }
  .sidebar-btn:hover { opacity: 0.85; }
  .sidebar-toc { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .sidebar-toc li a { font-size: 13px; color: #0077AA; text-decoration: none; line-height: 1.4; display: block; }
  .sidebar-toc li a:hover { text-decoration: underline; }
  .sidebar-toc li { padding-left: 10px; border-left: 2px solid var(--border); }
  .sidebar-related a { display: block; font-size: 13px; color: var(--dark); text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--border); line-height: 1.4; }
  .sidebar-related a:last-child { border-bottom: none; }
  .sidebar-related a:hover { color: #0077AA; }

  /* POST FOOTER CTA */
  .post-footer-cta { background: var(--dark); padding: 70px 60px; text-align: center; }
  .post-footer-cta h2 { font-family: 'DM Serif Display', serif; font-size: 32px; font-weight: 400; color: var(--white); margin-bottom: 14px; }
  .post-footer-cta p { font-size: 15px; color: #aaa; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
  .btn-gold { display: inline-block; background: var(--gold); color: var(--dark); padding: 13px 28px; border-radius: 7px; font-size: 14px; font-weight: 500; text-decoration: none; margin: 0 6px; }
  .btn-outline { display: inline-block; background: transparent; color: #ccc; border: 1.5px solid #555; padding: 12px 28px; border-radius: 7px; font-size: 14px; text-decoration: none; margin: 0 6px; }

  footer { background: var(--white); border-top: 1px solid var(--border); padding: 40px 60px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  footer img { height: 28px; object-fit: contain; }
  footer p { font-size: 13px; color: #999; }
  footer a { color: #999; text-decoration: none; font-size: 13px; }
  .footer-links { display: flex; gap: 24px; }

  @media (max-width: 900px) {
    nav { padding: 0 20px; } .nav-links { display: none !important; } .nav-cta { display: none !important; } .hamburger { display: flex !important; }
    .post-hero { padding: 60px 20px 40px; } .post-hero h1 { font-size: 28px; } .hero-diamonds { display: none; }
    .post-layout { padding: 40px 20px; grid-template-columns: 1fr; gap: 40px; }
    .post-sidebar { position: static; }
    .post-footer-cta { padding: 60px 20px; }
    footer { padding: 30px 20px; flex-direction: column; align-items: flex-start; }
  }
  @media (min-width: 901px) { .hamburger { display: none !important; } .mobile-menu { display: none !important; } .nav-cta { display: inline-block !important; } }

  /* CONTACT */
  .ct-contact-wrap { background: #f9f7f4; border-top: 1px solid #e5e2de; padding: 80px 60px; }
  .ct-contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
  .ct-contact-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: #777; margin-bottom: 14px; }
  .ct-contact-divider { width: 40px; height: 3px; background: #F5A623; border-radius: 2px; margin-bottom: 28px; }
  .ct-contact-title { font-family: 'DM Serif Display', serif; font-size: 36px; font-weight: 400; color: #2c2c2c; line-height: 1.2; margin-bottom: 18px; }
  .ct-contact-desc { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 36px; }
  .ct-contact-details { display: flex; flex-direction: column; gap: 16px; }
  .ct-contact-detail { display: flex; align-items: flex-start; gap: 12px; }
  .ct-contact-detail-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .ct-contact-detail-text strong { display: block; font-size: 13px; font-weight: 500; color: #2c2c2c; margin-bottom: 2px; }
  .ct-contact-detail-text span { font-size: 13px; color: #777; }
  .ct-wpforms-wrap { background: #fff; border-radius: 16px; padding: 44px; border: 1px solid #e5e2de; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
  .ct-form-note { font-size: 12px; color: #aaa; text-align: center; margin-top: 12px; }
  .ct-wpforms-wrap .wpforms-form .wpforms-field { margin-bottom: 16px !important; padding: 0 !important; }
  .ct-wpforms-wrap .wpforms-form label.wpforms-field-label { font-family: 'DM Sans', sans-serif !important; font-size: 12px !important; font-weight: 500 !important; color: #555 !important; margin-bottom: 6px !important; }
  .ct-wpforms-wrap .wpforms-form input[type=text], .ct-wpforms-wrap .wpforms-form input[type=email], .ct-wpforms-wrap .wpforms-form input[type=tel], .ct-wpforms-wrap .wpforms-form select, .ct-wpforms-wrap .wpforms-form textarea { font-family: 'DM Sans', sans-serif !important; font-size: 14px !important; color: #2c2c2c !important; padding: 11px 14px !important; border: 1.5px solid #e5e2de !important; border-radius: 8px !important; background: #fff !important; box-shadow: none !important; width: 100% !important; }
  .ct-wpforms-wrap .wpforms-form input:focus, .ct-wpforms-wrap .wpforms-form select:focus, .ct-wpforms-wrap .wpforms-form textarea:focus { border-color: #F5A623 !important; }
  .ct-wpforms-wrap .wpforms-form textarea { min-height: 110px !important; resize: vertical !important; }
  .ct-wpforms-wrap .wpforms-form button[type=submit], .ct-wpforms-wrap .wpforms-form input[type=submit] { font-family: 'DM Sans', sans-serif !important; font-size: 15px !important; font-weight: 500 !important; background: #F5A623 !important; color: #2c2c2c !important; border: none !important; padding: 14px 28px !important; border-radius: 8px !important; width: 100% !important; cursor: pointer !important; }
  @media (max-width: 900px) { .ct-contact-wrap { padding: 60px 20px; } .ct-contact-inner { grid-template-columns: 1fr; gap: 40px; } .ct-wpforms-wrap { padding: 28px 20px; } }

/* Featured-image hero slot (added for single.php; refined hero design pending). */
.post-featured { max-width: 860px; margin: 0 auto 8px; padding: 0 24px; }
.post-featured img { width: 100%; height: auto; border-radius: 14px; display: block; }
