/* Article Page Styles */
.article-page {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.article-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Article Header */
.article-header {
    padding: 40px 60px 20px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2980b9;
}

.article-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.author-avatar {
    flex-shrink: 0;
}

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

.author-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.author-title {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.article-info {
    display: flex;
    gap: 20px;
    color: #95a5a6;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-info span {
    position: relative;
}

.article-info span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
}

.category {
    background: #3498db;
    color: white !important;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.category::after {
    display: none;
}

/* Article Image */
.article-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

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

/* Article Body */
.article-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    padding: 60px;
}

.article-text {
    color: #34495e;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-text .lead {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 0 8px 8px 0;
}

.article-text h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
    line-height: 1.3;
}

.article-text h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.article-text h4 {
    color: #34495e;
    font-size: 1.2rem;
    margin: 25px 0 10px 0;
    font-weight: 600;
}

.article-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-text ul,
.article-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-text blockquote {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    margin: 40px 0;
    border-radius: 10px;
    font-size: 1.2rem;
    font-style: italic;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.article-text blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    opacity: 0.3;
    font-family: serif;
}

/* Comparison Table for Lektorat Article */
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.comparison-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #3498db;
}

.comparison-item h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.comparison-item ul {
    margin: 0;
    padding-left: 20px;
}

.comparison-item li {
    margin-bottom: 8px;
    color: #5a6c7d;
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.author-bio,
.related-articles,
.share-article {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.author-bio h3,
.related-articles h3,
.share-article h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.bio-content {
    text-align: center;
}

.author-avatar-large {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.bio-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.bio-content p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Related Articles */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    display: block;
    padding: 15px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.related-item h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-item span {
    color: #7f8c8d;
    font-size: 0.85rem;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.facebook:hover {
    background: #2d4373;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #0d8bd9;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.linkedin:hover {
    background: #005582;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-body {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .article-header {
        padding: 30px 40px 20px;
    }

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

    .comparison-table {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-header {
        padding: 25px 30px 15px;
    }

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

    .article-body {
        padding: 30px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .article-info {
        justify-content: flex-start;
    }

    .article-text .lead {
        font-size: 1.2rem;
        padding: 15px;
    }

    .article-text h2 {
        font-size: 1.5rem;
    }

    .article-text h3 {
        font-size: 1.3rem;
    }

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

    .article-text blockquote {
        padding: 20px 25px;
        font-size: 1.1rem;
    }

    .author-bio,
    .related-articles,
    .share-article {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 20px 25px 15px;
    }

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

    .article-body {
        padding: 25px;
    }

    .article-image {
        height: 250px;
    }

    .author-bio,
    .related-articles,
    .share-article {
        padding: 20px;
    }

    .share-buttons {
        gap: 8px;
    }

    .share-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .article-sidebar,
    .breadcrumb {
        display: none;
    }

    .article-body {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .article-text blockquote {
        background: #f8f9fa;
        color: #2c3e50;
        border-left: 4px solid #3498db;
    }
}