/* =========================================================================
 * Elan - feuille de style du theme de girlsonthemove.org
 * Direction : magazine feminin, papier blanc casse, serif editorial,
 * un seul accent rose poudre. Prefixe des classes : gm-
 * ====================================================================== */

/* -------------------------------------------------------------------------
 * 1. Polices servies en local
 * ---------------------------------------------------------------------- */

@font-face {
	font-family: 'Elan Display';
	src: url('../fonts/display-var.woff2') format('woff2');
	font-weight: 400 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Elan Display';
	src: url('../fonts/display-var-italic.woff2') format('woff2');
	font-weight: 400 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Elan Sans';
	src: url('../fonts/sans-var.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* -------------------------------------------------------------------------
 * 2. Jetons
 * ---------------------------------------------------------------------- */

:root {
	--gm-paper: #fffcfa;
	--gm-white: #ffffff;
	--gm-cream: #f7f1ec;
	--gm-cream-deep: #efe6df;
	--gm-ink: #17161a;
	--gm-ink-soft: #45424c;
	--gm-grey: #6e6a75;
	--gm-grey-light: #8f8b96;
	--gm-line: #e8e0da;
	--gm-line-soft: #f0eae5;
	--gm-rose: #c9788a;
	--gm-rose-deep: #a34760;
	--gm-rose-dark: #86364c;
	--gm-rose-wash: #fbf2f4;

	--gm-display: 'Elan Display', Georgia, 'Times New Roman', serif;
	--gm-sans: 'Elan Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	--gm-wide: 1240px;
	--gm-text: 720px;
	--gm-pad: 24px;

	--gm-radius: 2px;
	--gm-shadow: 0 1px 2px rgba(23, 22, 26, .04), 0 12px 30px -18px rgba(23, 22, 26, .22);
	--gm-shadow-lift: 0 2px 4px rgba(23, 22, 26, .05), 0 22px 44px -22px rgba(23, 22, 26, .3);
	--gm-ease: cubic-bezier(.22, .61, .36, 1);
}

/* -------------------------------------------------------------------------
 * 3. Socle
 * ---------------------------------------------------------------------- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}

body {
	margin: 0;
	background: var(--gm-paper);
	color: var(--gm-ink);
	font-family: var(--gm-sans);
	font-size: 17px;
	line-height: 1.68;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-wrap: break-word;
}

body.gm-locked { overflow: hidden; }

img, svg, video, iframe { max-width: 100%; }
img { height: auto; border: 0; }

a {
	color: var(--gm-rose-deep);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color .18s var(--gm-ease);
}
a:hover { color: var(--gm-rose-dark); }

:focus-visible {
	outline: 2px solid var(--gm-rose-deep);
	outline-offset: 3px;
	border-radius: 1px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--gm-display);
	font-weight: 600;
	color: var(--gm-ink);
	line-height: 1.16;
	letter-spacing: -.012em;
	margin: 0 0 .5em;
	text-wrap: balance;
}

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

hr {
	border: 0;
	border-top: 1px solid var(--gm-line);
	margin: 2.5rem 0;
}

figure { margin: 0; }

.gm-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--gm-ink);
	color: #fff;
	padding: 12px 20px;
	font-size: 15px;
}
.gm-skip:focus { left: 8px; top: 8px; color: #fff; }

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background: #fff;
	clip: auto;
	clip-path: none;
	color: var(--gm-ink);
	display: block;
	font-size: 14px;
	height: auto;
	left: 8px;
	padding: 12px 20px;
	top: 8px;
	width: auto;
	z-index: 100000;
}

/* -------------------------------------------------------------------------
 * 4. Grille
 * ---------------------------------------------------------------------- */

.gm-shell {
	width: 100%;
	max-width: var(--gm-wide);
	margin-inline: auto;
	padding-inline: var(--gm-pad);
}

.gm-shell--text { max-width: calc(var(--gm-text) + var(--gm-pad) * 2); }

.gm-band { padding-block: clamp(48px, 6vw, 84px); }
.gm-band--cream { background: var(--gm-cream); }
.gm-band--tight { padding-block: clamp(34px, 4vw, 56px); }
.gm-band + .gm-band--cream { margin-top: 0; }

/* -------------------------------------------------------------------------
 * 5. Elements editoriaux communs
 * ---------------------------------------------------------------------- */

.gm-kicker {
	display: inline-block;
	font-family: var(--gm-sans);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gm-rose-deep);
	text-decoration: none;
	margin: 0 0 12px;
}
a.gm-kicker:hover { color: var(--gm-rose-dark); }

.gm-meta {
	font-size: 13px;
	color: var(--gm-grey);
	letter-spacing: .01em;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-family: var(--gm-sans);
}
.gm-meta > * + *::before {
	content: '\00b7';
	margin-right: 10px;
	color: var(--gm-line);
}
.gm-meta a { color: var(--gm-grey); text-decoration: none; }
.gm-meta a:hover { color: var(--gm-rose-deep); }

.gm-rule {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin: 0 0 30px;
}
.gm-rule::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--gm-line);
}
.gm-rule__title {
	font-family: var(--gm-display);
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 600;
	margin: 0;
	white-space: nowrap;
}
.gm-rule__link {
	font-family: var(--gm-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	color: var(--gm-rose-deep);
	order: 3;
}
.gm-rule__link::after { content: '\00a0\2192'; }
.gm-rule__link:hover { color: var(--gm-rose-dark); }

.gm-btn {
	display: inline-block;
	font-family: var(--gm-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gm-white);
	background: var(--gm-ink);
	padding: 15px 30px;
	border: 1px solid var(--gm-ink);
	border-radius: var(--gm-radius);
	cursor: pointer;
	transition: background .18s var(--gm-ease), color .18s var(--gm-ease), border-color .18s var(--gm-ease);
}
.gm-btn:hover {
	background: var(--gm-rose-deep);
	border-color: var(--gm-rose-deep);
	color: var(--gm-white);
}
.gm-btn--ghost {
	background: transparent;
	color: var(--gm-ink);
	border-color: var(--gm-line);
}
.gm-btn--ghost:hover {
	background: var(--gm-ink);
	color: var(--gm-white);
	border-color: var(--gm-ink);
}

/* -------------------------------------------------------------------------
 * 6. Barre superieure et en-tete
 * ---------------------------------------------------------------------- */

.gm-topbar {
	background: var(--gm-ink);
	color: rgba(255, 255, 255, .78);
	font-size: 12.5px;
	letter-spacing: .04em;
}
.gm-topbar__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 40px;
	padding-block: 9px;
}
.gm-topbar__tag { margin: 0; }
.gm-topbar__links {
	display: flex;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.gm-topbar a {
	color: rgba(255, 255, 255, .82);
	text-decoration: none;
}
.gm-topbar a:hover { color: #fff; }

.gm-header {
	background: var(--gm-paper);
	border-bottom: 1px solid var(--gm-line);
}
.gm-header__in {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
	padding-block: clamp(22px, 3vw, 38px);
}
.gm-header__side { display: flex; align-items: center; gap: 8px; }
.gm-header__side--end { justify-content: flex-end; }

.gm-brand {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	text-decoration: none;
	color: var(--gm-ink);
	text-align: center;
}
.gm-brand__name {
	font-family: var(--gm-display);
	font-size: clamp(24px, 4.2vw, 44px);
	font-weight: 600;
	letter-spacing: .05em;
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
}
.gm-brand__rule {
	display: block;
	width: 54px;
	height: 1px;
	background: var(--gm-rose);
}
.gm-brand__tag {
	font-family: var(--gm-sans);
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--gm-grey);
	margin: 0;
}
.gm-brand img {
	display: block;
	max-height: 74px;
	width: auto;
}

.gm-iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: none;
	border: 1px solid transparent;
	border-radius: 50%;
	color: var(--gm-ink);
	cursor: pointer;
	transition: background .18s var(--gm-ease), border-color .18s var(--gm-ease);
}
.gm-iconbtn:hover { background: var(--gm-cream); border-color: var(--gm-line); }
.gm-iconbtn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* Navigation */
.gm-nav {
	background: rgba(255, 252, 250, .96);
	backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid var(--gm-line);
	position: sticky;
	top: 0;
	z-index: 60;
}
.gm-nav__in { display: flex; align-items: center; justify-content: center; }

