/* Blog – optisch an taxavo Landing (landing.css) angeglichen */

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

.blog-main {
    min-height: 50vh;
}

/* Hero (wie Landing .hero, kompakter) */
.blog-hero {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 3.5rem 0 4rem;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .blog-hero {
        padding: 5rem 0 5.5rem;
    }
}

.blog-hero .hero-badge {
    margin-bottom: 1.25rem;
}

.blog-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    color: var(--foreground);
    margin: 0 0 1rem;
    max-width: 52rem;
}

.blog-hero__lead {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.65;
    max-width: 42rem;
    margin: 0;
}

@media (min-width: 768px) {
    .blog-hero__lead {
        font-size: 1.25rem;
    }
}

.blog-hero--article {
    background: linear-gradient(
        180deg,
        rgba(191, 219, 254, 0.55) 0%,
        rgba(219, 234, 254, 0.35) 40%,
        #ffffff 100%
    );
    border-bottom: none;
}

.blog-hero--article h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.blog-breadcrumb {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}

.blog-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* GSC-Suchintentionen (blog/, hilfe/ — CTR-Optimierung) */
.blog-featured-topics,
.hilfe-popular-topics {
    padding-top: 0.5rem;
    padding-bottom: 0;
}

.blog-featured-topics__title,
.hilfe-popular-topics__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--text-primary, #0f172a);
}

.blog-featured-topics__grid,
.hilfe-popular-topics__grid {
    margin-bottom: 0.5rem;
}

/* Artikelliste */
.blog-list-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
    background: var(--background);
}

@media (min-width: 768px) {
    .blog-list-section {
        padding-top: 4rem;
        padding-bottom: 5rem;
    }
}

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

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

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.blog-grid--compact {
    grid-template-columns: 1fr;
}

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

/* Karten (angelehnt an .audience-card / .feature-card) */
.blog-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    height: 100%;
}

.blog-card:hover {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
}

.blog-card--compact {
    padding: 1.25rem 1.5rem;
}

.blog-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: rgba(59, 130, 246, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.blog-card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.blog-card__category {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.blog-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 0.75rem;
    flex-grow: 1;
}

.blog-card__title a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card__title a:hover {
    color: var(--accent);
}

.blog-card--compact .blog-card__title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    margin-top: auto;
}

.blog-card__link:hover {
    color: var(--primary);
}

.blog-card__link svg {
    transition: transform 0.2s;
}

.blog-card:hover .blog-card__link svg {
    transform: translateX(3px);
}

.blog-empty {
    text-align: center;
    color: var(--muted-foreground);
    padding: 3rem 0;
}

/* Einzelartikel */
.blog-article-section {
    padding-top: 0;
    padding-bottom: 4rem;
    margin-top: -1.5rem;
    background: var(--background);
}

@media (min-width: 768px) {
    .blog-article-section {
        margin-top: -2rem;
        padding-bottom: 5rem;
    }
}

.blog-article-card {
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem 1.75rem;
    border-radius: var(--radius-xl);
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

@media (min-width: 768px) {
    .blog-article-card {
        padding: 2.5rem 3rem;
    }
}

.blog-article-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--foreground);
}

.blog-article-body h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary);
    margin: 2.25rem 0 0.85rem;
    padding-top: 0.25rem;
}

.blog-article-body h2:first-child {
    margin-top: 0;
}

.blog-article-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 1.5rem 0 0.5rem;
}

.blog-article-body p {
    margin: 0 0 1.15rem;
    color: color-mix(in srgb, var(--foreground) 88%, var(--muted-foreground));
}

.blog-article-body ul,
.blog-article-body ol {
    margin: 0 0 1.15rem 1.35rem;
    padding: 0;
    color: color-mix(in srgb, var(--foreground) 88%, var(--muted-foreground));
}

.blog-article-body li {
    margin-bottom: 0.4rem;
}

.blog-article-body a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-article-body a:hover {
    color: var(--primary);
}

