/* Blog Article Container */
.blog-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-article-container {
    background: white;
}

/* Blog Article Header */
.blog-article-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-article-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 0.95rem;
    color: #666;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.blog-article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Featured Image */
.blog-featured-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
}

/* Blog Content */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 40px 0 20px 0;
    font-weight: 700;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.blog-content ul {
    list-style: none;
    padding-left: 0;
}

.blog-list {
    margin: 20px 0;
}

.blog-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.blog-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Blog Quote */
.blog-quote {
    border-left: 4px solid #667eea;
    padding: 20px 20px;
    margin: 30px 0;
    background: #f9f9f9;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.blog-quote p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.blog-quote span {
    display: block;
    text-align: right;
    color: #999;
    font-style: normal;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.tag:hover {
    transform: translateY(-2px);
}

/* Blog Share Section */
.blog-share {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.blog-share h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
}

.share-btn.facebook {
    background: #4267B2;
    color: white;
}

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

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

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

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Suggested Blogs Section */
.suggested-blogs {
    background: #f9f9f9;
    padding: 60px 20px;
    margin-top: 60px;
}

.suggested-blogs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.suggested-heading {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.suggested-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Suggested Blog Card */
.suggested-blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.suggested-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.suggested-blog-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.suggested-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.suggested-blog-card:hover .suggested-blog-card-img img {
    transform: scale(1.05);
}

.suggested-blog-card-content {
    padding: 20px;
}

.suggested-blog-card-content h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 50px;
}

.suggested-blog-card-category {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Back to Blogs Button */
.back-to-blogs {
    text-align: center;
    margin-top: 50px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-article-header h1 {
        font-size: 2rem;
    }

    .blog-article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .blog-content {
        font-size: 1rem;
    }

    .blog-content h2 {
        font-size: 1.5rem;
    }

    .suggested-grid {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        gap: 10px;
    }

    .share-btn {
        flex: 1;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .blog-article {
        padding: 20px 15px;
    }

    .blog-article-header h1 {
        font-size: 1.5rem;
    }

    .blog-content {
        font-size: 0.95rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
    }
}