.gm-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.gm-menu li { position: relative; }
.gm-menu a {
	display: block;
	padding: 15px 16px;
	font-family: var(--gm-sans);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--gm-ink);
	text-decoration: none;
	position: relative;
}
.gm-menu a::after {
	content: '';
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 10px;
	height: 1px;
	background: var(--gm-rose);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .22s var(--gm-ease);
}
.gm-menu a:hover { color: var(--gm-rose-deep); }
.gm-menu a:hover::after,
.gm-menu .current-menu-item > a::after,
.gm-menu .current-menu-parent > a::after,
.gm-menu .current-menu-ancestor > a::after,
.gm-menu .current_page_item > a::after { transform: scaleX(1); }
.gm-menu .current-menu-item > a,
.gm-menu .current-menu-ancestor > a { color: var(--gm-rose-deep); }

/* Sous-menus */
.gm-menu .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 215px;
	background: var(--gm-white);
	border: 1px solid var(--gm-line);
	box-shadow: var(--gm-shadow);
	list-style: none;
	margin: 0;
	padding: 6px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s var(--gm-ease), transform .18s var(--gm-ease), visibility .18s;
	z-index: 70;
}
.gm-menu li:hover > .sub-menu,
.gm-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.gm-menu .sub-menu a {
	padding: 10px 18px;
	letter-spacing: .05em;
	text-transform: none;
	font-size: 14px;
	font-weight: 500;
}
.gm-menu .sub-menu a::after { display: none; }

/* Recherche deroulante */
.gm-search {
	display: none;
	border-bottom: 1px solid var(--gm-line);
	background: var(--gm-cream);
	padding-block: 22px;
}
.gm-search.is-open { display: block; }

.gm-searchform { display: flex; gap: 10px; }
.gm-searchform label { flex: 1; display: block; }
.gm-searchform input[type="search"] {
	width: 100%;
	font-family: var(--gm-sans);
	font-size: 16px;
	padding: 14px 18px;
	border: 1px solid var(--gm-line);
	background: var(--gm-white);
	border-radius: var(--gm-radius);
	color: var(--gm-ink);
}
.gm-searchform input[type="search"]:focus { border-color: var(--gm-rose); outline: none; }

