/* Article Page Styles */
.article-page {
    padding-top: 80px;
}

.article-header {
    position: relative;
    margin-bottom: 60px;
    padding-top: 40px;
}

.article-hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
}

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

.article-header .container {
    position: relative;
    padding: 0 20px;
    z-index: 2;
}

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

.insights-label {
    display: inline-block;
    padding: 8px 20px;
    background: #0A0A0A;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.article-category {
    display: inline-block;
    padding: 8px 20px;
    background: #0071E3;
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
}

.article-title {
    font-size: 3rem;
    color: #0A0A0A;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 900px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.author-name {
    font-weight: 700;
    color: #0A0A0A;
    font-size: 1rem;
}

.author-title {
    color: #6B7280;
    font-size: 0.875rem;
}

.article-date {
    color: #6B7280;
    font-size: 0.875rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.article-body .lead {
    font-size: 1.375rem;
    color: #0A0A0A;
    font-weight: 500;
    margin-bottom: 40px;
}

.article-body h2 {
    font-size: 1.875rem;
    color: #0A0A0A;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

.article-body p {
    margin-bottom: 25px;
}

.article-conclusion {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 50px 0;
    border-left: 4px solid #0071E3;
}

.author-signature {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
}

.author-signature p {
    font-size: 1rem;
    line-height: 1.6;
}

.article-share {
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.article-share h3 {
    font-size: 1.5rem;
    color: #0A0A0A;
    margin-bottom: 20px;
}

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

.share-btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.share-btn.linkedin {
    background: #0077B5;
    color: white;
}

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

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

.article-cta {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #0071E3 0%, #0056b3 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.article-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.article-cta p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.article-cta .btn-primary {
    background: white;
    color: #0071E3;
}

.article-cta .btn-primary:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .article-hero-image {
        height: 250px;
        margin: 30px 0 0;
        border-radius: 0;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .article-hero-image img {
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
    }
    
    .article-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .article-badges {
        gap: 8px;
    }
    
    .insights-label {
        font-size: 0.65rem;
        padding: 6px 16px;
    }
    
    .article-category {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body .lead {
        font-size: 1.125rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-cta {
        padding: 30px 20px;
    }
}
