/* VOX Creative kolekcija — product picker grid */

body.page-template-template-creative-collection-php #content.site-content {
	padding-top: 0;
}

body.page-template-template-creative-collection-php .page-subheader {
	display: none;
}

body.page-template-template-creative-collection-php #sidebar,
body.page-template-template-creative-collection-php .sidebar {
	display: none !important;
}

body.page-template-template-creative-collection-php #th-content-page,
body.page-template-template-creative-collection-php .left_sidebar,
body.page-template-template-creative-collection-php .right_sidebar {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	left: auto !important;
	right: auto !important;
}

body.page-template-template-creative-collection-php #content .container > .row {
	margin-left: 0;
	margin-right: 0;
}

body.page-template-template-creative-collection-php #content .container > .row > [class*="col-"] {
	width: 100% !important;
	max-width: 100% !important;
	flex: 0 0 100% !important;
	padding-left: 0;
	padding-right: 0;
}

.vox-creative-collection {
	background: #f7f7f5;
	padding: 28px 0 56px;
}

.vox-creative-collection__inner {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.vox-creative-collection__head {
	text-align: center;
	margin-bottom: 24px;
}

.vox-creative-collection__title {
	margin: 0 0 6px;
	font-size: clamp(1.35rem, 2.2vw, 1.65rem);
	font-weight: 700;
	line-height: 1.25;
	color: #121212;
	letter-spacing: -0.01em;
}

.vox-creative-collection__sub {
	margin: 0;
	font-size: 0.8125rem;
	color: #666;
}

.vox-creative-collection__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.vox-creative-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.vox-creative-card:hover {
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
	transform: translateY(-1px);
}

.vox-creative-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 132px;
	padding: 12px 10px 8px;
	background: #fafafa;
}

.vox-creative-card__media img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 118px;
	object-fit: contain;
}

.vox-creative-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 10px 12px 12px;
}

.vox-creative-card__name {
	margin: 0 0 10px;
	min-height: 2.6em;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.3;
	color: #121212;
}

.vox-creative-card__cta {
	margin-top: auto;
}

.vox-creative-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid #121212;
	border-radius: 999px;
	background: #fff;
	color: #121212 !important;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.vox-creative-card__btn:hover,
.vox-creative-card__btn:focus {
	background: #ee1d23;
	border-color: #ee1d23;
	color: #fff !important;
	outline: none;
	box-shadow: none;
}

.vox-creative-collection__empty {
	padding: 32px 16px;
	text-align: center;
	font-size: 0.875rem;
	color: #666;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
}

@media (max-width: 1100px) {
	.vox-creative-collection__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.vox-creative-collection {
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.vox-creative-collection__inner {
		width: min(1180px, calc(100% - 24px));
	}

	.vox-creative-collection__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.vox-creative-card__media {
		min-height: 112px;
	}

	.vox-creative-card__media img {
		max-height: 96px;
	}
}

@media (max-width: 480px) {
	.vox-creative-collection__grid {
		grid-template-columns: 1fr;
	}
}
