/* Blog Post Page Styles */

/* Blog Post Content */
.blog-post-content {
    padding: 120px 0 80px 0;
    background: #FFF;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 40px;
    font-family: 'Sofia Pro';
    font-size: 14px;
    color: #666;
}

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

.breadcrumb a:hover {
    color: #1C1917;
}

/* Article Header */
.article-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

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

.article-category {
    background: #F97316;
    color: #FFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Sofia Pro';
    font-size: 14px;
    font-weight: 600;
}

.article-date,
.article-author {
    font-family: 'Sofia Pro';
    font-size: 14px;
    color: #666;
}

.article-title {
    font-family: 'Sofia Pro';
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #1C1917;
    margin-bottom: 24px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.article-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

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

.author-name {
    font-family: 'Sofia Pro';
    font-weight: 600;
    font-size: 16px;
    color: #1C1917;
}

.author-title {
    font-family: 'Sofia Pro';
    font-size: 14px;
    color: #666;
}

/* Article Featured Image */
.article-featured-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body */
.article-body {
    font-family: 'Sofia Pro';
    font-size: 18px;
    line-height: 28px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.article-intro {
    font-size: 20px;
    line-height: 30px;
    color: #666;
    margin-bottom: 32px;
    font-weight: 500;
}

.article-body h2 {
    font-family: 'Sofia Pro';
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #1C1917;
    margin: 48px 0 24px 0;
}

.article-body h3 {
    font-family: 'Sofia Pro';
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #1C1917;
    margin: 32px 0 16px 0;
}

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

.article-body ul {
    margin-bottom: 24px;
}

.article-body li {
    margin-bottom: 8px;
    padding-left: 8px;
}

.article-body strong {
    font-weight: 600;
    color: #1C1917;
}

/* Article CTA */
.article-cta {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 40px;
    margin: 48px 0;
    text-align: center;
}

.article-cta h3 {
    font-family: 'Sofia Pro';
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #1C1917;
    margin-bottom: 16px;
}

.article-cta p {
    font-family: 'Sofia Pro';
    font-size: 18px;
    line-height: 28px;
    color: #666;
    margin-bottom: 24px;
}

/* Article Footer */
.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
}

.article-tags {
    margin-bottom: 32px;
}

.tag-label {
    font-family: 'Sofia Pro';
    font-weight: 600;
    font-size: 16px;
    color: #1C1917;
    margin-bottom: 16px;
    display: block;
}

.tag {
    display: inline-block;
    background: #F0F0F0;
    color: #666;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Sofia Pro';
    font-size: 14px;
    text-decoration: none;
    margin-right: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #F97316;
    color: #FFF;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.share-label {
    font-family: 'Sofia Pro';
    font-weight: 600;
    font-size: 16px;
    color: #1C1917;
}

.share-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Sofia Pro';
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

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

/* Related Posts Section */
.related-posts-section {
    padding: 80px 0;
    background: #FAFAFA;
}

.related-posts-header {
    text-align: center;
    margin-bottom: 60px;
}

.related-posts-header h2 {
    margin-bottom: 16px;
}

.related-posts-header p {
    margin-bottom: 0;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.related-post {
    background: #FFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.related-post .post-image {
    height: 240px;
    overflow: hidden;
}

.related-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .post-image img {
    transform: scale(1.05);
}

.related-post .post-content {
    padding: 24px;
}

.related-post .post-title {
    font-family: 'Sofia Pro';
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
    color: #1C1917;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post .post-title:hover {
    color: #F97316;
}

.related-post .post-excerpt {
    font-family: 'Sofia Pro';
    font-size: 16px;
    line-height: 24px;
    color: #666;
    margin-bottom: 16px;
}

.related-post .post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.related-post .post-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.related-post .post-author span {
    font-family: 'Sofia Pro';
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Responsive Design for Blog Post */
@media screen and (max-width: 1024px) {
    .article-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .article-body h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .article-body h3 {
        font-size: 22px;
        line-height: 30px;
    }
    
    .article-body p,
    .article-body li {
        font-size: 17px;
    }
    
    .article-intro {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .blog-post-content {
        padding: 60px 0;
    }
    
    .article-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .article-category,
    .article-date,
    .article-author {
        font-size: 13px;
    }
    
    .article-author {
        margin-top: 20px;
    }
    
    .article-author img {
        width: 40px;
        height: 40px;
    }
    
    .author-name {
        font-size: 15px;
    }
    
    .author-title {
        font-size: 13px;
    }
    
    .article-body h2 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .article-body h3 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .article-body p,
    .article-body li {
        font-size: 16px;
    }
    
    .article-intro {
        font-size: 16px;
    }
    
    .article-cta {
        padding: 30px 20px;
    }
    
    .article-cta h3 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .article-cta p {
        font-size: 16px;
    }
    
    .related-posts-section {
        padding: 60px 0;
    }
    
    .related-posts-header h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media screen and (max-width: 480px) {
    .article-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .article-body h2 {
        font-size: 22px;
        line-height: 30px;
    }
    
    .article-body h3 {
        font-size: 18px;
        line-height: 26px;
    }
    
    .article-body p,
    .article-body li {
        font-size: 15px;
    }
    
    .article-intro {
        font-size: 15px;
    }
    
    .article-cta h3 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .article-cta p {
        font-size: 15px;
    }
    
    .tag {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .share-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
} 