/**
 * ElintOm — animations (flow-scroll, hero rotate, card marquee)
 */

/* ==========================================================================
   Homepage hero — rotating keyword
   ========================================================================== */
.elintom-hero-title {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.14em;
	line-height: 1.12;
}

.elintom-hero-title-line {
	display: block;
}

.elintom-hero-title-line--rotate {
	white-space: nowrap;
}

.elintom-hero-rotate {
	display: inline;
	vertical-align: baseline;
	margin: 0;
	padding: 0;
	line-height: inherit;
	overflow: hidden;
	white-space: nowrap;
}

.elintom-hero-rotate-text {
	display: inline-block;
	color: var(--elintom-primary, #1a5e66);
	font-weight: 800;
	letter-spacing: -0.02em;
	transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.elintom-hero-rotate.is-out .elintom-hero-rotate-text {
	opacity: 0;
	transform: translateY(-0.55em);
}

.elintom-hero-rotate.is-in .elintom-hero-rotate-text {
	animation: elintomHeroRotateIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes elintomHeroRotateIn {
	from {
		opacity: 0;
		transform: translateY(0.55em);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.elintom-hero-sr-words {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (prefers-reduced-motion: reduce) {
	.elintom-hero-rotate-text {
		transition: none;
	}

	.elintom-hero-rotate.is-out .elintom-hero-rotate-text,
	.elintom-hero-rotate.is-in .elintom-hero-rotate-text {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.elintom-hero-scene-img,
	.elintom-hero-scene-ambient,
	.elintom-hero-flow-path,
	.elintom-hero-pulse,
	.elintom-hero-pulse::after {
		animation: none !important;
	}

	.elintom-hero-scene-flow,
	.elintom-hero-scene-pulses {
		display: none;
	}
}

/* ==========================================================================
   Homepage hero — lightweight illustrated scene (CSS only, no GIF)
   ========================================================================== */
.elintom-hero-scene {
	position: relative;
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	aspect-ratio: 1 / 1;
}

.elintom-hero-scene-ambient {
	position: absolute;
	inset: 8% 4%;
	z-index: 0;
	border-radius: 50%;
	background: radial-gradient(ellipse at 48% 42%, rgba(26, 94, 102, 0.14) 0%, rgba(255, 45, 120, 0.06) 42%, transparent 72%);
	animation: elintomHeroAmbient 7s ease-in-out infinite alternate;
	pointer-events: none;
}

.elintom-hero-scene-flow {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: visible;
}

.elintom-hero-flow-path {
	fill: none;
	stroke: rgba(26, 94, 102, 0.28);
	stroke-width: 0.55;
	stroke-linecap: round;
	stroke-dasharray: 3 2.5;
	animation: elintomHeroFlowDash 2.8s linear infinite;
}

.elintom-hero-flow-path--delay {
	animation-delay: 0.5s;
	stroke: rgba(255, 45, 120, 0.22);
}

.elintom-hero-flow-path--delay-2 {
	animation-delay: 1s;
}

.elintom-hero-scene-pulses {
	position: absolute;
	inset: 0;
	z-index: 2;
	margin: 0;
	padding: 0;
	list-style: none;
	pointer-events: none;
}

.elintom-hero-pulse {
	position: absolute;
	left: var(--hx, 50%);
	top: var(--hy, 50%);
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	border-radius: 50%;
	background: var(--elintom-primary, #1a5e66);
	box-shadow: 0 0 0 0 rgba(26, 94, 102, 0.35);
	animation: elintomHeroPulseDot 2.6s ease-in-out infinite;
	animation-delay: var(--hd, 0s);
}

.elintom-hero-pulse::after {
	content: '';
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 1.5px solid rgba(26, 94, 102, 0.3);
	animation: elintomHeroPulseRing 2.6s ease-out infinite;
	animation-delay: var(--hd, 0s);
}

.elintom-hero-scene-art {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	animation: elintomHeroSceneFloat 5.5s ease-in-out infinite;
}

.elintom-hero-scene-img {
	max-width: 100%;
	max-height: 420px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.06));
	animation: none !important;
}

@keyframes elintomHeroSceneFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

@keyframes elintomHeroAmbient {
	0% {
		transform: scale(1) translateY(0);
		opacity: 0.85;
	}
	100% {
		transform: scale(1.06) translateY(-2%);
		opacity: 1;
	}
}

@keyframes elintomHeroFlowDash {
	to {
		stroke-dashoffset: -11;
	}
}

@keyframes elintomHeroPulseDot {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.75;
	}
	50% {
		transform: scale(1.15);
		opacity: 1;
	}
}

@keyframes elintomHeroPulseRing {
	0% {
		transform: scale(0.55);
		opacity: 0.65;
	}
	100% {
		transform: scale(2.4);
		opacity: 0;
	}
}

@media (max-width: 767px) {
	.elintom-hero-scene {
		max-width: 320px;
	}

	.elintom-hero-scene-img {
		max-height: 220px;
	}

	.elintom-hero-scene-flow {
		opacity: 0.7;
	}

	/* Match mobile hero stack: image → tag → centered title lines */
	.elintom-hero-title {
		align-items: center;
		text-align: center;
		width: 100%;
	}

	.elintom-hero-title-line {
		width: 100%;
		text-align: center;
	}

	.elintom-hero-title-line--rotate {
		white-space: nowrap;
	}

	.elintom-hero-graphic {
		margin-bottom: 4px;
	}

	.elintom-hero-content .elintom-tag {
		margin-bottom: 14px;
	}
}

/* ==========================================================================
   Vertical flow-scroll
   ========================================================================== */

.elintom-flow-stage {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(32px, 4vw, 56px);
	align-items: center;
}

.elintom-flow-stage--scroll-right .elintom-flow-scroll-col {
	order: 2;
}

.elintom-flow-stage--scroll-right .elintom-flow-visual {
	order: 1;
}

.elintom-flow-scroll-col {
	position: relative;
	min-height: 300px;
	max-height: min(400px, 46vh);
}

.elintom-flow-scroll-col--compact {
	min-height: 300px;
	max-height: min(400px, 46vh);
}

.elintom-flow-scroll-col--tall {
	min-height: 420px;
	max-height: min(520px, 58vh);
}

.elintom-flow-scroll-viewport {
	height: 100%;
	min-height: inherit;
	max-height: inherit;
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid var(--elintom-border, #e2e8f0);
	background: linear-gradient(180deg, #ffffff 0%, var(--elintom-light-bg, #f8fafc) 100%);
	padding: 8px 0;
}

.elintom-flow-scroll-col--soft .elintom-flow-scroll-viewport {
	background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.elintom-flow-scroll-col--dark .elintom-flow-scroll-viewport {
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.02) 100%);
	border-color: rgba(15, 23, 42, 0.08);
}

.elintom-flow-scroll-track {
	display: flex;
	flex-direction: column;
	animation: elintomFlowScroll var(--elintom-flow-duration, 42s) linear infinite;
	will-change: transform;
}

.elintom-flow-scroll-col:hover .elintom-flow-scroll-track {
	animation-play-state: paused;
}

.elintom-flow-scroll-group {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 12px 24px;
}

.elintom-flow-item {
	padding: 18px 0;
	border-bottom: 1px solid var(--elintom-border, #e2e8f0);
}

.elintom-flow-item:last-child {
	border-bottom: none;
}

.elintom-flow-item-title {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--elintom-text-dark, #0f172a);
	margin-bottom: 6px;
	line-height: 1.4;
	font-family: var(--elintom-font-heading, 'Poppins', sans-serif);
}

.elintom-flow-item-text {
	display: block;
	font-size: 14px;
	line-height: 1.65;
	color: var(--elintom-text-light, #64748b);
}

.elintom-flow-scroll-fade {
	position: absolute;
	left: 0;
	right: 0;
	height: 68px;
	pointer-events: none;
	z-index: 2;
}

.elintom-flow-scroll-fade--top {
	top: 0;
	background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
	border-radius: 16px 16px 0 0;
}

.elintom-flow-scroll-fade--bottom {
	bottom: 0;
	background: linear-gradient(0deg, var(--elintom-light-bg, #f8fafc) 0%, rgba(248, 250, 252, 0) 100%);
	border-radius: 0 0 16px 16px;
}

.elintom-flow-scroll-col--soft .elintom-flow-scroll-fade--bottom {
	background: linear-gradient(0deg, #f1f5f9 0%, rgba(241, 245, 249, 0) 100%);
}

.elintom-flow-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	position: sticky;
	top: var(--elintom-sticky-offset, 84px);
}

.elintom-flow-visual .industry-visual-wrap,
.elintom-flow-visual .ind-image-card {
	width: 100%;
	max-width: 440px;
	margin: 0 auto;
}

.elintom-flow-visual img {
	border-radius: 16px;
}

@keyframes elintomFlowScroll {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-50%);
	}
}

/* Inline flow column (no split image) */
.elintom-flow-inline {
	max-width: 640px;
	margin: 0 auto;
}

.elintom-flow-inline .elintom-flow-scroll-col {
	max-height: min(420px, 50vh);
}

/* Back-compat: industries hub aliases */
.industries-questions-stage {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(32px, 4vw, 56px);
	align-items: center;
}

.industries-questions-scroll-col {
	position: relative;
	min-height: 420px;
	max-height: min(520px, 58vh);
}

.industries-questions-scroll-viewport {
	height: 100%;
	min-height: 420px;
	max-height: min(520px, 58vh);
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid var(--elintom-border, #e2e8f0);
	background: linear-gradient(180deg, #ffffff 0%, var(--elintom-light-bg, #f8fafc) 100%);
	padding: 8px 0;
}

.industries-questions-scroll-track {
	display: flex;
	flex-direction: column;
	animation: elintomFlowScroll var(--elintom-flow-duration, 45s) linear infinite;
	will-change: transform;
}

.industries-questions-scroll-col:hover .industries-questions-scroll-track {
	animation-play-state: paused;
}

.industries-questions-scroll-group {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 12px 24px;
}

.industries-question-item {
	padding: 20px 0;
	border-bottom: 1px solid var(--elintom-border, #e2e8f0);
}

.industries-question-item:last-child {
	border-bottom: none;
}

.industries-question-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--elintom-text-light, #64748b);
}

.industries-question-text strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: var(--elintom-text-dark, #0f172a);
	margin-bottom: 8px;
	line-height: 1.4;
}

.industries-questions-scroll-fade {
	position: absolute;
	left: 0;
	right: 0;
	height: 72px;
	pointer-events: none;
	z-index: 2;
}

.industries-questions-scroll-fade--top {
	top: 0;
	background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
	border-radius: 16px 16px 0 0;
}

.industries-questions-scroll-fade--bottom {
	bottom: 0;
	background: linear-gradient(0deg, var(--elintom-light-bg, #f8fafc) 0%, rgba(248, 250, 252, 0) 100%);
	border-radius: 0 0 16px 16px;
}

.industries-questions-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	position: sticky;
	top: var(--elintom-sticky-offset, 84px);
}

.industries-questions-image-wrap {
	width: 100%;
	max-width: 440px;
	margin: 0 auto;
}

@media (max-width: 991px) {
	.elintom-flow-stage,
	.industries-questions-stage {
		grid-template-columns: 1fr;
	}

	.elintom-flow-stage--scroll-right .elintom-flow-scroll-col,
	.elintom-flow-stage--scroll-right .elintom-flow-visual {
		order: unset;
	}

	.elintom-flow-visual,
	.industries-questions-visual {
		position: static;
		max-width: 420px;
		margin: 0 auto;
	}

	.elintom-flow-scroll-col,
	.industries-questions-scroll-col {
		min-height: 320px;
		max-height: min(400px, 48vh);
	}

	.elintom-flow-scroll-viewport,
	.industries-questions-scroll-viewport {
		min-height: 320px;
		max-height: min(400px, 48vh);
	}
}

@media (prefers-reduced-motion: reduce) {
	.elintom-flow-scroll-track,
	.industries-questions-scroll-track {
		animation: none;
	}

	.elintom-flow-scroll-viewport,
	.industries-questions-scroll-viewport {
		max-height: none;
		overflow: visible;
	}

	.elintom-flow-scroll-col,
	.industries-questions-scroll-col {
		max-height: none;
		min-height: 0;
	}

	.elintom-flow-scroll-fade,
	.industries-questions-scroll-fade {
		display: none;
	}

	.elintom-flow-scroll-group[aria-hidden="true"],
	.industries-questions-scroll-group[aria-hidden="true"] {
		display: none;
	}

	.elintom-card-scroll-track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
	}

	.elintom-card-scroll-viewport {
		overflow: visible;
	}

	.elintom-card-scroll-fade {
		display: none;
	}

	.elintom-card-scroll-group[aria-hidden="true"] {
		display: none;
	}

	.elintom-card-scroll .elintom-feat-card {
		flex: 1 1 280px;
		max-width: 100%;
	}
}

/* ==========================================================================
   Horizontal card marquee
   ========================================================================== */
.elintom-card-scroll {
	position: relative;
	margin-top: clamp(24px, 3vw, 36px);
	width: 100%;
}

.elintom-commerce-platform .elintom-card-scroll {
	margin-left: calc(-1 * var(--container-pad, 24px));
	margin-right: calc(-1 * var(--container-pad, 24px));
	width: calc(100% + (2 * var(--container-pad, 24px)));
}

.elintom-card-scroll-viewport {
	overflow: hidden;
	width: 100%;
	padding: 12px 0 20px;
}

.elintom-card-scroll-track {
	display: flex;
	width: max-content;
	animation: elintomCardScroll var(--elintom-card-scroll-duration, 52s) linear infinite;
	will-change: transform;
}

.elintom-card-scroll:hover .elintom-card-scroll-track {
	animation-play-state: paused;
}

.elintom-card-scroll-group {
	display: flex;
	align-items: stretch;
	gap: clamp(16px, 2vw, 24px);
	padding: 4px clamp(20px, 3vw, 32px);
}

.elintom-card-scroll .elintom-feat-card {
	flex: 0 0 clamp(280px, 28vw, 340px);
	min-height: 228px;
	margin: 0;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.elintom-card-scroll .elintom-feat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(255, 45, 120, 0.1);
}

.elintom-card-scroll-fade {
	position: absolute;
	top: 0;
	bottom: 0;
	width: clamp(48px, 8vw, 96px);
	pointer-events: none;
	z-index: 2;
}

.elintom-card-scroll-fade--left {
	left: 0;
	background: linear-gradient(90deg, var(--elintom-light-bg, #f8fafc) 15%, rgba(248, 250, 252, 0) 100%);
}

.elintom-card-scroll-fade--right {
	right: 0;
	background: linear-gradient(270deg, var(--elintom-light-bg, #f8fafc) 15%, rgba(248, 250, 252, 0) 100%);
}

@keyframes elintomCardScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.elintom-card-scroll .elintom-feat-card {
		flex: 0 0 min(300px, 82vw);
		min-height: 210px;
	}
}

/* Pillar cards in horizontal marquee */
.elintom-card-scroll--pillars .elintom-pillar-card {
	flex: 0 0 clamp(300px, 32vw, 380px);
	min-height: 420px;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid var(--elintom-border, #e2e8f0);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.elintom-card-scroll--pillars .elintom-pillar-card:hover {
	transform: translateY(-6px);
	border-color: var(--elintom-primary, #1a5e66);
	box-shadow: 0 18px 40px rgba(26, 94, 102, 0.12);
}

.elintom-card-scroll--pillars .elintom-pillar-img {
	height: 200px;
	padding: 0;
	background: linear-gradient(180deg, rgba(26, 94, 102, 0.1) 0%, rgba(26, 94, 102, 0.03) 100%);
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

.elintom-card-scroll--pillars .elintom-pillar-img img {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	border-radius: 0;
	transition: transform 0.5s ease;
}

.elintom-card-scroll--pillars .elintom-pillar-card:hover .elintom-pillar-img img {
	transform: scale(1.04);
}

.elintom-card-scroll--pillars .elintom-pillar-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.elintom-card-scroll--pillars .elintom-pillar-body h3 {
	font-size: 18px;
	margin: 0 0 10px;
	color: var(--elintom-text-dark, #0f172a);
	font-family: var(--elintom-font-heading, 'Poppins', sans-serif);
}

.elintom-card-scroll--pillars .elintom-pillar-body p {
	font-size: 14px;
	line-height: 1.65;
	color: var(--elintom-text-light, #64748b);
	margin: 0 0 20px;
	flex: 1;
}

.elintom-pillar-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	font-size: 14px;
	font-weight: 600;
	color: var(--elintom-primary, #1a5e66);
	text-decoration: none;
	transition: color 0.2s ease, gap 0.2s ease;
}

.elintom-pillar-cta:hover {
	color: var(--elintom-accent, #ff2d78);
	gap: 12px;
}

.elintom-pillar-cta .fa {
	font-size: 12px;
}

.elintom-card-scroll--on-white .elintom-card-scroll-fade--left {
	background: linear-gradient(90deg, #ffffff 18%, rgba(255, 255, 255, 0) 100%);
}

.elintom-card-scroll--on-white .elintom-card-scroll-fade--right {
	background: linear-gradient(270deg, #ffffff 18%, rgba(255, 255, 255, 0) 100%);
}

.elintom-pillars .elintom-card-scroll {
	margin-top: clamp(28px, 3vw, 40px);
}

/* ==========================================================================
   Homepage — balanced split sections (pain points, solutions, timeline)
   ========================================================================== */
.elintom-premium-layout .elintom-painpoints .elintom-flow-stage,
.elintom-premium-layout .elintom-solutions .elintom-flow-stage,
.elintom-premium-layout .elintom-timeline-section .elintom-flow-stage {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(40px, 5vw, 72px);
	align-items: stretch;
	width: 100%;
}

.elintom-premium-layout .elintom-flow-scroll-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 320px;
	max-height: 380px;
	height: auto;
	align-self: center;
	width: 100%;
}

.elintom-premium-layout .elintom-flow-scroll-viewport {
	flex: 1 1 auto;
	width: 100%;
	min-height: 320px;
	max-height: 380px;
	height: auto;
}

.elintom-premium-layout .elintom-flow-visual {
	position: static;
	top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	max-height: none;
	height: auto;
	width: 100%;
	align-self: center;
}

.elintom-premium-layout .elintom-flow-visual .glass-border,
.elintom-premium-layout .elintom-flow-visual .elintom-image-stack {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	height: auto;
	min-height: 0;
	max-height: none;
	margin: 0;
	padding: clamp(12px, 2vw, 20px);
	background: #ffffff;
	box-sizing: border-box;
}

.elintom-premium-layout .elintom-flow-visual .glass-border img,
.elintom-premium-layout .elintom-flow-visual .elintom-image-stack img,
.elintom-premium-layout .elintom-flow-visual .elintom-image-stack .main-visual {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: min(340px, 42vh);
	object-fit: contain;
	margin: 0 auto;
	display: block;
}

@media (min-width: 992px) {
	.elintom-premium-layout .elintom-painpoints .elintom-flow-stage--scroll-right,
	.elintom-premium-layout .elintom-timeline-section .elintom-flow-stage--scroll-right {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

@media (max-width: 991px) {
	.elintom-premium-layout .elintom-painpoints .elintom-flow-stage,
	.elintom-premium-layout .elintom-solutions .elintom-flow-stage,
	.elintom-premium-layout .elintom-timeline-section .elintom-flow-stage {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.elintom-premium-layout .elintom-flow-visual {
		order: -1;
		min-height: 0;
		max-height: none;
		height: auto;
		max-width: min(420px, 100%);
		margin: 0 auto;
	}

	.elintom-premium-layout .elintom-flow-stage--scroll-right .elintom-flow-visual {
		order: -1;
	}

	.elintom-premium-layout .elintom-flow-stage--scroll-right .elintom-flow-scroll-col {
		order: 0;
	}

	.elintom-premium-layout .elintom-flow-scroll-col {
		min-height: 300px;
		max-height: min(380px, 52vh);
		align-self: stretch;
	}

	.elintom-premium-layout .elintom-flow-scroll-viewport {
		min-height: 300px;
		max-height: min(380px, 52vh);
	}

	.elintom-premium-layout .elintom-flow-visual .glass-border,
	.elintom-premium-layout .elintom-flow-visual .elintom-image-stack {
		min-height: 0;
		max-height: none;
		height: auto;
		padding: 16px;
	}

	.elintom-premium-layout .elintom-flow-visual .glass-border img,
	.elintom-premium-layout .elintom-flow-visual .elintom-image-stack img,
	.elintom-premium-layout .elintom-flow-visual .elintom-image-stack .main-visual {
		max-height: 260px;
	}
}

@media (max-width: 480px) {
	.elintom-premium-layout .elintom-flow-scroll-col {
		min-height: 280px;
		max-height: min(340px, 48vh);
	}

	.elintom-premium-layout .elintom-flow-scroll-viewport {
		min-height: 280px;
		max-height: min(340px, 48vh);
	}

	.elintom-premium-layout .elintom-flow-scroll-group {
		padding: 10px 18px;
	}

	.elintom-premium-layout .elintom-flow-item {
		padding: 14px 0;
	}

	.elintom-premium-layout .elintom-flow-visual .glass-border img,
	.elintom-premium-layout .elintom-flow-visual .elintom-image-stack img,
	.elintom-premium-layout .elintom-flow-visual .elintom-image-stack .main-visual {
		max-height: 220px;
	}
}
