/*
 * "Banner Slider (Image + Link)" widget — tall banner cards with a dark
 * bottom gradient over the image so the label/subtext stay readable, in
 * either a swipeable carousel or a fixed grid.
 */
.brado-banner-slider-widget {
	padding: 4px 0;
}
.brado-banner-slider-widget__heading {
	font-size: 20px;
	margin: 0 0 14px;
	text-align: center;
	color: var(--brado-ink, #1c1a17);
	font-family: var(--brado-font-heading, serif);
}

.brado-banner-slider-widget__list--carousel {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px 4px 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.brado-banner-slider-widget__list--carousel::-webkit-scrollbar { display: none; }
.brado-banner-slider-widget__list--carousel .brado-banner-slider-widget__card {
	flex: 0 0 44%;
	scroll-snap-align: start;
}

.brado-banner-slider-widget__list--grid {
	display: grid;
	grid-template-columns: repeat(var(--brado-banner-slider-columns, 2), 1fr);
	gap: 12px;
}

.brado-banner-slider-widget__card {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: 14px;
	overflow: hidden;
	background: #14171f center/cover no-repeat;
	display: block;
	text-decoration: none;
}

.brado-banner-slider-widget__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 12, 20, 0) 45%, rgba(8, 10, 18, 0.55) 75%, rgba(6, 8, 16, 0.8) 100%);
}

.brado-banner-slider-widget__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 14px 10px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
}

.brado-banner-slider-widget__label {
	font-family: var(--brado-font-heading, serif);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
}

.brado-banner-slider-widget__subtext {
	font-size: 9.5px;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.4;
}
