.bea-focus-blocks {
	--bea-focus-card-width: 400px;
	--bea-focus-card-height: 400px;
	--bea-focus-gap: 1rem;
	--bea-focus-cards-per-view: 3;
	--bea-focus-peek: 130px;
	--bea-focus-breakout-width: 100%;
	--bea-focus-breakout-shift: 0px;
	--bea-focus-title-font-family: var(--wp--preset--font-family--heading, inherit);
	--bea-focus-title-font-size: clamp(1.5rem, 1.1rem + 1.35vw, 2.2rem);
	--bea-focus-title-font-weight: 600;
	--bea-focus-title-text-transform: none;
	--bea-focus-title-color: #ffffff;
	--bea-focus-description-font-family: var(--wp--preset--font-family--body, inherit);
	--bea-focus-description-font-size: 1rem;
	--bea-focus-description-font-weight: 400;
	--bea-focus-description-text-transform: none;
	--bea-focus-description-color: #ffffff;
	--bea-focus-arrow-size: 48px;
	--bea-focus-arrow-icon-size: 24px;
	--bea-focus-arrow-bg-enabled: #ffffff;
	--bea-focus-arrow-icon-enabled: #121026;
	--bea-focus-arrow-bg-disabled: #25213c;
	--bea-focus-arrow-icon-disabled: #7d7897;
	--bea-focus-arrow-margin-bottom: 80px;
	--bea-focus-contained-columns-desktop: 4;
	--bea-focus-contained-columns-tablet: 2;
	--bea-focus-contained-columns-mobile: 1;

	margin: 1.5rem 0;
	max-width: 100%;
}

.bea-focus-blocks__header {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin: 0 0 var(--bea-focus-arrow-margin-bottom);
}

.bea-focus-blocks__controls {
	display: inline-flex;
	gap: 0.75rem;
}

.bea-focus-blocks__arrow {
	appearance: none;
	border: 0;
	background: var(--bea-focus-arrow-bg-enabled);
	color: var(--bea-focus-arrow-icon-enabled);
	width: var(--bea-focus-arrow-size);
	height: var(--bea-focus-arrow-size);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.bea-focus-blocks__arrow-icon {
	display: block;
	width: var(--bea-focus-arrow-icon-size);
	height: var(--bea-focus-arrow-icon-size);
	background-color: currentColor;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
}

.bea-focus-blocks__arrow--prev .bea-focus-blocks__arrow-icon {
	mask-image: url('/wp-content/uploads/2026/08/icon-arrow-mini-left.svg');
	-webkit-mask-image: url('/wp-content/uploads/2026/08/icon-arrow-mini-left.svg');
}

.bea-focus-blocks__arrow--next .bea-focus-blocks__arrow-icon {
	mask-image: url('/wp-content/uploads/2026/08/icon-arrow-mini-right.svg');
	-webkit-mask-image: url('/wp-content/uploads/2026/08/icon-arrow-mini-right.svg');
}

.bea-focus-blocks__arrow:not(:disabled):hover,
.bea-focus-blocks__arrow:not(:disabled):focus-visible {
	transform: none;
	box-shadow: none;
}

.bea-focus-blocks__arrow:disabled {
	background: var(--bea-focus-arrow-bg-disabled);
	color: var(--bea-focus-arrow-icon-disabled);
	opacity: 1;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.bea-focus-blocks__viewport {
	width: var(--bea-focus-breakout-width);
	margin-inline-start: var(--bea-focus-breakout-shift);
	overflow: hidden;
	touch-action: pan-y;
	cursor: grab;
}

.bea-focus-blocks__viewport.is-dragging {
	cursor: grabbing;
}

.bea-focus-blocks__viewport.is-dragging,
.bea-focus-blocks__viewport.is-dragging * {
	-webkit-user-select: none;
	user-select: none;
}

.bea-focus-blocks__track {
	display: flex;
	gap: var(--bea-focus-gap);
	transform: translate3d(0, 0, 0);
	transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
}

.bea-focus-blocks__slide {
	flex: 0 0 var(--bea-focus-card-width);
	width: var(--bea-focus-card-width);
	height: var(--bea-focus-card-height);
}

.bea-focus-blocks.is-contained-grid .bea-focus-blocks__header,
.bea-focus-blocks.is-contained-grid .bea-focus-blocks__controls {
	display: none;
}

.bea-focus-blocks.is-contained-grid .bea-focus-blocks__viewport {
	width: 100%;
	margin-inline-start: 0;
	overflow: visible;
	touch-action: auto;
	cursor: default;
}

.bea-focus-blocks.is-contained-grid .bea-focus-blocks__track {
	display: grid;
	grid-template-columns: repeat(var(--bea-focus-contained-columns-desktop), minmax(0, 1fr));
	transform: none;
	transition: none;
	will-change: auto;
}

.bea-focus-blocks.is-contained-grid .bea-focus-blocks__slide {
	flex: initial;
	width: auto;
	min-width: 0;
}

.bea-focus-blocks__card {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	color: #ffffff;
	outline: none;
	background: #070319;
}

.bea-focus-blocks__card-media-shell {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.bea-focus-blocks__card:link,
.bea-focus-blocks__card:visited,
.bea-focus-blocks__card:hover,
.bea-focus-blocks__card:focus,
.bea-focus-blocks__card:focus-visible {
	color: #ffffff;
}

.bea-focus-blocks__card-media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1);
	transition: transform 0.7s ease, filter 0.7s ease;
	filter: brightness(0.96);
}

.bea-focus-blocks__card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 3, 25, 0.24) 0%, rgba(7, 3, 25, 0.5) 100%);
	opacity: 1;
	transition: opacity 0.45s ease, background 0.45s ease;
}

