/* Blog Article Page Styles - Full Width Layout */
.blog-article-page {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    width: 100%;
}

.blog-article-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Container - Full Width */
.blog-article-page .container {
    margin: auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.breadcrumbs span:last-child {
    color: white;
    font-weight: 500;
}

/* Article Layout - Full Width */
.article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Article Main Content - Full Width */
.article-main {
    width: 100%;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Article Header */
.article-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.article-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Article Meta */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.meta-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-right {
    display: flex;
    align-items: center;
}

.article-author,
.article-date,
.article-reading-time,
.article-views {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
}

.article-author {
    font-weight: 600;
    color: #fff;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.article-tags .tag {
    padding: 0.375rem 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.article-tags .tag:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* Article Content - Full Width */
.article-content {
    padding: 3rem;
    line-height: 1.8;
    font-size: 1.125rem;
    color: #e2e8f0;
    max-width: none;
    width: 100%;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: #fff;
    font-weight: 700;
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

.article-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
    padding-bottom: 0.5rem;
}

.article-content h3 {
    font-size: 1.5rem;
}

.article-content h4 {
    font-size: 1.25rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

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

.article-content blockquote {
    border-left: 4px solid #667eea;
    padding: 1rem 2rem;
    margin: 2rem 0;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #4a5568;
}

.article-content code {
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #667eea;
}

.article-content pre {
    background: #1a202c;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 2rem 0;
}

.article-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Sidebar - Hidden since we want full width */
.article-sidebar {
    display: none;
}

/* Related Articles - Full Width */
.related-articles {
    margin-top: 3rem;
    padding: 3rem;
    background: rgba(248, 250, 252, 0.8);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-article-page .container {
        padding: 0 1.5rem;
    }
    
    .article-header {
        padding: 2rem 2rem 1.5rem;
    }
    
    .article-content {
        padding: 2rem;
    }
    
    .article-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-article-page {
        padding: 1rem 0;
    }
    
    .blog-article-page .container {
        padding: 0 1rem;
    }
    
    .breadcrumbs {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        flex-wrap: wrap;
    }
    
    .article-header {
        padding: 1.5rem 1rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .meta-left {
        gap: 1rem;
    }
    
    .article-content {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.25rem;
    }
    
    .related-articles {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.25rem;
    }
    
    .breadcrumbs {
        gap: 0.25rem;
    }
    
    .meta-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Article Footer and Share Buttons */
.article-footer {
    margin-top: 3rem;
    padding: 2rem;
    border-top: 2px solid rgba(102, 126, 234, 0.2);
}

.article-share h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.share-button svg {
    flex-shrink: 0;
}

.share-button.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
    border-color: rgba(29, 161, 242, 0.2);
}

.share-button.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.share-button.linkedin {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
    border-color: rgba(0, 119, 181, 0.2);
}

.share-button.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.share-button.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.2);
}

.share-button.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.share-button.copy {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.2);
}

.share-button.copy:hover {
    background: rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Print Styles */
@media print {
    .blog-article-page {
        background: white;
        padding: 0;
    }
    
    .blog-article-page::before {
        display: none;
    }
    
    .breadcrumbs,
    .related-articles,
    .article-footer {
        display: none;
    }
    
    .article-main {
        background: white;
        box-shadow: none;
        border: none;
    }
    
    .article-header {
        background: none;
        border: none;
    }
    
    .article-title {
        color: #000;
        background: none;
        -webkit-text-fill-color: initial;
    }
    
    .article-category {
        background: #000;
        color: white;
    }
}
