/*
 * Calendrier haltérophilie : thème clair aux couleurs du site.
 *
 *   fond       blanc, comme les pages du site
 *   titres     bleu marine #1C3557 ; H1 en Poppins 700, sections en Oswald 500
 *   actions    rouge #E63946, pilule 30px
 *   cartes     blanches, bordure fine et ombre douce (esprit page Outils)
 *   focus      le compte à rebours et le bandeau des fiches reprennent le
 *              dégradé bleu du site : ce sont eux qui doivent attirer l'œil
 *   niveaux    National rouge #E63946, International bleu #0053C5 : deux teintes
 *              franchement différentes pour se repérer d'un coup d'œil
 */

.hce-app {
	--hce-navy: #1c3557;
	--hce-blue: #0053c5;
	--hce-deep: #00122b;
	--hce-red: #e63946;
	--hce-red-dark: #c1121f;
	--hce-intl: #0053c5;
	--hce-intl-dark: #0041a0;

	--hce-ink: #2b3440;
	--hce-muted: #5f6b7a;
	--hce-line: #e3e8ef;
	--hce-soft: #f5f7fa;
	--hce-white: #ffffff;

	--hce-radius: 8px;
	--hce-pill: 30px;
	--hce-shadow: 0 2px 10px rgba(28, 53, 87, 0.08);
	--hce-shadow-hover: 0 8px 22px rgba(28, 53, 87, 0.16);
	--hce-gradient: linear-gradient(135deg, #0053c5 0%, #1c3557 55%, #00122b 100%);

	--hce-font-h1: Poppins, "Segoe UI", -apple-system, sans-serif;
	--hce-font-title: Oswald, "Arial Narrow", "Segoe UI", sans-serif;

	color: var(--hce-ink);
	font-size: 16px;
	line-height: 1.6;
}

.hce-app *,
.hce-app *::before,
.hce-app *::after {
	box-sizing: border-box;
}

/* Les filtres masquent par l'attribut hidden : un thème qui force display
   sur les li ou les section ne doit pas pouvoir l'annuler. */
.hce-app [hidden] {
	display: none !important;
}

.hce-app a {
	text-decoration: none;
}

.hce-icon {
	flex: 0 0 auto;
	width: 1.15em;
	height: 1.15em;
	vertical-align: -0.2em;
}

.hce-inner {
	max-width: 980px;
	margin: 0 auto;
}

.hce-inner--wide {
	max-width: 1140px;
}

.hce-app .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

/* Repli pour un thème sans filtre de titre : le titre générique est masqué,
   le calendrier ou la fiche affichant le sien. */
.hce-own-title .page-header .entry-title,
.hce-own-title .entry-header .entry-title {
	display: none;
}

/* ---------- En-tête du calendrier ---------- */

.hce-head {
	margin: 0 0 28px;
	text-align: center;
}

.hce-title {
	margin: 0 0 12px;
	font-family: var(--hce-font-h1);
	font-weight: 700;
	font-size: 40px;
	line-height: 1.15;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--hce-navy);
}

.hce-intro {
	max-width: 720px;
	margin: 0 auto;
	color: var(--hce-muted);
}

/* ---------- Compte à rebours ---------- */

/* minmax(0, …) : les cases peuvent rétrécir. Avec un minimum fixe, les quatre
   cases dépassaient du bandeau sur un écran de téléphone. */
.hce-timer {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

@media (min-width: 601px) {
	.hce-timer__unit {
		min-width: 64px;
	}
}

@media (max-width: 600px) {
	.hce-timer {
		gap: 6px;
	}

	.hce-app .hce-timer__num {
		font-size: 26px;
	}

	.hce-timer__label {
		font-size: 10px;
		letter-spacing: 0.04em;
	}

	.hce-hero__side {
		padding: 14px;
	}
}

.hce-timer__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 12px 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--hce-radius);
	background: rgba(255, 255, 255, 0.1);
}

