.sr-bgslider {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
}

/* Largura total: estica de ponta a ponta na tela, mesmo dentro de uma coluna */
.sr-bgslider--full {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: 100vw;
}

.sr-bgslider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--srbg-fade, 800ms) ease-in-out, visibility 0s linear var(--srbg-fade, 800ms);
	z-index: 1;
}

.sr-bgslider__slide.is-active {
	opacity: 1;
	visibility: visible;
	transition: opacity var(--srbg-fade, 800ms) ease-in-out, visibility 0s;
	z-index: 2;
}

.sr-bgslider__link {
	display: block;
	width: 100%;
	height: 100%;
}

.sr-bgslider__media {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sr-bgslider__overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
}
