﻿/* ============================
   BLOG CONTENT STYLING (Dark Mode + Brand Style)
   ============================ */
.blog-content {
    color: #e6e6e6;
    font-size: 18px;
    line-height: 1.9;
    font-weight: 300;
    word-wrap: break-word;
}

    /* Paragraphs */
    .blog-content p {
        color: #dcdcdc;
        margin-bottom: 20px;
    }

    /* Strong / Bold */
    .blog-content strong,
    .blog-content b {
        color: #ffffff;
        font-weight: 600;
    }

    /* Italic */
    .blog-content em,
    .blog-content i {
        color: #e0e0e0;
        font-style: italic;
    }

    /* Headings (Brand Color) */
    .blog-content h1,
    .blog-content h2,
    .blog-content h3,
    .blog-content h4,
    .blog-content h5,
    .blog-content h6 {
        color: #6ecdc7;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.4;
    }

    /* Sizes */
    .blog-content h1 {
        font-size: 34px;
        font-weight: 800;
    }

    .blog-content h2 {
        font-size: 22px;
        opacity: 0.85;
    }

    .blog-content h3 {
        font-size: 24px;
    }

    .blog-content h4 {
        font-size: 20px;
    }

    .blog-content h5 {
        font-size: 18px;
    }

    .blog-content h6 {
        font-size: 16px;
    }

    /* Auto section-description style */
    .blog-content h1 + p {
        text-align: center;
        color: #cccccc;
        font-size: 17px;
        margin-top: 0;
        margin-bottom: 30px;
    }

    /* Lists */
    .blog-content ul,
    .blog-content ol {
        margin: 20px 0;
        padding-right: 25px;
        color: #dcdcdc;
    }

    .blog-content li {
        margin-bottom: 10px;
    }

    /* Links */
    .blog-content a {
        color: #6ecdc7;
        text-decoration: underline;
    }

        .blog-content a:hover {
            color: #9ff3ee;
        }

    /* Blockquote */
    .blog-content blockquote {
        border-right: 4px solid #6ecdc7;
        padding: 15px 20px;
        margin: 25px 0;
        background: rgba(255,255,255,0.05);
        color: #e6e6e6;
        font-style: italic;
        border-radius: 6px;
    }

    /* Images */
    .blog-content img {
        max-width: 100%;
        border-radius: 8px;
        margin: 25px 0;
        display: block;
    }

    /* Horizontal Line */
    .blog-content hr {
        border: 0;
        border-top: 1px solid rgba(255,255,255,0.2);
        margin: 40px 0;
    }

    /* Tables */
    .blog-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        background: rgba(255,255,255,0.05);
        border-radius: 6px;
        overflow: hidden;
    }

        .blog-content table th,
        .blog-content table td {
            padding: 12px 15px;
            border: 1px solid rgba(255,255,255,0.1);
            color: #e6e6e6;
        }

        .blog-content table th {
            background: rgba(255,255,255,0.1);
            font-weight: 600;
        }

    /* Code Blocks */
    .blog-content pre,
    .blog-content code {
        background: rgba(255,255,255,0.08);
        color: #ffdd88;
        padding: 10px 15px;
        border-radius: 6px;
        font-family: Consolas, monospace;
        overflow-x: auto;
    }

    .blog-content pre {
        margin: 25px 0;
    }

    /* Inline code */
    .blog-content code {
        padding: 3px 6px;
    }

    /* Iframe */
    .blog-content iframe {
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
        margin: 25px 0;
    }

    /* Figure */
    .blog-content figure {
        margin: 25px 0;
        text-align: center;
    }

    .blog-content figcaption {
        color: #cccccc;
        font-size: 14px;
        margin-top: 8px;
    }

    /* Sup / Sub */
    .blog-content sup,
    .blog-content sub {
        font-size: 12px;
        color: #bbbbbb;
    }

    /* Quotes inside paragraphs */
    .blog-content q {
        quotes: "«" "»";
        color: #ffffff;
    }
