  /* --- IMAGE STYLING --- */
    .research-img {
        width: 100%;              /* Responsive width */
        max-width: 100%;          /* Ensure it doesn't overflow */
        height: auto;             /* Maintain aspect ratio */
        max-height: 400px;        /* Limit height */
        object-fit: cover;        /* Crop nicely */
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: block;
        margin: 0 auto;           /* Horizontally center the image itself */
    }

    /* List Spacing */
    .rich-text ul, .rich-text ol { margin-bottom: 1rem; padding-left: 40px; }
    
    /* Custom Checkmarks */
    ul[data-list-style="check"] { list-style-type: none !important; padding-left: 0 !important; }
    ul[data-list-style="check"] > li { padding-left: 30px !important; position: relative; margin-bottom: 8px; }
    ul[data-list-style="check"] > li:before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: bold; font-size: 18px; color: inherit; }
    
    /* Colors */
    ul[data-marker-color] > li::marker, ol[data-marker-color] > li::marker { color: var(--marker-color) !important; }
    ul[data-list-style="check"][data-marker-color] > li:before { color: var(--marker-color) !important; }
    ul[data-list-style="check"] > li[data-check-color]:before { color: attr(data-check-color color) !important; }

    /* Section Row */
    .research-section-row {
        scroll-margin-top: 120px; 
        border-bottom: 1px solid #eee; 
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .research-section-row:last-child { border-bottom: none; }