.eev-banner {
	--eev-banner-height: clamp(260px, 30vw, 340px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	width: 100%;
	height: var(--eev-banner-height);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	background: #ececec;
}

.eev-banner--promo-only,
.eev-banner--video-only {
	grid-template-columns: 1fr;
}

.eev-banner__col {
	position: relative;
	min-height: 0;
	overflow: hidden;
}

.eev-banner__col--video {
	background: #111;
}

.eev-banner__col--promo {
	background: #ebebeb;
}

.eev-banner__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	background: #111;
}

.eev-banner__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.eev-banner__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.eev-banner__badge {
	position: absolute;
	left: 14px;
	bottom: 14px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.72);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	backdrop-filter: blur(4px);
}

.eev-banner__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ff3b30;
	box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
	animation: eev-pulse 1.8s infinite;
}

@keyframes eev-pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.65); }
	70% { box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

@media (max-width: 768px) {
	.eev-banner {
		height: auto;
		grid-template-columns: 1fr;
	}

	.eev-banner__col--video {
		aspect-ratio: 16 / 9;
	}

	.eev-banner__col--promo {
		aspect-ratio: 5 / 4;
	}
}

.estampame-eventos-vivo .estampame-container {
	width: min(100% - 2rem, 1200px);
}
