.blog-shell {
    max-width: 960px;
    margin: 0 auto;
    padding: calc(var(--header-offset, 5rem) + 1.5rem) 1rem 4rem;
}

.blog-post-shell {
    max-width: 720px;
}

.blog-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    color: var(--bc-text-muted);
    margin-bottom: 1.25rem;
}

.blog-breadcrumbs a {
    color: var(--bc-text-muted);
    text-decoration: none;
}

.blog-breadcrumbs a:hover {
    color: var(--bc-clay);
}

.blog-breadcrumbs-sep {
    opacity: 0.5;
}

.blog-page-title,
.blog-post-title {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.blog-intro {
    color: var(--bc-text-muted);
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 42rem;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .blog-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .blog-shell:not(.blog-post-shell) {
        max-width: 1100px;
    }
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--bc-border-soft);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: var(--bc-surface, #fff);
    transition: border-color 0.15s ease;
}

.blog-card-link:hover {
    border-color: var(--bc-clay);
}

.blog-card-media {
    aspect-ratio: 16 / 9;
    background: var(--bc-border-soft);
    overflow: hidden;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-media--placeholder {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(168, 85, 247, 0.08));
}

.blog-card-body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.blog-card-title {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.35;
}

.blog-card-excerpt {
    margin: 0;
    color: var(--bc-text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    flex: 1;
}

.blog-card-date {
    font-size: 0.82rem;
    color: var(--bc-text-muted);
}

.blog-category-chip {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--bc-clay);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.18);
}

.blog-post-header {
    margin-bottom: 1.25rem;
}

.blog-date {
    display: block;
    font-size: 0.88rem;
    color: var(--bc-text-muted);
    margin-top: 0.35rem;
}

.blog-hero {
    margin: 0 0 1.75rem;
    border-radius: 14px;
    overflow: hidden;
}

.blog-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-article {
    line-height: 1.65;
    color: var(--bc-text-muted);
}

.blog-lead {
    margin-bottom: 1.75rem;
}

.blog-lead p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--bc-text-muted);
}

.blog-lead p + p {
    margin-top: 1rem;
}

.blog-section {
    margin-bottom: 2rem;
}

.blog-section-heading {
    color: var(--bc-text, inherit);
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.blog-section p {
    margin: 0 0 1rem;
}

.blog-section-list {
    margin: 0 0 1rem 1.1rem;
    padding: 0;
}

.blog-section-list li {
    margin-bottom: 0.35rem;
}

.blog-cta {
    margin: 2rem 0;
}

.blog-article a {
    color: var(--bc-clay);
}

.blog-blockquote {
    margin: 1.5rem 0;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--bc-clay);
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0 10px 10px 0;
}

.blog-blockquote p {
    margin: 0;
}

.blog-ideas-link {
    margin-top: 2rem;
}

.blog-products {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bc-border-soft);
}

.blog-products-title {
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

.blog-products-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .blog-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-post-shell .ideas-hub-faq {
    margin-top: 2.5rem;
}

.blog-empty {
    color: var(--bc-text-muted);
}
