figure.image {
 clear: both;
 display: table;
}
 figure.image:has(img.float-start) {
 float: left;
}
 figure.image:has(img.float-end) {
 float: right;
}
 figure.image figcaption {
 caption-side: bottom;
 display: table-caption;
 font-size: .8em;
 font-style: italic;
}
 figure.image:has(img.float-start) figcaption{
 padding-right: 1rem;
}
 figure.image:has(img.float-end) figcaption{
 padding-left: 1rem;
}

/* Desktop Layout: 768px to a max of 999px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width:768px) {

}
@media only screen and (min-width:1000px) {

}



