/* WP Ads Manager — front-end styles */

.wpam-slot {
	margin: 18px auto;
	text-align: center;
}

.wpam-ad {
	display: inline-block;
	max-width: 100%;
	margin: 0 auto;
}

/* Space between multiple ads sharing one slot (e.g. "Ads per slot" = 2). */
.wpam-slot .wpam-ad + .wpam-ad {
	margin-left: 16px;
}

/* Stack, rather than crowd, multiple ads in the narrow floating rails. */
.wpam-rail .wpam-ad + .wpam-ad {
	margin-left: 0;
	margin-top: 16px;
}

.wpam-ad img {
	max-width: 100%;
	height: auto;
}

.wpam-label {
	display: block;
	font-size: 10px;
	line-height: 1.4;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 4px;
	text-align: center;
}

.wpam-content-inline {
	clear: both;
	margin: 24px auto;
}

/* Floating side rails */
.wpam-rail {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
}

.wpam-rail--left {
	left: 10px;
}

.wpam-rail--right {
	right: 10px;
}

/* Hide floating rails when the viewport is too narrow to fit them.
   1200px lets common 1366px laptops still show the rails. */
@media (max-width: 1200px) {
	.wpam-rail {
		display: none;
	}
}
