/* BDM Hero Slider — versión simple, la imagen manda. */

.bdm-hero {
	position: relative;
	width: 100%;
}

.bdm-hero .swiper {
	width: 100%;
}

/* Slide y media: la imagen muestra su aspect ratio natural, no se recorta. */
.bdm-hero__slide {
	position: relative;
	width: 100%;
}

.bdm-hero__media,
.bdm-hero__media img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

/* Flechas */
.bdm-hero__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, .9);
	color: var(--ink, #0A0A0A);
	font-size: 22px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 150ms ease;
}
.bdm-hero__nav:hover { background: #fff; }
.bdm-hero__prev { left: 16px; }
.bdm-hero__next { right: 16px; }

.bdm-hero .swiper-pagination {
	width: 100%;
	left: 0;
	right: 0;
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 8px;
}
.bdm-hero .swiper-pagination-bullet {
	background: #fff;
	opacity: .6;
	margin: 0 !important;
}
.bdm-hero .swiper-pagination-bullet-active {
	background: var(--brand-blue, #050EFF);
	opacity: 1;
}

@media (max-width: 767px) {
	.bdm-hero__nav { display: none; }
}
