/* assets/css/blog-post.css */
/* Blog Post Styles */
.content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content p {
    margin-bottom: 1.5rem;
}

.content h2, .content h3, .content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #222;
}

.content img {
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
}

.content blockquote {
    border-left: 4px solid #0d6efd;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background-color: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    font-size: 1.2rem;
    line-height: 1;
}

.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* বাটন হোভার ইফেক্ট */
.btn-outline-primary:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* সোশ্যাল শেয়ার বাটন */
.btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}

.btn-outline-info:hover {
    background-color: #0dcaf0;
    color: #fff;
}

/* রেস্পন্সিভ এডজাস্টমেন্ট */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .content {
        font-size: 1rem;
    }
    
    .d-flex.gap-3 {
        flex-wrap: wrap;
    }
    
    /* মোবাইলে শেয়ার বাটন ছোট হবে */
    .btn-sm.rounded-pill {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem !important;
    }
}