/* assets/css/article.css */

.article-header {
    text-align: center;
}

.article-meta {
    color: #6c757d;
}

.article-title {
    font-size: 2.5rem;
    color: var(--moonflow-purple);
}

.article-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
}

.article-content h2,
.article-content h3 {
    color: var(--moonflow-purple);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-share .share-buttons .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

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

.article-navigation {
    border-top: 1px solid #dee2e6;
    padding-top: 2rem;
}

.article-nav {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.article-nav:hover {
    background-color: #f8f9fa;
    color: inherit;
}

.article-nav-title {
    color: var(--moonflow-purple);
    font-weight: 500;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-nav-title {
        font-size: 0.9rem;
    }
}