/* ==========================================================================
   COMPONENT: blog-hero (single post hero)
   ========================================================================== */
.bc-blog-hero {
    padding: var(--space-16) 0 var(--space-12);
    text-align: center;
    position: relative;
}
.bc-blog-hero__meta-top {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.bc-blog-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--fw-extrabold);
    letter-spacing: var(--tracking-tight);
    line-height: var(--leading-tight);
    max-width: 22ch;
    margin: 0 auto 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 1rem;
}
.bc-blog-hero__subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 60ch;
    margin: 0 auto 2rem;
    line-height: var(--leading-relaxed);
}
.bc-blog-hero__meta-bottom {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.bc-blog-hero__cover {
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    border: 1px solid var(--border-subtle);
}
[data-theme="light"] .bc-blog-hero__cover {
    background: linear-gradient(135deg, var(--navy-200), var(--navy-100));
}
.bc-blog-hero__cover img { width: 100%; height: 100%; object-fit: cover; }

