/**
 * Venturka — Homepage: hero fold + recently completed projects grid.
 * Matches Industrie / Elementor spacing; responsive.
 */

/* ── Hero single-column content ─────────────────────────────────────────── */
.venturka-hero-content {
	/* Content sits within the left 55% set in Elementor;
	   on tablet/mobile we expand it. */
}

@media (max-width: 1024px) {
	.venturka-hero-content {
		width: 80% !important;
	}
}

@media (max-width: 767px) {
	.venturka-hero-content {
		width: 100% !important;
	}
}

/* ── Trust row ───────────────────────────────────────────────────────────── */
.venturka-trust-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 28px;
}

.venturka-trust-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.82);
	letter-spacing: 0.15px;
	white-space: nowrap;
}

.venturka-trust-item svg {
	flex-shrink: 0;
}

@media (max-width: 480px) {
	.venturka-trust-row {
		gap: 10px 20px;
	}
	.venturka-trust-item {
		font-size: 12px;
	}
}

.venturka-projects-heading-wrap {
	margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

.venturka-projects-inner {
	width: 100%;
	max-width: 1362px;
	margin-left: auto;
	margin-right: auto;
}

.venturka-projects-inner .elementor-shortcode {
	width: 100%;
}

.venturka-projects-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 1.75rem);
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 1024px) {
	.venturka-projects-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

@media (max-width: 600px) {
	.venturka-projects-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

.venturka-project-card {
	margin: 0;
	padding: 0;
	height: 100%;
	min-height: 0;
}

.venturka-project-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transition:
		box-shadow 0.25s ease,
		transform 0.25s ease,
		border-color 0.25s ease;
}

.venturka-project-card__link:hover,
.venturka-project-card__link:focus-visible {
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
	border-color: rgba(238, 13, 8, 0.25);
	outline: none;
}

.venturka-project-card__link:focus-visible {
	box-shadow:
		0 0 0 2px #fff,
		0 0 0 4px #ee0d08;
}

.venturka-project-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	width: 100%;
	overflow: hidden;
	background: #f4f4f4;
}

.venturka-project-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.venturka-project-card__link:hover .venturka-project-card__media img,
.venturka-project-card__link:focus-visible .venturka-project-card__media img {
	transform: scale(1.04);
}

.venturka-project-card__title {
	display: block;
	padding: 1rem 1.125rem 1.25rem;
	font-family: "Space Grotesk", "Poppins", sans-serif;
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	font-weight: 600;
	line-height: 1.35;
	color: #1a1a1a;
	text-align: center;
	flex: 1 1 auto;
}

@media (prefers-reduced-motion: reduce) {
	.venturka-project-card__link,
	.venturka-project-card__media img {
		transition: none;
	}

	.venturka-project-card__link:hover,
	.venturka-project-card__link:focus-visible {
		transform: none;
	}

	.venturka-project-card__link:hover .venturka-project-card__media img,
	.venturka-project-card__link:focus-visible .venturka-project-card__media img {
		transform: none;
	}
}