.blog-article-body strong {
    color: var(--primary);
    font-weight: 600;
}

.blog-article-body blockquote,
.content-hub-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    background: rgba(59, 130, 246, 0.06);
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1.65;
}

.blog-article-body blockquote p:last-child,
.content-hub-body blockquote p:last-child {
    margin-bottom: 0;
}

.blog-article-body hr,
.content-hub-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

.blog-article-body > *:first-child,
.content-hub-body > *:first-child {
    margin-top: 0;
}

.blog-article-body code {
    font-size: 0.9em;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 0.15em 0.45em;
    border-radius: 0.25rem;
}

/* Markdown-Tabellen (Hilfe/Blog) */
.blog-article-body .md-table-wrap,
.content-hub-body .md-table-wrap {
    margin: 1.25rem 0 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.blog-article-body .md-table,
.content-hub-body .md-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    line-height: 1.45;
}

.blog-article-body .md-table th,
.blog-article-body .md-table td,
.content-hub-body .md-table th,
.content-hub-body .md-table td {
    padding: 0.65rem 0.85rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.blog-article-body .md-table thead th,
.content-hub-body .md-table thead th {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: none;
    letter-spacing: 0.01em;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
    border-bottom: 2px solid color-mix(in srgb, var(--accent) 25%, var(--border));
}

.blog-article-body .md-table tbody th[scope='row'],
.content-hub-body .md-table tbody th[scope='row'] {
    font-weight: 600;
    color: var(--primary);
    background: rgba(15, 23, 42, 0.02);
    white-space: nowrap;
}

.blog-article-body .md-table tbody tr:last-child th,
.blog-article-body .md-table tbody tr:last-child td,
.content-hub-body .md-table tbody tr:last-child th,
.content-hub-body .md-table tbody tr:last-child td {
    border-bottom: none;
}

.blog-article-body .md-table tbody tr:hover td,
.blog-article-body .md-table tbody tr:hover th[scope='row'],
.content-hub-body .md-table tbody tr:hover td,
.content-hub-body .md-table tbody tr:hover th[scope='row'] {
    background: rgba(59, 130, 246, 0.04);
}

.blog-article-body .md-table a,
.content-hub-body .md-table a {
    font-weight: 500;
}

/* Verwandte Artikel */
.blog-related-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
    background: #fff;
    border-top: 1px solid var(--border);
}

.blog-related-header {
    margin-bottom: 2.5rem;
}

.blog-related-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
}

.blog-related-header p {
    font-size: 1rem;
}

/* CTA */
.blog-cta .blog-cta__secondary {
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.blog-cta .blog-cta__secondary a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-cta .blog-cta__secondary a:hover {
    color: #fff;
}

/* Hilfe-Center (wie Blog-Übersicht) */
.hilfe-page {
    background: var(--background);
}

.hilfe-main {
    min-height: 50vh;
}

.hilfe-hero-index {
    border-bottom: 1px solid var(--border);
}

.hilfe-index-section {
    background: var(--background);
}

.hilfe-index-header {
    margin-bottom: 2rem;
}

.hilfe-index-crosslink {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hilfe-index-crosslink a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.hilfe-index-crosslink a:hover {
    text-decoration: underline;
}

.hilfe-index-topic {
    margin-bottom: 2.5rem;
}

.hilfe-index-topic:last-child {
    margin-bottom: 0;
}

.hilfe-index-topic__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hilfe-index-topic__icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent);
}

.hilfe-index-topic__icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.hilfe-index-topic__title {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    color: var(--primary);
}

.hilfe-index-topic__lead {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--muted-foreground);
    max-width: 42rem;
}

@media (min-width: 768px) {
    .hilfe-index-header {
        margin-bottom: 2.5rem;
    }

    .hilfe-index-topic {
        margin-bottom: 3rem;
    }

    .hilfe-index-topic__title {
        font-size: 1.375rem;
    }
}

.hilfe-related-section {
    background: var(--background);
}

