.evis-showcase,
.evis-showcase * {
	box-sizing: border-box;
}

.evis-showcase {
	position: relative;
	width: 100%;
	background: #f0ece4;
	overflow: hidden;
}

.evis-showcase__inner {
	display: flex;
	align-items: stretch;
	width: 100%;
	margin-inline: auto;
}

.evis-showcase__content {
	display: flex;
	flex: 0 0 32%;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
}

.evis-profile {
	display: flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
}

.evis-profile__image {
	display: block;
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	object-fit: cover;
}

.evis-profile__copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.evis-profile__username,
.evis-profile__followers {
	margin: 0;
	padding: 0;
}

.evis-profile__username {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
}

.evis-profile__followers {
	margin-top: 3px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
}

.evis-showcase__heading {
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: clamp(34px, 3vw, 54px);
	font-weight: 600;
	line-height: 1.06;
	text-wrap: balance;
}

.evis-showcase__description {
	width: 100%;
	max-width: 510px;
	font-size: 16px;
	line-height: 1.75;
}

.evis-showcase__description > :first-child {
	margin-top: 0;
}

.evis-showcase__description > :last-child {
	margin-bottom: 0;
}

.evis-showcase__button,
.evis-showcase__button:hover,
.evis-showcase__button:focus,
.evis-showcase__button:active {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	margin: 0;
	border: 0;
	text-decoration: none;
	line-height: 1;
	cursor: pointer;
	transition: color .3s ease, background-color .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.evis-showcase__button:hover,
.evis-showcase__button:focus-visible {
	transform: translateY(-2px);
}

.evis-showcase__button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.evis-showcase__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	transition: transform .3s ease, color .3s ease;
}

.evis-showcase__button-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.evis-showcase__button:hover .evis-showcase__button-icon,
.evis-showcase__button:focus-visible .evis-showcase__button-icon {
	transform: translateX(4px);
}

[dir="rtl"] .evis-showcase__button-icon svg {
	transform: scaleX(-1);
}

[dir="rtl"] .evis-showcase__button:hover .evis-showcase__button-icon,
[dir="rtl"] .evis-showcase__button:focus-visible .evis-showcase__button-icon {
	transform: translateX(-4px);
}

.evis-gallery {
	--evis-column-gap: 10px;
	--evis-row-gap: 10px;
	--evis-fade-size: 54px;
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	flex: 1 1 68%;
	min-width: 0;
	gap: var(--evis-column-gap);
	overflow: hidden;
	isolation: isolate;
}

.evis-gallery__column {
	position: relative;
	min-width: 0;
	height: 100%;
	overflow: hidden;
}

.evis-gallery__track {
	display: flex;
	flex-direction: column;
	gap: var(--evis-row-gap);
	width: 100%;
	will-change: transform;
	backface-visibility: hidden;
	transform: translateZ(0);
	animation-duration: var(--evis-duration, 30s);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.evis-gallery__column--up .evis-gallery__track {
	animation-name: evis-scroll-up;
}

.evis-gallery__column--down .evis-gallery__track {
	animation-name: evis-scroll-down;
}

.evis-gallery__group {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: var(--evis-row-gap);
	width: 100%;
}

.evis-gallery__media {
	position: relative;
	display: block;
	width: 100%;
	min-height: 1px;
	overflow: hidden;
	text-decoration: none;
	transform: translateZ(0);
}

.evis-gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	border: 0;
	object-fit: cover;
	transition: transform .55s cubic-bezier(.2,.65,.3,1);
}

.evis-showcase--pause-hover .evis-gallery:hover .evis-gallery__track {
	animation-play-state: paused;
}

.evis-fade-edges-yes .evis-gallery {
	-webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 var(--evis-fade-size), #000 calc(100% - var(--evis-fade-size)), transparent 100%);
	mask-image: linear-gradient(to bottom, transparent 0, #000 var(--evis-fade-size), #000 calc(100% - var(--evis-fade-size)), transparent 100%);
}

@keyframes evis-scroll-up {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(0, calc(-50% - (var(--evis-row-gap) / 2)), 0); }
}

@keyframes evis-scroll-down {
	from { transform: translate3d(0, calc(-50% - (var(--evis-row-gap) / 2)), 0); }
	to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 1024px) {
	.evis-showcase__heading {
		font-size: clamp(30px, 4.2vw, 44px);
	}
}

@media (max-width: 767px) {
	.evis-showcase__inner {
		flex-direction: column;
	}

	.evis-mobile-order-content .evis-showcase__content {
		order: 1;
	}

	.evis-mobile-order-content .evis-gallery {
		order: 2;
	}

	.evis-mobile-order-gallery .evis-showcase__content {
		order: 2;
	}

	.evis-mobile-order-gallery .evis-gallery {
		order: 1;
	}

	.evis-showcase__content {
		flex-basis: auto !important;
		width: 100% !important;
	}

	.evis-gallery {
		flex-basis: auto;
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.evis-showcase--respect-reduced-motion .evis-gallery__track {
		animation-play-state: paused !important;
	}

	.evis-showcase--respect-reduced-motion .evis-gallery__image,
	.evis-showcase--respect-reduced-motion .evis-showcase__button,
	.evis-showcase--respect-reduced-motion .evis-showcase__button-icon {
		transition-duration: .01ms !important;
	}
}
