/* Blog Styles */

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 5% 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative elements - Wortmaumau Karten mit echten Wörtern */
.blog-header::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 5%;
    width: 100px;
    height: 80px;
    background-image: url('../images/deco-cards-words-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
    animation: floatBlog 6s ease-in-out infinite;
    pointer-events: none;
}

.blog-header::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 4%;
    width: 100px;
    height: 80px;
    background-image: url('../images/deco-cards-words-left.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
    animation: floatBlog 7s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatBlog {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.blog-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.blog-header-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.blog-intro {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Start-hier Pfade */
.start-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.start-path {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.start-path:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.start-path-eltern {
    border-color: #22c55e;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.start-path-therapeuten {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
}

.path-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.badge-eltern {
    background: #22c55e;
    color: var(--white);
}

.badge-therapeuten {
    background: #8b5cf6;
    color: var(--white);
}

.start-path h2 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.start-path p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.path-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.path-link {
    display: inline-block;
    background: var(--white);
    border: 1px solid #e2e8f0;
    color: var(--primary-color);
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.path-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Featured Article */
.featured-article {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 2rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.featured-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.featured-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-link:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 1.5rem 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 0.5rem 0;
    line-height: 1.3;
}

.featured-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.featured-cta {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 700px) {
    .featured-link {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 1rem 1.5rem 1.5rem;
    }

    .featured-badge {
        left: 1.5rem;
    }
}

/* Blog Filter - Tabs und Chips */
.blog-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 5%;
    background: var(--bg-light);
}

.filter-tabs {
    display: flex;
    background: var(--white);
    border-radius: 30px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.filter-tab {
    background: transparent;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover {
    color: var(--primary-color);
}

.filter-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

.filter-tab-eltern.active {
    background: #22c55e;
}

.filter-tab-therapeuten.active {
    background: #8b5cf6;
}

.filter-tab-lehrer.active {
    background: #0891b2;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-chip {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-chip.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Legacy filter-group support */
.filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 0.25rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.breadcrumb span {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Featured Article */
.featured-article {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.featured-article .blog-card {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 8px 32px rgba(26, 75, 140, 0.15);
    border: 2px solid var(--primary-color);
}

.featured-article .blog-card-image {
    aspect-ratio: 4/3;
}

.featured-article .blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.featured-article .blog-category {
    background: var(--accent-color);
    color: var(--text-color);
}

.featured-article .featured-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.featured-article h2 {
    font-size: 1.5rem;
    align-self: stretch;
}

.featured-article .blog-excerpt {
    font-size: 1rem;
    align-self: stretch;
}

.featured-article .blog-meta {
    align-self: stretch;
}

/* Blog Posts Grid */
.blog-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Smooth filter transitions */
.blog-card {
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.blog-card.hiding {
    opacity: 0;
    transform: scale(0.95);
}

.blog-card.showing {
    opacity: 1;
    transform: scale(1);
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 400px;
    width: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

/* Category Placeholder Images */
.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.9);
}

.blog-card-placeholder.lesefoerderung {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.blog-card-placeholder.lesemotivation {
    background: linear-gradient(135deg, #059669, #10b981);
}

.blog-card-placeholder.lrs {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.blog-card-placeholder.familienleben {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.blog-card-placeholder.lernfoerderung {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

/* Farbige Kategorie-Badges */
.category-therapeuten {
    background: #8b5cf6;
}

.category-eltern {
    background: #22c55e;
}

.category-lesefoerderung {
    background: #3b82f6;
}

.category-lrs {
    background: #ef4444;
}

.category-familienleben {
    background: #f59e0b;
}

.category-lesemotivation {
    background: #10b981;
}

.category-leitfaden {
    background: #6366f1;
}

.blog-card h2 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

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

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.read-time::before {
    content: "•";
    margin-right: 1rem;
}

/* Mikro-CTA vor Hauptblock */
.blog-micro-cta {
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    text-align: center;
}

.blog-micro-cta p {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.blog-micro-cta strong {
    color: var(--primary-color);
}

.micro-cta-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.4rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.micro-cta-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Blog CTA Section */
.blog-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26, 75, 140, 0.3);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta-image {
    width: 140px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.blog-cta:hover .blog-cta-image {
    transform: rotate(0deg) scale(1.05);
}

.blog-cta-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-cta h2 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.6rem;
}

.blog-cta p {
    margin-bottom: 0.5rem;
    color: var(--white);
    opacity: 0.9;
    font-size: 1.05rem;
    line-height: 1.5;
}

.blog-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-cta .btn-primary {
    background: var(--accent-color);
    color: var(--text-color);
    font-weight: 700;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
    transition: all 0.2s ease;
    text-decoration: none;
}

.blog-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.5);
}

.blog-cta .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
    text-decoration: none;
}

.blog-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.blog-cta-price {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.75;
}

/* Article Page Styles */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 5%;
}

/* Article Hero Image (in header) */
.article-hero {
    margin: -2rem -5% 2rem;
    width: calc(100% + 10%);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(26, 75, 140, 0.15);
}

.article-hero img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.article-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .article-hero {
        margin: -2rem -5% 1.5rem;
        border-radius: 0;
    }

    .article-hero img {
        max-height: 280px;
    }
}

.article-header {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--secondary-color);
}

.article-header h1 {
    font-size: 2rem;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0.75rem 0 1rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    align-items: center;
}

/* Copy Link Button */
.copy-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
}

.copy-link-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.copy-link-btn.copied {
    border-color: #22c55e;
    color: #22c55e;
}

.copy-link-btn svg {
    width: 14px;
    height: 14px;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Article Image */
.article-image {
    margin: 2rem 0;
}

.article-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-image figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Article Video */
.article-video {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #000;
}

.article-video video {
    width: 100%;
    height: auto;
    display: block;
}

.article-video figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    font-style: italic;
    background: var(--white); /* Reset background for caption outside video */
    padding: 0.5rem;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.article-content .lead {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2rem;
}

.article-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--secondary-color);
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-content blockquote p {
    margin-bottom: 0;
}

.article-content blockquote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-muted);
}

/* Key Facts Box */
.article-keyfacts {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.article-keyfacts h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-keyfacts h3::before {
    content: "📋";
}

.article-keyfacts ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.article-keyfacts li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(26, 75, 140, 0.1);
    font-size: 0.95rem;
}

.article-keyfacts li:last-child {
    border-bottom: none;
}

/* Tip Box */
.article-tip {
    background: linear-gradient(135deg, #fef9e7 0%, #fef3c7 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.article-tip h3 {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-tip h3::before {
    content: "💡";
}

.article-tip p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Highlight Box (für therapeutische Schlüssel etc.) */
.article-highlight {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #22c55e;
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.article-highlight p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Article Note */
.article-note {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Transparency Box */
.transparency-box {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f7ff 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Example Box (Praxisbeispiele) */
.article-example {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
    border-left: 4px solid #a855f7;
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.article-example h3 {
    color: #7c3aed;
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-example h3::before {
    content: "📍";
}

.article-example p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Summary Grid (Zusammenfassung am Ende) */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.summary-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.summary-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.summary-card li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
}

.summary-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.transparency-box strong {
    color: var(--primary-color);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(26, 75, 140, 0.1);
}

.comparison-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.comparison-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.comparison-table td {
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid #e8eef5;
    font-size: 0.95rem;
    vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

/* Hervorgehobene Zeile (Wortmaumau) */
.comparison-table .highlight-row {
    background: linear-gradient(90deg, rgba(26, 75, 140, 0.08), rgba(245, 166, 35, 0.12)) !important;
    font-weight: 500;
}

.comparison-table .highlight-row td {
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color) !important;
}

.comparison-table .highlight-row td:first-child {
    border-left: 2px solid var(--primary-color);
    border-radius: 8px 0 0 8px;
}

.comparison-table .highlight-row td:last-child {
    border-right: 2px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

/* Hover */
.comparison-table tbody tr:hover {
    background: rgba(26, 75, 140, 0.05);
}

.comparison-table .highlight-row:hover {
    background: linear-gradient(90deg, rgba(26, 75, 140, 0.12), rgba(245, 166, 35, 0.18)) !important;
}

/* Related Articles */
.related-articles {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 2px solid #e8eef5;
}

.related-articles h2 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.related-card {
    display: block;
    background: var(--white);
    border: 2px solid #e8eef5;
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.related-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(26, 75, 140, 0.12);
    transform: translateY(-2px);
}

.related-card h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.related-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Mobile Tabelle */
@media (max-width: 600px) {
    .comparison-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.65rem 0.5rem;
        min-width: 80px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: inherit;
        z-index: 1;
    }

    .comparison-table thead th:first-child {
        background: var(--primary-color);
    }
}

/* Article Diagrams (Mermaid) */
.article-diagram {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    overflow-x: auto;
}

.article-diagram .mermaid {
    display: flex;
    justify-content: center;
}

.article-diagram figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(26, 75, 140, 0.3);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    text-align: left;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.article-cta-image {
    width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.article-cta:hover .article-cta-image {
    transform: rotate(0deg) scale(1.05);
}

.article-cta-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.article-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
    backdrop-filter: blur(4px);
}

.article-cta h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.3;
}

.article-cta p {
    margin: 0;
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.5;
}

.article-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.article-cta .btn-primary {
    background: var(--accent-color);
    color: var(--text-color);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
    transition: all 0.2s ease;
}

.article-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.5);
}

.article-cta .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
}

.article-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.article-cta-price {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Article CTA Mobile */
@media (max-width: 600px) {
    .article-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .article-cta-image {
        width: 100px;
        margin: 0 auto;
    }

    .article-cta-badge {
        margin: 0 auto;
    }

    .article-cta .cta-buttons {
        justify-content: center;
    }
}

/* Article Author */
.article-author {
    background: var(--bg-light);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.article-author strong {
    color: var(--text-color);
}

/* Article Footer */
.article-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    text-align: center;
}

.article-footer .back-link {
    color: var(--primary-color);
    font-weight: 600;
}

.article-footer .back-link:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    /* Start-Pfade mobile */
    .start-paths {
        grid-template-columns: 1fr;
        padding: 1.5rem 5%;
        gap: 1rem;
    }

    .start-path {
        padding: 1.25rem;
    }

    .start-path h2 {
        font-size: 1rem;
    }

    /* Filter mobile */
    .filter-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        background: var(--white);
        border: 1px solid #e2e8f0;
        margin-bottom: 4px;
    }

    .filter-tab.active {
        border-color: transparent;
    }

    .filter-chips {
        gap: 0.4rem;
    }

    .filter-chip {
        padding: 0.35rem 0.85rem;
        font-size: 0.8rem;
    }

    /* Mikro-CTA mobile */
    .blog-micro-cta {
        margin: 0 5% 1.5rem;
        padding: 1rem 1.25rem;
    }

    .blog-micro-cta p {
        font-size: 0.9rem;
    }

    .blog-header {
        padding: 3rem 5% 2.5rem;
    }

    .blog-header::before {
        width: 65px;
        height: 55px;
        top: 10px;
        right: 3%;
        opacity: 0.75;
    }

    .blog-header::after {
        width: 50px;
        height: 45px;
        bottom: 8px;
        opacity: 0.7;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-header-subtitle {
        font-size: 1.1rem;
    }

    /* Featured article mobile */
    .featured-article {
        padding: 1.5rem 5%;
    }

    .featured-article .blog-card {
        grid-template-columns: 1fr;
    }

    .featured-article .blog-card-image {
        aspect-ratio: 16/9;
    }

    .featured-article .blog-card-content {
        padding: 1.5rem;
    }

    /* Blog CTA mobile */
    .blog-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        margin: 0 5% 2rem;
        border-radius: 16px;
    }

    .blog-cta-image {
        width: 110px;
        margin: 0 auto;
    }

    .blog-cta .cta-buttons {
        justify-content: center;
    }

    .blog-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .filter-group {
        justify-content: flex-start;
        gap: 0.4rem;
    }

    .filter-label {
        width: 100%;
        margin-bottom: 0.25rem;
        font-size: 0.8rem;
    }

    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.4rem 0.85rem;
        font-size: 0.8rem;
    }

    .blog-posts {
        padding: 2rem 5%;
    }

    .article-header h1 {
        font-size: 1.5rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content .lead {
        font-size: 1.1rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .read-time::before {
        display: none;
    }

    .article-image {
        margin-left: -5%;
        margin-right: -5%;
        width: calc(100% + 10%);
    }

    .article-image img {
        border-radius: 0;
    }
}

/* Article Subline (Nutzen-Subline) */
.article-subline {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0.5rem 0 1rem;
    line-height: 1.5;
}

/* Target Audience Box */
.target-audience-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.target-audience-box strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.target-audience-box ul {
    margin: 0;
    padding-left: 1.25rem;
}

.target-audience-box li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Early CTA (Button-Duo oben) */
.early-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.early-cta .btn-primary,
.early-cta .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.early-cta .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.early-cta .btn-primary:hover {
    background: var(--secondary-color);
}

.early-cta .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.early-cta .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Variante Zielgruppe */
.variante-zielgruppe {
    background: linear-gradient(90deg, #fef9e7 0%, #fef3c7 100%);
    border-left: 3px solid var(--accent-color);
    padding: 0.5rem 1rem;
    margin: 0.5rem 0 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    font-style: italic;
    border-radius: 0 6px 6px 0;
}

/* Social Proof Quote */
.social-proof-quote {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-radius: 0 8px 8px 0;
}

.social-proof-quote em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 500;
}

/* Mobile adjustments for new elements */
@media (max-width: 600px) {
    .article-subline {
        font-size: 1rem;
    }

    .target-audience-box {
        padding: 1rem 1.25rem;
    }

    .early-cta {
        flex-direction: column;
    }

    .early-cta .btn-primary,
    .early-cta .btn-secondary {
        text-align: center;
    }
}

/* ===========================================
   PLAYBOOK STYLES
   Visuell ansprechende Schritt-für-Schritt-Anleitungen
   =========================================== */

/* Playbook Header */
.playbook-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d6bb5 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.playbook-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.playbook-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.playbook-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}

.playbook-badge::before {
    content: '📋';
}

.playbook-header h2 {
    font-size: 1.8rem;
    margin: 0 0 0.75rem 0;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.playbook-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    max-width: 600px;
}

/* Playbook Steps Container */
.playbook-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Individual Playbook Step */
.playbook-step {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(26, 75, 140, 0.1);
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.2s ease;
}

.playbook-step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(26, 75, 140, 0.15);
    transform: translateY(-2px);
}

.playbook-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
}

.playbook-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 75, 140, 0.25);
}

.playbook-step-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

.playbook-step-content {
    padding: 1rem 1.5rem 1.5rem;
    padding-left: calc(56px + 2.5rem); /* Align with title */
}

.playbook-step-content p {
    margin: 0 0 1rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.playbook-step-content p:last-child {
    margin-bottom: 0;
}

/* Playbook Checklist */
.playbook-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.playbook-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1rem;
    color: var(--text-color);
}

.playbook-checklist li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.playbook-checklist li::before {
    content: '';
    width: 22px;
    height: 22px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    background: var(--white);
}

/* Checked items (optional, add class .checked to li) */
.playbook-checklist li.checked::before {
    background: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}

/* Playbook Tip Box (inline in steps) */
.playbook-tip {
    background: linear-gradient(135deg, #fef9e7 0%, #fef3c7 100%);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.playbook-tip::before {
    content: '💡 Tipp: ';
    font-weight: 600;
    color: var(--text-color);
}

/* Playbook Summary Box */
.playbook-summary {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.playbook-summary h3 {
    color: #166534;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.playbook-summary h3::before {
    content: '✅';
}

.playbook-summary ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.playbook-summary li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-color);
}

.playbook-summary li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Playbook Progress Indicator (optional) */
.playbook-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.playbook-progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.playbook-progress-dot.active {
    background: var(--primary-color);
}

/* Playbook Mobile */
@media (max-width: 600px) {
    .playbook-header {
        padding: 1.75rem;
        border-radius: 12px;
    }

    .playbook-header h2 {
        font-size: 1.4rem;
    }

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

    .playbook-step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .playbook-step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .playbook-step-content {
        padding-left: 1.5rem;
    }

    .playbook-step-title {
        font-size: 1.15rem;
    }

    .playbook-checklist li {
        font-size: 0.95rem;
    }
}

/* ===========================================
   SILBEN-ARTIKEL SPEZIFISCHE STYLES
   Visuelle Diagramme für den Silben-Lesen Artikel
   =========================================== */

/* Silben-Demo (Klatsch-Beispiele) */
.silben-demo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    font-size: 1.2rem;
    font-family: 'Arial Black', sans-serif;
}