/* Landing-Guide (Einstieg von der Startseite) */
.hilfe-guide-hero {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 36rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 0 3rem;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .hilfe-guide-hero {
        padding: 3.5rem 0 4rem;
    }
}

.hilfe-guide-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.hilfe-guide-back:hover {
    color: var(--primary);
    text-decoration: underline;
}

.hilfe-guide-breadcrumb {
    margin-bottom: 1rem;
}

.hilfe-guide-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 1.25rem 0 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hilfe-guide-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background: var(--background);
}

@media (min-width: 768px) {
    .hilfe-guide-section {
        padding-top: 2.5rem;
        padding-bottom: 4rem;
    }
}

.hilfe-guide-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .hilfe-guide-layout {
        grid-template-columns: 16rem minmax(0, 1fr);
        gap: 2.5rem 3rem;
    }
}

.hilfe-guide-toc {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    padding: 1.25rem 1.25rem 1rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.hilfe-guide-toc__title {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
}

.hilfe-guide-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: toc;
}

.hilfe-guide-toc__list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.hilfe-guide-toc__list li:last-child {
    border-bottom: none;
}

.hilfe-guide-toc__list a {
    display: block;
    padding: 0.65rem 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
}

.hilfe-guide-toc__list a:hover {
    color: var(--accent);
}

.hilfe-guide-toc__more {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.hilfe-guide-toc__more-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hilfe-guide-toc__more-list a {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.8125rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.hilfe-guide-toc__more-list a:hover {
    text-decoration: underline;
}

.hilfe-guide-article {
    max-width: none;
    margin: 0;
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
}

.hilfe-guide-intro {
    margin-bottom: 2rem;
    padding: 1.15rem 1.25rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, #f8fafc 100%);
    border-left: 4px solid var(--accent);
}

.hilfe-guide-intro p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--foreground);
}

.hilfe-guide-section-heading {
    scroll-margin-top: calc(var(--header-h) + 1.5rem);
    margin: 2.5rem 0 1rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

.hilfe-guide-body > .hilfe-guide-section-heading:first-of-type,
.hilfe-guide-intro + .hilfe-guide-section-heading {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.hilfe-guide-body h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1.75rem 0 0.65rem;
    line-height: 1.35;
}

.hilfe-guide-body > ul {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
}

.hilfe-guide-body > ul > li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.55rem;
    line-height: 1.55;
}

.hilfe-guide-body > ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--accent);
}

.hilfe-guide-faq-heading ~ p {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid var(--border);
    line-height: 1.55;
}

.hilfe-guide-faq-heading ~ p strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--primary);
    font-weight: 600;
}

.hilfe-guide-faq-heading ~ p:last-child {
    margin-bottom: 0;
}

.hilfe-guide-body p {
    margin: 0 0 1rem;
    line-height: 1.65;
}

.hilfe-guide-body a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hilfe-guide-body a:hover {
    color: var(--primary);
}

.hilfe-guide-takeaways {
    margin-bottom: 2rem;
    padding: 1.25rem 1.35rem;
    border-radius: 1rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hilfe-guide-takeaways__title {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
}

.hilfe-guide-takeaways ul {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--foreground);
}

