/**
 * Styles for Auto Random CTA Banner
 */

.auto-random-cta-banner {
	margin: 30px 0;
	text-align: center;
	clear: both;
}

.auto-random-cta-banner img {
	max-width: 100%;
	height: auto;
	display: inline-block;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.auto-random-cta-banner img:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.auto-random-cta-banner {
		margin: 20px 0;
	}
}