.podborki-page {
	padding: 5px 20px 10px 20px;
}

.podborki-page__title {
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 25px;
	color: #fff;
	text-transform: none;
}

.podborki-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 18px;
}

.podborki-card {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 12px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	min-height: 160px;
}

.podborki-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.podborki-card__thumb {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.08);
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.podborki-card__thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.podborki-card--noimage .podborki-card__placeholder {
	display: flex;
}

.podborki-card__placeholder {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
}

.podborki-card__title {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	margin-top: auto;
}

.podborki-empty {
	padding: 60px 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
}

@media (max-width: 768px) {
	.podborki-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 14px;
	}

	.podborki-card {
		min-height: 140px;
	}

	.podborki-card__title {
		font-size: 15px;
	}
}
