.jg-row {
    display: flex;
    gap: 4px; /* Use gap for unified spacing */
}
.jg-row > * {
    flex-grow: 0;
    flex-shrink: 0;
}
.jg-row > *:not(:last-child) {
    /* This rule is no longer needed thanks to the 'gap' property. */
}
.jg-row img {
    width: 100%;
    height: auto;
    /* display: block; */
} 