/*
 * AL60 Affiliate Banner Carousel (001M-C)
 *
 * Fully scoped under .al60-affiliate-banner-* so it never touches the theme or
 * the existing travel-offer cards. Does NOT style .entry-content, .content-area,
 * article.entry, .container, .sidebar or a global img selector.
 */

.al60-affiliate-banner-carousel {
	position: relative;
	margin: 0;
	max-width: 100%;
	text-align: center;
	line-height: 0;
}

.al60-affiliate-banner-track {
	position: relative;
	width: 100%;
	line-height: 0;
}

.al60-affiliate-banner-slide {
	display: none;
	margin: 0;
	line-height: 0;
}

.al60-affiliate-banner-slide.is-active {
	display: block;
}

.al60-affiliate-banner-link {
	display: block;
	width: 100%;
	max-width: 100%;
	line-height: 0;
	text-decoration: none;
	border: 0;
}

.al60-affiliate-banner-img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	border: 0;
	object-fit: contain;
}

/* Dots remain available via show_dots="1", but are hidden by default in 001M-C. */
.al60-affiliate-banner-dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 8px 0 0;
	padding: 0;
	line-height: 1;
}

.al60-affiliate-banner-dot {
	width: 11px;
	height: 11px;
	padding: 0;
	border: 1px solid #999;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 0.2s ease;
}

.al60-affiliate-banner-dot:hover,
.al60-affiliate-banner-dot:focus {
	background: #bbb;
	outline: none;
}

.al60-affiliate-banner-dot.is-active {
	background: #555;
	border-color: #555;
}

/* Placement tuning: post/sidebar banners should fit the available widget width. */
.al60-affiliate-banner-placement-post {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.al60-affiliate-banner-placement-post .al60-affiliate-banner-link,
.al60-affiliate-banner-placement-post .al60-affiliate-banner-img {
	width: 100%;
	max-width: 100%;
}

/* Placement tuning: footer banners may use wider leaderboard creatives. */
.al60-affiliate-banner-placement-footer {
	width: 100%;
	max-width: 970px;
	margin: 0.25rem auto;
}

.al60-affiliate-banner-placement-footer .al60-affiliate-banner-link,
.al60-affiliate-banner-placement-footer .al60-affiliate-banner-img {
	width: 100%;
	max-width: 970px;
}

/* Compact footer output: the plugin itself adds no extra vertical white space. */
.al60-affiliate-banner-placement-footer .al60-affiliate-banner-track,
.al60-affiliate-banner-placement-footer .al60-affiliate-banner-slide {
	margin: 0;
	padding: 0;
}

/* Calm, slow fade-in for the active slide; no motion for reduced-motion users. */
@media (prefers-reduced-motion: no-preference) {
	.al60-affiliate-banner-slide.is-active {
		animation: al60-affiliate-banner-fade 0.4s ease;
	}
}

@keyframes al60-affiliate-banner-fade {
	from { opacity: 0.35; }
	to   { opacity: 1; }
}
