/**
 * Motiq Widgets — Basisstyles
 * Gedeelde layout-CSS voor alle custom Motiq widgets.
 * Visuele stijl (kleuren, typografie) wordt via Elementor controls ingesteld.
 */

/* ─────────────────────────────────────────────────
   Motiq Counter
───────────────────────────────────────────────── */
.motiq-counter {
	display: block;
}

.motiq-counter__number {
	line-height: 1;
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
}

/* Prefix en suffix: inline naast het getal, erven typografie van __number */
.motiq-counter__prefix,
.motiq-counter__suffix,
.motiq-counter__value {
	display: inline;
	white-space: nowrap;
}

.motiq-counter__prefix {
	margin-right: 0.1em;
}

.motiq-counter__suffix {
	margin-left: 0.1em;
}

.motiq-counter__title {
	line-height: 1.3;
}


/* ─────────────────────────────────────────────────
   Motiq Marquee
───────────────────────────────────────────────── */
.motiq-marquee {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.motiq-marquee__inner {
	display: flex;
	align-items: center;
	width: max-content;
	will-change: transform;
}

.motiq-marquee__track {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.motiq-marquee__item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

/* Afbeeldingen in marquee */
.motiq-marquee__item img {
	display: block;
	width: auto;
	height: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Scheidingsteken */
.motiq-marquee__separator {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	user-select: none;
}

/* Pause-cursor bij hover (wanneer pause_on_hover aan staat) */
.motiq-marquee--pauseable:hover {
	cursor: default;
}

/* Verticale marquee: kolom-layout */
.motiq-marquee--vertical .motiq-marquee__inner {
	flex-direction: column;
	width: 100%;
}

.motiq-marquee--vertical .motiq-marquee__track {
	flex-direction: column;
}

/* Fade edges: CSS mask voor zachte randen */
.motiq-marquee--fade-edges {
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0%,
		black var(--motiq-fade-size, 10%),
		black calc(100% - var(--motiq-fade-size, 10%)),
		transparent 100%
	);
	mask-image: linear-gradient(
		to right,
		transparent 0%,
		black var(--motiq-fade-size, 10%),
		black calc(100% - var(--motiq-fade-size, 10%)),
		transparent 100%
	);
}

/* Fade edges verticaal: gradient van boven naar onder */
.motiq-marquee--fade-edges.motiq-marquee--vertical {
	-webkit-mask-image: linear-gradient(
		to bottom,
		transparent 0%,
		black var(--motiq-fade-size, 10%),
		black calc(100% - var(--motiq-fade-size, 10%)),
		transparent 100%
	);
	mask-image: linear-gradient(
		to bottom,
		transparent 0%,
		black var(--motiq-fade-size, 10%),
		black calc(100% - var(--motiq-fade-size, 10%)),
		transparent 100%
	);
}


/* ─────────────────────────────────────────────────
   Motiq Text Reveal
───────────────────────────────────────────────── */

/*
 * Basiscontainer — tekst-uitlijning en responsiviteit worden
 * via Elementor controls en inline-stijlen ingesteld.
 */
.motiq-text-reveal {
	display: block;
}

/*
 * Het eigenlijke tekstelement — SplitText voegt hier extra <div>/<span>
 * elementen aan toe. Zorg dat de lijnhoogte iets groter is zodat
 * letters niet worden afgesneden bij 'roll-up' en 'rotate-in'.
 */
.motiq-text-reveal__text {
	display: block;
	overflow: visible; /* SplitText-elementen mogen buiten de tekstbox uitsteken */
}

/*
 * Masker-span — gegenereerd door text-reveal.js voor het 'roll-up' effect.
 * Knipt de bewegende letter/het woord af zodat het uit de onderkant
 * van het masker omhoog lijkt te rollen (film-credits stijl).
 */
.motiq-tr-mask {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom; /* lijn uit op de basislijn */
	line-height: inherit;
}

/*
 * SplitText maakt .char en .word spans inline-block.
 * Zorg dat ze de regelafstand van de ouder erven.
 */
.motiq-text-reveal .char,
.motiq-text-reveal .word,
.motiq-text-reveal .line {
	display: inline-block;
	will-change: transform, opacity;
}


/* ─────────────────────────────────────────────────
   Motiq Typewriter
───────────────────────────────────────────────── */
.motiq-typewriter {
	display: block;
}

.motiq-typewriter__text {
	display: block;
}

/* Alle inline-spans naast elkaar */
.motiq-typewriter__prefix,
.motiq-typewriter__typed,
.motiq-typewriter__cursor,
.motiq-typewriter__suffix {
	display: inline;
}

/* Cursor: geen selectie, lichte ruimte links */
.motiq-typewriter__cursor {
	user-select: none;
	margin-left: 0.04em;
	will-change: opacity;
}

/* Blok-cursor: gekleurde rechthoek (terminal-stijl) */
.motiq-typewriter__cursor--block {
	display: inline-block;
	width: 0.6em;
	background-color: currentColor;
	margin-left: 0;
	vertical-align: baseline;
	will-change: opacity;
	user-select: none;
}

/* Onderstreping-cursor: lijn onder de typepositie */
.motiq-typewriter__cursor--underline {
	display: inline-block;
	width: 0.6em;
	border-bottom: 2px solid currentColor;
	margin-left: 0;
	vertical-align: baseline;
	will-change: opacity;
	user-select: none;
}

/* "Alles selecteren" verwijdermodus: gesimuleerde tekstselectie */
.motiq-typewriter__typed--selected {
	background-color: #338FFF;
	color: #ffffff;
}


/* ─────────────────────────────────────────────────
   Motiq Tilt Card
───────────────────────────────────────────────── */

/* Buitenste wrapper: bevat de perspectief-instelling (via JS) */
.motiq-tilt-card {
	display: block;
	/* perspective wordt via JS ingesteld */
}

/*
 * Binnenste element: dit element wordt door GSAP geroteerd.
 * overflow:hidden zorgt dat de glans-overlay netjes geclipped wordt.
 */
.motiq-tilt-card__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	will-change: transform;
	/* border-radius via Elementor controls */
	/* padding via Elementor controls */
	text-decoration: none; /* als het een <a> tag is */
	color: inherit;
}

/* Reset de standaard link-stijlen als inner een <a> is */
a.motiq-tilt-card__inner,
a.motiq-tilt-card__inner:hover,
a.motiq-tilt-card__inner:focus {
	text-decoration: none;
	color: inherit;
	outline: none;
}

/* Media (icoon of afbeelding) */
.motiq-tilt-card__media {
	display: flex;
	align-items: flex-start;
	/* margin-bottom via Elementor controls */
}

.motiq-tilt-card__media img {
	display: block;
	max-width: 100%;
	height: auto;
}

.motiq-tilt-card__title {
	margin: 0;
}

.motiq-tilt-card__description {
	margin: 0;
	line-height: 1.6;
}

/* Badge: absolute in de rechterbovenhoek */
.motiq-tilt-card__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-block;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
	pointer-events: none;
	white-space: nowrap;
	/* kleuren via Elementor controls */
}

/*
 * Glans-overlay: volgt de muis, radial-gradient
 * positie en opaciteit worden door GSAP bestuurd.
 */
