/**
 * Image Module
 * Full-width image within the standard .container, natural aspect ratio.
 */

.image-module {
	padding: 48px 0;
}

.image-module__figure {
	margin: 0;
}

.image-module__figure--narrow {
	width:      60%;
	margin-left: auto;
	margin-right: auto;
}

.image-module__image {
	display: block;
	width:   100%;
	height:  auto;
}

.image-module__caption {
	margin-top:  16px;
	color:       var(--nec-grey);
	font-family: var(--nec-font);
	font-size:   0.875rem;
	line-height: 1.5;
}

/* ===========================
   # Responsive — 767px
=========================== */

@media (max-width: 992px) {
	.image-module__figure--narrow {
		width: 100%;
		margin-left: auto;
	}
}

@media (max-width: 767px) {
	.image-module {
		padding: 32px 0;
	}
}
