/* .blog-content ক্লাসের জন্য বেস স্টাইল */
.blog-content {
    /* max-width: 800px;  */
    margin: 0 auto; /* কেন্দ্রে রাখা */
    padding: 1.5rem; /* সামঞ্জস্যপূর্ণ প্যাডিং */
    font-family: 'Noto Serif Bengali', serif; /* বাংলা ফন্ট */
    color: #333; /* টেক্সট কালার */
    line-height: 1.6; /* পঠনযোগ্য লাইন হাইট */
}

/* হেডিং স্টাইল (h1-h6) */
.blog-content h1 {
    font-size: 2.5rem; /* বড় হেডিং */
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: #222;
}

.blog-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
    color: #222;
}

.blog-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: #222;
}

.blog-content h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 1rem 0 0.5rem;
    color: #222;
}

.blog-content h5 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0.75rem 0 0.5rem;
    color: #222;
}

.blog-content h6 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0.75rem 0 0.5rem;
    color: #222;
}

/* প্যারাগ্রাফ স্টাইল */
.blog-content p {
    font-size: 1rem;
    margin: 0.75rem 0;
    line-height: 1.8;
    color: #444;
}

/* লিঙ্ক স্টাইল */
.blog-content a {
    color: #007bff; /* সাধারণ নীল কালার, বিদ্যমান স্টাইলের সাথে মিলে */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-content a:hover {
    color: #0056b3; /* হোভারে গাঢ় নীল */
    text-decoration: underline;
}

/* টেবিল স্টাইল (পূর্ববর্তী, সামঞ্জস্য রাখতে) */
figure.table {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
    width: 100%;
}

figure.table table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: 'Noto Serif Bengali', serif;
}

figure.table th,
figure.table td {
    padding: 10px 12px;
    text-align: left;
    border: 1px solid #ccc;
    font-size: 1rem;
    line-height: 1.4;
}

figure.table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

figure.table tr:nth-child(even) {
    background-color: #fafafa;
}

figure.table tr:hover {
    background-color: #f0f0f0;
}

/* ইমেজ স্টাইল (পূর্ববর্তী, সামঞ্জস্য রাখতে) */
figure.image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    width: 100%;
}

figure.image img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 400px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* রেসপন্সিভ ডিজাইন */
@media (max-width: 768px) {
    .blog-content {
        padding: 1rem;
    }

    .blog-content h1 {
        font-size: 2rem;
    }

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

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

    .blog-content h4 {
        font-size: 1.25rem;
    }

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

    .blog-content h6 {
        font-size: 0.875rem;
    }

    .blog-content p {
        font-size: 0.875rem;
    }

    .blog-content a {
        font-size: 0.875rem;
    }

    figure.table table {
        width: 100%;
        font-size: 0.875rem;
    }

    figure.table th,
    figure.table td {
        padding: 8px 10px;
    }

    figure.image img {
        max-width: 100%;
        max-height: 300px;
    }
}