.hce-timer__num {
	font-family: var(--hce-font-h1);
	font-weight: 700;
	font-size: 40px;
	line-height: 1;
	color: var(--hce-white);
	font-variant-numeric: tabular-nums;
}

.hce-timer__label {
	margin-top: 6px;
	font-family: var(--hce-font-title);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #c9d6ea;
}

.hce-timer__live {
	grid-column: 1 / -1;
	padding: 18px;
	border-radius: var(--hce-radius);
	background: var(--hce-red);
	font-family: var(--hce-font-h1);
	font-weight: 700;
	font-size: 26px;
	text-align: center;
	color: var(--hce-white);
}

/* ---------- Prochaine compétition ---------- */

.hce-spotlight {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 28px;
	margin: 0 0 32px;
	padding: 28px 32px;
	border-radius: 12px;
	background: var(--hce-gradient);
	box-shadow: 0 12px 30px rgba(0, 18, 43, 0.25);
	color: var(--hce-white);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hce-spotlight:hover,
.hce-spotlight:focus {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(0, 18, 43, 0.32);
	color: var(--hce-white);
}

.hce-spotlight__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.hce-spotlight__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 4px 12px;
	border-radius: var(--hce-pill);
	background: var(--hce-red);
	font-family: var(--hce-font-title);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hce-spotlight__title {
	font-family: var(--hce-font-h1);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
}

.hce-spotlight__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
	font-size: 15px;
	color: #dbe6f5;
}

.hce-spotlight__meta > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.hce-spotlight__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
	font-weight: 600;
	color: var(--hce-white);
}

.hce-spotlight:hover .hce-spotlight__cta {
	text-decoration: underline;
}

@media (max-width: 860px) {
	.hce-spotlight {
		grid-template-columns: 1fr;
		padding: 24px 20px;
	}

	.hce-spotlight__title {
		font-size: 22px;
	}

	.hce-timer__num {
		font-size: 30px;
	}
}

/* ---------- Filtres ---------- */

.hce-filters {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 0 32px;
	padding: 18px 20px;
	border: 1px solid var(--hce-line);
	border-radius: var(--hce-radius);
	background: var(--hce-soft);
}

.hce-filters__group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.hce-filters__label {
	min-width: 70px;
	font-family: var(--hce-font-title);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--hce-navy);
}

.hce-chip {
	position: relative;
	display: inline-flex;
	cursor: pointer;
}

.hce-chip input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.hce-chip span {
	padding: 6px 15px;
	border: 1px solid var(--hce-line);
	border-radius: var(--hce-pill);
	background: var(--hce-white);
	font-size: 14px;
	font-weight: 500;
	color: var(--hce-navy);
	white-space: nowrap;
	transition: background-color 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.hce-chip:hover span {
	border-color: var(--hce-navy);
}

.hce-chip input:checked + span {
	background: var(--hce-navy);
	border-color: var(--hce-navy);
	color: var(--hce-white);
}

.hce-chip--national input:checked + span {
	background: var(--hce-red);
	border-color: var(--hce-red);
}

.hce-chip--international input:checked + span {
	background: var(--hce-intl);
	border-color: var(--hce-intl);
}

.hce-chip input:focus-visible + span,
.hce-toggle input:focus-visible {
	outline: 2px solid var(--hce-blue);
	outline-offset: 2px;
}

.hce-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--hce-muted);
	cursor: pointer;
}

.hce-toggle input {
	width: 16px;
	height: 16px;
	accent-color: var(--hce-red);
}

/* ---------- Liste par mois ---------- */

.hce-month {
	margin: 0 0 34px;
}

.hce-month__title {
	position: relative;
	margin: 0 0 16px;
	padding-bottom: 10px;
	font-family: var(--hce-font-title);
	font-weight: 500;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--hce-navy);
}

.hce-month__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 3px;
	border-radius: 2px;
	background: var(--hce-red);
}

