:root {
    --eduro-primary: #DE6B3B;
    --eduro-secondary: #F2943C;
    --eduro-gradient: linear-gradient(135deg, #DE6B3B 0%, #F2943C 100%);
    --eduro-dark: #2D3748;
    --eduro-gray: #718096;
    --eduro-light: #F7FAFC;
    --eduro-border: #E2E8F0;
    --eduro-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --eduro-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --eduro-radius: 12px;
    --eduro-radius-lg: 20px;
}

.blog-page,
.blog-detail-page {
    background: #FAFAFA;
    min-height: 100vh;
}

.blog-page .container,
.blog-detail-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-hero {
    background: var(--eduro-gradient);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.blog-hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.blog-hero h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
}

.blog-hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.blog-hero-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.blog-hero-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -40px;
}

.blog-hero-shapes .shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 20%;
}

.blog-filters {
    background: white;
    padding: 24px 0;
    border-bottom: 1px solid var(--eduro-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filters-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.category-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--eduro-gray);
    background: var(--eduro-light);
    border: 1px solid var(--eduro-border);
    transition: all 0.3s ease;
}

.category-pill:hover {
    color: var(--eduro-primary);
    border-color: var(--eduro-primary);
    background: rgba(222, 107, 59, 0.05);
}

.category-pill.active {
    background: var(--eduro-gradient);
    color: white;
    border-color: transparent;
}

.blog-search-form {
    flex-shrink: 0;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--eduro-light);
    border: 1px solid var(--eduro-border);
    border-radius: 50px;
    padding: 4px 4px 4px 16px;
    gap: 12px;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--eduro-primary);
    box-shadow: 0 0 0 3px rgba(222, 107, 59, 0.1);
}

.search-input-wrapper i {
    color: var(--eduro-gray);
}

.search-input-wrapper input {
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    width: 200px;
    outline: none;
}

.search-btn {
    background: var(--eduro-gradient);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--eduro-shadow);
}

.featured-article {
    padding: 60px 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: var(--eduro-radius-lg);
    overflow: hidden;
    box-shadow: var(--eduro-shadow-lg);
    text-decoration: none;
    transition: all 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    min-height: 400px;
    background: var(--eduro-gradient);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, transparent 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--eduro-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.category-tag {
    display: inline-block;
    background: rgba(222, 107, 59, 0.1);
    color: var(--eduro-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-tag.large {
    padding: 8px 18px;
    font-size: 13px;
}

.category-tag.small {
    padding: 4px 10px;
    font-size: 11px;
}

.featured-meta .date {
    color: var(--eduro-gray);
    font-size: 14px;
}

.featured-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--eduro-dark);
    margin: 0 0 16px;
    line-height: 1.3;
}

.featured-content p {
    color: var(--eduro-gray);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--eduro-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.author-avatar.small {
    width: 32px;
    height: 32px;
    font-size: 13px;
}

.author-avatar.large {
    width: 48px;
    height: 48px;
    font-size: 18px;
}

.author-info span {
    color: var(--eduro-dark);
    font-weight: 500;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--eduro-dark);
    font-weight: 600;
    font-size: 14px;
}

.publish-date {
    color: var(--eduro-gray);
    font-size: 13px;
}

.read-more {
    color: var(--eduro-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.featured-card:hover .read-more {
    gap: 12px;
}

.blog-articles {
    padding: 60px 0 80px;
}

.search-results-info {
    margin-bottom: 32px;
}

.search-results-info h3 {
    font-size: 24px;
    color: var(--eduro-dark);
    margin: 0 0 8px;
}

.search-results-info p {
    color: var(--eduro-gray);
    margin: 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card {
    background: white;
    border-radius: var(--eduro-radius);
    overflow: hidden;
    box-shadow: var(--eduro-shadow);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--eduro-shadow-lg);
}

.article-link {
    text-decoration: none;
    display: block;
}

.article-image {
    height: 200px;
    background: var(--eduro-gradient);
    position: relative;
    overflow: hidden;
}

.article-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-image.no-image::after {
    content: '\f0f6';
    font-family: FontAwesome;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.5);
}

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

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

.article-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.article-content {
    padding: 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.reading-time {
    color: var(--eduro-gray);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--eduro-dark);
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-content p {
    color: var(--eduro-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--eduro-border);
}

.read-indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--eduro-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eduro-primary);
    transition: all 0.3s ease;
}

.article-card:hover .read-indicator {
    background: var(--eduro-gradient);
    color: white;
}

.no-articles {
    text-align: center;
    padding: 80px 20px;
}

.no-articles-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--eduro-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.no-articles-icon i {
    font-size: 32px;
    color: var(--eduro-gray);
}

.no-articles h3 {
    font-size: 24px;
    color: var(--eduro-dark);
    margin: 0 0 12px;
}

.no-articles p {
    color: var(--eduro-gray);
    margin: 0 0 24px;
}

.btn-reset {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--eduro-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: var(--eduro-shadow);
}

.blog-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.blog-pagination .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    color: var(--eduro-dark);
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--eduro-border);
    transition: all 0.3s ease;
}