/* Menu mobile */
.gm-burger { display: none; }
.gm-drawer {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(88vw, 340px);
	background: var(--gm-white);
	border-left: 1px solid var(--gm-line);
	transform: translateX(100%);
	transition: transform .28s var(--gm-ease), visibility .28s;
	z-index: 120;
	overflow-y: auto;
	padding: 20px 24px 60px;
	visibility: hidden;
}
.gm-drawer.is-open { transform: translateX(0); visibility: visible; }
.gm-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}
.gm-drawer__title {
	font-family: var(--gm-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gm-grey);
	margin: 0;
}
.gm-drawer .gm-menu {
	display: block;
	border-top: 1px solid var(--gm-line-soft);
}
.gm-drawer .gm-menu li { border-bottom: 1px solid var(--gm-line-soft); }
.gm-drawer .gm-menu a {
	padding: 15px 2px;
	font-size: 13px;
	letter-spacing: .1em;
}
.gm-drawer .gm-menu a::after { display: none; }
.gm-drawer .sub-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	border: 0;
	box-shadow: none;
	padding: 0 0 8px 14px;
	min-width: 0;
}
.gm-drawer__foot {
	margin-top: 22px;
	font-size: 13px;
	color: var(--gm-grey);
}
.gm-veil {
	position: fixed;
	inset: 0;
	background: rgba(23, 22, 26, .42);
	opacity: 0;
	visibility: hidden;
	transition: opacity .28s var(--gm-ease), visibility .28s;
	z-index: 110;
}
.gm-veil.is-open { opacity: 1; visibility: visible; }

@media (max-width: 900px) {
	.gm-nav { display: none; }
	.gm-burger { display: inline-flex; }
	.gm-topbar__tag { display: none; }
	.gm-header__in { padding-block: 16px; }
}

/* -------------------------------------------------------------------------
 * 7. Cartes d articles
 * ---------------------------------------------------------------------- */

.gm-card {
	display: flex;
	flex-direction: column;
	background: transparent;
	position: relative;
}
.gm-card__media {
	display: block;
	position: relative;
	overflow: hidden;
	background: var(--gm-cream);
	border-radius: var(--gm-radius);
	aspect-ratio: 3 / 2;
	margin-bottom: 18px;
}
.gm-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s var(--gm-ease);
}
.gm-card:hover .gm-card__media img { transform: scale(1.045); }
.gm-card__media--empty::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--gm-cream) 0%, var(--gm-rose-wash) 100%);
}

.gm-card__body { display: flex; flex-direction: column; flex: 1; }
.gm-card__title {
	font-family: var(--gm-display);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.24;
	margin: 0 0 10px;
}
.gm-card__title a {
	color: var(--gm-ink);
	text-decoration: none;
	background-image: linear-gradient(var(--gm-rose), var(--gm-rose));
	background-repeat: no-repeat;
	background-size: 0 1px;
	background-position: 0 100%;
	transition: background-size .3s var(--gm-ease), color .18s var(--gm-ease);
	padding-bottom: 1px;
}
.gm-card__title a:hover { color: var(--gm-rose-deep); background-size: 100% 1px; }
.gm-card__excerpt {
	font-size: 15px;
	color: var(--gm-grey);
	line-height: 1.62;
	margin: 0 0 14px;
}
.gm-card__body .gm-meta { margin-top: auto; }

/* Carte allongee : image a gauche, texte a droite */
.gm-card--row {
	flex-direction: row;
	align-items: flex-start;
	gap: 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--gm-line-soft);
}
.gm-card--row:last-child { border-bottom: 0; padding-bottom: 0; }
.gm-card--row .gm-card__media {
	flex: 0 0 40%;
	max-width: 208px;
	margin-bottom: 0;
	aspect-ratio: 4 / 3;
}
.gm-card--row .gm-card__title { font-size: 18px; margin-bottom: 8px; }
.gm-card--row .gm-card__excerpt { display: none; }
.gm-card--row .gm-kicker { margin-bottom: 7px; font-size: 10.5px; }

/* Carte de tete d une rubrique */
.gm-card--lead .gm-card__media { aspect-ratio: 16 / 10; margin-bottom: 22px; }
.gm-card--lead .gm-card__title { font-size: clamp(24px, 2.4vw, 30px); }
.gm-card--lead .gm-card__excerpt { font-size: 16px; }

/* Carte compacte, texte seul */
.gm-card--flat {
	border-top: 1px solid var(--gm-line);
	padding-top: 18px;
}
.gm-card--flat .gm-card__title { font-size: 18px; }

/* Grilles */
.gm-grid { display: grid; gap: 34px 30px; }
.gm-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gm-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gm-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gm-rows { display: flex; flex-direction: column; gap: 22px; }

/* -------------------------------------------------------------------------
 * 8. La une
 * ---------------------------------------------------------------------- */

.gm-hero { padding-block: clamp(34px, 4.4vw, 60px) 0; }
.gm-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
	gap: clamp(30px, 4vw, 56px);
	align-items: start;
}

