/* Blog Content Styling */

/* Headings */
.blog-detail .desc h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 30px;
}

.blog-detail .desc h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 18px;
    margin-top: 25px;
}

.blog-detail .desc h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 22px;
}

.blog-detail .desc h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 14px;
    margin-top: 20px;
}

.blog-detail .desc h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 12px;
    margin-top: 18px;
}

.blog-detail .desc h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
    margin-top: 16px;
}

/* Paragraphs */
.blog-detail .desc p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Lists */
.blog-detail .desc ul,
.blog-detail .desc ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.blog-detail .desc ul li,
.blog-detail .desc ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.blog-detail .desc ul {
    list-style-type: disc;
}

.blog-detail .desc ol {
    list-style-type: decimal;
}

/* Links */
.blog-detail .desc a {
    color: #0d6efd;
    text-decoration: underline;
}

.blog-detail .desc a:hover {
    color: #0a58ca;
}

/* Images */
.blog-detail .desc img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

/* Tables */
.blog-detail .desc table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 2px solid #000000;
}

.blog-detail .desc table th,
.blog-detail .desc table td {
    border: 1px solid #000000;
    padding: 12px;
    text-align: left;
}

.blog-detail .desc table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.blog-detail .desc table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Blockquotes */
.blog-detail .desc blockquote {
    border-left: 4px solid #dee2e6;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #6c757d;
}

/* Text Formatting */
.blog-detail .desc strong,
.blog-detail .desc b {
    font-weight: 700;
}

.blog-detail .desc em,
.blog-detail .desc i {
    font-style: italic;
}

/* Horizontal Rules */
.blog-detail .desc hr {
    border: 0;
    border-top: 1px solid #090909;
    margin: 30px 0;
}

/* Code Blocks */
.blog-detail .desc pre {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    overflow-x: auto;
    margin: 20px 0;
}

.blog-detail .desc code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.blog-detail .desc pre code {
    background-color: transparent;
    padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-detail .desc h1 {
        font-size: 32px;
    }

    .blog-detail .desc h2 {
        font-size: 28px;
    }

    .blog-detail .desc h3 {
        font-size: 24px;
    }

    .blog-detail .desc h4 {
        font-size: 20px;
    }

    .blog-detail .desc h5 {
        font-size: 18px;
    }

    .blog-detail .desc h6 {
        font-size: 16px;
    }

    .blog-detail .desc p {
        font-size: 15px;
    }

    .blog-detail .desc table {
        font-size: 14px;
    }

    .blog-detail .desc table th,
    .blog-detail .desc table td {
        padding: 8px;
    }
}
