.zoowai-seventh-act {
	position: relative;
	z-index: 7;
	padding: clamp(128px, 13vw, 196px) 0 clamp(112px, 12vw, 180px);
	overflow: clip;
	isolation: isolate;
	background: transparent;
}

.zoowai-seventh-shell {
	width: min(1440px, calc(100% - 48px));
	margin: 0 auto;
}

.zoowai-seventh-heading {
	max-width: 760px;
	margin: 0 0 clamp(34px, 4vw, 56px);
	color: #0d3551;
}

.zoowai-seventh-heading h2 {
	margin: 0;
	color: #092f4b;
	font-family: inherit;
	font-size: clamp(36px, 4.5vw, 68px);
	font-weight: 820;
	line-height: 1.02;
	letter-spacing: -0.055em;
	text-wrap: balance;
}

.zoowai-seventh-heading p {
	max-width: 620px;
	margin: 18px 0 0;
	color: rgba(13, 53, 81, 0.7);
	font-size: clamp(14px, 1.35vw, 17px);
	line-height: 1.75;
}

.zoowai-seventh-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: clamp(16px, 2vw, 30px);
	perspective: 1200px;
}

.zoowai-seventh-card {
	position: relative;
	align-self: start;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border: 1px solid rgba(98, 176, 218, 0.36);
	border-radius: 26px;
	background: #d9eaf4;
	box-shadow:
		12px 14px 0 rgba(52, 131, 171, 0.12),
		0 26px 64px rgba(29, 96, 132, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.42);
	isolation: isolate;
	--zoowai-seventh-tilt-y: 4deg;
	transform-origin: center center;
	transform-style: preserve-3d;
	transform: rotateY(var(--zoowai-seventh-tilt-y));
	transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
}

.zoowai-seventh-card::before {
	content: "";
	position: absolute;
	inset: 10px;
	z-index: 2;
	border: 1px solid rgba(239, 250, 255, 0.76);
	border-radius: 18px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.52),
		0 0 0 1px rgba(48, 140, 185, 0.1);
	transform: translateZ(18px);
	pointer-events: none;
}

.zoowai-seventh-card-media {
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 4;
}

.zoowai-seventh-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.002);
	transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zoowai-seventh-card:nth-child(1) img {
	object-position: 49% 53%;
}

.zoowai-seventh-card:nth-child(2) img {
	object-position: 53% 50%;
}

.zoowai-seventh-card:nth-child(3) img {
	object-position: 50% 47%;
}

.zoowai-seventh-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(3, 22, 38, 0.02) 30%, rgba(3, 22, 38, 0.18) 53%, rgba(3, 22, 38, 0.9) 100%);
	transform: translateZ(10px);
	pointer-events: none;
}

.zoowai-seventh-card-copy {
	position: absolute;
	left: clamp(20px, 2.5vw, 34px);
	right: clamp(20px, 2.5vw, 34px);
	bottom: clamp(22px, 3vw, 38px);
	z-index: 3;
	color: #f7fcff;
	transform: translateZ(24px);
}

.zoowai-seventh-card-copy > span {
	display: block;
	margin-bottom: 9px;
	color: rgba(214, 242, 255, 0.82);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.2;
}

.zoowai-seventh-card-copy h3 {
	margin: 0;
	color: inherit;
	font-family: inherit;
	font-size: clamp(26px, 2.8vw, 42px);
	font-weight: 820;
	line-height: 1;
	letter-spacing: -0.045em;
}

.zoowai-seventh-card-copy p {
	margin: 12px 0 0;
	color: rgba(238, 249, 255, 0.84);
	font-size: clamp(12px, 1.05vw, 14px);
	line-height: 1.65;
}


.zoowai-seventh-card:hover {
	transform: translateY(-8px) rotateY(var(--zoowai-seventh-tilt-y));
	box-shadow:
		12px 18px 0 rgba(52, 131, 171, 0.15),
		0 34px 78px rgba(29, 96, 132, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.zoowai-seventh-card.is-pointer-tilting {
	transition: box-shadow 180ms ease;
}

.zoowai-seventh-card:hover .zoowai-seventh-card-media img {
	transform: scale(1.045);
}

@media (max-width: 900px) {
	.zoowai-seventh-act {
		padding: 96px 0 128px;
	}

	.zoowai-seventh-shell {
		width: min(100% - 32px, 900px);
	}

	.zoowai-seventh-card {
		border-radius: 22px;
	}

	.zoowai-seventh-card-copy {
		left: 18px;
		right: 18px;
		bottom: 20px;
	}

	.zoowai-seventh-card-copy h3 {
		font-size: clamp(22px, 3.6vw, 34px);
	}

	.zoowai-seventh-card-copy p {
		font-size: 12px;
	}
}

@media (max-width: 700px) {
	.zoowai-seventh-act {
		padding: 82px 0 104px;
	}

	.zoowai-seventh-shell {
		width: 100%;
	}

	.zoowai-seventh-heading {
		margin: 0 24px 30px;
	}

	.zoowai-seventh-heading h2 {
		font-size: clamp(34px, 10vw, 48px);
	}

	.zoowai-seventh-heading p {
		margin-top: 14px;
		font-size: 14px;
	}

	.zoowai-seventh-grid {
		grid-auto-flow: column;
		grid-auto-columns: minmax(272px, 78vw);
		grid-template-columns: none;
		gap: 16px;
		overflow-x: auto;
		overflow-y: visible;
		padding: 0 24px 24px;
		scroll-padding-inline: 24px;
		scroll-snap-type: x mandatory;
		overscroll-behavior-x: contain;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.zoowai-seventh-grid::-webkit-scrollbar {
		display: none;
	}

	.zoowai-seventh-card {
		aspect-ratio: 3 / 4;
		transform: none;
		scroll-snap-align: start;
	}

	.zoowai-seventh-card-copy {
		left: 22px;
		right: 22px;
		bottom: 24px;
	}

	.zoowai-seventh-card-copy h3 {
		font-size: clamp(28px, 8.5vw, 36px);
	}

	.zoowai-seventh-card-copy p {
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.zoowai-seventh-card,
	.zoowai-seventh-card-media img {
		transition: none;
	}

	.zoowai-seventh-card:hover,
	.zoowai-seventh-card:hover .zoowai-seventh-card-media img {
		transform: none;
	}
}