.motiq-tilt-card__gloss {
	position: absolute;
	inset: 0;              /* top/right/bottom/left: 0 */
	pointer-events: none;
	opacity: 0;
	z-index: 10;
	will-change: opacity;
	border-radius: inherit;
}


/* ─────────────────────────────────────────────────
   Motiq Scroll Progress
───────────────────────────────────────────────── */

/*
 * Track: wordt via JS op position:fixed gezet.
 * Balk: schaalt van 0 → 1 via GSAP scaleX.
 */
.motiq-scroll-progress__track {
	width: 100%;
}

.motiq-scroll-progress__bar {
	width: 100%;
	height: 100%;
	will-change: transform;
}

/* Percentage indicator */
.motiq-scroll-progress__percentage {
	position: absolute;
	top: 100%;
	padding: 2px 6px;
	border-radius: 3px;
	line-height: 1.3;
	white-space: nowrap;
	pointer-events: none;
	margin-top: 4px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

.motiq-scroll-progress__percentage--right {
	right: 0;
}

.motiq-scroll-progress__percentage--left {
	left: 0;
}


/* ─────────────────────────────────────────────────
   Motiq Mouse Parallax
───────────────────────────────────────────────── */

/*
 * Container: bepaalt de zichtbare viewport voor de parallax-lagen.
 * Lagen: absoluut gepositioneerd, vullen de container volledig.
 */
.motiq-mouse-parallax {
	position: relative;
}

.motiq-mouse-parallax__layer {
	position: absolute;
	inset: -40px;  /* iets groter dan de container om bewegingsruimte te geven */
	background-position: center;
	background-repeat: no-repeat;
	will-change: transform;
}


/* ─────────────────────────────────────────────────
   Motiq Horizontal Scroll
───────────────────────────────────────────────── */

/*
 * De buitencontainer wordt door ScrollTrigger gepind.
 * De track bevat alle panelen op een rij; GSAP translateX verplaatst ze.
 */
.motiq-horizontal-scroll {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.motiq-horizontal-scroll__track {
	display: flex;
	flex-wrap: nowrap;
	will-change: transform;
}

.motiq-horizontal-scroll__panel {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	min-height: 100vh;
}

.motiq-horizontal-scroll__image {
	margin-bottom: 20px;
}

.motiq-horizontal-scroll__image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.motiq-horizontal-scroll__title {
	margin: 0;
}

.motiq-horizontal-scroll__desc {
	margin: 0;
	line-height: 1.6;
}

.motiq-horizontal-scroll__button {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.motiq-horizontal-scroll__button:hover {
	opacity: 0.85;
}

/* Progress dots */
.motiq-horizontal-scroll__dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.motiq-horizontal-scroll__dot {
	border-radius: 50%;
	transition: background-color 0.3s ease, transform 0.3s ease;
	cursor: pointer;
}

.motiq-horizontal-scroll__dot.is-active {
	transform: scale(1.3);
}


/* ─────────────────────────────────────────────────
   Motiq Spotlight
───────────────────────────────────────────────── */

/*
 * Container: bepaalt het bereik van het glow-effect.
 * Glow: absoluut gepositioneerd element met radial-gradient,
 * positie wordt door GSAP gestuurd via x/y.
 */
.motiq-spotlight {
	position: relative;
}

.motiq-spotlight__glow {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity: 0;
	will-change: transform, opacity;
}


/* ─────────────────────────────────────────────────
   Motiq Image Sequence
───────────────────────────────────────────────── */

/*
 * Container: wordt optioneel gepind door ScrollTrigger.
 * Frame: absoluut gepositioneerd <img> element, src wordt
 * door JS bijgewerkt op basis van scrollvoortgang.
 */
.motiq-image-sequence {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.motiq-image-sequence__frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}


/* ─────────────────────────────────────────────────
   Motiq Video Scrub
───────────────────────────────────────────────── */

/*
 * Container: wordt optioneel gepind door ScrollTrigger.
 * Video: absoluut gepositioneerd <video> element, currentTime wordt
 * door JS bijgewerkt op basis van scrollvoortgang.
 */
.motiq-video-scrub {
	position: relative;
	overflow: hidden;
	width: 100%;
	perspective: 1000px;  /* nodig voor 3D flip-effecten op overlays */
}

.motiq-video-scrub__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: none;  /* voorkom dat de gebruiker de video bedient */
}

/* Overlay: absoluut over de video, flexbox voor tekst-uitlijning */
/* Standaard verborgen — GSAP autoAlpha maakt ze zichtbaar op scroll */
.motiq-video-scrub__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	z-index: 2;
	pointer-events: none;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
}

/* Overlay content: beperkt de breedte, padding via Elementor control */
.motiq-video-scrub__overlay-content {
	width: 100%;
}

.motiq-video-scrub__overlay-title {
	margin: 0 0 0.4em;
	line-height: 1.15;
}

.motiq-video-scrub__overlay-desc {
	margin: 0;
	line-height: 1.5;
}


/* ─────────────────────────────────────────────────
   Motiq Scroll Text Fill
───────────────────────────────────────────────── */

.motiq-scroll-text-fill {
	display: block;
}

.motiq-scroll-text-fill__text {
	display: block;
}

/* SplitText targets: inline-block voor correcte kleuranimatie */
.motiq-scroll-text-fill .word,
.motiq-scroll-text-fill .char,
.motiq-scroll-text-fill .line {
	display: inline-block;
	will-change: color;
}

/* Highlight / markeerstift-effect: lichte padding voor marker-look */
.motiq-scroll-text-fill--highlight .word,
.motiq-scroll-text-fill--highlight .char {
	padding: 0.05em 0.15em;
	margin: 0 -0.05em;
	border-radius: 0.15em;
}

/* Blur-effect: will-change optimalisatie */
.motiq-scroll-text-fill--blur .word,
.motiq-scroll-text-fill--blur .char,
.motiq-scroll-text-fill--blur .line {
	will-change: filter, color, opacity;
}

/* Rise / opkomst-effect: will-change optimalisatie */
.motiq-scroll-text-fill--rise .word,
.motiq-scroll-text-fill--rise .char,
.motiq-scroll-text-fill--rise .line {
	will-change: transform, color, opacity;
}


/* ─────────────────────────────────────────────────
   Motiq Stacking Cards
───────────────────────────────────────────────── */

.motiq-stacking-cards {
	position: relative;
	width: 100%;
}

.motiq-stacking-cards__card {
	position: sticky;
	top: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	will-change: transform;
	transform-origin: center center;
}

.motiq-stacking-cards__image {
	margin-bottom: 16px;
}

.motiq-stacking-cards__image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.motiq-stacking-cards__title {
	margin: 0 0 8px;
}

.motiq-stacking-cards__description {
	margin: 0;
	line-height: 1.6;
}

.motiq-stacking-cards__button {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
	margin-top: 16px;
	transition: opacity 0.25s ease;
}

.motiq-stacking-cards__button:hover {
	opacity: 0.85;
}


/* ─────────────────────────────────────────────────
   Motiq Infinite Zoom
───────────────────────────────────────────────── */

.motiq-infinite-zoom {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.motiq-infinite-zoom__layer {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	will-change: transform, opacity;
}

.motiq-infinite-zoom__layer img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* ─────────────────────────────────────────────────
   Motiq Split Screen Reveal
───────────────────────────────────────────────── */

.motiq-split-reveal {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.motiq-split-reveal__background {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.motiq-split-reveal__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.motiq-split-reveal__foreground {
	position: absolute;
	inset: 0;
	overflow: hidden;
	will-change: transform, clip-path;
}

.motiq-split-reveal__foreground img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* ─────────────────────────────────────────────────
   Motiq Scroll Velocity
───────────────────────────────────────────────── */

.motiq-scroll-velocity {
	overflow: hidden;
	width: 100%;
}

.motiq-scroll-velocity__inner {
	display: flex;
	align-items: center;
	width: max-content;
	will-change: transform;
}

.motiq-scroll-velocity__track {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.motiq-scroll-velocity__text {
	margin: 0;
	white-space: nowrap;
	flex-shrink: 0;
}

.motiq-scroll-velocity__sep {
	flex-shrink: 0;
	white-space: nowrap;
	user-select: none;
}

.motiq-scroll-velocity__link {
	text-decoration: none;
	color: inherit;
	flex-shrink: 0;
	display: inline-flex;
}

.motiq-scroll-velocity__link:hover,
.motiq-scroll-velocity__link:focus {
	text-decoration: none;
	color: inherit;
	outline: none;
}

/* Stroke / outline text */
.motiq-scroll-velocity--stroke .motiq-scroll-velocity__text {
	-webkit-text-fill-color: transparent;
}


/* ─────────────────────────────────────────────────
   Motiq Text Scramble / Decode
───────────────────────────────────────────────── */

.motiq-text-scramble {
	display: block;
}

.motiq-text-scramble__text {
	display: inline;
	white-space: pre-wrap;
	word-break: break-word;
}

.motiq-text-scramble__char {
	display: inline;
	will-change: contents;
}

/* Scrambled karakter — optioneel andere kleur via Elementor */
.motiq-text-scramble__char--scrambled {
	display: inline;
}

.motiq-text-scramble__cursor {
	display: inline;
	user-select: none;
	margin-left: 0.04em;
}

.motiq-text-scramble__link {
	text-decoration: none;
	color: inherit;
}

.motiq-text-scramble__link:hover,
.motiq-text-scramble__link:focus {
	text-decoration: none;
	color: inherit;
	outline: none;
}


/* ─────────────────────────────────────────────────
   Motiq 3D Card Carousel
───────────────────────────────────────────────── */

.motiq-card-carousel {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.motiq-card-carousel__scene {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.motiq-card-carousel__ring {
	position: relative;
	transform-style: preserve-3d;
	margin: 0 auto;
}

.motiq-card-carousel__card {
	position: absolute;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	backface-visibility: hidden;
	transition: opacity 0.3s ease;
}

.motiq-card-carousel__link {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.motiq-card-carousel__link:hover,
.motiq-card-carousel__link:focus {
	text-decoration: none;
	color: inherit;
	outline: none;
}

.motiq-card-carousel__image {
	width: 100%;
	overflow: hidden;
	flex-shrink: 0;
}

.motiq-card-carousel__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.motiq-card-carousel__content {
	flex: 1;
}

.motiq-card-carousel__title {
	margin: 0 0 6px;
}

.motiq-card-carousel__desc {
	margin: 0;
	line-height: 1.5;
}


/* ─────────────────────────────────────────────────
   Motiq Before/After Comparison
───────────────────────────────────────────────── */

.motiq-before-after {
	position: relative;
	overflow: hidden;
	width: 100%;
	-webkit-user-select: none;
	user-select: none;
}

.motiq-before-after__after,
.motiq-before-after__before {
	position: absolute;
	inset: 0;
}

/* Hoge specificiteit nodig om Elementor's ".elementor img { height: auto }" te overrulen */
.motiq-before-after .motiq-before-after__after img,
.motiq-before-after .motiq-before-after__before img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover; /* fallback, wordt overschreven via Elementor selector */
}

/* Before: voorgrond, wordt geclipped via JS clip-path */
.motiq-before-after__before {
	z-index: 2;
}

/* Divider lijn */
.motiq-before-after__divider {
	position: absolute;
	z-index: 3;
}

.motiq-before-after--horizontal .motiq-before-after__divider {
	top: 0;
	bottom: 0;
	width: 3px;
}

.motiq-before-after--vertical .motiq-before-after__divider {
	left: 0;
	right: 0;
	height: 3px;
}

/* Handle */
.motiq-before-after__handle {
	position: absolute;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.motiq-before-after--horizontal .motiq-before-after__handle {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.motiq-before-after--vertical .motiq-before-after__handle {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Labels */
.motiq-before-after__label {
	position: absolute;
	z-index: 4;
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	pointer-events: none;
}

.motiq-before-after--horizontal .motiq-before-after__label--before {
	top: 16px;
	left: 16px;
}

.motiq-before-after--horizontal .motiq-before-after__label--after {
	top: 16px;
	right: 16px;
}

.motiq-before-after--vertical .motiq-before-after__label--before {
	top: 16px;
	left: 16px;
}

.motiq-before-after--vertical .motiq-before-after__label--after {
	bottom: 16px;
	left: 16px;
}

/* -------------------------------------------------
   Motiq Animated Heading
------------------------------------------------- */

.motiq-animated-heading {
	display: block;
}

.motiq-animated-heading__text {
	display: block;
	overflow: visible;
}

.motiq-animated-heading .char,
.motiq-animated-heading .word {
	display: inline-block;
	will-change: color, transform, opacity;
}

.motiq-animated-heading__link {
	text-decoration: none;
	color: inherit;
}

.motiq-animated-heading__link:hover,
.motiq-animated-heading__link:focus {
	text-decoration: none;
	color: inherit;
	outline: none;
}

/* -------------------------------------------------
   Motiq SVG Draw
------------------------------------------------- */

.motiq-svg-draw {
	display: block;
}

.motiq-svg-draw svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.motiq-svg-draw path,
.motiq-svg-draw circle,
.motiq-svg-draw ellipse,
.motiq-svg-draw rect,
.motiq-svg-draw line,
.motiq-svg-draw polyline,
.motiq-svg-draw polygon {
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* -------------------------------------------------
   Motiq Posts Grid
------------------------------------------------- */

.motiq-posts-grid {
	display: block;
}

.motiq-posts-grid__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.motiq-posts-grid__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.3s ease;
}

.motiq-posts-grid__image {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	overflow: hidden;
}

.motiq-posts-grid__image .motiq-posts-grid__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.motiq-posts-grid__image-link {
	display: block;
	line-height: 0;
}

.motiq-posts-grid__content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.motiq-posts-grid__meta {
	display: flex;
	gap: 12px;
	font-size: 0.8em;
	margin-bottom: 8px;
}

.motiq-posts-grid__title {
	margin: 0 0 10px;
}

.motiq-posts-grid__title a {
	text-decoration: none;
	color: inherit;
}

.motiq-posts-grid__title a:hover {
	text-decoration: underline;
}

.motiq-posts-grid__excerpt {
	margin-bottom: 15px;
	flex: 1;
}

.motiq-posts-grid__read-more {
	display: inline-block;
	font-weight: 600;
	text-decoration: none;
	color: inherit;
	margin-top: auto;
}

.motiq-posts-grid__read-more:hover {
	text-decoration: underline;
}

.motiq-posts-grid__empty {
	grid-column: 1 / -1;
	text-align: center;
	opacity: 0.5;
}

/* -------------------------------------------------
   Motiq Filterable Gallery
------------------------------------------------- */

.motiq-fg {
	display: block;
}

.motiq-fg__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 25px;
}

.motiq-fg__filter-btn {
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	padding: 6px 14px;
	cursor: pointer;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.motiq-fg__filter-btn:hover,
.motiq-fg__filter-btn.is-active {
	border-bottom-color: currentColor;
}

.motiq-fg__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.motiq-fg__item {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
}

.motiq-fg__image {
	position: relative;
	width: 100%;
	padding-top: 100%;
	overflow: hidden;
}

.motiq-fg__image .motiq-fg__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.motiq-fg__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	opacity: 0;
	pointer-events: none;
}

.motiq-fg__overlay-title {
	font-weight: 600;
	font-size: 1em;
}

.motiq-fg__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

/* -------------------------------------------------
   Motiq Flip Box
------------------------------------------------- */

.motiq-fb {
	perspective: 1000px;
	height: 300px;
}

.motiq-fb__inner {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
}

.motiq-fb__front,
.motiq-fb__back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

.motiq-fb__front {
	z-index: 2;
}

.motiq-fb__back {
	z-index: 1;
}

.motiq-fb__content {
	text-align: center;
	padding: 30px;
}

.motiq-fb__icon {
	font-size: 40px;
	margin-bottom: 15px;
	line-height: 1;
}

.motiq-fb__title {
	margin: 0 0 10px;
	font-size: 1.2em;
}

.motiq-fb__desc {
	margin: 0 0 15px;
	font-size: 0.9em;
}

.motiq-fb__button {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9em;
	background: #fff;
	color: #1a1a2e;
	transition: opacity 0.2s ease;
}

.motiq-fb__button:hover {
	opacity: 0.85;
}

/* -------------------------------------------------
   Motiq Timeline
------------------------------------------------- */

.motiq-tl {
	position: relative;
}

/* Vertical layout */
.motiq-tl--vertical .motiq-tl__items {
	display: flex;
	flex-direction: column;
	gap: 40px;
	position: relative;
}

.motiq-tl--vertical .motiq-tl__line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	transform: translateX(-50%);
}

.motiq-tl__line--dashed {
	background: none !important;
	border-left-style: dashed;
	border-left-width: inherit;
}

.motiq-tl__line--dotted {
	background: none !important;
	border-left-style: dotted;
	border-left-width: inherit;
}

.motiq-tl--vertical .motiq-tl__item {
	position: relative;
	width: 50%;
	padding-right: 40px;
}

.motiq-tl--alternating .motiq-tl__item--left {
	align-self: flex-start;
	padding-right: 40px;
	padding-left: 0;
	text-align: right;
}

.motiq-tl--alternating .motiq-tl__item--right {
	align-self: flex-end;
	padding-left: 40px;
	padding-right: 0;
	text-align: left;
}

/* Left alignment (default non-alternating) */
.motiq-tl--vertical:not(.motiq-tl--alternating):not(.motiq-tl--right) .motiq-tl__item {
	padding-left: 40px;
	padding-right: 0;
	width: 100%;
	text-align: left;
}

.motiq-tl--vertical:not(.motiq-tl--alternating):not(.motiq-tl--right) .motiq-tl__line {
	left: 0;
}

/* Right alignment */
.motiq-tl--right .motiq-tl__item {
	padding-right: 40px;
	padding-left: 0;
	width: 100%;
	text-align: right;
	align-self: flex-end;
}

.motiq-tl--right .motiq-tl__line {
	left: auto;
	right: 0;
	transform: none;
}

.motiq-tl--right .motiq-tl__dot {
	right: -8px;
	left: auto;
	top: 15px;
}

.motiq-tl__dot {
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #c9f31d;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.motiq-tl--alternating .motiq-tl__item--left .motiq-tl__dot {
	right: -8px;
	top: 15px;
}

.motiq-tl--alternating .motiq-tl__item--right .motiq-tl__dot {
	left: -8px;
	top: 15px;
}

.motiq-tl--vertical:not(.motiq-tl--alternating):not(.motiq-tl--right) .motiq-tl__dot {
	left: -8px;
	top: 15px;
}

.motiq-tl__dot i,
.motiq-tl__dot svg {
	font-size: 0.6em;
	width: 0.6em;
	height: 0.6em;
}

.motiq-tl__card {
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.motiq-tl__image {
	margin-bottom: 12px;
	border-radius: 6px;
	overflow: hidden;
}

.motiq-tl__img {
	width: 100%;
	height: auto;
	display: block;
}

.motiq-tl__date {
	display: inline-block;
	font-size: 0.8em;
	font-weight: 600;
	margin-bottom: 6px;
}

.motiq-tl__title {
	margin: 0 0 8px;
}

.motiq-tl__content {
	font-size: 0.9em;
}

/* Sticky cards — position:sticky on the ITEM (not the card)
   so it sticks within .motiq-tl__items (the scroll container).
   margin-bottom on items (set via JS) creates scroll distance.
   Same approach as Motiq Stacking Cards widget. */
.motiq-tl--sticky .motiq-tl__item {
	position: sticky;
	will-change: transform;
}
.motiq-tl--sticky .motiq-tl__card {
	transform-origin: center center;
}

/* Horizontal layout */
.motiq-tl--horizontal .motiq-tl__items {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	padding-bottom: 20px;
	position: relative;
}

.motiq-tl--horizontal .motiq-tl__line {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
}

.motiq-tl--horizontal .motiq-tl__item {
	flex: 0 0 280px;
	padding-top: 30px;
	position: relative;
}

.motiq-tl--horizontal .motiq-tl__dot {
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 767px) {
	.motiq-tl--alternating .motiq-tl__item--left,
	.motiq-tl--alternating .motiq-tl__item--right {
		width: 100%;
		padding-left: 35px;
		padding-right: 0;
		text-align: left;
		align-self: stretch;
	}

	.motiq-tl--alternating .motiq-tl__line {
		left: 0;
	}

	.motiq-tl--alternating .motiq-tl__item--left .motiq-tl__dot,
	.motiq-tl--alternating .motiq-tl__item--right .motiq-tl__dot {
		left: -8px;
		right: auto;
		top: 15px;
	}

	/* Right layout falls back to left on mobile */
	.motiq-tl--right .motiq-tl__item {
		padding-left: 35px;
		padding-right: 0;
		text-align: left;
	}

	.motiq-tl--right .motiq-tl__line {
		left: 0;
		right: auto;
	}

	.motiq-tl--right .motiq-tl__dot {
		left: -8px;
		right: auto;
	}
}

/* -------------------------------------------------
   Motiq Animated Tabs / Accordion
------------------------------------------------- */

.motiq-at {
	display: block;
}

/* Tabs mode: top */
.motiq-at--tabs.motiq-at--top .motiq-at__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 0;
}

.motiq-at--tabs.motiq-at--top .motiq-at__tab {
	padding: 12px 20px;
	border: none;
	border-bottom: 2px solid transparent;
	background: none;
	cursor: pointer;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.motiq-at--tabs.motiq-at--top .motiq-at__tab.is-active {
	border-bottom-color: currentColor;
}

/* Tabs mode: left / right */
.motiq-at--tabs.motiq-at--left,
.motiq-at--tabs.motiq-at--right {
	display: flex;
	gap: 0;
}

.motiq-at--tabs.motiq-at--right {
	flex-direction: row-reverse;
}

.motiq-at--tabs.motiq-at--left .motiq-at__tabs,
.motiq-at--tabs.motiq-at--right .motiq-at__tabs {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	min-width: 160px;
}

.motiq-at--tabs.motiq-at--left .motiq-at__tabs {
	border-right: 1px solid #e0e0e0;
}

.motiq-at--tabs.motiq-at--right .motiq-at__tabs {
	border-left: 1px solid #e0e0e0;
}

.motiq-at--tabs.motiq-at--left .motiq-at__tab,
.motiq-at--tabs.motiq-at--right .motiq-at__tab {
	padding: 12px 20px;
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	text-align: left;
	transition: color 0.2s ease;
}

.motiq-at--tabs.motiq-at--left .motiq-at__tab.is-active {
	border-right: 2px solid currentColor;
}

.motiq-at--tabs.motiq-at--right .motiq-at__tab.is-active {
	border-left: 2px solid currentColor;
}

.motiq-at--tabs .motiq-at__panels {
	flex: 1;
	min-width: 0;
}

.motiq-at__panel {
	padding: 20px;
}

.motiq-at__tab-icon {
	margin-right: 8px;
}

/* Accordion mode */
.motiq-at--accordion .motiq-at__acc-item {
	border-bottom: 1px solid #e0e0e0;
}

.motiq-at--accordion .motiq-at__acc-header {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 15px 20px;
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	text-align: left;
}

.motiq-at--accordion .motiq-at__acc-arrow {
	margin-left: auto;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.motiq-at--accordion .motiq-at__acc-header.is-active .motiq-at__acc-arrow {
	transform: rotate(-135deg);
}

.motiq-at--accordion .motiq-at__acc-body {
	overflow: hidden;
}

/* -------------------------------------------------
   Motiq Button
------------------------------------------------- */

.motiq-btn {
	display: inline-block;
}

.motiq-btn__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: color 0.3s ease, border-color 0.3s ease;
}

.motiq-btn__link:hover {
	text-decoration: none;
}

/* Sizes */
.motiq-btn--sm .motiq-btn__link { padding: 8px 18px; font-size: 0.85em; }
.motiq-btn--md .motiq-btn__link { padding: 12px 28px; font-size: 1em; }
.motiq-btn--lg .motiq-btn__link { padding: 16px 36px; font-size: 1.1em; }
.motiq-btn--xl .motiq-btn__link { padding: 20px 48px; font-size: 1.25em; }
.motiq-btn--full { display: block; }
.motiq-btn--full .motiq-btn__link { width: 100%; }

/* Text layers */
.motiq-btn__text {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.motiq-btn__text-clone {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* Fill overlay (swipe, curtain, circle, shutter) */
.motiq-btn__fill {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

/* Curtain halves — horizontal */
.motiq-btn__fill--left,
.motiq-btn__fill--right {
	position: absolute;
	top: 0;
	bottom: 0;
}

/* Curtain halves — vertical */
.motiq-btn__fill--top,
.motiq-btn__fill--bottom {
	position: absolute;
	left: 0;
	right: 0;
}

/* Circle expand variant */
.motiq-btn--circle-expand .motiq-btn__fill {
	width: 150%;
	height: 150%;
	inset: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	border-radius: 50%;
}

/* Direction-aware variant — circular fill from mouse entry point */
.motiq-btn--direction-aware .motiq-btn__fill {
	inset: auto;
	border-radius: 50%;
}

/* Spotlight variant — radial glow follows cursor */
.motiq-btn--spotlight .motiq-btn__fill {
	inset: auto;
	border-radius: 50%;
}

/* Underline slide variant — thin line at bottom */
.motiq-btn--underline-slide .motiq-btn__fill {
	inset: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
}

/* Shutter strips */
.motiq-btn__fill-strip {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

/* Shine element */
.motiq-btn__shine {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 30%;
	z-index: 3;
	pointer-events: none;
	transform: skewX(-25deg);
}

/* Border chase — hide the link's own border & allow overflow */
.motiq-btn--border-chase .motiq-btn__link {
	border-color: transparent !important;
	overflow: visible;
}

/* Border chase — four edge spans (positioned ON the border edge) */
.motiq-btn__chase {
	position: absolute;
	z-index: 3;
	pointer-events: none;
}
.motiq-btn__chase--top {
	top: 0; left: 0; right: 0;
	height: 2px;
	transform-origin: left center;
	transform: scaleX(0);
}
.motiq-btn__chase--right {
	top: 0; right: 0; bottom: 0;
	width: 2px;
	transform-origin: center top;
	transform: scaleY(0);
}
.motiq-btn__chase--bottom {
	bottom: 0; left: 0; right: 0;
	height: 2px;
	transform-origin: right center;
	transform: scaleX(0);
}
.motiq-btn__chase--left {
	top: 0; left: 0; bottom: 0;
	width: 2px;
	transform-origin: center bottom;
	transform: scaleY(0);
}

/* Icon */
.motiq-btn__icon {
	display: inline-flex;
	align-items: center;
}

/* ── NEW: Particles ─────────────────────────────────── */
.motiq-btn__particle {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	top: 50%;
	left: 50%;
}
.motiq-btn__particle--line {
	border-radius: 2px;
}

/* ── NEW: 3D Tilt ───────────────────────────────────── */
.motiq-btn--3d-tilt {
	perspective: 800px;
}
.motiq-btn--3d-tilt .motiq-btn__link {
	transform-style: preserve-3d;
	will-change: transform;
}
.motiq-btn--3d-tilt .motiq-btn__gloss {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	border-radius: inherit;
	opacity: 0;
}

/* ── NEW: 3D Flip ───────────────────────────────────── */
.motiq-btn--3d-flip {
	perspective: 800px;
}
.motiq-btn--3d-flip .motiq-btn__link {
	transform-style: preserve-3d;
}
.motiq-btn--3d-flip .motiq-btn__text {
	backface-visibility: hidden;
}
.motiq-btn--3d-flip .motiq-btn__text-clone {
	backface-visibility: hidden;
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ── NEW: Ripple ────────────────────────────────────── */
.motiq-btn__ripple {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
	width: 20px;
	height: 20px;
	transform: translate(-50%, -50%) scale(0);
}

/* ── NEW: Custom Cursor ─────────────────────────────── */
.motiq-btn__cursor {
	position: fixed;
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: none;
}

/* ── NEW: Cursor effect wrapper ─────────────────────── */
.motiq-btn--cursor-grow,
.motiq-btn--cursor-blend {
	cursor: none;
}
.motiq-btn--cursor-grow .motiq-btn__link,
.motiq-btn--cursor-blend .motiq-btn__link {
	cursor: none;
}

/* ── NEW: Liquid Fill ───────────────────────────────── */
.motiq-btn--liquid-fill .motiq-btn__link {
	overflow: hidden;
}
.motiq-btn__liquid {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 150%;
	z-index: 1;
	pointer-events: none;
	display: flex;
	flex-direction: column;
}
.motiq-btn__liquid-svg {
	display: block;
	width: 200%;
	height: 20px;
	flex-shrink: 0;
}
.motiq-btn__liquid-body {
	flex: 1;
}

/* ── NEW: Gradient Border ───────────────────────────── */
.motiq-btn--gradient-border .motiq-btn__gradient-border {
	padding: 2px;
	border-radius: inherit;
	position: relative;
	display: inline-block;
}
.motiq-btn--gradient-border .motiq-btn__link {
	position: relative;
	z-index: 1;
}


/* ─────────────────────────────────────────────────
   Motiq Image Hotspot
───────────────────────────────────────────────── */
.motiq-hs {
	position: relative;
	display: inline-block;
	line-height: 0;
}

.motiq-hs__image {
	width: 100%;
}

.motiq-hs__image img {
	width: 100%;
	height: auto;
	display: block;
}

.motiq-hs__point {
	position: absolute;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.motiq-hs__point a {
	text-decoration: none;
	color: inherit;
}

.motiq-hs__dot {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
}

.motiq-hs__dot--dot {
	width: 20px;
	height: 20px;
}

.motiq-hs__dot--icon,
.motiq-hs__dot--text,
.motiq-hs__dot--icon-text {
	padding: 6px 10px;
	border-radius: 20px;
	gap: 4px;
}

.motiq-hs__label {
	font-size: 0.85em;
	white-space: nowrap;
}

/* Tooltip */
.motiq-hs__tooltip {
	position: absolute;
	z-index: 10;
	white-space: normal;
	pointer-events: auto;
	opacity: 0;
	visibility: hidden;
	width: max-content;
}

.motiq-hs__tooltip--top {
	bottom: calc(100% + var(--motiq-hs-gap, 12px));
	left: 50%;
	transform: translateX(-50%);
}

.motiq-hs__tooltip--bottom {
	top: calc(100% + var(--motiq-hs-gap, 12px));
	left: 50%;
	transform: translateX(-50%);
}

.motiq-hs__tooltip--left {
	right: calc(100% + var(--motiq-hs-gap, 12px));
	top: 50%;
	transform: translateY(-50%);
}

.motiq-hs__tooltip--right {
	left: calc(100% + var(--motiq-hs-gap, 12px));
	top: 50%;
	transform: translateY(-50%);
}

/* Pulse animation */
@keyframes motiq-pulse {
	0%   { box-shadow: 0 0 0 0 var(--motiq-pulse-color, rgba(201,243,29,0.4)); }
	70%  { box-shadow: 0 0 0 12px transparent; }
	100% { box-shadow: 0 0 0 0 transparent; }
}

.motiq-hs--pulse .motiq-hs__dot::before,
.motiq-hs--pulse .motiq-hs__dot::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	animation: motiq-pulse var(--motiq-hs-speed, 2s) infinite;
	pointer-events: none;
}

.motiq-hs--pulse .motiq-hs__dot::after {
	animation-delay: 0.5s;
}

/* Beat animation */
@keyframes motiq-beat {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.2); }
}

.motiq-hs--beat .motiq-hs__dot {
	animation: motiq-beat var(--motiq-hs-speed, 2s) infinite;
}


/* ─────────────────────────────────────────────────
   Motiq Notification / Toast
───────────────────────────────────────────────── */
.motiq-ntf {
	position: relative;
}

.motiq-ntf__inner {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.motiq-ntf__text {
	flex: 1;
	margin: 0;
	min-width: 0;
}

.motiq-ntf__highlight {
	font-weight: 700;
}

.motiq-ntf__btn {
	display: inline-block;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.motiq-ntf__close {
	background: none;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	line-height: 1;
	padding: 4px;
	transition: color 0.2s ease;
}

/* Toast variant — fixed position */
.motiq-ntf--toast {
	position: fixed;
	z-index: 9990;
	max-width: 400px;
	width: calc(100% - 32px);
}

.motiq-ntf--toast[data-ntf-toast-pos="top-right"] {
	top: 20px;
	right: 20px;
}

.motiq-ntf--toast[data-ntf-toast-pos="top-left"] {
	top: 20px;
	left: 20px;
}

.motiq-ntf--toast[data-ntf-toast-pos="bottom-right"] {
	bottom: 20px;
	right: 20px;
}

.motiq-ntf--toast[data-ntf-toast-pos="bottom-left"] {
	bottom: 20px;
	left: 20px;
}

/* Bar variant — full width */
.motiq-ntf--bar {
	width: 100%;
}

.motiq-ntf--bar .motiq-ntf__inner {
	justify-content: center;
}


/* ─────────────────────────────────────────────────
   Motiq Popup / Modal
───────────────────────────────────────────────── */
.motiq-pop__trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.motiq-pop__trigger--sm {
	padding: 8px 18px;
	font-size: 0.85em;
}

.motiq-pop__trigger--md {
	padding: 12px 28px;
	font-size: 1em;
}

.motiq-pop__trigger--lg {
	padding: 16px 36px;
	font-size: 1.1em;
}

.motiq-pop__trigger-icon {
	display: inline-flex;
	align-items: center;
}

.motiq-pop__overlay {
	position: fixed;
	inset: 0;
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.motiq-pop__modal {
	position: fixed;
	z-index: 9999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	overflow-y: auto;
	visibility: hidden;
}

.motiq-pop__close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1;
	line-height: 1;
	transition: color 0.2s ease;
}

.motiq-pop__body {
	overflow-y: auto;
}


/* ─────────────────────────────────────────────────
   Motiq Offcanvas
───────────────────────────────────────────────── */
.motiq-oc__trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	background: none;
	border: none;
	transition: color 0.2s ease;
}

.motiq-oc__trigger-icon {
	display: inline-flex;
	align-items: center;
}

.motiq-oc__overlay {
	position: fixed;
	inset: 0;
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.motiq-oc__panel {
	position: fixed;
	z-index: 9999;
	overflow-y: auto;
	visibility: hidden;
}

.motiq-oc__panel--left {
	top: 0;
	left: 0;
	bottom: 0;
}

.motiq-oc__panel--right {
	top: 0;
	right: 0;
	bottom: 0;
}

.motiq-oc__panel--top {
	top: 0;
	left: 0;
	right: 0;
}

.motiq-oc__panel--bottom {
	bottom: 0;
	left: 0;
	right: 0;
}

.motiq-oc__close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1;
	line-height: 1;
	transition: color 0.2s ease;
}

.motiq-oc__content {
	padding: 40px 30px;
}


/* ─────────────────────────────────────────────────
   Motiq Parallax Depth Scene
───────────────────────────────────────────────── */
.motiq-pd {
	position: relative;
	overflow: hidden;
}

.motiq-pd__layer {
	position: absolute;
	inset: 0;
	will-change: transform;
}

.motiq-pd__layer img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* ─────────────────────────────────────────────────
   Motiq Scroll Morph Cards
───────────────────────────────────────────────── */
.motiq-mc {
	position: relative;
	overflow: hidden;
}

.motiq-mc__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: relative;
}

.motiq-mc__card {
	position: relative;
	overflow: hidden;
	will-change: transform;
	backface-visibility: hidden;
	flex-shrink: 0;
}

.motiq-mc__card-image {
	width: 100%;
	height: 60%;
	overflow: hidden;
}

.motiq-mc__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.motiq-mc__card-content {
	padding: 20px;
}

.motiq-mc__card-title {
	margin: 0 0 8px;
	font-size: 1.2em;
	font-weight: 600;
}

.motiq-mc__card-desc {
	margin: 0;
	font-size: 0.9em;
	opacity: 0.85;
}

.motiq-mc__card-link {
	position: absolute;
	inset: 0;
	z-index: 5;
}

/* 3D variant */
.motiq-mc--rotate-3d .motiq-mc__grid {
	perspective: 1000px;
}

.motiq-mc--rotate-3d .motiq-mc__card {
	transform-style: preserve-3d;
}

/* Peel-3D variant: stacking context met perspectief */
.motiq-mc--peel-3d .motiq-mc__grid {
	display: block;
	gap: 0;
	perspective: 1000px;
	transform-style: preserve-3d;
	min-height: 100vh;
}

.motiq-mc--peel-3d .motiq-mc__card {
	transform-style: preserve-3d;
	backface-visibility: hidden;
}

.motiq-mc--peel-3d .motiq-mc__card-image {
	height: 100%;
}

.motiq-mc--peel-3d .motiq-mc__card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	background: linear-gradient( transparent, rgba(0,0,0,0.7) );
	color: #fff;
}

/* Stack variant: stacking container, geen flex-gap */
.motiq-mc--stack .motiq-mc__grid {
	display: block;
	gap: 0;
	min-height: 100vh;
}

.motiq-mc--stack .motiq-mc__card {
	border-radius: inherit;
}

/* Afbeelding vult hele kaart bij stack */
.motiq-mc--stack .motiq-mc__card-image {
	height: 100%;
}

/* Content overlay onderaan bij stack */
.motiq-mc--stack .motiq-mc__card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	background: linear-gradient( transparent, rgba(0,0,0,0.7) );
	color: #fff;
}


/* ─────────────────────────────────────────────────
   Motiq Pinned Scroll Scene (Storyteller)
───────────────────────────────────────────────── */
.motiq-scene {
	position: relative;
	overflow: hidden;
}

.motiq-scene__viewport {
	position: relative;
	width: 100%;
	height: 100%;
}

.motiq-scene__slide {
	position: absolute;
	inset: 0;
}

.motiq-scene__bg {
	position: absolute;
	inset: 0;
}

.motiq-scene__bg img,
.motiq-scene__bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.motiq-scene__bg-color {
	width: 100%;
	height: 100%;
}

.motiq-scene__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.motiq-scene__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px;
	text-align: center;
}

/* Content position variants */
.motiq-scene__content[data-pos="left"] {
	align-items: flex-start;
	text-align: left;
}

.motiq-scene__content[data-pos="right"] {
	align-items: flex-end;
	text-align: right;
}

.motiq-scene__content[data-pos="bottom-left"] {
	justify-content: flex-end;
	align-items: flex-start;
	text-align: left;
}

.motiq-scene__content[data-pos="bottom-right"] {
	justify-content: flex-end;
	align-items: flex-end;
	text-align: right;
}

.motiq-scene__title {
	margin: 0 0 16px;
	font-size: 2.5em;
	font-weight: 700;
	line-height: 1.2;
}

.motiq-scene__desc {
	margin: 0 0 24px;
	font-size: 1.1em;
	line-height: 1.6;
}

.motiq-scene__cta {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.motiq-scene__cta:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 767px) {
	.motiq-scene__title {
		font-size: 1.6em;
	}

	.motiq-scene__desc {
		font-size: 0.95em;
	}

	.motiq-scene__content {
		padding: 24px;
	}
}


/* ─────────────────────────────────────────────────
   Motiq Text Hover Image
───────────────────────────────────────────────── */
.motiq-thi {
	position: relative;
	width: 100%;
}

.motiq-thi__item {
	display: flex;
	align-items: center;
	gap: 16px;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.25s ease;
}

.motiq-thi__item:hover {
	opacity: 1 !important;
}

/* Dim siblings on hover */
.motiq-thi:hover .motiq-thi__item:not(:hover) {
	opacity: 0.35;
}

/* Dividers */
.motiq-thi--dividers .motiq-thi__item {
	border-bottom: 1px solid #e0e0e0;
}

.motiq-thi--dividers .motiq-thi__item:first-child {
	border-top: 1px solid #e0e0e0;
}

/* Counter */
.motiq-thi__counter {
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
	min-width: 2em;
}

/* Content */
.motiq-thi__content {
	flex: 1;
	min-width: 0;
}

.motiq-thi__text {
	margin: 0;
	line-height: 1.2;
}

.motiq-thi__meta {
	display: block;
	margin-top: 4px;
	line-height: 1.4;
}

/* Floating image container */
.motiq-thi__image-wrap {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 10;
	overflow: hidden;
	will-change: transform, opacity;
}

.motiq-thi__img {
	display: block;
	will-change: transform, opacity, filter;
}


/* ─────────────────────────────────────────────────
   Motiq Video Mask
───────────────────────────────────────────────── */
.motiq-vm {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.motiq-vm__svg {
	position: absolute;
	width: 0;
	height: 0;
	pointer-events: none;
}

.motiq-vm__media {
	position: relative;
	width: 100%;
	height: 100%;
	will-change: clip-path;
}

.motiq-vm__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.motiq-vm__video--iframe {
	border: 0;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* Text mask overlay: covers the video, blend mode punches through */
.motiq-vm__text-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	pointer-events: none;
}

.motiq-vm__text {
	font-weight: 900;
	font-size: 15vw;
	line-height: 1;
	color: #000;
	white-space: nowrap;
	text-transform: uppercase;
	user-select: none;
}


/* ─────────────────────────────────────────────────
   Motiq Floating Elements
───────────────────────────────────────────────── */
.motiq-fe {
	position: relative;
	width: 100%;
	overflow: hidden;
	pointer-events: none;
}

.motiq-fe__item {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	will-change: transform;
	pointer-events: auto;
}

.motiq-fe__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.motiq-fe__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: inherit;
	width: 100%;
	height: 100%;
}

.motiq-fe__icon i,
.motiq-fe__icon svg {
	font-size: inherit;
	width: 1em;
	height: 1em;
}

.motiq-fe__text {
	display: block;
	font-weight: 700;
	white-space: nowrap;
}

/* Shape primitives */
.motiq-fe__shape {
	display: block;
	width: 100%;
	height: 100%;
}

.motiq-fe__shape--circle {
	border-radius: 50%;
}

.motiq-fe__shape--square {
	border-radius: 4px;
}

.motiq-fe__shape--triangle {
	background: none !important;
	width: 0;
	height: 0;
	border-left: calc(var(--fe-size, 60px) / 2) solid transparent;
	border-right: calc(var(--fe-size, 60px) / 2) solid transparent;
	border-bottom: var(--fe-size, 60px) solid currentColor;
}

.motiq-fe__shape--ring {
	border-radius: 50%;
	background: none !important;
	border: 3px solid currentColor;
}

.motiq-fe__shape--dot {
	border-radius: 50%;
	width: 40%;
	height: 40%;
	margin: auto;
}

.motiq-fe__shape--cross {
	background: none !important;
	position: relative;
}

.motiq-fe__shape--cross::before,
.motiq-fe__shape--cross::after {
	content: '';
	position: absolute;
	background: currentColor;
	top: 50%;
	left: 50%;
}

.motiq-fe__shape--cross::before {
	width: 100%;
	height: 3px;
	transform: translate(-50%, -50%);
}

.motiq-fe__shape--cross::after {
	width: 3px;
	height: 100%;
	transform: translate(-50%, -50%);
}


/* ─────────────────────────────────────────────────
   Motiq Image Hover Reveal
───────────────────────────────────────────────── */
.motiq-ihr {
	position: relative;
	display: block;
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

a.motiq-ihr:hover,
a.motiq-ihr:focus {
	text-decoration: none;
	color: inherit;
	outline: none;
}

.motiq-ihr__base {
	width: 100%;
	height: 100%;
	will-change: transform;
}

.motiq-ihr__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.motiq-ihr__reveal {
	position: absolute;
	inset: 0;
	will-change: clip-path;
	z-index: 2;
}

.motiq-ihr__img--reveal {
	position: absolute;
	inset: 0;
}

/* Overlay */
.motiq-ihr__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	z-index: 3;
	padding: 24px;
}

.motiq-ihr__overlay--center {
	align-items: center;
	justify-content: center;
	text-align: center;
}

.motiq-ihr__overlay--bottom-left {
	align-items: flex-start;
	justify-content: flex-end;
}

.motiq-ihr__overlay--bottom-right {
	align-items: flex-end;
	justify-content: flex-end;
	text-align: right;
}

.motiq-ihr__overlay--top-left {
	align-items: flex-start;
	justify-content: flex-start;
}

.motiq-ihr__overlay--top-right {
	align-items: flex-end;
	justify-content: flex-start;
	text-align: right;
}

.motiq-ihr__title {
	display: block;
	font-size: 1.4em;
	font-weight: 700;
	line-height: 1.2;
}

.motiq-ihr__subtitle {
	display: block;
	font-size: 0.9em;
	margin-top: 4px;
	line-height: 1.4;
}


/* ─────────────────────────────────────────────────
   Motiq Mouse Scrub Video
───────────────────────────────────────────────── */
.motiq-msv {
	position: relative;
	overflow: hidden;
	cursor: ew-resize;
}

.motiq-msv[data-msv-axis="vertical"] {
	cursor: ns-resize;
}

.motiq-msv[data-msv-axis="both"] {
	cursor: move;
}

.motiq-msv__video {
	width: 100%;
	height: 100%;
	display: block;
}

.motiq-msv__video[data-fit="cover"] {
	object-fit: cover;
}

.motiq-msv__video[data-fit="contain"] {
	object-fit: contain;
}

.motiq-msv__progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: var(--msv-progress-height, 3px);
	width: 0%;
	background: var(--msv-progress-color, #c9f31d);
	transition: none;
	z-index: 2;
	pointer-events: none;
}


/* ─────────────────────────────────────────────────
   Motiq 3D Object Viewer
───────────────────────────────────────────────── */
.motiq-3dv {
	position: relative;
	overflow: hidden;
	user-select: none;
	-webkit-user-select: none;
}

.motiq-3dv__canvas {
	position: relative;
	width: 100%;
	height: 100%;
}

.motiq-3dv__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	pointer-events: none;
	will-change: opacity;
}

.motiq-3dv__frame--active {
	opacity: 1;
}

.motiq-3dv__hint {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 24px;
	pointer-events: none;
	z-index: 3;
}

.motiq-3dv__hint-icon {
	font-size: 1.2em;
}

.motiq-3dv__hint-text {
	white-space: nowrap;
}


/* ─────────────────────────────────────────────────
   Motiq Scroll Progress Ring
───────────────────────────────────────────────── */
.motiq-spr {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.motiq-spr__svg {
	display: block;
}

.motiq-spr__fill {
	transition: stroke-dashoffset 0.1s ease;
}

.motiq-spr__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.motiq-spr__counter {
	font-variant-numeric: tabular-nums;
}


/* ─────────────────────────────────────────────────
   Motiq Scroll Slideshow
───────────────────────────────────────────────── */
.motiq-ss {
	position: relative;
	overflow: hidden;
}

.motiq-ss__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 1;
}

.motiq-ss__slide:first-child {
	opacity: 1;
	z-index: 2;
}

.motiq-ss__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.motiq-ss__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}

.motiq-ss__content[data-pos="bottom-left"] {
	justify-content: flex-end;
	align-items: flex-start;
}

.motiq-ss__content[data-pos="bottom-center"] {
	justify-content: flex-end;
	align-items: center;
}

.motiq-ss__content[data-pos="bottom-right"] {
	justify-content: flex-end;
	align-items: flex-end;
}

.motiq-ss__counter {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 5;
	font-variant-numeric: tabular-nums;
}

.motiq-ss__progress {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
}

.motiq-ss__progress-bar {
	width: 0%;
	height: 100%;
}


/* ─────────────────────────────────────────────────
   Motiq Text Invert
───────────────────────────────────────────────── */
.motiq-ti {
	position: relative;
	overflow: hidden;
}

.motiq-ti__base {
	position: relative;
	z-index: 1;
}

.motiq-ti__inverted {
	position: absolute;
	inset: 0;
	z-index: 2;
	clip-path: inset(0% 100% 0% 0%);
}

.motiq-ti__text {
	margin: 0;
}


/* ─────────────────────────────────────────────────
   Motiq Scroll Speed Text
───────────────────────────────────────────────── */
.motiq-sst {
	position: relative;
	overflow: hidden;
}

.motiq-sst__text {
	margin: 0;
	will-change: transform;
}


/* ─────────────────────────────────────────────────
   Motiq Counter-Directional Reveal
───────────────────────────────────────────────── */
.motiq-cr {
	position: relative;
	overflow: hidden;
}

.motiq-cr__front,
.motiq-cr__back {
	position: absolute;
	inset: 0;
	will-change: transform, clip-path;
}

.motiq-cr__front {
	z-index: 2;
}

.motiq-cr__back {
	z-index: 1;
}

.motiq-cr__front img,
.motiq-cr__back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.motiq-cr__overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}

.motiq-cr__overlay[data-pos="bottom-left"] {
	justify-content: flex-start;
	align-items: flex-end;
	padding: 30px;
}

.motiq-cr__overlay[data-pos="bottom-center"] {
	justify-content: center;
	align-items: flex-end;
	padding: 30px;
}

.motiq-cr__overlay[data-pos="bottom-right"] {
	justify-content: flex-end;
	align-items: flex-end;
	padding: 30px;
}


/* ─────────────────────────────────────────────────
   Motiq 3D Cube Scroll
───────────────────────────────────────────────── */
.motiq-cube {
	position: relative;
	overflow: hidden;
}

.motiq-cube__scene {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.motiq-cube__box {
	position: relative;
	transform-style: preserve-3d;
}

.motiq-cube__face {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.motiq-cube__face-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.motiq-cube__face-content {
	position: relative;
	z-index: 1;
}