.hilfe-guide-takeaways li {
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.hilfe-guide-takeaways li:last-child {
    margin-bottom: 0;
}

.hilfe-guide-body ol {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    counter-reset: guide-step;
}

.hilfe-guide-body ol > li {
    counter-increment: guide-step;
    position: relative;
    margin: 0 0 0.75rem;
    padding: 1rem 1rem 1rem 3.5rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid var(--border);
    line-height: 1.55;
}

.hilfe-guide-body ol > li::before {
    content: counter(guide-step);
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
}

.hilfe-guide-body h2 {
    scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

@media (max-width: 1023px) {
    .hilfe-guide-toc {
        position: static;
    }
}

/* UI-Vorschauen: assets/css/content-ui-preview.css */

/* Legacy content-hub (falls noch referenziert) */
.competitor-disclaimer {
    margin-top: 2.5rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(241, 245, 249, 0.7);
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-muted, #475569);
}

.competitor-disclaimer p {
    margin: 0;
}

.competitor-disclaimer strong {
    color: var(--text, #0f172a);
}

.ratgeber-disclaimer a {
    color: var(--accent, #2563eb);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Legacy content-hub (falls noch referenziert) */
.content-hub-page .content-hub-main {
    padding: 2rem 0 4rem;
    min-height: 50vh;
}

.content-hub-header {
    margin-bottom: 2.5rem;
    max-width: 48rem;
}

.content-hub-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.75rem;
}

.content-hub-lead {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.content-hub-category {
    margin-bottom: 2.5rem;
}

.content-hub-category h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.content-hub-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-hub-list li {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.content-hub-list li:last-child {
    border-bottom: none;
}

.content-hub-list a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.content-hub-list a:hover {
    color: var(--accent);
}

.content-hub-list p {
    margin: 0.35rem 0 0;
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.5;
}

.content-hub-breadcrumb {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.content-hub-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.content-hub-breadcrumb a:hover {
    text-decoration: underline;
}

.content-hub-meta {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0 0 0.5rem;
}

.content-hub-article {
    max-width: 42rem;
    margin-bottom: 3rem;
}

.content-hub-article h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1.5rem;
    line-height: 1.25;
}

.content-hub-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--foreground);
}

.content-hub-body h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 2rem 0 0.75rem;
}

.content-hub-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.content-hub-body p {
    margin: 0 0 1rem;
}

.content-hub-body ul,
.content-hub-body ol {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}

.content-hub-body li {
    margin-bottom: 0.35rem;
}

.content-hub-body a {
    color: var(--accent);
    font-weight: 500;
}

.content-hub-body code {
    font-size: 0.9em;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.15em 0.4em;
    border-radius: 4px;
}

.content-hub-related {
    max-width: 42rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.content-hub-related h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--primary);
}

.content-hub-related ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-hub-related li {
    margin-bottom: 0.5rem;
}

.content-hub-related a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.content-hub-related a:hover {
    text-decoration: underline;
}

.seo-landing-page .seo-landing-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 0 3rem;
    max-width: 42rem;
}

/* Branchen-SEO (Vertical Landing) */
.seo-vertical-page .seo-vertical-main {
    min-height: 50vh;
}

.seo-vertical-hero {
    padding: 2.5rem 0 3rem;
    background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

.seo-vertical-hero .content-hub-breadcrumb {
    margin-bottom: 1.25rem;
}

.seo-vertical-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0.75rem 0 1rem;
    line-height: 1.2;
    max-width: 42rem;
}

.seo-vertical-hero__lead {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 40rem;
    margin: 0 0 1.5rem;
}

.seo-vertical-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.seo-vertical-features {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 42rem;
}

.seo-vertical-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--foreground);
}

.seo-vertical-features .icon-check {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.15rem;
    color: var(--accent);
}

.seo-vertical-compare h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1.25rem;
}

.seo-vertical-quote {
    margin: 0;
    padding: 1.5rem 1.75rem;
    border-left: 4px solid var(--accent);
    background: var(--muted);
    border-radius: 0 var(--radius) var(--radius) 0;
    max-width: 42rem;
}

.seo-vertical-quote p {
    font-size: 1.0625rem;
    line-height: 1.65;
    margin: 0 0 1rem;
    color: var(--foreground);
    font-style: italic;
}

.seo-vertical-quote footer {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    font-style: normal;
}

.seo-vertical-quote-note {
    font-size: 0.8rem;
    opacity: 0.85;
}

.seo-vertical-bottom-cta .seo-vertical-cta {
    justify-content: center;
    margin-top: 1rem;
}

/* Ratgeber (gleiche Optik wie Blog-Übersicht) */
.ratgeber-page {
    background: var(--background);
}

.ratgeber-index-section {
    background: var(--background);
}


.ratgeber-disclaimer {
    max-width: 42rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0 0 1rem;
}
