/* Default thumbnail styling for Elementor Posts widget cards.
   Keeps the SVG centered and contained inside the card's thumbnail area
   regardless of the card aspect ratio set in widget settings. */
.elementor-posts .elementor-post__thumbnail img.wals-default-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f4f4f4; /* neutral fill behind the SVG */
    padding: 16px;       /* breathing room around the logo */
    box-sizing: border-box;
}