/* 
---------------------( LICENSE                            )---------------------
Copyright (c) 2024-2025 Ionovate Inc.
See "LICENSE" for further details.

---------------------( SYNOPSIS                           )---------------------
Site-specific CSS file overriding the theme-specific
"themes/tella/static/css/style.css" file.
*/

/*
.....................{ CLASSES                            }.....................
Image-specific Markdown-friendly CSS class enabling images to natively float
(i.e., flow) around the text following those images. To enable this behaviour,
leverage the Hugo-specific "figure" shortcut "class" attribute: e.g.,
    {{< figure src="photo_alexis.jpg" class="image-left" >}}  # <-- odd but true
*/
.image-left {
    border: 0.1em solid grey;
    display: block;
    float: left;
    margin-top: 0.5em;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: 2.5em;
}
