/* Ad slots */
.vzla24-ad-slot {
	display: flex;
	justify-content: center;
	margin: var(--space-lg) auto;
	overflow: hidden;
	max-width: 100%;
}

.vzla24-ad-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-xs);
	background: var(--color-border-light);
	border: 2px dashed var(--color-border);
	color: var(--color-text-muted);
	font-size: var(--font-size-sm);
	font-weight: 600;
	text-align: center;
}

.vzla24-ad-placeholder small {
	font-size: var(--font-size-xs);
	font-weight: 400;
	opacity: 0.7;
}

/* Ad widget */
.vzla24-ad {
	display: flex;
	justify-content: center;
	overflow: hidden;
	max-width: 100%;
}

/* In-article ad */
.in-article-ad {
	margin: var(--space-xl) auto;
	text-align: center;
}

.in-article-ad .vzla24-ad-slot {
	margin: 0 auto;
}

/* Responsive visibility */
.ad-slot--desktop-only {
	display: none;
}

.ad-slot--mobile-only {
	display: flex;
}

@media (min-width: 768px) {
	.ad-slot--desktop-only {
		display: flex;
	}

	.ad-slot--mobile-only {
		display: none;
	}
}

/* Mobile sticky ad */
.mobile-sticky-ad {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: var(--z-sticky);
	background: var(--color-bg-white);
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	padding: var(--space-xs) 0;
}

.mobile-sticky-ad .vzla24-ad-slot {
	margin: 0;
}

@media (min-width: 768px) {
	.mobile-sticky-ad {
		display: none;
	}
}

/* Load more button */
.load-more-wrapper {
	text-align: center;
	margin: var(--space-2xl) 0;
}

.load-more-btn {
	display: inline-block;
	padding: var(--space-md) var(--space-2xl);
	background: var(--color-primary);
	color: #fff;
	border: none;
	border-radius: 4px;
	font-weight: 700;
	font-size: var(--font-size-base);
	cursor: pointer;
	transition: opacity var(--transition-fast);
}

.load-more-btn:hover {
	opacity: 0.9;
}

.load-more-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
