/*
 * Path: wp-content/themes/moviestream-child-gogotv/assets/css/banner.css
 * GogoTV top responsive 300x100 banner grid.
 */
.gogotv-top-ads{
	width:min(1248px, calc(100% - 32px));
	margin:12px auto 16px;
	position:relative;
	z-index:3;
}
.gogotv-top-ads-grid{
	display:grid;
	grid-template-columns:repeat(4, minmax(0, 1fr));
	gap:16px;
	align-items:stretch;
}
.gogotv-top-ad-card{
	position:relative;
	min-width:0;
	aspect-ratio:3 / 1;
	background:#111;
	border:1px solid rgba(255,255,255,.08);
	border-radius:8px;
	overflow:hidden;
	box-shadow:0 5px 18px rgba(0,0,0,.18);
}
.gogotv-top-ad-link{
	position:relative;
	display:block;
	width:100%;
	height:100%;
	color:inherit;
	text-decoration:none;
}
.gogotv-top-ad-link img{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	transition:transform .18s ease, filter .18s ease;
}
.gogotv-top-ad-card:hover .gogotv-top-ad-link img{
	transform:scale(1.015);
	filter:brightness(1.04);
}
.gogotv-top-ad-badge{
	position:absolute;
	top:4px;
	right:4px;
	z-index:2;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:22px;
	height:15px;
	padding:0 4px;
	border-radius:3px;
	background:rgba(0,0,0,.62);
	color:rgba(255,255,255,.88);
	font-size:8px;
	font-weight:700;
	line-height:1;
	letter-spacing:.04em;
}
@media (max-width:860px){
	.gogotv-top-ads{
		width:calc(100% - 20px);
		margin:8px auto 12px;
	}
	.gogotv-top-ads-grid{
		grid-template-columns:repeat(2, minmax(0, 1fr));
		gap:6px;
	}
	.gogotv-top-ad-card{
		border-radius:6px;
		box-shadow:none;
	}
}
@media (max-width:360px){
	.gogotv-top-ads{
		width:calc(100% - 12px);
	}
	.gogotv-top-ads-grid{
		gap:4px;
	}
}
