.forberries-intro {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 130px 0 80px;
	border-radius: 0 0 clamp(50px, 8vw, 200px) clamp(50px, 8vw, 200px);
	box-sizing: border-box;
	overflow: hidden;
	background-color: var(--bluelight, var(--wp--preset--color--bluelight, #24314F));
	color: var(--white, var(--wp--preset--color--white, #FDFEFF));
}

.forberries-intro.has-bg-white {
	background-color: var(--white, var(--wp--preset--color--white, #FDFEFF));
}

.forberries-intro.has-bg-gray {
	background-color: var(--gray, var(--wp--preset--color--gray, #EDF0F4));
}

.forberries-intro.has-bg-greendark {
	background-color: var(--greendark, var(--wp--preset--color--greendark, #A0B718));
}

.forberries-intro.has-bg-greenlight {
	background-color: var(--greenlight, var(--wp--preset--color--greenlight, #A0B71852));
}

.forberries-intro.has-bg-bluedark {
	background-color: var(--bluedark, var(--wp--preset--color--bluedark, #1A2641));
}

.forberries-intro.has-bg-bluelight {
	background-color: var(--bluelight, var(--wp--preset--color--bluelight, #24314F));
}

.forberries-intro.has-text-bluedark {
	color: var(--bluedark, var(--wp--preset--color--bluedark, #1A2641));
}

.forberries-intro.has-text-white {
	color: var(--white, var(--wp--preset--color--white, #FDFEFF));
}

.forberries-intro.has-text-bluedark p,
.forberries-intro.has-text-bluedark h1,
.forberries-intro.has-text-bluedark h2,
.forberries-intro.has-text-bluedark h3,
.forberries-intro.has-text-bluedark h4,
.forberries-intro.has-text-bluedark h5,
.forberries-intro.has-text-bluedark h6,
.forberries-intro.has-text-bluedark li {
	color: var(--bluedark, var(--wp--preset--color--bluedark, #1A2641));
}

.forberries-intro.has-text-white p,
.forberries-intro.has-text-white h1,
.forberries-intro.has-text-white h2,
.forberries-intro.has-text-white h3,
.forberries-intro.has-text-white h4,
.forberries-intro.has-text-white h5,
.forberries-intro.has-text-white h6,
.forberries-intro.has-text-white li {
	color: var(--white, var(--wp--preset--color--white, #FDFEFF));
}

.forberries-intro-text-control {
	margin-top: 16px;
}

.forberries-intro__deco {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	pointer-events: none;
	display: flex;
	justify-content: flex-end;
}

.forberries-intro__deco--dark {
	bottom: 0;
	align-items: stretch;
}

.forberries-intro__deco--light {
	align-items: flex-start;
}

.forberries-intro__deco svg {
	display: block;
	width: auto;
}

.forberries-intro__deco--dark svg {
	height: 100%;
}

.forberries-intro__deco--light svg {
	height: clamp(280px, 55vw, 700px);
	max-width: min(100%, 600px);
}

.forberries-intro__inner {
	position: relative;
	z-index: 1;
}

.forberries-intro__inner > *:first-child {
	margin-top: 0;
}

.forberries-intro__inner > *:last-child {
	margin-bottom: 0;
}

.forberries-intro__breadcrumbs {
	margin: 0 0 50px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: inherit;
}

.forberries-intro__breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.forberries-intro__breadcrumbs a:hover,
.forberries-intro__breadcrumbs a:focus {
	color: var(--greendark);
}

.forberries-intro__breadcrumbs span.breadcrumb_last {
	font-weight: 500;
}

.forberries-intro__breadcrumbs--editor {
	opacity: 0.55;
	pointer-events: none;
	user-select: none;
}

/* Edytor */
.forberries-intro-editor .forberries-intro__inner {
	min-height: 80px;
}

.forberries-intro-colors {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.forberries-intro-color-btn {
	position: relative;
	padding-left: 28px !important;
}

.forberries-intro-color-btn::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 50%;
	width: 12px;
	height: 12px;
	border-radius: 2px;
	transform: translateY(-50%);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.forberries-intro-color-btn.is-color-white::before {
	background-color: var(--wp--preset--color--white, #FDFEFF);
}

.forberries-intro-color-btn.is-color-gray::before {
	background-color: var(--wp--preset--color--gray, #EDF0F4);
}

.forberries-intro-color-btn.is-color-greendark::before {
	background-color: var(--wp--preset--color--greendark, #A0B718);
}

.forberries-intro-color-btn.is-color-greenlight::before {
	background-color: var(--wp--preset--color--greenlight, #A0B71852);
}

.forberries-intro-color-btn.is-color-bluedark::before {
	background-color: var(--wp--preset--color--bluedark, #1A2641);
}

.forberries-intro-color-btn.is-color-bluelight::before {
	background-color: var(--wp--preset--color--bluelight, #24314F);
}


@media screen and (max-width: 1000px) {
	.forberries-intro {
		padding: 70px 0 60px;
		
	}
	
	.forberries-intro__deco {
		top: unset;
	}
	
	.forberries-intro__deco svg {
		width: clamp(300px, 80vw, 500px);
		height: auto;
		top: unset;
		bottom: 0;
	}
	
	.forberries-intro__breadcrumbs {
		margin-bottom: 35px;
	}
}