/**
 * Brand-tile grid — "Marki barefoot" landing (/k/buty-barefoot-producenci/).
 * Markup: theme/partials/brands-grid.php. Enqueued: theme/inc/brands-grid.php.
 * 2 tiles/row mobile, 4/row desktop. @since 2026-06-25.
 */
.ms-brands-section {
	padding: 0.5rem 0 1rem;
}

.ms-brands-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

@media (min-width: 768px) {
	.ms-brands-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}
}

.ms-brand-tile {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 0.75rem;
	padding: 1.25rem 1rem;
	min-height: 120px;
	text-decoration: none;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ms-brand-tile:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.ms-brand-tile img {
	max-width: 100%;
	max-height: 60px;
	object-fit: contain;
}

.ms-brand-name {
	font-size: 1.05rem;
	font-weight: 600;
	color: #1a1a1a;
	text-align: center;
	line-height: 1.25;
}

/* Lead tile: "Pokaż wszystkie produkty" → shop catalogue. */
.ms-brand-tile--all {
	flex-direction: column;
	gap: 0.35rem;
	background: #1a1a1a;
	border-color: #1a1a1a;
	text-align: center;
}

.ms-brand-tile--all .ms-brand-all-title {
	color: #fff;
	font-weight: 600;
	font-size: 1.05rem;
	line-height: 1.25;
}

.ms-brand-tile--all .ms-brand-all-arrow {
	color: #fff;
	font-size: 1.25rem;
	line-height: 1;
}

.ms-brand-tile--all:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
	.ms-brand-tile {
		min-height: 140px;
		padding: 1.5rem 1.25rem;
	}

	.ms-brand-tile img {
		max-height: 70px;
	}

	.ms-brand-name {
		font-size: 1.2rem;
	}

	.ms-brand-tile--all .ms-brand-all-title {
		font-size: 1.2rem;
	}
}