.gm-lead__media {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--gm-cream);
	border-radius: var(--gm-radius);
	margin-bottom: 24px;
}
.gm-lead__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s var(--gm-ease);
}
.gm-lead:hover .gm-lead__media img { transform: scale(1.03); }
.gm-lead__title {
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1.08;
	margin: 0 0 16px;
	letter-spacing: -.02em;
}
.gm-lead__title a {
	color: var(--gm-ink);
	text-decoration: none;
}
.gm-lead__title a:hover { color: var(--gm-rose-deep); }
.gm-lead__chapo {
	font-size: 17.5px;
	color: var(--gm-ink-soft);
	line-height: 1.6;
	margin: 0 0 16px;
	max-width: 64ch;
}

.gm-aside__title {
	font-family: var(--gm-sans);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gm-grey);
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--gm-ink);
}
.gm-picks { list-style: none; margin: 0; padding: 0; counter-reset: pick; }
.gm-picks li {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr) 74px;
	gap: 14px;
	align-items: start;
	padding: 18px 0;
	border-bottom: 1px solid var(--gm-line-soft);
}
.gm-picks li:last-child { border-bottom: 0; padding-bottom: 0; }
.gm-picks li::before {
	counter-increment: pick;
	content: counter(pick, decimal-leading-zero);
	font-family: var(--gm-display);
	font-size: 20px;
	font-weight: 600;
	color: var(--gm-rose);
	line-height: 1.1;
}
.gm-picks__title {
	font-family: var(--gm-display);
	font-size: 16.5px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 6px;
}
.gm-picks__title a { color: var(--gm-ink); text-decoration: none; }
.gm-picks__title a:hover { color: var(--gm-rose-deep); }
.gm-picks__thumb {
	display: block;
	width: 74px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--gm-radius);
	background: var(--gm-cream);
}
.gm-picks__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gm-picks .gm-meta { font-size: 12px; }

/* -------------------------------------------------------------------------
 * 9. Bandeau editorial de l accueil
 * ---------------------------------------------------------------------- */

.gm-manifesto { text-align: center; }
.gm-manifesto__title {
	font-size: clamp(26px, 3.2vw, 38px);
	margin: 0 0 20px;
	font-style: italic;
	font-weight: 400;
}
.gm-manifesto__text {
	max-width: 68ch;
	margin-inline: auto;
	font-size: 17px;
	color: var(--gm-ink-soft);
	line-height: 1.72;
}
.gm-manifesto__text p + p { margin-top: 1em; }
.gm-manifesto__sign {
	display: inline-block;
	margin-top: 26px;
	font-family: var(--gm-display);
	font-style: italic;
	font-size: 19px;
	color: var(--gm-rose-deep);
}

/* Rubriques en pastilles */
.gm-topics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.gm-topics a {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	background: var(--gm-white);
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-radius);
	padding: 20px 24px;
	text-decoration: none;
	color: var(--gm-ink);
	transition: border-color .2s var(--gm-ease), box-shadow .2s var(--gm-ease), transform .2s var(--gm-ease);
}
.gm-topics a:hover {
	border-color: var(--gm-rose);
	box-shadow: var(--gm-shadow);
	transform: translateY(-2px);
}
.gm-topics__name {
	font-family: var(--gm-display);
	font-size: 20px;
	font-weight: 600;
}
.gm-topics__count {
	font-family: var(--gm-sans);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gm-grey);
	white-space: nowrap;
}

/* Section rubrique de l accueil */
.gm-topic + .gm-topic { margin-top: clamp(44px, 5vw, 70px); }
.gm-topic__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: clamp(28px, 3.4vw, 48px);
	align-items: start;
}

/* -------------------------------------------------------------------------
 * 10. Rubriques, recherche, pagination
 * ---------------------------------------------------------------------- */

.gm-pagehead {
	text-align: center;
	padding-block: clamp(38px, 4.6vw, 66px) clamp(28px, 3.4vw, 44px);
	border-bottom: 1px solid var(--gm-line);
	margin-bottom: clamp(34px, 4vw, 54px);
}
.gm-pagehead__title {
	font-size: clamp(32px, 4.6vw, 54px);
	margin: 0 0 14px;
	letter-spacing: -.02em;
}
.gm-pagehead__desc {
	max-width: 62ch;
	margin: 0 auto;
	color: var(--gm-grey);
	font-size: 16.5px;
}
.gm-pagehead__count {
	display: block;
	margin-top: 16px;
	font-family: var(--gm-sans);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gm-rose-deep);
}

.gm-crumbs {
	font-size: 12.5px;
	color: var(--gm-grey);
	padding-block: 16px 0;
	letter-spacing: .02em;
}
.gm-crumbs a { color: var(--gm-grey); text-decoration: none; }
.gm-crumbs a:hover { color: var(--gm-rose-deep); }
.gm-crumbs span + span::before { content: '\00a0\203a\00a0'; color: var(--gm-line); }

