.side-by-side {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	gap: var(--space-2);
}

.et_pb_column.flex-column {
	display: flex;
    flex-flow: column nowrap;
}

.vertical-align-center{
	align-items: center;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-between{
	justify-content: space-between;
}

.text-decoration-underline {
	text-decoration: underline;
}

.text-transform-uppercase {
	text-transform: uppercase;
}

/* Generic branded image treatment — renamed from isnet-image (last project) */
.et_pb_image.brand-image img,
img.brand-image {
	width: 100%;
	height: auto;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	border-radius: var(--banner-radius);
}