/* Article Page Styles */
.article-page {
    background: var(--bg-light);
}

.article-header {
    padding: 60px 0 40px;
    background: var(--bg-white);
}

.article-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-color);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.article-meta-text .author-name {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.article-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.article-info i {
    margin-right: 5px;
}

.article-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

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

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    max-width: 1400px;
}

.article-body {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.article-body .lead {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.article-body h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-color);
}

.article-body h2:first-of-type {
    margin-top: 20px;
}

.article-body p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 100%;
}

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

.article-body li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.article-body blockquote {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
}

.article-body blockquote p {
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 15px;
}

.article-body blockquote cite {
    font-size: 16px;
    color: var(--primary-color);
    font-style: normal;
}

.article-image {
    margin: 40px 0;
    text-align: center;
}

.article-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.image-caption {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

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

.author-box {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 30px;
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.author-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.author-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.author-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.author-social a:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

.related-articles {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.related-articles h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.related-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.related-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.related-item span {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    flex: 1;
}

.related-item:hover {
    transform: translateX(5px);
}

.related-item:hover span {
    color: var(--primary-color);
}

.article-share {
    padding: 60px 0;
    background: var(--bg-white);
    text-align: center;
}

.article-share h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: var(--transition);
}

.share-btn.facebook {
    background: #1877f2;
}

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

.share-btn.telegram {
    background: #0088cc;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.blog-section {
    padding: 60px 0;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

@media (max-width: 1200px) {
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 28px;
    }
    
    .article-featured-image {
        height: 300px;
    }
    
    .article-body {
        padding: 30px 20px;
    }
    
    .article-body h2 {
        font-size: 24px;
    }
    
    .article-body p,
    .article-body li {
        font-size: 16px;
    }
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