.blog-pagination .page-item.active .page-link,
.blog-pagination .page-item .page-link:hover {
    background: var(--eduro-gradient);
    color: white;
    border-color: transparent;
}

.blog-newsletter {
    padding: 0 0 80px;
}

.newsletter-card {
    background: var(--eduro-gradient);
    border-radius: var(--eduro-radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon i {
    font-size: 24px;
    color: white;
}

.newsletter-text h3 {
    color: white;
    font-size: 24px;
    margin: 0 0 8px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    width: 280px;
    outline: none;
}

.newsletter-form button {
    background: white;
    color: var(--eduro-primary);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-detail {
    background: white;
}

.article-header {
    padding-top: 40px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--eduro-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

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

.article-header-content {
    max-width: 800px;
}

.article-header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--eduro-dark);
    margin: 0 0 20px;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 18px;
    color: var(--eduro-gray);
    line-height: 1.7;
    margin: 0 0 32px;
}

.article-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.author-info.large {
    gap: 16px;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    color: var(--eduro-gray);
    font-size: 14px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: var(--eduro-light);
    color: var(--eduro-gray);
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0A66C2;
    color: white;
}

.share-btn.copy-link:hover {
    background: var(--eduro-gradient);
    color: white;
}

.article-hero-image {
    margin-top: 40px;
    border-radius: var(--eduro-radius-lg) var(--eduro-radius-lg) 0 0;
    overflow: hidden;
    max-height: 500px;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 60px 0;
    background: var(--eduro-light);
}

.article-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.article-content {
    background: white;
    padding: 48px;
    border-radius: var(--eduro-radius);
    box-shadow: var(--eduro-shadow);
}

.article-content h2,
.article-content h3 {
    color: var(--eduro-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-content h2 {
    font-size: 24px;
}

.article-content h3 {
    font-size: 20px;
}

.article-content p {
    color: var(--eduro-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--eduro-dark);
}

.article-content blockquote {
    border-left: 4px solid var(--eduro-primary);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--eduro-gray);
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: var(--eduro-radius);
    padding: 24px;
    box-shadow: var(--eduro-shadow);
}

.sidebar-card h4 {
    font-size: 16px;
    color: var(--eduro-dark);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--eduro-light);
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.toc li {
    margin-bottom: 8px;
}

.toc li.h3 {
    padding-left: 16px;
}

.toc a {
    color: var(--eduro-gray);
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.toc a:hover {
    color: var(--eduro-primary);
    background: var(--eduro-light);
}

.no-toc {
    color: var(--eduro-gray);
    font-size: 14px;
    font-style: italic;
}

.sidebar-cta {
    background: var(--eduro-light);
    border-radius: var(--eduro-radius);
    padding: 20px;
    margin-top: 24px;
}

.sidebar-cta h4 {
    border: none;
    padding: 0;
    margin: 0 0 8px;
}

.sidebar-cta p {
    font-size: 14px;
    color: var(--eduro-gray);
    margin: 0 0 16px;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--eduro-gradient);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--eduro-shadow);
}

.article-footer-section {
    padding: 40px 0;
    background: white;
    border-top: 1px solid var(--eduro-border);
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tags-label {
    color: var(--eduro-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag {
    background: var(--eduro-light);
    color: var(--eduro-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
}

.article-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.views-count {
    color: var(--eduro-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-articles {
    padding: 80px 0;
    background: var(--eduro-light);
}

.related-articles h2 {
    font-size: 28px;
    color: var(--eduro-dark);
    margin: 0 0 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-card {
    background: white;
    border-radius: var(--eduro-radius);
    overflow: hidden;
    box-shadow: var(--eduro-shadow);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--eduro-shadow-lg);
}

.related-card a {
    text-decoration: none;
}

.related-image {
    height: 180px;
    background: var(--eduro-gradient);
    overflow: hidden;
}

.related-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-image.no-image::after {
    content: '\f0f6';
    font-family: FontAwesome;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
}

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

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

.related-content {
    padding: 20px;
}

.related-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--eduro-dark);
    margin: 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-content p {
    color: var(--eduro-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.blog-cta {
    padding: 80px 0;
    background: white;
}

.cta-card {
    background: var(--eduro-gradient);
    border-radius: var(--eduro-radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    color: white;
    font-size: 32px;
    margin: 0 0 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .article-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 992px) {
    .articles-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 300px;
    }
    
    .newsletter-card,
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-content {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 20px;
    }
    
    .blog-hero h1 {
        font-size: 32px;
    }
    
    .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-pills {
        justify-content: center;
    }
    
    .search-input-wrapper input {
        width: 100%;
    }
    
    .articles-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .article-header h1 {
        font-size: 28px;
    }
    
    .article-author-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-content {
        padding: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

/* ===== TTS Vorlesen-Button ===== */
.article-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tts-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--eduro-gradient);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--eduro-shadow);
    white-space: nowrap;
}

.tts-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--eduro-shadow-lg);
}

.tts-btn.tts-active {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.tts-btn i {
    font-size: 13px;
}

/* ===== Podcast Player ===== */
.podcast-player-wrapper {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px 0;
    margin: 0;
}

.podcast-player {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--eduro-radius);
    padding: 16px 24px;
    flex-wrap: wrap;
}

.podcast-player-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--eduro-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.podcast-player-icon i {
    font-size: 20px;
    color: white;
}

.podcast-player-info {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    max-width: 180px;
}

.podcast-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--eduro-secondary);
}

.podcast-title {
    font-size: 13px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.podcast-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 200px;
}

.podcast-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--eduro-gradient);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.podcast-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(222, 107, 59, 0.4);
}

.podcast-play-btn.playing {
    background: linear-gradient(135deg, #F2943C 0%, #DE6B3B 100%);
}

.podcast-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.podcast-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    min-width: 34px;
}

.podcast-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.podcast-progress-fill {
    height: 100%;
    background: var(--eduro-gradient);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.podcast-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.podcast-volume i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.podcast-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 70px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    outline: none;
}

.podcast-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--eduro-primary);
    cursor: pointer;
}

/* ===== YouTube Embed ===== */
.youtube-wrapper {
    padding: 40px 0;
    background: var(--eduro-light);
    border-bottom: 1px solid var(--eduro-border);
}

.youtube-embed {
    max-width: 800px;
    margin: 0 auto;
}

.youtube-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--eduro-dark);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.youtube-heading i {
    color: #FF0000;
}

.youtube-frame-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--eduro-radius);
    overflow: hidden;
    box-shadow: var(--eduro-shadow-lg);
}

.youtube-frame-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Responsive für neue Elemente ===== */
@media (max-width: 768px) {
    .article-header-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .podcast-player {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .podcast-controls {
        width: 100%;
        flex-wrap: wrap;
    }

    .podcast-progress-wrapper {
        width: 100%;
    }

    .podcast-volume {
        display: none;
    }

    .tts-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== TTS Stop-Button ===== */
.tts-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tts-stop-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(192, 57, 43, 0.12);
    border: 2px solid rgba(192, 57, 43, 0.4);
    color: #c0392b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.tts-stop-btn:hover {
    background: #c0392b;
    color: white;
    border-color: #c0392b;
    transform: scale(1.05);
}

.tts-btn.tts-paused {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}
