.blog-post-page { background: var(--bg); }

.post-hero { background: linear-gradient(145deg, #fff8f2 0%, #ffe9db 50%, #fff2e6 100%); padding: 100px 5vw 56px; position: relative; overflow: hidden; }
.post-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,122,89,0.09) 1px, transparent 1px); background-size: 25px 25px; }
.post-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.back-link       { display: inline-flex; align-items: center; gap: 6px; color: rgba(31,41,55,0.55); font-size: 13px; font-weight: 700; text-decoration: none; margin-bottom: 20px; transition: color 0.15s; }
.back-link:hover { color: var(--coral); }
.post-category   { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; background: rgba(255,122,89,0.15); color: #e35a35; padding: 5px 14px; border-radius: 50px; margin-bottom: 18px; }
.post-hero h1    { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: clamp(26px, 4vw, 44px); color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.post-meta       { font-size: 13px; font-weight: 600; color: var(--muted); }

.post-content-section { padding: 56px 5vw 80px; }
.post-layout  { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.post-article { background: #fff; border-radius: 24px; padding: 44px; box-shadow: 0 4px 20px rgba(0,80,140,0.08); }
.post-lead    { font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.75; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 2px solid rgba(0,120,180,0.1); }
.post-section { margin-bottom: 32px; }
.post-section h2 { font-family: 'DM Serif Display', serif; font-size: clamp(20px, 2.5vw, 26px); color: var(--navy); margin-bottom: 14px; border-left: 4px solid var(--teal); padding-left: 16px; }
.post-section p  { font-size: 15px; color: var(--muted); font-weight: 600; line-height: 1.8; }

.post-comp-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.post-comp-link { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; color: var(--teal); text-decoration: none; padding: 12px 18px; border: 2px solid rgba(0,151,167,0.25); border-radius: 12px; transition: background 0.15s, border-color 0.15s, color 0.15s; }
.post-comp-link::before { content: '🔗'; font-size: 14px; }
.post-comp-link:hover { background: rgba(0,151,167,0.07); border-color: var(--teal); color: var(--navy); }

.post-cta-box { background: linear-gradient(135deg, #ff7a59, #e8552f); border-radius: 20px; padding: 32px; text-align: center; margin-top: 40px; }
.post-cta-box h3 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 10px; }
.post-cta-box p  { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 600; line-height: 1.65; margin-bottom: 20px; }

.post-sidebar { position: sticky; top: 82px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: #fff; border-radius: 18px; padding: 22px; box-shadow: 0 4px 16px rgba(0,80,140,0.08); }
.sidebar-title { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.sidebar-card p { font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.6; margin-bottom: 14px; }
.sidebar-post-link { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid rgba(0,120,180,0.08); text-decoration: none; color: var(--navy); font-size: 13px; font-weight: 700; line-height: 1.4; transition: color 0.15s; }
.sidebar-post-link:last-child { border-bottom: none; }
.sidebar-post-link:hover { color: var(--teal); }
.sidebar-post-link span:first-child { flex-shrink: 0; }

@media (max-width: 768px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .post-article { padding: 28px 20px; }
}
