/* Aligned image block (StreamField AlignedImageBlock) */
.image-block {
	margin-top: 1em;
	margin-bottom: 1em;
}

.image-block img {
	max-width: 100%;
	height: auto;
}

.image-block figcaption {
	margin-top: 0.5em;
	font-size: 0.875em;
	font-style: italic;
	text-align: center;
}

/* Float left, text wraps to the right */
.image-block--left {
	float: left;
	max-width: 50%;
	margin-right: 1.5em;
}

/* Float right, text wraps to the left */
.image-block--right {
	float: right;
	max-width: 50%;
	margin-left: 1.5em;
}

/* Centered block, no wrapping */
.image-block--center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* Full content width */
.image-block--full {
	display: block;
	width: 100%;
}

.image-block--full img {
	width: 100%;
}