.gm-pager {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: clamp(40px, 5vw, 64px);
	flex-wrap: wrap;
}
.gm-pager .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-radius);
	font-family: var(--gm-sans);
	font-size: 14px;
	font-weight: 500;
	color: var(--gm-ink);
	text-decoration: none;
	background: var(--gm-white);
	transition: border-color .18s var(--gm-ease), background .18s var(--gm-ease), color .18s var(--gm-ease);
}
.gm-pager .page-numbers:hover { border-color: var(--gm-rose); color: var(--gm-rose-deep); }
.gm-pager .page-numbers.current {
	background: var(--gm-ink);
	border-color: var(--gm-ink);
	color: var(--gm-white);
}
.gm-pager .page-numbers.dots { border-color: transparent; background: none; }

.gm-empty {
	text-align: center;
	padding-block: clamp(50px, 7vw, 90px);
	max-width: 58ch;
	margin-inline: auto;
}
.gm-empty__title { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.gm-empty p { color: var(--gm-grey); }
.gm-empty .gm-searchform { margin-top: 26px; }

/* -------------------------------------------------------------------------
 * 11. Article
 * ---------------------------------------------------------------------- */

.gm-article { padding-bottom: clamp(40px, 5vw, 70px); }
.gm-article__head {
	text-align: center;
	padding-block: clamp(30px, 3.6vw, 52px) clamp(24px, 3vw, 38px);
	max-width: calc(var(--gm-text) + 120px);
	margin-inline: auto;
}
.gm-article__title {
	font-size: clamp(30px, 4.4vw, 52px);
	line-height: 1.08;
	letter-spacing: -.022em;
	margin: 0 0 18px;
}
.gm-article__chapo {
	font-size: 19px;
	line-height: 1.6;
	color: var(--gm-ink-soft);
	margin: 0 0 22px;
	font-family: var(--gm-display);
	font-style: italic;
}
.gm-article__head .gm-meta { justify-content: center; }

.gm-article__figure {
	margin: 0 0 clamp(30px, 3.6vw, 48px);
}
.gm-article__figure img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
	border-radius: var(--gm-radius);
	display: block;
}
.gm-article__figure figcaption {
	font-size: 13px;
	color: var(--gm-grey-light);
	text-align: center;
	margin-top: 12px;
}

.gm-article__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: clamp(34px, 4.4vw, 64px);
	align-items: start;
	max-width: calc(var(--gm-text) + 300px + 64px);
	margin-inline: auto;
}
.gm-article__layout--full { grid-template-columns: minmax(0, 1fr); max-width: var(--gm-text); }

/* Corps redactionnel */
.gm-prose {
	font-size: 17.5px;
	line-height: 1.78;
	color: var(--gm-ink-soft);
}
.gm-prose > *:first-child { margin-top: 0; }
.gm-prose p { margin: 0 0 1.35em; }
.gm-prose h2 {
	font-size: clamp(24px, 2.8vw, 32px);
	margin: 2.1em 0 .55em;
	padding-top: .35em;
	color: var(--gm-ink);
	position: relative;
}
.gm-prose h2::before {
	content: '';
	display: block;
	width: 46px;
	height: 2px;
	background: var(--gm-rose);
	margin-bottom: .5em;
}
.gm-prose h3 {
	font-size: clamp(20px, 2.1vw, 24px);
	margin: 1.7em 0 .5em;
	color: var(--gm-ink);
}
.gm-prose h4 {
	font-family: var(--gm-sans);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .01em;
	margin: 1.6em 0 .5em;
	color: var(--gm-ink);
}
.gm-prose a {
	color: var(--gm-rose-deep);
	text-decoration: underline;
	text-decoration-color: rgba(163, 71, 96, .35);
}
.gm-prose a:hover { text-decoration-color: currentColor; }
.gm-prose ul, .gm-prose ol { margin: 0 0 1.35em; padding-left: 1.35em; }
.gm-prose li { margin-bottom: .5em; }
.gm-prose ul { list-style: none; padding-left: 0; }
.gm-prose ul > li {
	position: relative;
	padding-left: 26px;
}
.gm-prose ul > li::before {
	content: '';
	position: absolute;
	left: 4px;
	top: .68em;
	width: 7px;
	height: 7px;
	border: 1px solid var(--gm-rose);
	transform: rotate(45deg);
}
.gm-prose ul ul { margin-top: .5em; margin-bottom: 0; }
.gm-prose ol { counter-reset: gmnum; list-style: none; padding-left: 0; }
.gm-prose ol > li { position: relative; padding-left: 34px; }
.gm-prose ol > li::before {
	counter-increment: gmnum;
	content: counter(gmnum) '.';
	position: absolute;
	left: 0;
	top: 0;
	font-family: var(--gm-display);
	font-weight: 600;
	color: var(--gm-rose-deep);
}
.gm-prose blockquote {
	margin: 2em 0;
	padding: 4px 0 4px 28px;
	border-left: 2px solid var(--gm-rose);
	font-family: var(--gm-display);
	font-size: 21px;
	font-style: italic;
	line-height: 1.5;
	color: var(--gm-ink);
}
.gm-prose blockquote p:last-child { margin-bottom: 0; }
.gm-prose blockquote cite {
	display: block;
	margin-top: 12px;
	font-family: var(--gm-sans);
	font-size: 13px;
	font-style: normal;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gm-grey);
}
.gm-prose img { border-radius: var(--gm-radius); }
.gm-prose figure { margin: 2em 0; }
.gm-prose figcaption {
	font-size: 13px;
	color: var(--gm-grey-light);
	margin-top: 10px;
	text-align: center;
}
.gm-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 2em 0;
	font-size: 15.5px;
}
.gm-prose th, .gm-prose td {
	border: 1px solid var(--gm-line);
	padding: 12px 14px;
	text-align: left;
	vertical-align: top;
}
.gm-prose th {
	background: var(--gm-cream);
	font-family: var(--gm-sans);
	font-weight: 600;
	color: var(--gm-ink);
}
.gm-prose code {
	background: var(--gm-cream);
	padding: 2px 6px;
	border-radius: 2px;
	font-size: .92em;
}
.gm-prose pre {
	background: var(--gm-ink);
	color: #f2eee9;
	padding: 20px;
	border-radius: var(--gm-radius);
	overflow-x: auto;
	font-size: 14px;
	line-height: 1.6;
}
.gm-prose pre code { background: none; padding: 0; color: inherit; }
.gm-prose .alignleft { float: left; margin: .4em 1.8em 1.2em 0; max-width: 46%; }
.gm-prose .alignright { float: right; margin: .4em 0 1.2em 1.8em; max-width: 46%; }
.gm-prose .aligncenter { display: block; margin-inline: auto; text-align: center; }
.gm-prose .alignwide,
.gm-prose .alignfull {
	width: auto;
	max-width: none;
	margin-inline: calc(-1 * clamp(0px, 4vw, 60px));
}
.gm-prose .wp-caption { max-width: 100%; }
.gm-prose iframe, .gm-prose embed, .gm-prose object {
	max-width: 100%;
	border-radius: var(--gm-radius);
}
.gm-prose .wp-block-embed__wrapper { position: relative; }

