#glossary-alphabet {
	padding: 55px 100px 30px;
}
#glossary-alphabet .alphabet-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}
#glossary-alphabet .letter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #C5BA9B;
	padding: 10px 15px;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	background-color: #fff;
	transition: all 0.25s ease;
	text-transform: uppercase;
}
#glossary-alphabet .letter:hover {
	border-color: #C5BA9B;
	color: #252526;
}
#glossary-alphabet .letter.active {
	border-color: #C5BA9B;
	color: #252526;
	font-weight: 700;
	cursor: default;
}
/* Lettres sans définition : visibles mais désactivées (non cliquables). */
#glossary-alphabet .letter.is-empty {
	color: #d8d2c4;
	border-color: #ede6d6;
	cursor: default;
	pointer-events: none;
}
#glossary-definitions {
	padding: 30px 100px 80px;
}
.definitions-container {
	width: 100%;
}
/* Groupes par lettre (ancres) + gros séparateur de lettre. */
.glossary-group {
	scroll-margin-top: 120px; /* décalage sous le header au clic d'ancre */
	margin-bottom: 40px;
}
.glossary-group:last-child {
	margin-bottom: 0;
}
.glossary-letter-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-style: italic;
	font-size: 40px;
	color: #C5BA9B;
	margin: 0 0 30px;
	border-bottom: 1px solid #E9E2D2;
	padding-bottom: 20px;
}

@media screen and (max-width: 1080px) {
	#glossary-alphabet, #glossary-definitions {
		padding: 20px;
	}
}