/* ==========================================================
   VARIABLES 1000 BOLS — page "Les céramistes"
   (mêmes valeurs que store.css / home.css pour cohérence)
   ========================================================== */
:root {
	--mb-bordeaux: #9e321f;
	--mb-ink: #171717;
	--mb-muted: #67645f;
	--mb-line: #ddd9d1;
	--mb-paper: #fbfaf7;
	--mb-soft: #f2f0ec;
	--mb-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--mb-sans: Arial, Helvetica, sans-serif;
}

.mb-ceramists-page {
	box-sizing: border-box;
	width: 100%;
	background: var(--mb-paper);
	color: var(--mb-ink);
	font-family: var(--mb-sans);
}

.mb-ceramists-page * {
	box-sizing: border-box;
}

.mb-ceramists-page a {
	color: inherit;
	text-decoration: none;
}

.mb-ceramists-inner {
	width: min(1320px, calc(100% - 64px));
	margin: 0 auto;
	padding: 56px 0 96px;
}

.mb-ceramists-header {
	margin: 0 0 48px;
}

.mb-ceramists-header-top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 0;
}

.mb-ceramists-heading-text {
	max-width: 620px;
}

.mb-ceramists-sort {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.mb-ceramists-sort label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--mb-muted);
	white-space: nowrap;
}

.mb-ceramists-sort select {
	padding: 8px 32px 8px 12px;
	border: 1px solid var(--mb-line);
	background: #fff;
	font-size: 13px;
	color: var(--mb-ink);
	cursor: pointer;
}

.mb-ceramists-sort select:focus {
	outline: none;
	border-color: var(--mb-bordeaux);
}

.mb-ceramists-lead {
	max-width: 620px;
}

@media (max-width: 620px) {
	.mb-ceramists-header-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}

.mb-ceramists-eyebrow {
	margin: 0 0 14px;
	font: 600 11px/1.2 var(--mb-sans);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mb-muted);
}

.mb-ceramists-header h1 {
	margin: 0 0 16px;
	font: 500 clamp(36px, 4.5vw, 54px)/1.05 var(--mb-serif);
}

.mb-ceramists-rule {
	width: 30px;
	height: 1px;
	margin: 0 0 20px;
	background: var(--mb-bordeaux);
}

.mb-ceramists-lead {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--mb-muted);
}

.mb-ceramists-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 32px;
}

.mb-ceramist-card {
	display: block;
}

.mb-ceramist-card-photo {
	position: relative;
	aspect-ratio: 3 / 2;
	margin-bottom: 16px;
	overflow: hidden;
	background: #f2f2f1;
}

.mb-ceramist-card-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.mb-ceramist-card:hover .mb-ceramist-card-photo img {
	transform: scale(1.03);
}

.mb-ceramist-card-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: var(--mb-soft);
}

.mb-ceramist-card-placeholder .mb-icon {
	width: 40px;
	height: 40px;
	color: var(--mb-bordeaux);
	opacity: 0.55;
}

.mb-ceramist-card-name {
	margin: 0 0 4px;
	font: 500 20px/1.2 var(--mb-serif);
	transition: color 0.2s ease;
}

.mb-ceramist-card:hover .mb-ceramist-card-name {
	color: var(--mb-bordeaux);
}

.mb-ceramist-card-meta {
	margin: 0;
	font-size: 13px;
}

.mb-ceramist-card-city,
.mb-ceramist-card-sep {
	color: var(--mb-muted);
}

.mb-ceramist-card-specialty {
	color: var(--mb-bordeaux);
}

.mb-ceramists-empty {
	grid-column: 1 / -1;
	padding: 48px 0;
	color: var(--mb-muted);
	font-size: 14px;
	text-align: center;
}

@media (max-width: 760px) {
	.mb-ceramists-inner {
		width: calc(100% - 36px);
		padding: 40px 0 64px;
	}

	.mb-ceramists-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 24px;
	}
}
