/* Vászonkép Árak – front-end megjelenés */

.vka-section {
	width: 100%;
	--vka-cols: 5;
	--vka-border: #000000;
	--vka-separator: #e1e1dd;
}

.vka-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px 0;
	border-bottom: 2px solid var(--vka-separator);
}

.vka-group:last-child {
	border-bottom: none;
}

.vka-group-header {
	flex: 0 0 16.666%;
	max-width: 16.666%;
	text-align: center;
	padding: 0 15px;
	box-sizing: border-box;
}

.vka-group-title {
	margin: 0 0 4px !important;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
}

.vka-group-sub {
	margin: 0 !important;
}

.vka-grid {
	flex: 1 1 0;
	min-width: 0;
	display: grid;
	grid-template-columns: repeat(var(--vka-cols), 1fr);
	gap: 10px;
}

.vka-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid var(--vka-border);
	border-radius: 4px;
	padding: 12px 6px 10px;
	text-align: center;
	text-decoration: none !important;
	color: inherit !important;
	background: transparent;
	box-sizing: border-box;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.vka-item:hover,
.vka-item:focus {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	transform: translateY(-1px);
}

.vka-item-label {
	display: block;
	font-weight: 700;
	line-height: 1.35;
}

.vka-item-price {
	display: block;
	margin-top: 2px;
	line-height: 1.35;
}

/* Tablet */
@media only screen and (max-width: 1024px) {
	.vka-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Mobil */
@media only screen and (max-width: 640px) {
	.vka-group {
		display: block;
	}

	.vka-group-header {
		flex: none;
		max-width: 100%;
		margin-bottom: 18px;
		padding: 0;
	}

	.vka-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
