/* CSS Editor Medibyx - Dikalibrasi untuk "Compact Corporate" */
    .medibyx-prose {
        color: #475569; /* slate-600 */
    }

    .medibyx-prose p {
        font-size: 17px;
        line-height: 1.8;
        font-weight: 300;
        margin-bottom: 1.5rem;
    }

    .medibyx-prose h2 {
        font-size: 26px;
        font-weight: 900;
        color: #0f172a; /* slate-900 */
        letter-spacing: -0.02em;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .medibyx-prose h3 {
        font-size: 20px;
        font-weight: 800;
        color: #1e293b; /* slate-800 */
        margin-top: 2rem;
        margin-bottom: 0.75rem;
    }

    /* List (Bullet & Numbering) */
    .medibyx-prose ul {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        list-style-type: none;
        padding-left: 0;
    }

    .medibyx-prose ul li {
        font-size: 16px;
        line-height: 1.7;
        font-weight: 300;
        margin-bottom: 0.75rem;
        position: relative;
        padding-left: 1.5rem;
    }

    /* Kotak Oranye sebagai pengganti Bullet standar */
    .medibyx-prose ul li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px; /* Vertically centered text */
        width: 6px;
        height: 6px;
        border-radius: 2px;
        background-color: #F09005;
        box-shadow: 0 0 0 2px rgba(240, 144, 5, 0.2);
    }

    .medibyx-prose ol {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

    .medibyx-prose ol li {
        font-size: 16px;
        line-height: 1.7;
        font-weight: 300;
        margin-bottom: 0.75rem;
    }

    /* Links */
    .medibyx-prose a {
        color: #F09005;
        font-weight: 700;
        text-decoration: underline;
        text-decoration-color: rgba(240, 144, 5, 0.3);
        text-underline-offset: 4px;
        transition: all 0.3s;
    }
    .medibyx-prose a:hover {
        color: #c2410c;
        text-decoration-color: #F09005;
    }

    /* Images */
    .medibyx-prose img {
        border-radius: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
        width: 100%;
        height: auto;
        border: 1px solid #f1f5f9;
    }

    /* Blockquotes (Kutipan) */
    .medibyx-prose blockquote {
        border-left: 4px solid #F09005;
        background: linear-gradient(to right, rgba(240, 144, 5, 0.05), transparent);
        padding: 1.25rem 1.5rem;
        border-radius: 0 1.5rem 1.5rem 0;
        margin: 2rem 0;
        font-style: italic;
        font-size: 18px;
        color: #1e293b;
        font-weight: 500;
    }

    /* Code / Pre (Jika menulis artikel teknis IT) */
    .medibyx-prose pre {
        background-color: #0f172a;
        color: #f8fafc;
        padding: 1.5rem;
        border-radius: 1rem;
        overflow-x: auto;
        font-size: 14px;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