.hce-events {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hce-event__link {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 14px 18px 14px 14px;
	border: 1px solid var(--hce-line);
	border-left: 4px solid var(--hce-navy);
	border-radius: var(--hce-radius);
	background: var(--hce-white);
	box-shadow: var(--hce-shadow);
	color: var(--hce-ink);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hce-event--national .hce-event__link {
	border-left-color: var(--hce-red);
}

.hce-event--international .hce-event__link {
	border-left-color: var(--hce-intl);
}

.hce-event__link:hover,
.hce-event__link:focus {
	transform: translateY(-2px);
	box-shadow: var(--hce-shadow-hover);
	color: var(--hce-ink);
}

.hce-date {
	flex: 0 0 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	padding: 6px 4px;
	border-radius: var(--hce-radius);
	background: var(--hce-soft);
	text-align: center;
}

.hce-date__wd {
	font-family: var(--hce-font-title);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--hce-muted);
}

.hce-date__day {
	font-family: var(--hce-font-h1);
	font-weight: 700;
	font-size: 26px;
	line-height: 1.1;
	color: var(--hce-navy);
}

.hce-date__end {
	font-size: 11px;
	line-height: 1.2;
	color: var(--hce-muted);
}

.hce-event__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hce-event__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.hce-event__title {
	font-weight: 700;
	font-size: 17px;
	line-height: 1.35;
	color: var(--hce-navy);
}

.hce-event__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 16px;
	font-size: 14px;
	color: var(--hce-muted);
}

.hce-event__meta > span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.hce-event__arrow {
	flex: 0 0 auto;
	color: var(--hce-muted);
	transition: color 0.15s ease, transform 0.15s ease;
}

.hce-event__link:hover .hce-event__arrow {
	color: var(--hce-red);
	transform: translateX(3px);
}

.hce-event.is-deadline .hce-event__link {
	border-style: dashed;
	border-left-style: solid;
	box-shadow: none;
	background: var(--hce-soft);
}

.hce-event.is-deadline .hce-event__title {
	font-weight: 600;
}

.hce-event.is-past {
	opacity: 0.55;
}

@media (max-width: 600px) {
	.hce-title {
		font-size: 28px;
	}

	.hce-event__link {
		gap: 12px;
		padding: 12px;
	}

	.hce-event__arrow {
		display: none;
	}
}

/* ---------- Étiquettes ---------- */

.hce-tag {
	display: inline-flex;
	align-items: center;
	padding: 2px 10px;
	border-radius: var(--hce-pill);
	background: #eef2f7;
	font-family: var(--hce-font-title);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--hce-navy);
}

.hce-tag--national {
	background: rgba(230, 57, 70, 0.1);
	color: var(--hce-red-dark);
}

.hce-tag--international {
	background: rgba(0, 83, 197, 0.1);
	color: var(--hce-intl-dark);
}

.hce-tag--warn {
	background: #fff4e5;
	color: #8a4b00;
}

.hce-empty {
	padding: 26px;
	border: 1px dashed var(--hce-line);
	border-radius: var(--hce-radius);
	text-align: center;
	color: var(--hce-muted);
}

/* ---------- Boutons ---------- */

.hce-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: var(--hce-pill);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hce-btn--primary {
	background: var(--hce-red);
	color: var(--hce-white);
}

.hce-btn--primary:hover,
.hce-btn--primary:focus {
	background: #cf2f3c;
	color: var(--hce-white);
}

.hce-btn--light {
	border-color: rgba(255, 255, 255, 0.45);
	color: var(--hce-white);
}

.hce-btn--light:hover,
.hce-btn--light:focus {
	border-color: var(--hce-white);
	background: rgba(255, 255, 255, 0.1);
	color: var(--hce-white);
}

.hce-btn--outline {
	width: 100%;
	justify-content: flex-start;
	border-color: var(--hce-line);
	background: var(--hce-white);
	color: var(--hce-navy);
}

.hce-btn--outline:hover,
.hce-btn--outline:focus {
	border-color: var(--hce-navy);
	color: var(--hce-navy);
}

/* ---------- Fiche : fil d'Ariane et bandeau ---------- */