/* Encadre premier paragraphe */
.gm-prose > p:first-of-type::first-letter {
	font-family: var(--gm-display);
	font-size: 3.6em;
	font-weight: 600;
	float: left;
	line-height: .82;
	margin: .06em .1em 0 0;
	color: var(--gm-rose-deep);
}

/* Pied d article */
.gm-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}
.gm-tags a {
	display: inline-block;
	font-family: var(--gm-sans);
	font-size: 12px;
	letter-spacing: .06em;
	color: var(--gm-ink-soft);
	text-decoration: none;
	background: var(--gm-cream);
	border: 1px solid var(--gm-line);
	border-radius: 100px;
	padding: 7px 15px;
}
.gm-tags a:hover { background: var(--gm-rose-wash); border-color: var(--gm-rose); color: var(--gm-rose-deep); }

.gm-share {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 34px;
	padding-top: 26px;
	border-top: 1px solid var(--gm-line);
	flex-wrap: wrap;
}
.gm-share__label {
	font-family: var(--gm-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gm-grey);
}
.gm-share a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--gm-line);
	border-radius: 50%;
	color: var(--gm-ink);
	transition: background .18s var(--gm-ease), border-color .18s var(--gm-ease), color .18s var(--gm-ease);
}
.gm-share a:hover { background: var(--gm-ink); border-color: var(--gm-ink); color: var(--gm-white); }
.gm-share svg { width: 16px; height: 16px; fill: currentColor; }

.gm-nextprev {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 44px;
	padding-top: 30px;
	border-top: 1px solid var(--gm-line);
}
.gm-nextprev a {
	text-decoration: none;
	color: var(--gm-ink);
	display: block;
}
.gm-nextprev__dir {
	display: block;
	font-family: var(--gm-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gm-grey);
	margin-bottom: 8px;
}
.gm-nextprev__title {
	font-family: var(--gm-display);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
}
.gm-nextprev a:hover .gm-nextprev__title { color: var(--gm-rose-deep); }
.gm-nextprev > div:last-child { text-align: right; }

/* Colonne laterale de l article */
.gm-sidebar { position: sticky; top: 84px; }
.gm-widget {
	margin-bottom: 34px;
	font-size: 15px;
}
.gm-widget__title {
	font-family: var(--gm-sans);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gm-grey);
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--gm-ink);
}
.gm-widget ul { list-style: none; margin: 0; padding: 0; }
.gm-widget li { padding: 9px 0; border-bottom: 1px solid var(--gm-line-soft); }
.gm-widget a { color: var(--gm-ink); text-decoration: none; }
.gm-widget a:hover { color: var(--gm-rose-deep); }
.gm-widget__note { color: var(--gm-grey); font-size: 14px; }

.gm-sidepicks { list-style: none; margin: 0; padding: 0; }
.gm-sidepicks li {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--gm-line-soft);
	align-items: center;
}
.gm-sidepicks li:last-child { border-bottom: 0; }
.gm-sidepicks__thumb {
	display: block;
	width: 68px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--gm-radius);
	background: var(--gm-cream);
}
.gm-sidepicks__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gm-sidepicks__title {
	font-family: var(--gm-display);
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.32;
	margin: 0 0 4px;
}
.gm-sidepicks__title a { color: var(--gm-ink); text-decoration: none; }
.gm-sidepicks__title a:hover { color: var(--gm-rose-deep); }