.silben-demo .silbe {
    color: var(--primary-color);
}

.silben-demo .silben-strich {
    color: var(--text-muted);
    font-weight: normal;
}

.silben-demo .klatscher {
    margin-left: auto;
    font-size: 1.1rem;
}

/* Silben-Verbindung (Zusammenziehen) */
.silben-verbindung {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 0.75rem 0;
    font-size: 1.3rem;
    font-family: 'Arial Black', sans-serif;
}

.silben-verbindung .silbe-lesen {
    color: var(--primary-color);
    background: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
}

.silben-verbindung .verbinde-pfeil {
    color: #22c55e;
    font-weight: bold;
}

.silben-verbindung .wort-ergebnis {
    color: #166534;
    font-size: 1.4rem;
}

/* Silben-Treppe (Schwierigkeitsstufen) */
.silben-treppe {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 0;
}

.stufe {
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.stufe:hover {
    transform: translateX(4px);
}

.stufe-nummer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.stufe-inhalt {
    flex: 1;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stufe-inhalt strong {
    font-size: 1rem;
    color: var(--text-color);
}

.stufe-beispiele {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Stufen-Farben (von einfach zu schwer) */
.stufe-1 {
    margin-left: 0;
}
.stufe-1 .stufe-nummer { background: #22c55e; }
.stufe-1 .stufe-inhalt { background: #f0fdf4; border: 2px solid #22c55e; border-left: none; }

.stufe-2 {
    margin-left: 30px;
}
.stufe-2 .stufe-nummer { background: #3b82f6; }
.stufe-2 .stufe-inhalt { background: #eff6ff; border: 2px solid #3b82f6; border-left: none; }

.stufe-3 {
    margin-left: 60px;
}
.stufe-3 .stufe-nummer { background: #f59e0b; }
.stufe-3 .stufe-inhalt { background: #fffbeb; border: 2px solid #f59e0b; border-left: none; }

.stufe-4 {
    margin-left: 90px;
}
.stufe-4 .stufe-nummer { background: #ef4444; }
.stufe-4 .stufe-inhalt { background: #fef2f2; border: 2px solid #ef4444; border-left: none; }

/* Farbige Silben Box */
.farbige-silben-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.farbige-silben-beispiel {
    font-size: 2rem;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: 1px;
}

.silbe-blau {
    color: #60a5fa;
}

.silbe-rot {
    color: #f87171;
}

/* Warnung-Box (Probleme) */
.warnung-box {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border: 2px solid #eab308;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warnung-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(234, 179, 8, 0.3);
}

.warnung-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.warnung-item:first-child {
    padding-top: 0;
}

.warnung-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warnung-item strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.warnung-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Erfolgs-Box (Vorher/Nachher) */
.erfolgs-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    text-align: center;
}

.erfolgs-box p {
    margin: 0.75rem 0;
    font-size: 1.1rem;
}

.erfolgs-box p:first-child {
    margin-top: 0;
}

.erfolgs-box p:last-child {
    margin-bottom: 0;
}

.erfolgs-box strong {
    color: var(--text-color);
}

.erfolgs-box em {
    color: var(--text-muted);
    font-style: italic;
}

/* Silben Mobile */
@media (max-width: 600px) {
    .silben-demo {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .silben-verbindung {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stufe-1, .stufe-2, .stufe-3, .stufe-4 {
        margin-left: 0;
    }

    .stufe-nummer {
        width: 40px;
        font-size: 1.2rem;
    }

    .stufe-inhalt {
        padding: 0.75rem 1rem;
    }

    .farbige-silben-box {
        gap: 1rem;
        padding: 1.5rem;
    }

    .farbige-silben-beispiel {
        font-size: 1.5rem;
    }

    .warnung-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .warnung-icon {
        font-size: 1.25rem;
    }
}

/* Download Box */
.download-box {
    margin: 1.5rem 0;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    overflow: hidden;
}

.download-link {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.download-link:hover {
    background: rgba(26, 75, 140, 0.08);
}

.download-link strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.download-link strong::before {
    content: '\2193 ';
    margin-right: 0.5rem;
}

.download-link span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* References Section */
.references-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.references-section h2 {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.references-section > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.references-list {
    list-style: none;
    padding: 0;
}

.references-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px dotted #e0e0e0;
    line-height: 1.5;
}

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

.references-list li strong {
    color: var(--text-color);
}

.references-list li em {
    font-style: italic;
}
