/**
 * post-page.css — shared styles for blog post pages
 * Used by: all HTML files with <meta name="post_article" content="true">
 *
 * Palette (yogavendor — yoga apparel factory):
 *   brand_color        #3F4F3A   deep olive
 *   brand_color_soft   #5C7156   olive-sage
 *   accent_color       #C18B5D   warm sand/terracotta
 *   accent_color_hover #A87547   sand-hover
 *   text_primary       #1F2A23   near-black with olive tint
 *   text_muted         #6B7563   olive-gray
 *   bg_warm            #FAF7F2   warm oat (matches index.html)
 *   bg_cream           #F5F4ED   warm cream (table header)
 */

.article-meta-wrap {
    padding: 1.25rem 0 0.5rem;
}
.article-meta .breadcrumb {
    background: transparent;
}
.article-meta a { text-decoration: none; color: #6B7563; }
.article-meta a:hover { color: #3F4F3A !important; }

.sidebar-cta {
    background: linear-gradient(135deg, #3F4F3A 0%, #5C7156 100%);
    color: #fff;
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(63, 79, 58, 0.08);
}
.sidebar-cta h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}
.sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    margin: 0 0 1rem;
    line-height: 1.55;
}
.sidebar-cta .btn-primary {
    background: #C18B5D;
    border-color: #C18B5D;
    color: #1F2A23;
    font-weight: 700;
}
.sidebar-cta .btn-primary:hover {
    background: #A87547;
    border-color: #A87547;
    color: #1F2A23;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin: 1.75rem 0;
    box-shadow: 0 4px 12px rgba(63, 79, 58, 0.08);
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.author-card {
    background: #F5F4ED;
    border-left: 4px solid #C18B5D;
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0 0;
}
.author-card-name {
    font-weight: 700;
    color: #3F4F3A;
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}
.author-card-meta {
    font-size: 0.9rem;
    color: #6B7563;
    margin: 0.25rem 0 0;
}
