/* Blog Article Styles */
.blog-article {
    padding: 120px 0 60px;
    background: #FAFAFA;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-header {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.article-category {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.article-date, .article-reading-time {
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin: 20px 0;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #E0E0E0;
}

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

.article-author .author-info {
    display: flex;
    flex-direction: column;
}

.article-author strong {
    font-size: 1.1rem;
    color: #000;
}

.article-author span {
    font-size: 0.9rem;
    color: #666;
}

.article-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-featured-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.lead-paragraph {
    font-size: 1.25rem !important;
    font-weight: 500;
    color: #2d2d2d !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
    padding-left: 20px;
    border-left: 4px solid #FFD700;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 2px solid #F0F0F0;
}

.article-content h2:first-of-type {
    margin-top: 20px;
    border-top: none;
    padding-top: 0;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin: 30px 0 15px;
}

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

.article-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.article-content li strong {
    color: #000;
    font-weight: 600;
}

blockquote {
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF9E6 100%);
    border-left: 5px solid #FFD700;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
    color: #444;
    font-size: 1.15rem;
}

blockquote p {
    margin: 0;
    font-size: 1.15rem;
}

.highlight-box {
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
    border: 2px solid #FFD700;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.highlight-box strong {
    color: #D97706;
    font-size: 1.1rem;
}

.cta-box {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-box h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 25px;
}

.cta-box .btn {
    background: #000;
    color: #FFD700;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.cta-box .btn:hover {
    background: white;
    color: #000;
    border-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #E0E0E0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    background: #F0F0F0;
    color: #555;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.article-share strong {
    color: #555;
    font-size: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

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

.btn-back {
    color: #FFD700;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #FFD700;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-back:hover {
    background: #FFD700;
    color: #000;
}

/* Footer for blog pages */
.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

.footer p {
    margin: 10px 0;
    font-size: 0.95rem;
}

.footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .article-header {
        padding: 25px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
}
