/* Actions */
.actions a,
.actions .button {
	display: inline-block;
	margin-top: 1.2rem;
}

/* Tile */
.tile {
	padding: 2.4rem;
	background: #414143;
	color: #fff;
}

.tile a:not(.button) {
	border-bottom: 1px solid rgba(255,255,255,.75);
	color: inherit;
}

.tile a:not(.button):hover {
	border-bottom-color: rgba(255,255,255,1);
}

.tile .button {
	background: #fff;
	color: #414143;
}

@media (min-width: 33.75em) {

	.tile {
		padding: 3.2rem;
	}

}

/* Image Cards */

.module__image {
	display: block;
	width: 100%;
}

.module__image img {
	width: 100%;
}

@media (min-width: 40em) and (max-width: 60em) {

	/* Float image next to content if this card is a "third" */
	.layout--thirds .module--image-card {
		float: none;
		clear: both;
		width: 100%;
	}

	.layout--thirds .module--image-card:nth-child(2) {
		margin-top: 3.2rem;
	}

	.layout--thirds .module--image-card .module__image,
	.layout--equal .module--image-card:nth-last-child(3):first-child .module__image,
	.layout--equal .module--image-card:nth-last-child(3):first-child ~ .module--image-card .module__image {
	  float: left;
	  padding-right: 1.6rem;
	  width: 50%;
	}

	.layout--thirds .module--image-card .module__content,
	.layout--equal .module--image-card:nth-last-child(3):first-child .module__content,
	.layout--equal .module--image-card:nth-last-child(3):first-child ~ .module--image-card .module__content {
	  float: right;
	  margin-top: 0;
	  padding-left: 1.6rem;
	  width: 50%;
	}

}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visually-hidden {
	width: 1px;
	height: 1px;
	position: absolute;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
}

/* Clear floated child elements */

.clear::before,
.clear::after {
	content: " ";
	display: table;
}

.clear::after {
	clear: both;
}