/* WhatsNews Ads — front-end styles: device targeting + sticky close button. */

.wnads { display: inline-block; max-width: 100%; }
.wnads img { max-width: 100%; height: auto; }

/* Device targeting (classes added by front.js to the .wn-ad box). Breakpoint
   matches the theme's 768px mobile cut-off. */
@media (max-width: 768px) {
	.wn-ad.wnads-only-desktop { display: none !important; }
}
@media (min-width: 769px) {
	.wn-ad.wnads-only-mobile { display: none !important; }
}

/* Dismiss button for the mobile sticky bar. */
.wn-ad-mobile-sticky { position: relative; }
.wnads-sticky-close {
	position: absolute;
	top: -12px;
	right: 6px;
	width: 24px;
	height: 24px;
	border: 0;
	border-radius: 50%;
	background: #0a0a0a;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	padding: 0;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}
.wnads-sticky-close:hover { background: #990f3d; }
