/* Hero */
  .post-hero { padding: 9rem 5% 3rem; background: var(--espresso); color: var(--sand); }
  .post-breadcrumb { font-size: 0.78rem; color: rgba(242,239,234,0.45); margin-bottom: 1.2rem; }
  .post-breadcrumb a { color: var(--rose); text-decoration: none; }
  .post-breadcrumb a:hover { text-decoration: underline; }
  .post-hero-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.2rem; opacity: 0; animation: fadeUp 0.7s 0.1s ease forwards; }
  .blog-tag { background: var(--rose-light); color: var(--rose); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: 1rem; }
  .post-date { font-size: 0.8rem; color: rgba(242,239,234,0.45); }
  .post-hero h1 { font-family: 'Lora', serif; font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; line-height: 1.2; max-width: 800px; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.7s 0.2s ease forwards; }
  .post-hero h1 em { font-style: italic; color: var(--rose); }
  .post-byline { display: flex; align-items: center; gap: 1rem; opacity: 0; animation: fadeUp 0.7s 0.35s ease forwards; }
  .post-byline-photo { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.2); flex-shrink: 0; }
  .post-byline-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .post-byline-name { font-size: 0.88rem; font-weight: 700; color: var(--sand); }
  .post-byline-sub { font-size: 0.78rem; color: rgba(242,239,234,0.5); }

  /* Hero image */
  .post-hero-img { width: 100%; max-height: 480px; object-fit: cover; object-position: center 30%; display: block; }

  /* Article body */
  .post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 5rem; max-width: 1060px; margin: 0 auto; padding: 5rem 5%; align-items: start; }
    .post-article p { font-size: 1.05rem; line-height: 1.9; color: var(--espresso); margin-bottom: 1.6rem; }
  .post-article em { font-style: italic; color: var(--sage); }
  .post-article strong { font-weight: 700; }
  .post-article h2 { font-family: 'Lora', serif; font-size: 1.7rem; font-weight: 700; color: var(--espresso); margin: 3rem 0 1rem; line-height: 1.3; }
  .post-article h2 em { color: var(--rose); font-style: italic; }

  /* Tip blocks */
  .tip-block { background: white; border-radius: 1.5rem; padding: 2rem; margin: 2.5rem 0; border: 1px solid var(--sand-dark); border-left: 4px solid var(--rose); }
  .tip-block-num { font-family: 'Lora', serif; font-size: 0.75rem; font-weight: 700; color: var(--rose); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.5rem; }
  .tip-block h3 { font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.75rem; }
  .tip-block p { font-size: 0.97rem; color: var(--muted); line-height: 1.8; margin: 0; }
  .tip-block p em { color: var(--sage); font-style: italic; }

  /* Pullquote */
  .post-pullquote { border-left: 3px solid var(--rose); padding: 1.2rem 1.8rem; margin: 2.5rem 0; background: var(--rose-light); border-radius: 0 1rem 1rem 0; }
  .post-pullquote p { font-family: 'Lora', serif !important; font-size: 1.2rem !important; font-style: italic; color: var(--espresso) !important; line-height: 1.7 !important; margin: 0 !important; }

  /* Closing box */
  .post-closing { background: var(--espresso); border-radius: 1.5rem; padding: 2rem 2.2rem; margin: 2.5rem 0; color: var(--sand); }
  .post-closing p { font-family: 'Lora', serif; font-size: 1.05rem; font-style: italic; line-height: 1.8; color: var(--sand) !important; margin: 0 !important; }
  .post-closing p em { color: var(--rose) !important; font-style: normal; font-weight: 700; }

  /* Post photo */
  .post-photo { width: 100%; border-radius: 1.2rem; margin: 2rem 0; display: block; }
  .post-photo-caption { font-size: 0.8rem; color: var(--muted); font-style: italic; text-align: center; margin-top: -1.2rem; margin-bottom: 2rem; }

  /* Tags & share */
  .post-footer { border-top: 1px solid var(--sand-dark); padding-top: 2rem; margin-top: 3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .post-back { font-size: 0.85rem; font-weight: 700; color: var(--sage); text-decoration: none; }
  .post-back:hover { color: var(--espresso); }

  /* Sidebar */
  .post-sidebar { position: sticky; top: 7rem; display: flex; flex-direction: column; gap: 1.5rem; }
  .sidebar-card { background: white; border-radius: 1.5rem; padding: 1.5rem; border: 1px solid var(--sand-dark); }
  .sidebar-card-title { font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.75rem; }
  .sidebar-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
  .sidebar-author-photo { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; margin-bottom: 0.75rem; border: 3px solid var(--sand-dark); }
  .sidebar-author-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .btn-rose-sm { background: var(--rose); color: white; padding: 0.7rem 1.4rem; border-radius: 2rem; text-decoration: none; font-weight: 700; font-size: 0.82rem; display: inline-block; transition: background 0.2s; }
  .btn-rose-sm:hover { background: #b5918a; }
  .btn-sage-sm { background: var(--sage-light); color: var(--sage); padding: 0.7rem 1.4rem; border-radius: 2rem; text-decoration: none; font-weight: 700; font-size: 0.82rem; display: inline-block; transition: background 0.2s; }
  .btn-sage-sm:hover { background: #d8e2e2; }
  .sidebar-divider { border: none; border-top: 1px solid var(--sand-dark); margin: 0.5rem 0; }

  @media (max-width: 860px) {
    .post-layout { grid-template-columns: 1fr; gap: 3rem; }
    .post-sidebar { position: static; }
  }
