figure.illustration {
	width: 100%;
	max-width: 800px;
	height: 550px;
	margin: 0 auto;
	position: relative;
	z-index: -1;
}

.illustration img {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.illustration figcaption {
	position: absolute;
	z-index: 10;
	bottom: 2rem;
	right: 2rem;
	color: #999;
	font-size: 80%;
}

.illustration__africa-only,
.illustration__full {
	opacity: 0;
}

.illustration__africa-only {
	z-index: 10;
	transition: opacity 0.5s ease-in;
}

.illustration__africa-only.loaded,
.illustration__full.loaded {
	opacity: 1;
}

.illustration__africa-only.beat {
	animation: beat 0.75s infinite alternate;
	transform-origin: center;
}

.illustration__full {
	z-index: 5;
	transition: opacity 1s ease-in-out;
}

@keyframes beat {
	from {
		opacity: 0.9;
	}
	to {
		opacity: 1;
		transform: scale(1.0125);
	}
}
