/* couture-care.css — page-specific styles only.
   Tokens/reset/base + shared buttons live in base.css;
   site chrome lives in header.css / footer.css. */

:root { --navy-dark: #1e3365; }

/* ============================================================
   couture-care.css — Shared stylesheet for all Couture Care blog posts
   Alex's Dry Cleaning Valet · alexdryclean.net/couture-care
   Generated from adv_blog_generator.py — edit here, not in individual posts.
   ============================================================ */
/* ── Reset & Base (from mockup) ──────────────────────────────── */
    

    

    

    

    

    

    h1,
    h2,
    h3 {
      font-family: 'Playfair Display', serif;
      color: var(--navy-dark);
      line-height: 1.2;
    }

    h1 {
      font-size: 2.1rem;
      margin-bottom: 0.6rem;
    }

    h2 {
      font-size: 1.45rem;
      margin: 1.8rem 0 0.6rem;
    }

    h3 {
      font-size: 1.15rem;
      margin: 1.4rem 0 0.5rem;
    }

    

    

    

    

    

    

    

    

    

    

    

    

    

    /* Mobile header improvements (matches hub) */
    

    .breadcrumb {
      max-width: 1100px;
      margin: 1rem auto 0;
      padding: 0 2.4rem;
      font-size: 0.82rem;
      color: var(--muted);
    }

    .breadcrumb a {
      color: var(--muted);
    }

    .article-outer {
      max-width: 1100px;
      margin: 0 auto 4rem;
      padding: 0 2.4rem;
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 3rem;
    }

    @media (max-width: 900px) {
      .article-outer {
        grid-template-columns: 1fr;
      }
    }

    .article-main {
      max-width: 720px;
    }

    .article-meta {
      display: flex;
      gap: 0.8rem;
      align-items: center;
      margin-bottom: 1rem;
      font-size: 0.82rem;
    }

    .category-pill {
      background: var(--navy-dark);
      color: #fff;
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.72rem;
      letter-spacing: 0.5px;
    }

    .meta-detail {
      color: var(--muted);
    }

    .hero-wrap {
      margin: 1.2rem 0 2rem;
      border-radius: var(--radius-img);
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .hero-wrap img {
      width: 100%;
      height: auto;
      display: block;
    }

    .article-body {
      font-size: 1.02rem;
    }

    .article-body p {
      margin-bottom: 1.1rem;
    }

    .article-body h2,
    .article-body h3 {
      color: var(--navy-dark);
    }

    .article-img {
      width: 100%;
      max-width: 620px;
      margin: 1.6rem auto;
      border-radius: var(--radius-img);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      display: block;
    }

    .inline-cta,
    .bottom-cta {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 1.4rem 1.6rem;
      margin: 1.8rem 0;
    }

    .inline-cta p {
      margin-bottom: 0.8rem;
    }

    .tagline {
      font-style: italic;
      color: var(--navy-mid);
      margin-bottom: 0.6rem;
    }

    .btn-primary,
    .btn-outline,
    .btn-cta-inline {
      display: inline-block;
      padding: 0.65rem 1.35rem;
      border-radius: var(--radius-btn);
      font-weight: 600;
      font-size: 0.92rem;
      letter-spacing: 0.3px;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--navy-dark);
      color: #fff;
    }

    .btn-outline {
      border: 1.5px solid var(--navy-dark);
      color: var(--navy-dark);
    }

    .btn-cta-inline {
      background: var(--gold-accent);
      color: var(--navy-deep);
      font-weight: 700;
    }

    .sidebar {
      position: sticky;
      top: 2rem;
      height: fit-content;
    }

    .sidebar-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 1.5rem;
      margin-bottom: 1.2rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }

    .sidebar-card h4 {
      margin-bottom: 0.6rem;
      color: var(--navy-dark);
    }

    .sidebar-divider {
      height: 1px;
      background: var(--border);
      margin: 1rem 0;
    }

    .sidebar-tagline {
      font-style: italic;
      color: var(--navy-mid);
      font-size: 0.9rem;
    }