.hce-crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
	font-size: 14px;
	color: var(--hce-muted);
}

.hce-crumbs a {
	font-weight: 600;
	color: var(--hce-navy);
}

.hce-crumbs a:hover {
	color: var(--hce-red);
}

.hce-hero {
	display: grid;
	grid-template-columns: 1fr minmax(280px, 340px);
	gap: 32px;
	align-items: center;
	margin: 0 0 24px;
	padding: 34px 36px;
	border-radius: 12px;
	background: var(--hce-gradient);
	box-shadow: 0 12px 30px rgba(0, 18, 43, 0.25);
	color: var(--hce-white);
}

.hce-hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
}

.hce-hero .hce-tag {
	background: rgba(255, 255, 255, 0.14);
	color: var(--hce-white);
}

.hce-hero .hce-tag--national {
	background: var(--hce-red);
}

.hce-hero .hce-tag--international {
	background: var(--hce-intl);
}

.hce-hero .hce-tag--warn {
	background: #fff4e5;
	color: #8a4b00;
}

.hce-hero__title {
	margin: 0 0 16px;
	font-family: var(--hce-font-h1);
	font-weight: 700;
	font-size: 34px;
	line-height: 1.15;
	color: var(--hce-white);
}

.hce-hero__facts {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
	font-size: 16px;
	color: #dbe6f5;
}

.hce-hero__facts li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}

.hce-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hce-hero__side {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
	border-radius: var(--hce-radius);
	background: rgba(0, 18, 43, 0.35);
}

.hce-hero__kicker {
	font-family: var(--hce-font-title);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #c9d6ea;
}

.hce-hero__side .hce-timer__num {
	font-size: 32px;
}

.hce-hero__state {
	font-family: var(--hce-font-h1);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.1;
}

.hce-hero__state-text {
	font-size: 15px;
	color: #c9d6ea;
}

@media (max-width: 900px) {
	.hce-hero {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 26px 22px;
	}

	.hce-hero__title {
		font-size: 26px;
	}
}

.hce-alert {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 28px;
	padding: 14px 18px;
	border-left: 4px solid #f59e0b;
	border-radius: var(--hce-radius);
	background: #fff8ec;
	color: #6b3d00;
}

.hce-alert .hce-icon {
	margin-top: 2px;
	color: #d97706;
}

/* ---------- Fiche : contenu et colonne ---------- */

.hce-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 32px;
	align-items: start;
}

@media (max-width: 900px) {
	.hce-layout {
		grid-template-columns: 1fr;
	}
}

.hce-section {
	margin: 0 0 32px;
}

.hce-section__title {
	position: relative;
	margin: 0 0 16px;
	padding-bottom: 10px;
	font-family: var(--hce-font-title);
	font-weight: 500;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--hce-navy);
}

.hce-section__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 3px;
	border-radius: 2px;
	background: var(--hce-red);
}

.hce-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}

.hce-info {
	display: flex;
	gap: 14px;
	padding: 16px;
	border: 1px solid var(--hce-line);
	border-radius: var(--hce-radius);
	background: var(--hce-white);
	box-shadow: var(--hce-shadow);
}

.hce-info__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
	height: 40px;
	border-radius: 50%;
	background: #eef2f7;
	color: var(--hce-navy);
}

.hce-info__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.hce-info__label {
	font-family: var(--hce-font-title);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--hce-muted);
}

.hce-info__value {
	font-weight: 600;
	color: var(--hce-navy);
}

.hce-info.is-missing .hce-info__value {
	font-weight: 400;
	font-style: italic;
	color: var(--hce-muted);
}

.hce-info__link {
	margin-top: 2px;
	font-size: 14px;
	font-weight: 600;
	color: var(--hce-blue);
}

.hce-info__link:hover {
	color: var(--hce-red);
}

.hce-summary {
	margin: 0 0 14px;
	font-size: 17px;
	line-height: 1.7;
}

.hce-content {
	color: var(--hce-ink);
}

