/* C26 ALP Beyond the Classroom */
#alp2 figure {
	display: flex;
	align-items: center;
	margin: 15px 0;
}

#alp2 figure img {
	width: 50%;
}

#alp2 figure:nth-of-type(even) img {
	order: 2;
}

#alp2 figure figcaption {
	width: 50%;
}

#alp2 figure figcaption div {
	width: 105%;
	z-index: 1;
	height: auto;
	position: relative;
	right: 5%;
	background-color: #f5f7f6;
	padding: 25px 5%;
	box-sizing: border-box;
}

#alp2 figure:nth-of-type(even) figcaption div {
	right: auto;
}

#alp2 figure figcaption div h3 {
	color: var(--color-evergreen);
	text-transform: initial;
	font-size: 1.5em;
	font-weight: 400;
}

#alp2 figure figcaption div p {
	margin: 1em 0;
}

#alp2 figure figcaption div a {
	padding: 5px 25px;
	background-color: var(--color-evergreen);
	color: #fff;
	font-size: 1rem;
	border-radius: 3px;
	display: inline-block;
	margin-top: 8px;
	text-decoration: none;
}

#alp2 figure figcaption div a[href=''] {
	display: none;
}

@media (max-width: 900px) {
	#alp2 figure {
		flex-direction: column;
		margin: 15px;
	}

	#alp2 figure:nth-of-type(even) img {
		order: 0;
	}

	#alp2 figure img {
		width: 95%;
		align-self: flex-start;
	}

	#alp2 figure figcaption {
		width: 95%;
		align-self: flex-end;
	}

	#alp2 figure figcaption div {
		right: auto;
		top: -30px;
	}
}

/* End C26 ALP Beyond the Classroom */