/* =========================================================
   Blok: Hero (slider) — herbruik van de homepage-hero.
   Relevante .sellabees-hero* regels gekopieerd uit
   assets/css/pages/home.css zodat het blok overal werkt
   (home.css wordt niet op elke pagina ingeladen).
   Alles gescoped onder .brini-block--hero.
   ========================================================= */
.brini-block--hero .sellabees-hero {
	position: relative;
	min-height: 560px;
	background: var(--sellabees-green, #2d572c);
	overflow: hidden;
}
.brini-block--hero .sellabees-hero__slide {
	position: absolute;
	inset: 0;
	background-color: var(--sellabees-green, #2d572c);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	opacity: 0;
	transition: opacity .6s ease;
	pointer-events: none;
}
.brini-block--hero .sellabees-hero__slide.is-active { opacity: 1; pointer-events: auto; }
/* lichte donkere overlay zodat witte tekst leesbaar blijft op de foto */
.brini-block--hero .sellabees-hero__slide::before {
	content: "";
	position: absolute; inset: 0;
	background: rgba(0, 0, 0, .3);
}
.brini-block--hero .sellabees-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	width: 100%;
	color: #fff;
}
.brini-block--hero .sellabees-hero__eyebrow {
	display: block;
	font-family: var(--sellabees-font-ui);
	font-size: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.brini-block--hero .sellabees-hero__title {
	font-family: var(--sellabees-font-heading);
	font-weight: 700;
	font-size: 64px;
	line-height: 1.05;
	color: #fff;
	margin: 0 auto 26px;
	max-width: 14ch;
}
.brini-block--hero .sellabees-hero__text {
	font-family: var(--sellabees-font-body);
	font-weight: 300;
	font-size: 17px;
	line-height: 1.6;
	color: #fff;
	max-width: 46ch;
	margin: -8px auto 26px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}
.brini-block--hero .sellabees-hero__text p { margin: 0 0 .6em; }
.brini-block--hero .sellabees-hero__text p:last-child { margin-bottom: 0; }
.brini-block--hero .sellabees-hero__btn {
	display: inline-block;
	font-family: var(--sellabees-font-ui);
	font-weight: 600;
	font-size: 14px;
	text-transform: none;
	letter-spacing: .04em;
	color: #fff;
	background: transparent;
	padding: 4px 2px;
	border: 0;
	border-bottom: 1px solid #fff;
	transition: opacity .15s ease, border-color .15s ease;
}
.brini-block--hero .sellabees-hero__btn:hover { opacity: .82; }
.brini-block--hero .sellabees-hero__dots {
	position: absolute;
	left: 0; right: 0; bottom: 22px;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.brini-block--hero .sellabees-hero__dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, .5);
	cursor: pointer;
	padding: 0;
}
.brini-block--hero .sellabees-hero__dot.is-active { background: #fff; }

@media (max-width: 900px) {
	.brini-block--hero .sellabees-hero__title { font-size: 44px; }
}
@media (max-width: 560px) {
	.brini-block--hero .sellabees-hero { min-height: 440px; }
	.brini-block--hero .sellabees-hero__title { font-size: 34px; }
	.brini-block--hero .sellabees-hero__text { font-size: 15px; margin-bottom: 18px; }
}