.hce-content a {
	color: var(--hce-blue);
	text-decoration: underline;
}

.hce-resources {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 12px;
}

.hce-resource {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border: 1px solid var(--hce-line);
	border-radius: var(--hce-radius);
	background: var(--hce-white);
	box-shadow: var(--hce-shadow);
	color: var(--hce-ink);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hce-resource:hover,
.hce-resource:focus {
	transform: translateY(-2px);
	box-shadow: var(--hce-shadow-hover);
	color: var(--hce-ink);
}

.hce-resource__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(230, 57, 70, 0.1);
	color: var(--hce-red-dark);
}

.hce-resource__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.hce-resource__title {
	font-weight: 700;
	color: var(--hce-navy);
}

.hce-resource__text {
	font-size: 14px;
	color: var(--hce-muted);
}

.hce-resource__arrow {
	color: var(--hce-muted);
}

.hce-resource:hover .hce-resource__arrow {
	color: var(--hce-red);
}

/* ---------- Colonne latérale ---------- */

.hce-side {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: sticky;
	top: 24px;
}

@media (max-width: 900px) {
	.hce-side {
		position: static;
	}
}

.hce-card {
	padding: 20px;
	border: 1px solid var(--hce-line);
	border-radius: var(--hce-radius);
	background: var(--hce-white);
	box-shadow: var(--hce-shadow);
}

.hce-card__title {
	margin: 0 0 14px;
	font-family: var(--hce-font-title);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--hce-navy);
}

.hce-card__actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hce-card__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	font-weight: 600;
	font-size: 14px;
	color: var(--hce-red-dark);
}

.hce-card__more:hover {
	color: var(--hce-red);
}

.hce-share {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hce-share__btn,
.hce-share__copy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 42px;
	border: 1px solid var(--hce-line);
	border-radius: var(--hce-pill);
	background: var(--hce-white);
	color: var(--hce-navy);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease;
}

.hce-share__btn {
	width: 42px;
}

.hce-share__copy {
	flex: 1;
	padding: 0 16px;
}

.hce-share__btn:hover,
.hce-share__copy:hover {
	border-color: var(--hce-navy);
	color: var(--hce-red);
}

.hce-mini {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hce-mini li {
	margin: 0;
}

.hce-mini__link {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--hce-ink);
}

.hce-mini__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	height: 48px;
	border-radius: var(--hce-radius);
	background: #eef2f7;
	color: var(--hce-navy);
}

.hce-mini__date--national {
	background: rgba(230, 57, 70, 0.1);
	color: var(--hce-red-dark);
}

.hce-mini__date--international {
	background: rgba(0, 83, 197, 0.1);
	color: var(--hce-intl-dark);
}

.hce-mini__day {
	font-family: var(--hce-font-h1);
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
}

.hce-mini__month {
	font-size: 11px;
	text-transform: uppercase;
}

.hce-mini__title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--hce-navy);
}

.hce-mini__link:hover .hce-mini__title {
	color: var(--hce-red);
}

/* ---------- Événements précédent / suivant ---------- */

.hce-pager {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 8px;
	padding-top: 24px;
	border-top: 1px solid var(--hce-line);
}

@media (max-width: 600px) {
	.hce-pager {
		grid-template-columns: 1fr;
	}
}

.hce-pager__link {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 16px;
	border: 1px solid var(--hce-line);
	border-radius: var(--hce-radius);
	background: var(--hce-white);
	box-shadow: var(--hce-shadow);
	color: var(--hce-ink);
}

.hce-pager__link--next {
	grid-column: 2;
	text-align: right;
}

@media (max-width: 600px) {
	.hce-pager__link--next {
		grid-column: auto;
	}
}

.hce-pager__link:hover {
	box-shadow: var(--hce-shadow-hover);
}

.hce-pager__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--hce-font-title);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--hce-muted);
}

.hce-pager__link--next .hce-pager__label {
	justify-content: flex-end;
}

.hce-pager__title {
	font-weight: 700;
	color: var(--hce-navy);
}