.gm-brief {
	background: var(--gm-rose-wash);
	border: 1px solid #f0dfe3;
	border-radius: var(--gm-radius);
	padding: 26px 24px;
	text-align: center;
}
.gm-brief__title {
	font-family: var(--gm-display);
	font-size: 21px;
	margin: 0 0 10px;
}
.gm-brief p { font-size: 14.5px; color: var(--gm-ink-soft); margin-bottom: 18px; }

/* -------------------------------------------------------------------------
 * 12. A lire aussi (theme + extension YARPP)
 * ---------------------------------------------------------------------- */

.gm-related { padding-block: clamp(44px, 5vw, 70px); }

.yarpp-related,
.yarpp-related-shortcode {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid var(--gm-line);
}
.yarpp-related h3 {
	font-family: var(--gm-sans);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gm-grey);
	margin: 0 0 18px;
}
.yarpp-related ol,
.yarpp-related ul { list-style: none; margin: 0; padding: 0; }
.yarpp-related li { padding: 11px 0; border-bottom: 1px solid var(--gm-line-soft); }
.yarpp-related li:last-child { border-bottom: 0; }
.yarpp-related a {
	font-family: var(--gm-display);
	font-size: 17px;
	font-weight: 600;
	color: var(--gm-ink);
	text-decoration: none;
	line-height: 1.35;
}
.yarpp-related a:hover { color: var(--gm-rose-deep); }
.yarpp-thumbnails-horizontal .yarpp-thumbnail {
	border: 0;
	margin: 0 16px 20px 0;
	width: 180px;
	vertical-align: top;
}
.yarpp-thumbnail img { border-radius: var(--gm-radius); }
.yarpp-thumbnail-title {
	font-family: var(--gm-display);
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.32;
	margin-top: 8px;
	color: var(--gm-ink);
}

/* -------------------------------------------------------------------------
 * 13. Formulaires et commentaires
 * ---------------------------------------------------------------------- */

input[type="text"], input[type="email"], input[type="url"],
input[type="tel"], input[type="number"], input[type="password"],
input[type="search"], input[type="date"], select, textarea {
	width: 100%;
	font-family: var(--gm-sans);
	font-size: 16px;
	color: var(--gm-ink);
	background: var(--gm-white);
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-radius);
	padding: 13px 16px;
	transition: border-color .18s var(--gm-ease), box-shadow .18s var(--gm-ease);
}
textarea { min-height: 180px; resize: vertical; line-height: 1.6; }
input:focus, select:focus, textarea:focus {
	border-color: var(--gm-rose);
	outline: none;
	box-shadow: 0 0 0 3px rgba(201, 120, 138, .16);
}
input[type="submit"], button[type="submit"], .wpcf7-submit {
	width: auto;
	font-family: var(--gm-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gm-white);
	background: var(--gm-ink);
	border: 1px solid var(--gm-ink);
	border-radius: var(--gm-radius);
	padding: 15px 32px;
	cursor: pointer;
	transition: background .18s var(--gm-ease), border-color .18s var(--gm-ease);
}
input[type="submit"]:hover, button[type="submit"]:hover, .wpcf7-submit:hover {
	background: var(--gm-rose-deep);
	border-color: var(--gm-rose-deep);
}
label { font-size: 14.5px; color: var(--gm-ink-soft); }

.wpcf7 p { margin-bottom: 18px; }
.wpcf7-not-valid-tip { color: var(--gm-rose-dark); font-size: 13.5px; margin-top: 6px; }
.wpcf7 form .wpcf7-response-output {
	border-radius: var(--gm-radius);
	border-width: 1px;
	font-size: 14.5px;
	margin: 20px 0 0;
	padding: 14px 18px;
}

.gm-comments { margin-top: 48px; padding-top: 34px; border-top: 1px solid var(--gm-line); }
.gm-comments__title {
	font-size: clamp(22px, 2.4vw, 28px);
	margin-bottom: 26px;
}
.gm-comments ol.comment-list { list-style: none; margin: 0 0 34px; padding: 0; }
.gm-comments ol.children { list-style: none; margin: 0; padding-left: 28px; }
.gm-comments .comment-body {
	padding: 20px 0;
	border-bottom: 1px solid var(--gm-line-soft);
}
.gm-comments .comment-author {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--gm-sans);
	font-size: 14.5px;
	font-weight: 600;
	margin-bottom: 6px;
}
.gm-comments .comment-author img { border-radius: 50%; }
.gm-comments .comment-metadata { font-size: 12.5px; color: var(--gm-grey); margin-bottom: 12px; }
.gm-comments .comment-metadata a { color: var(--gm-grey); text-decoration: none; }
.gm-comments .reply { font-size: 12.5px; }
.gm-comments .comment-reply-link {
	font-family: var(--gm-sans);
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 11px;
}
.comment-respond .comment-reply-title {
	font-size: clamp(21px, 2.2vw, 26px);
	margin-bottom: 8px;
}
.comment-form .comment-notes, .comment-form .logged-in-as { font-size: 13.5px; color: var(--gm-grey); }
.comment-form p { margin-bottom: 16px; }
.comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 10px; }
.comment-form-cookies-consent input { width: auto; }

