/**
 * post-page.css — shared styles for blog post pages
 * Used by: all HTML files with <meta name="post_article" content="true">
 *
 * Brand: runcyclingapparel.com
 * brand_color=#1A1A1A · brand_color_soft=#2d2d2d · accent_color=#7BC67E · accent_color_hover=#5BA862
 */

/* Breadcrumb + author/date strip (post-optimizer breadcrumb Template B) */
.article-meta-wrap {
    padding: 1.25rem 0 0.5rem;
}
.article-meta .breadcrumb {
    background: transparent;
}
.article-meta a { text-decoration: none; }
.article-meta a:hover { color: #1A1A1A !important; }

/* Sidebar CTA card */
.sidebar-cta {
    background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
    color: #fff;
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
    text-align: center;
}
.sidebar-cta h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.sidebar-cta p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    margin: 0 0 1rem;
    line-height: 1.55;
}
.sidebar-cta .btn-primary {
    background: #7BC67E;
    border-color: #7BC67E;
    color: #1A1A1A;
    font-weight: 700;
}
.sidebar-cta .btn-primary:hover {
    background: #5BA862;
    border-color: #5BA862;
    color: #1A1A1A;
}

/* YouTube / Vimeo embed — responsive 16:9 wrapper */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin: 1.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Author card at article end */
.author-card {
    background: #F5F7FA;
    border-left: 4px solid #7BC67E;
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0 0;
}
.author-card-name {
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}
.author-card-meta {
    font-size: 0.9rem;
    color: #666;
    margin: 0.25rem 0 0;
}

/* Article hero (used by ERP shell template) */
.blog-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 60%, #2A4A30 100%);
    padding: 100px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.blog-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.25;
}
.blog-hero h1 .accent { color: #7BC67E; }
.blog-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.blog-hero .breadcrumb a:hover { color: #7BC67E; }
.blog-hero .breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.blog-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.blog-hero .article-eyebrow {
    display: inline-block;
    background: rgba(123,198,126,0.18);
    border: 1px solid rgba(123,198,126,0.35);
    color: #b6e7b9;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}
.blog-hero .article-meta {
    color: rgba(255,255,255,0.78);
    font-size: 0.92rem;
}
.blog-hero .article-meta a { color: #7BC67E; }

@media (max-width: 767px) {
    .blog-hero { padding: 80px 0 48px; }
    .blog-hero h1 { font-size: 1.7rem; }
}