.bea-focus-blocks__card-content {
	position: relative;
	isolation: isolate;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.bea-focus-blocks__card-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	width: calc(100% - 3rem);
	text-align: center;
	color: var(--bea-focus-title-color);
	font-family: var(--bea-focus-title-font-family);
	font-size: var(--bea-focus-title-font-size);
	font-weight: var(--bea-focus-title-font-weight);
	text-transform: var(--bea-focus-title-text-transform);
	line-height: 1.1;
	transition: top 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.bea-focus-blocks__card-title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.bea-focus-blocks__card-title-side-icon {
	display: block;
	width: clamp(16px, 2.2vw, 24px);
	height: auto;
	flex: 0 0 auto;
}

.bea-focus-blocks__card-icon {
	position: absolute;
	top: calc(50% + var(--bea-focus-title-icon-offset, 2.75rem));
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: top 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.bea-focus-blocks__card-icon-image {
	display: block;
	width: auto;
	height: auto;
	max-width: clamp(42px, 6vw, 80px);
	max-height: clamp(42px, 6vw, 80px);
}

.bea-focus-blocks__card-description {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -42%);
	width: calc(100% - 3rem);
	margin: 0;
	text-align: center;
	color: var(--bea-focus-description-color);
	font-family: var(--bea-focus-description-font-family);
	font-size: var(--bea-focus-description-font-size);
	font-weight: var(--bea-focus-description-font-weight);
	text-transform: var(--bea-focus-description-text-transform);
	line-height: 1.45;
	opacity: 0;
	transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.bea-focus-blocks__card:hover .bea-focus-blocks__card-media,
.bea-focus-blocks__card:focus-within .bea-focus-blocks__card-media,
.bea-focus-blocks__card:focus-visible .bea-focus-blocks__card-media {
	transform: scale(1.08);
	filter: brightness(0.9);
}

.bea-focus-blocks__card:hover::after,
.bea-focus-blocks__card:focus-within::after,
.bea-focus-blocks__card:focus-visible::after {
	background: linear-gradient(180deg, rgba(7, 3, 25, 0.34) 0%, rgba(7, 3, 25, 0.66) 100%);
}

.bea-focus-blocks__card:hover .bea-focus-blocks__card-title,
.bea-focus-blocks__card:focus-within .bea-focus-blocks__card-title,
.bea-focus-blocks__card:focus-visible .bea-focus-blocks__card-title {
	top: 1.5rem;
	transform: translate(-50%, 0);
}

.bea-focus-blocks__card:hover .bea-focus-blocks__card-icon,
.bea-focus-blocks__card:focus-within .bea-focus-blocks__card-icon,
.bea-focus-blocks__card:focus-visible .bea-focus-blocks__card-icon {
	top: calc(100% - 1.35rem);
	transform: translate(-50%, -100%);
}

.bea-focus-blocks__card:hover .bea-focus-blocks__card-description,
.bea-focus-blocks__card:focus-within .bea-focus-blocks__card-description,
.bea-focus-blocks__card:focus-visible .bea-focus-blocks__card-description {
	opacity: 1;
	color: #ffffff;
	transform: translate(-50%, -50%);
}

.bea-focus-blocks__card:focus-visible,
.bea-focus-blocks__arrow:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 3px;
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__slide {
	height: auto;
}

.bea-focus-blocks.is-content-below {
	--bea-focus-below-media-height: var(--bea-focus-card-width);
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card {
	display: flex;
	flex-direction: column;
	height: auto;
	overflow: hidden;
	background: #070319;
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card::after {
	display: none;
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card-media-shell {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 1;
	clip-path: inset(0 0 calc(100% - var(--bea-focus-below-media-height)) 0);
	transition: clip-path 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	filter: brightness(0.96);
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card-content {
	position: relative;
	isolation: auto;
	z-index: 3;
	height: auto;
	padding-top: calc(var(--bea-focus-below-media-height) + 1rem);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card-title {
	position: static;
	top: auto;
	left: auto;
	transform: none;
	width: 100%;
	text-align: center;
	margin: 0 0 0.65rem;
	line-height: 1.15;
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card-title-row {
	width: 100%;
	margin: 0 0 0.1rem;
	justify-content: center;
	gap: 0.65rem;
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card-title-row .bea-focus-blocks__card-title {
	margin: 0;
	width: auto;
	text-align: center;
	flex: 0 1 auto;
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card-title-side-icon {
	width: 12px;
	height: 12px;
	margin: -6px 0 0 0;
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card-icon {
	display: none;
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card-description {
	position: static;
	top: auto;
	left: auto;
	transform: none;
	width: 100%;
	margin: 0;
	opacity: 1;
	text-align: center;
	line-height: 1.4;
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card:hover .bea-focus-blocks__card-media,
.bea-focus-blocks.is-content-below .bea-focus-blocks__card:focus-within .bea-focus-blocks__card-media,
.bea-focus-blocks.is-content-below .bea-focus-blocks__card:focus-visible .bea-focus-blocks__card-media {
	transform: scale(1.1);
	filter: brightness(0.92);
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card:hover .bea-focus-blocks__card-media-shell,
.bea-focus-blocks.is-content-below .bea-focus-blocks__card:focus-within .bea-focus-blocks__card-media-shell,
.bea-focus-blocks.is-content-below .bea-focus-blocks__card:focus-visible .bea-focus-blocks__card-media-shell {
	clip-path: inset(0 0 0 0);
}

.bea-focus-blocks.is-content-below .bea-focus-blocks__card:hover .bea-focus-blocks__card-title,
.bea-focus-blocks.is-content-below .bea-focus-blocks__card:focus-within .bea-focus-blocks__card-title,
.bea-focus-blocks.is-content-below .bea-focus-blocks__card:focus-visible .bea-focus-blocks__card-title,
.bea-focus-blocks.is-content-below .bea-focus-blocks__card:hover .bea-focus-blocks__card-description,
.bea-focus-blocks.is-content-below .bea-focus-blocks__card:focus-within .bea-focus-blocks__card-description,
.bea-focus-blocks.is-content-below .bea-focus-blocks__card:focus-visible .bea-focus-blocks__card-description {
	transform: none;
	opacity: 1;
}

@media (max-width: 1199px) {
	.bea-focus-blocks {
		--bea-focus-card-width: min(47vw, 360px);
		--bea-focus-card-height: 380px;
		--bea-focus-gap: 0.875rem;
		--bea-focus-cards-per-view: 2;
		--bea-focus-peek: clamp(60px, 12vw, 120px);
		--bea-focus-arrow-margin-bottom: 56px;
	}

	.bea-focus-blocks.is-contained-grid .bea-focus-blocks__track {
		grid-template-columns: repeat(var(--bea-focus-contained-columns-tablet), minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	.bea-focus-blocks {
		--bea-focus-card-width: min(82vw, 340px);
		--bea-focus-card-height: 400px;
		--bea-focus-gap: 0.75rem;
		--bea-focus-cards-per-view: 1;
		--bea-focus-peek: clamp(52px, 18vw, 96px);
		--bea-focus-arrow-margin-bottom: 36px;
	}

	.bea-focus-blocks.is-contained-grid .bea-focus-blocks__track {
		grid-template-columns: repeat(var(--bea-focus-contained-columns-mobile), minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	.bea-focus-blocks__track,
	.bea-focus-blocks__card-media,
	.bea-focus-blocks__card::after,
	.bea-focus-blocks__card-title,
	.bea-focus-blocks__card-icon,
	.bea-focus-blocks__card-description,
	.bea-focus-blocks__arrow {
		transition: none;
	}
}

.editor-styles-wrapper .bea-focus-blocks {
	--bea-focus-breakout-width: 100%;
	--bea-focus-breakout-shift: 0px;
}

.editor-styles-wrapper .bea-focus-blocks__viewport {
	overflow-x: auto;
	cursor: default;
}

.editor-styles-wrapper .bea-focus-blocks__track {
	transform: none;
	transition: none;
}