/* -------------------------------------------------------------------------
 * 14. Pied de page
 * ---------------------------------------------------------------------- */

.gm-footer {
	background: var(--gm-ink);
	color: rgba(255, 255, 255, .74);
	padding-block: clamp(48px, 5.5vw, 76px) 0;
	margin-top: clamp(40px, 5vw, 72px);
	font-size: 15px;
}
.gm-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.gm-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.gm-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(30px, 4vw, 60px);
	padding-bottom: 44px;
}
.gm-footer__brand {
	font-family: var(--gm-display);
	font-size: 26px;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 14px;
}
.gm-footer__pitch { max-width: 46ch; line-height: 1.7; color: rgba(255, 255, 255, .66); }
.gm-footer__title {
	font-family: var(--gm-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .5);
	margin: 0 0 16px;
}
.gm-footer ul { list-style: none; margin: 0; padding: 0; }
.gm-footer li { padding: 6px 0; }
.gm-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-block: 22px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: 13px;
	color: rgba(255, 255, 255, .52);
}
.gm-footer__bottom ul { display: flex; flex-wrap: wrap; gap: 20px; }
.gm-footer__bottom li { padding: 0; }
.gm-footer .gm-footer__widget { margin-bottom: 20px; }

/* -------------------------------------------------------------------------
 * 15. Extensions tierces
 * ---------------------------------------------------------------------- */

.kk-star-ratings {
	margin: 24px 0 0;
	justify-content: flex-start;
}
.kk-star-ratings .kksr-stars .kksr-star { color: var(--gm-rose); }
.kk-star-ratings .kksr-legend { font-family: var(--gm-sans); font-size: 13px; color: var(--gm-grey); }

.cookie-notice-container {
	font-family: var(--gm-sans) !important;
	font-size: 13.5px !important;
}
#cookie-notice .cn-button {
	font-family: var(--gm-sans) !important;
	border-radius: var(--gm-radius) !important;
}

/* -------------------------------------------------------------------------
 * 16. Page 404
 * ---------------------------------------------------------------------- */

.gm-404 { text-align: center; padding-block: clamp(50px, 7vw, 96px); }
.gm-404__num {
	font-family: var(--gm-display);
	font-size: clamp(80px, 14vw, 170px);
	font-weight: 600;
	line-height: .9;
	color: var(--gm-rose-wash);
	margin: 0;
	letter-spacing: -.03em;
}
.gm-404__title { font-size: clamp(28px, 3.6vw, 42px); margin: -.35em 0 16px; }
.gm-404 p { color: var(--gm-grey); max-width: 54ch; margin-inline: auto; }
.gm-404 .gm-searchform { max-width: 460px; margin: 28px auto 0; }

/* -------------------------------------------------------------------------
 * 17. Adaptations
 * ---------------------------------------------------------------------- */

@media (max-width: 1080px) {
	.gm-hero__grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
	.gm-article__layout { grid-template-columns: minmax(0, 1fr) 270px; }
	.gm-grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
	body { font-size: 16.5px; }
	.gm-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
	.gm-topic__grid { grid-template-columns: minmax(0, 1fr); }
	.gm-article__layout { grid-template-columns: minmax(0, 1fr); max-width: var(--gm-text); }
	.gm-sidebar { position: static; }
	.gm-topics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gm-picks li { grid-template-columns: 26px minmax(0, 1fr) 68px; }
}

@media (max-width: 720px) {
	:root { --gm-pad: 18px; }
	.gm-grid--3, .gm-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gm-grid { gap: 28px 20px; }
	.gm-card__title { font-size: 18px; }
	.gm-card__excerpt { display: none; }
	.gm-lead__chapo { font-size: 16px; }
	.gm-prose { font-size: 17px; }
	.gm-prose .alignleft, .gm-prose .alignright { float: none; margin: 1.5em 0; max-width: 100%; }
	.gm-nextprev { grid-template-columns: minmax(0, 1fr); }
	.gm-nextprev > div:last-child { text-align: left; }
	.gm-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
	.gm-comments ol.children { padding-left: 14px; }
}

@media (max-width: 540px) {
	.gm-grid--3, .gm-grid--4 { grid-template-columns: minmax(0, 1fr); }
	.gm-topics { grid-template-columns: minmax(0, 1fr); }
	.gm-card--row { gap: 16px; }
	.gm-card--row .gm-card__media { flex-basis: 38%; }
	.gm-picks li { grid-template-columns: 24px minmax(0, 1fr); }
	.gm-picks__thumb { display: none; }
	.gm-prose > p:first-of-type::first-letter { font-size: 3.1em; }
	.gm-share { gap: 8px; }
}

@media print {
	.gm-topbar, .gm-nav, .gm-search, .gm-drawer, .gm-veil,
	.gm-share, .gm-related, .gm-footer, .gm-sidebar, .gm-nextprev,
	#cookie-notice { display: none !important; }
	body { background: #fff; font-size: 12pt; }
	.gm-article__layout { display: block; }
	.gm-prose a { text-decoration: underline; }
}
