  #image-7487865674783414 .cq-dd-image { /* Or simply #image-7487865674783414 img if it's the only img */
    border-radius: 50%;    /* This makes the corners round */
    width: 50%;            /* Your original width */

    /* --- Crucial additions for a TRUE circle with a percentage width --- */
    aspect-ratio: 1 / 1;   /* This forces the height to be equal to the width, creating a square */
    object-fit: cover;     /* Ensures the image content covers the square/circle area
                              without distortion, cropping if necessary. This is vital
                              if the source image isn't perfectly square. */
    

    margin-left: 6rem;     /* Your original margin */
    display: block;        /* Good practice for images you're positioning with margins,
                              though img elements often behave somewhat like block elements
                              regarding margins. Ensures consistency. */

   
}