/* ─────────────── Product Downloads Grid ─────────────── */

.product-downloads {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.product-downloads__title {
	grid-column: 1 / -1;
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 4px;
	color: #222;
}

.product-downloads__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #f7f7f7;
	border-radius: 10px;
	padding: 20px;
	min-height: 110px;
	transition: box-shadow .2s;
}
.product-downloads__item:hover {
	box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.product-downloads__name {
	font-size: 15px;
	font-weight: 600;
	color: #222;
	margin: 0 0 4px;
}

.product-downloads__meta {
	font-size: 13px;
	color: #999;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.product-downloads__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1.5px solid #ccc;
	border-radius: 50%;
	color: #555;
	text-decoration: none;
	transition: border-color .2s, color .2s;
}
.product-downloads__link:hover {
	border-color: #ff6a00;
	color: #ff6a00;
}

.product-downloads__link svg {
	display: block;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
	.product-downloads {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.product-downloads {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.product-downloads {
		grid-template-columns: 1fr;
	}
}
