/*
 * Kiosque, thème de Suc-Chou : feuille de style unique.
 *
 * Deux familles servies par le site (Sofia Sans et Sofia Sans Extra Condensed),
 * une encre, un bleu de bandeau, un jaune d'étiquette et une couleur par
 * rubrique, transmise par la variable --kq-r.
 */

/* ==========================================================================
   1. Polices
   ========================================================================== */

@font-face {
	font-family: "Sofia Sans";
	src: url("../fonts/sofia-sans.woff2") format("woff2");
	font-weight: 300 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Sofia Sans";
	src: url("../fonts/sofia-sans-italique.woff2") format("woff2");
	font-weight: 300 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Sofia Sans Extra Condensed";
	src: url("../fonts/sofia-sans-extra-condensed.woff2") format("woff2");
	font-weight: 500 900;
	font-style: normal;
	font-display: swap;
}

/* ==========================================================================
   2. Jetons
   ========================================================================== */

:root {
	--kq-papier: #fff;
	--kq-encre: #12151c;
	--kq-texte: #2a2f3a;
	--kq-doux: #5f6775;
	--kq-fond: #f1f2f5;
	--kq-fond-clair: #f8f9fb;
	--kq-filet: #e0e3e9;
	--kq-bleu: #1f3fb0;
	--kq-jaune: #ffd84a;
	--kq-jaune-pale: #fff3c4;
	--kq-brun-jaune: #5c4a00;
	--kq-r: var(--kq-bleu);

	--kq-serre: "Sofia Sans Extra Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
	--kq-sans: "Sofia Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--kq-largeur: 1240px;
	--kq-gouttiere: 40px;
}

/* ==========================================================================
   3. Base
   ========================================================================== */

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

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

body {
	margin: 0;
	background: var(--kq-papier);
	color: var(--kq-texte);
	font-family: var(--kq-sans);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-weight: 800;
	line-height: 1;
	text-wrap: balance;
}

p, ul, ol, dl, dd, figure, blockquote {
	margin: 0;
}

ul, ol {
	padding: 0;
}

button, input, select, textarea {
	font: inherit;
	color: inherit;
}

:focus-visible {
	outline: 3px solid var(--kq-bleu);
	outline-offset: 2px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	clip-path: none;
	background: var(--kq-jaune);
	color: var(--kq-encre);
	font-weight: 700;
}

.kq-large {
	width: 100%;
	max-width: calc(var(--kq-largeur) + 2 * var(--kq-gouttiere));
	margin-inline: auto;
	padding-inline: var(--kq-gouttiere);
}

/* Surligneur : la première phrase des chapeaux. */
.kq-surligne {
	padding: 0 .06em;
	background: linear-gradient(transparent 58%, var(--kq-jaune) 58%);
	color: inherit;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

/* Titres cliquables : le surligneur passe au survol. */
.kq-lien-titre {
	background: linear-gradient(var(--kq-jaune), var(--kq-jaune)) no-repeat 0 88% / 0 38%;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	transition: background-size .25s ease;
}

.kq-lien-titre:hover,
.kq-lien-titre:focus-visible {
	background-size: 100% 38%;
}

/* ==========================================================================
   4. En-tête
   ========================================================================== */

.kq-bandeau {
	background: var(--kq-bleu);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.kq-bandeau__in {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-block: 7px;
}

.kq-bandeau__date::first-letter {
	text-transform: uppercase;
}

.kq-bandeau__accroche {
	font-weight: 500;
	text-align: right;
	opacity: .9;
}

.kq-entete {
	position: relative;
	z-index: 40;
	background: var(--kq-papier);
	border-bottom: 3px solid var(--kq-encre);
}

.kq-entete__in {
	display: flex;
	align-items: center;
	gap: 26px;
	min-height: 86px;
	padding-block: 12px;
}

/* Le nom du site : « SUC- » puis l'étiquette « CHOU ». */
.kq-marque {
	display: inline-flex;
	align-items: center;
	flex: none;
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 54px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: .005em;
	text-transform: uppercase;
}

.kq-marque__etiquette {
	position: relative;
	margin-left: 3px;
	padding: .07em .25em 0 .52em;
	background: var(--kq-jaune);
	clip-path: polygon(.3em 0, 100% 0, 100% 100%, .3em 100%, 0 50%);
}

.kq-marque__etiquette::before {
	content: "";
	position: absolute;
	top: 50%;
	left: .22em;
	width: .15em;
	height: .15em;
	border-radius: 50%;
	background: var(--kq-papier);
	transform: translateY(-50%);
}

.kq-nav {
	margin-left: auto;
}

.kq-nav ul {
	display: flex;
	gap: 22px;
	list-style: none;
}

.kq-nav a {
	display: block;
	padding: 7px 0 5px;
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 21px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .02em;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: inset 0 -4px 0 var(--kq-r);
	transition: box-shadow .2s ease;
}

.kq-nav a:hover,
.kq-nav .est-courant > a {
	box-shadow: inset 0 -9px 0 var(--kq-r);
}

.kq-nav .kq-nav__recherche {
	display: none;
}

.kq-bouton-rond {
	display: grid;
	place-items: center;
	flex: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--kq-fond);
	color: var(--kq-encre);
	cursor: pointer;
	transition: background-color .2s ease;
}

.kq-bouton-rond:hover,
.kq-bouton-rond[aria-expanded="true"] {
	background: var(--kq-jaune);
}

.kq-bouton-rond svg {
	width: 20px;
	height: 20px;
}

.kq-entete__menu {
	display: none;
}

.kq-entete__menu .kq-icone-fermer,
.kq-entete__menu[aria-expanded="true"] .kq-icone-menu {
	display: none;
}

.kq-entete__menu[aria-expanded="true"] .kq-icone-fermer {
	display: block;
}

.kq-recherche {
	border-top: 1px solid var(--kq-filet);
	background: var(--kq-fond);
}

.kq-recherche .kq-large {
	padding-block: 20px;
}

/* ==========================================================================
   5. Formulaires
   ========================================================================== */

.kq-form-recherche {
	display: flex;
	max-width: 760px;
}

.kq-form-recherche input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 56px;
	padding: 0 18px;
	border: 3px solid var(--kq-encre);
	border-right: 0;
	border-radius: 0;
	background: #fff;
	font-size: 18px;
	-webkit-appearance: none;
	appearance: none;
}

.kq-form-recherche input[type="search"]:focus {
	outline: none;
	box-shadow: inset 0 -5px 0 var(--kq-jaune);
}

.kq-bouton,
.kq-form-recherche button,
.comment-form .submit,
.wpcf7 input[type="submit"] {
	display: inline-grid;
	place-items: center;
	height: 56px;
	padding: 2px 24px 0;
	border: 0;
	border-radius: 0;
	background: var(--kq-encre);
	color: #fff;
	font-family: var(--kq-serre);
	font-size: 23px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .03em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color .2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.kq-bouton:hover,
.kq-form-recherche button:hover,
.comment-form .submit:hover,
.wpcf7 input[type="submit"]:hover {
	background: var(--kq-bleu);
}

/* ==========================================================================
   6. Briques communes
   ========================================================================== */

/* Étiquette de rubrique, dans la couleur de la rubrique. */
.kq-rubrique {
	display: inline-block;
	padding: 3px 9px 1px;
	background: var(--kq-r);
	color: #fff;
	font-family: var(--kq-serre);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: .07em;
	text-transform: uppercase;
	vertical-align: top;
	transition: background-color .2s ease;
}

a.kq-rubrique:hover {
	background: var(--kq-encre);
}

/* Petite étiquette de prix, repère de la série « Combien ». */
.kq-etiquette {
	position: relative;
	display: block;
	flex: none;
	width: 30px;
	height: 22px;
	background: var(--kq-encre);
	clip-path: polygon(9px 0, 100% 0, 100% 100%, 9px 100%, 0 50%);
}

.kq-etiquette::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 7px;
	width: 5px;
	height: 5px;
	margin-top: -2.5px;
	border-radius: 50%;
	background: var(--kq-jaune);
}

.kq-serie {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 3px 10px 1px 8px;
	background: var(--kq-jaune);
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: .06em;
	text-transform: uppercase;
	vertical-align: top;
}

.kq-serie .kq-etiquette {
	width: 20px;
	height: 14px;
	clip-path: polygon(6px 0, 100% 0, 100% 100%, 6px 100%, 0 50%);
}

.kq-serie .kq-etiquette::before {
	left: 5px;
	width: 4px;
	height: 4px;
	margin-top: -2px;
}

a.kq-serie:hover {
	background: var(--kq-encre);
	color: var(--kq-jaune);
}

.kq-meta {
	color: var(--kq-doux);
	font-size: 14px;
	line-height: 1.45;
}

.kq-meta > span {
	white-space: nowrap;
}

.kq-meta > span:not(:last-child)::after {
	content: "\00a0·";
	margin-right: .45em;
}

.kq-section {
	padding-block: 36px 8px;
}

.kq-titre-section {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 16px;
	margin-bottom: 22px;
	padding-bottom: 9px;
	border-bottom: 3px solid var(--kq-encre);
}

.kq-titre-section h2 {
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.kq-compte {
	color: var(--kq-doux);
	font-size: 14px;
	font-weight: 600;
}

.kq-plus {
	margin-left: auto;
	color: var(--kq-bleu);
	font-family: var(--kq-serre);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: .03em;
	text-transform: uppercase;
	white-space: nowrap;
}

.kq-plus:hover {
	color: var(--kq-encre);
	text-decoration: underline;
	text-decoration-thickness: 3px;
	text-underline-offset: 4px;
}

.kq-image {
	display: block;
	aspect-ratio: 1.75;
	overflow: hidden;
	background: var(--kq-fond);
}

.kq-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

a.kq-image:hover img {
	transform: scale(1.03);
}

/* Grilles de cartes. */
.kq-grille {
	display: grid;
	gap: 28px 24px;
}

.kq-grille--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kq-grille--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kq-carte {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.kq-carte .kq-image {
	align-self: stretch;
}

.kq-carte .kq-rubrique {
	margin-top: 12px;
}

.kq-carte__titre {
	margin-top: 8px;
	font-size: 25px;
	font-weight: 800;
	line-height: 1.02;
}

.kq-carte .kq-meta {
	margin-top: 8px;
}

.kq-carte--principale .kq-carte__titre {
	font-size: 36px;
	font-weight: 900;
	line-height: .96;
}

.kq-carte__chapeau {
	display: -webkit-box;
	margin-top: 10px;
	overflow: hidden;
	color: var(--kq-texte);
	font-size: 16.5px;
	line-height: 1.55;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* Lignes de liste : vignette à gauche. */
.kq-lignes {
	display: grid;
}

.kq-ligne {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 26px;
	padding-block: 22px;
	border-bottom: 1px solid var(--kq-filet);
}

.kq-ligne:first-child {
	padding-top: 0;
}

.kq-ligne--texte {
	grid-template-columns: minmax(0, 1fr);
}

.kq-ligne__haut {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 12px;
	color: var(--kq-doux);
	font-size: 14px;
}

.kq-ligne__titre {
	margin-top: 7px;
	font-size: 29px;
	font-weight: 800;
	line-height: 1.02;
}

.kq-ligne__haut + .kq-ligne__titre {
	margin-top: 8px;
}

.kq-ligne__corps > .kq-ligne__titre:first-child {
	margin-top: 0;
}

.kq-ligne__extrait {
	display: -webkit-box;
	margin-top: 8px;
	overflow: hidden;
	color: var(--kq-texte);
	font-size: 16px;
	line-height: 1.55;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.kq-ligne .kq-meta {
	margin-top: 8px;
}

.kq-ligne__serie {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	gap: 16px;
}

.kq-ligne__serie .kq-etiquette {
	margin-top: 6px;
}

/* Liste de titres sans image. */
.kq-titres {
	display: grid;
	list-style: none;
}

.kq-titres li {
	padding-block: 12px;
	border-top: 1px solid var(--kq-filet);
}

.kq-titres li:first-child {
	border-top: 3px solid var(--kq-encre);
}

.kq-titres a {
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.05;
}

.kq-titres .kq-meta {
	margin-top: 4px;
	font-size: 13px;
}

/* Pagination. */
.kq-pagination {
	margin-top: 36px;
}

.kq-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.kq-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 48px;
	height: 48px;
	padding: 2px 12px 0;
	border: 3px solid var(--kq-encre);
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
}

.kq-pagination .page-numbers.current {
	background: var(--kq-encre);
	color: #fff;
}

.kq-pagination a.page-numbers:hover {
	background: var(--kq-jaune);
}

.kq-pagination .page-numbers.dots {
	min-width: 0;
	border-color: transparent;
}

/* Liste des rubriques, colonne ou pied de page. */
.kq-rubriques {
	list-style: none;
}

.kq-rubriques li {
	border-bottom: 1px solid var(--kq-filet);
}

.kq-rubriques a {
	display: grid;
	grid-template-columns: 14px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding-block: 11px 9px;
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.kq-rubriques a::before {
	content: "";
	width: 14px;
	height: 14px;
	background: var(--kq-r);
}

.kq-rubriques a:hover {
	color: var(--kq-r);
}

.kq-rubriques .kq-compte {
	font-family: var(--kq-sans);
	text-transform: none;
}

.kq-rubriques .est-courant a {
	color: var(--kq-r);
}

.kq-boite-titre {
	padding-bottom: 8px;
	border-bottom: 3px solid var(--kq-encre);
	font-size: 28px;
	font-weight: 900;
	text-transform: uppercase;
}

/* ==========================================================================
   7. Accueil
   ========================================================================== */

.kq-couverture {
	display: grid;
	grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	padding-block: 30px 6px;
}

.kq-une__texte {
	padding-top: 18px;
}

.kq-une__titre {
	margin-top: 10px;
	font-size: 62px;
	font-weight: 900;
	line-height: .93;
}

.kq-une__titre--long {
	font-size: 52px;
}

.kq-chapeau {
	margin-top: 14px;
	color: var(--kq-encre);
	font-size: 19px;
	font-weight: 500;
	line-height: 1.5;
}

.kq-une .kq-meta {
	margin-top: 12px;
}

/* Colonne jaune « Combien ? ». */
.kq-combien {
	display: grid;
	align-content: start;
	padding: 24px 24px 20px;
	background: var(--kq-jaune);
	color: var(--kq-encre);
}

.kq-combien__titre {
	font-size: 50px;
	font-weight: 900;
	line-height: .9;
	text-transform: uppercase;
}

.kq-combien__sous {
	margin-top: 8px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
}

.kq-combien ul {
	margin-top: 16px;
	list-style: none;
}

.kq-combien li {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	gap: 12px;
	padding-block: 13px;
	border-top: 2px solid var(--kq-encre);
}

.kq-combien li .kq-etiquette {
	margin-top: 3px;
}

.kq-combien li a {
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 23px;
	font-weight: 800;
	line-height: 1.02;
}

.kq-combien__rub {
	display: block;
	margin-top: 4px;
	color: var(--kq-brun-jaune);
	font-size: 13px;
	font-weight: 700;
}

.kq-combien .kq-plus {
	margin: 6px 0 0;
	color: var(--kq-encre);
	white-space: normal;
}

/* Bande « Peut-on… ? ». */
.kq-peut-on {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 20px 40px;
	align-items: center;
	margin-top: 34px;
	padding: 26px 30px;
	background: var(--kq-fond);
}

.kq-peut-on__titre {
	font-size: 44px;
	font-weight: 900;
	line-height: .9;
	text-transform: uppercase;
}

.kq-peut-on__sous {
	margin-top: 8px;
	color: var(--kq-doux);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

.kq-peut-on .kq-plus {
	display: inline-block;
	margin: 12px 0 0;
	font-size: 17px;
}

.kq-peut-on ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	list-style: none;
}

.kq-peut-on li {
	padding-top: 12px;
	border-top: 3px solid var(--kq-encre);
}

.kq-peut-on li a {
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 25px;
	font-weight: 800;
	line-height: 1.02;
}

.kq-peut-on .kq-meta {
	margin-top: 6px;
	font-size: 13px;
}

/* Blocs de rubrique. */
.kq-bloc-rubrique .kq-titre-section {
	border-bottom-color: var(--kq-r);
}

.kq-bloc-rubrique .kq-titre-section h2 a {
	color: var(--kq-r);
}

.kq-bloc-rubrique .kq-titre-section h2 a:hover {
	color: var(--kq-encre);
}

.kq-bloc-rubrique .kq-titres li:first-child {
	border-top-color: var(--kq-r);
}

.kq-bloc-rubrique--large .kq-bloc-rubrique__corps {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.kq-bloc-rubrique__cote {
	display: grid;
	gap: 26px;
}

.kq-duo {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
}

.kq-duo .kq-titres {
	margin-top: 24px;
}

/* ==========================================================================
   8. Rubriques, recherche, séries
   ========================================================================== */

.kq-tete-liste {
	background: var(--kq-r);
	color: #fff;
}

.kq-tete-liste .kq-large {
	padding-block: 30px 28px;
}

.kq-fil {
	font-size: 14px;
	font-weight: 600;
	opacity: .92;
}

.kq-fil a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.kq-fil a:hover {
	text-decoration-thickness: 3px;
}

.kq-fil span[aria-hidden] {
	margin-inline: .4em;
}

.kq-tete-liste__titre {
	margin-top: 10px;
	color: inherit;
	font-size: 112px;
	font-weight: 900;
	line-height: .86;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.kq-tete-liste__titre--long {
	font-size: 84px;
}

.kq-tete-liste__compte {
	margin-top: 14px;
	font-size: 17px;
	font-weight: 600;
}

.kq-tete-liste__texte {
	max-width: 68ch;
	margin-top: 10px;
	font-size: 17px;
	line-height: 1.55;
}

.kq-tete-liste--recherche,
.kq-tete-liste--auteur {
	background: var(--kq-fond);
	color: var(--kq-encre);
}

.kq-tete-liste--recherche .kq-tete-liste__titre {
	font-size: 76px;
	text-transform: none;
}

.kq-tete-liste--recherche .kq-form-recherche {
	margin-top: 22px;
}

.kq-tete-liste--serie {
	background: var(--kq-jaune);
	color: var(--kq-encre);
}

.kq-tete-liste__etiquette {
	display: inline-block;
	position: relative;
	padding: .07em .22em 0 .5em;
	background: var(--kq-encre);
	color: var(--kq-jaune);
	clip-path: polygon(.3em 0, 100% 0, 100% 100%, .3em 100%, 0 50%);
}

.kq-tete-liste__etiquette::before {
	content: "";
	position: absolute;
	top: 50%;
	left: .2em;
	width: .13em;
	height: .13em;
	border-radius: 50%;
	background: var(--kq-jaune);
	transform: translateY(-50%);
}

.kq-tete-liste--auteur .kq-large {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 28px;
	align-items: center;
}

.kq-tete-liste--auteur img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
}

.kq-liste {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 56px;
	align-items: start;
	padding-block: 36px 64px;
}

.kq-liste__cote {
	display: grid;
	gap: 30px;
}

.kq-une--liste {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	margin-bottom: 26px;
	padding-bottom: 28px;
	border-bottom: 3px solid var(--kq-encre);
}

.kq-une--liste .kq-une__texte {
	padding-top: 0;
}

.kq-une--liste .kq-une__titre {
	font-size: 46px;
}

.kq-une--liste .kq-une__titre--long {
	font-size: 40px;
}

.kq-une--liste .kq-chapeau {
	font-size: 17px;
}

.kq-liste__vide {
	padding: 28px 30px;
	background: var(--kq-fond);
	font-size: 18px;
}

.kq-liste__vide p + p {
	margin-top: 10px;
}

.kq-liste__vide .kq-rubriques {
	margin-top: 14px;
}

.kq-combien--cote .kq-combien__titre {
	font-size: 40px;
}

.kq-combien--cote li a {
	font-size: 21px;
}

/* ==========================================================================
   9. Article
   ========================================================================== */

.kq-article {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 64px;
	align-items: start;
	padding-block: 34px 10px;
}

.kq-article__corps {
	min-width: 0;
	max-width: 800px;
}

.kq-article__rubriques {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.kq-article__titre {
	margin-top: 16px;
	font-size: 78px;
	font-weight: 900;
	line-height: .9;
}

.kq-article__titre--long {
	font-size: 64px;
	line-height: .92;
}

.kq-article__titre--tres-long {
	font-size: 54px;
	line-height: .94;
}

.kq-article__tete .kq-chapeau {
	margin-top: 22px;
	font-size: 21px;
	line-height: 1.52;
}

.kq-signature {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
	padding-top: 14px;
	border-top: 3px solid var(--kq-encre);
}

.kq-signature img {
	flex: none;
	width: 46px;
	height: 46px;
	border-radius: 50%;
}

.kq-signature p {
	display: flex;
	flex-wrap: wrap;
	color: var(--kq-doux);
	font-size: 14.5px;
	line-height: 1.5;
}

.kq-signature p > span {
	white-space: nowrap;
}

.kq-signature p > span:not(:last-child)::after {
	content: "\00a0·";
	margin-right: .5em;
}

.kq-signature b,
.kq-signature a {
	color: var(--kq-encre);
	font-weight: 700;
}

.kq-signature a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.kq-article__image {
	margin-top: 26px;
}

/* Sommaire : boîte jaune dans la marge, repliable sur téléphone. */
.kq-article__cote {
	position: sticky;
	top: 24px;
	display: grid;
	gap: 28px;
}

.kq-sommaire {
	padding: 20px 22px 14px;
	background: var(--kq-jaune);
	color: var(--kq-encre);
}

.kq-sommaire__titre {
	font-family: var(--kq-serre);
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.kq-sommaire ol {
	margin-top: 12px;
	list-style: none;
	counter-reset: kq-s;
}

.kq-sommaire li {
	border-top: 2px solid var(--kq-encre);
	counter-increment: kq-s;
}

.kq-sommaire a {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 8px;
	padding-block: 10px 9px;
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.06;
}

.kq-sommaire a::before {
	content: counter(kq-s);
	font-size: 28px;
	font-weight: 900;
	line-height: .82;
}

.kq-sommaire a:hover span,
.kq-sommaire a.est-actif span {
	text-decoration: underline;
	text-decoration-thickness: 3px;
	text-underline-offset: 3px;
}

.kq-sommaire--replie {
	display: none;
	margin-top: 22px;
	padding: 0;
}

.kq-sommaire--replie summary {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px 12px;
	cursor: pointer;
	list-style: none;
}

.kq-sommaire--replie summary::-webkit-details-marker {
	display: none;
}

.kq-sommaire--replie .kq-sommaire__titre {
	font-size: 28px;
}

.kq-sommaire__nombre {
	font-size: 14px;
	font-weight: 700;
}

.kq-sommaire--replie summary svg {
	width: 22px;
	height: 22px;
	margin-left: auto;
	transition: transform .2s ease;
}

.kq-sommaire--replie[open] summary svg {
	transform: rotate(180deg);
}

.kq-sommaire--replie ol {
	margin: 0;
	padding: 0 18px 8px;
}

.kq-cote-titres .kq-boite-titre {
	font-size: 26px;
}

.kq-cote-titres .kq-titres li:first-child {
	border-top: 0;
}

/* Le texte de l'article. */
.kq-texte {
	margin-top: 32px;
	color: var(--kq-texte);
	font-size: 19px;
	line-height: 1.72;
	overflow-wrap: break-word;
}

.kq-texte > * + * {
	margin-top: 1.05em;
}

.kq-texte > :first-child {
	margin-top: 0;
}

.kq-texte h2 {
	margin-top: 1.9em;
	font-size: 44px;
	font-weight: 900;
	line-height: .98;
	scroll-margin-top: 24px;
}

.kq-texte h2::before {
	content: "";
	display: block;
	width: 64px;
	height: 7px;
	margin-bottom: 14px;
	background: var(--kq-r);
}

.kq-texte h3 {
	margin-top: 1.55em;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.02;
	scroll-margin-top: 24px;
}

.kq-texte h4 {
	margin-top: 1.4em;
	font-size: 24px;
}

.kq-texte h2 + *,
.kq-texte h3 + *,
.kq-texte h4 + * {
	margin-top: .6em;
}

.kq-texte strong,
.kq-texte b {
	color: var(--kq-encre);
	font-weight: 650;
}

.kq-texte a {
	color: var(--kq-bleu);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
	transition: background-color .2s ease;
}

.kq-texte a:hover {
	background: var(--kq-jaune-pale);
	color: var(--kq-encre);
}

.kq-texte ul {
	list-style: none;
}

.kq-texte ul > li {
	position: relative;
	padding-left: 28px;
}

.kq-texte ul > li::before {
	content: "";
	position: absolute;
	top: .56em;
	left: 2px;
	width: 11px;
	height: 11px;
	background: var(--kq-jaune);
	box-shadow: inset 0 0 0 2px var(--kq-encre);
}

.kq-texte ol {
	list-style: none;
	counter-reset: kq-o;
}

.kq-texte ol > li {
	position: relative;
	padding-left: 40px;
	counter-increment: kq-o;
}

.kq-texte ol > li::before {
	content: counter(kq-o);
	position: absolute;
	top: .02em;
	left: 0;
	color: var(--kq-r);
	font-family: var(--kq-serre);
	font-size: 1.4em;
	font-weight: 900;
	line-height: 1.1;
}

.kq-texte li + li {
	margin-top: .45em;
}

.kq-texte li > ul,
.kq-texte li > ol {
	margin-top: .45em;
}

.kq-texte img {
	height: auto;
}

.kq-texte figure,
.kq-texte .wp-block-image {
	margin-block: 1.6em;
}

.kq-texte figcaption,
.kq-texte .wp-caption-text {
	margin-top: 8px;
	color: var(--kq-doux);
	font-size: 14px;
	line-height: 1.45;
}

.kq-texte .aligncenter {
	margin-inline: auto;
}

.kq-texte blockquote {
	padding: 6px 0 6px 26px;
	border-left: 8px solid var(--kq-jaune);
	color: var(--kq-encre);
	font-size: 1.12em;
	font-style: italic;
	line-height: 1.55;
}

.kq-texte hr {
	height: 3px;
	margin-block: 2em;
	border: 0;
	background: var(--kq-encre);
}

.kq-tableau {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.kq-texte table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	font-size: 16px;
	line-height: 1.45;
}

.kq-texte th {
	padding: 11px 12px 9px;
	background: var(--kq-encre);
	color: #fff;
	font-family: var(--kq-serre);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: .02em;
	text-align: left;
	vertical-align: bottom;
}

.kq-texte td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--kq-filet);
	vertical-align: top;
}

.kq-texte tr:nth-child(even) td {
	background: var(--kq-fond-clair);
}

/* « A lire aussi » glissés dans le texte par Inline Related Posts. */
.kq-texte .kq-renvoi {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 14px;
	margin-block: 1.7em;
	padding: 14px 0 13px;
	border-top: 3px solid var(--kq-encre);
	border-bottom: 1px solid var(--kq-filet);
	line-height: 1.1;
}

.kq-renvoi__label {
	padding: 3px 9px 1px;
	background: var(--kq-jaune);
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.kq-texte .kq-renvoi a {
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 25px;
	font-weight: 800;
	line-height: 1.05;
	text-decoration: none;
}

.kq-texte .kq-renvoi a:hover {
	background: none;
	text-decoration: underline;
	text-decoration-color: var(--kq-jaune);
	text-decoration-thickness: 5px;
	text-underline-offset: 2px;
}

/* Sources en fin d'article. */
.kq-texte .kq-sources {
	margin-top: 2.2em;
	padding: 20px 24px 22px;
	background: var(--kq-fond);
	font-size: 15px;
	line-height: 1.5;
}

.kq-sources__titre {
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 26px;
	font-weight: 900;
	text-transform: uppercase;
}

.kq-texte .kq-sources ol {
	margin-top: 10px;
}

.kq-texte .kq-sources ol > li {
	padding-left: 30px;
	overflow-wrap: anywhere;
}

.kq-texte .kq-sources ol > li::before {
	color: var(--kq-encre);
	font-size: 1.25em;
}

/* Notation (kk Star Ratings) : l'extension ne charge plus sa feuille. */
.kq-note {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 22px;
	margin-top: 40px;
	padding: 18px 22px;
	border: 3px solid var(--kq-encre);
}

.kq-note__titre {
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 27px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.kk-star-ratings {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 14px;
}

.kk-star-ratings .kksr-muted {
	opacity: .5;
}

.kk-star-ratings .kksr-stars {
	position: relative;
}

.kk-star-ratings .kksr-stars .kksr-stars-active,
.kk-star-ratings .kksr-stars .kksr-stars-inactive {
	display: flex;
}

.kk-star-ratings .kksr-stars .kksr-stars-active {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.kk-star-ratings .kksr-stars .kksr-star {
	cursor: pointer;
}

.kk-star-ratings.kksr-disabled .kksr-stars .kksr-star {
	cursor: default;
}

.kk-star-ratings .kksr-stars .kksr-star .kksr-icon {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: background-image .2s ease;
}

.kk-star-ratings:not(.kksr-disabled) .kksr-stars:hover .kksr-stars-active {
	width: 0 !important;
}

.kk-star-ratings .kksr-stars .kksr-star .kksr-icon,
.kk-star-ratings:not(.kksr-disabled) .kksr-stars .kksr-star:hover ~ .kksr-star .kksr-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.8l2.8 5.9 6.4.8-4.7 4.4 1.2 6.4L12 17.2l-5.7 3.1 1.2-6.4-4.7-4.4 6.4-.8z' fill='%23e6e8ee' stroke='%23b3b9c4' stroke-width='1.3' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.kk-star-ratings .kksr-stars .kksr-stars-active .kksr-star .kksr-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.8l2.8 5.9 6.4.8-4.7 4.4 1.2 6.4L12 17.2l-5.7 3.1 1.2-6.4-4.7-4.4 6.4-.8z' fill='%23ffd84a' stroke='%2312151c' stroke-width='1.3' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.kk-star-ratings.kksr-disabled .kksr-stars .kksr-stars-active .kksr-star .kksr-icon,
.kk-star-ratings:not(.kksr-disabled) .kksr-stars:hover .kksr-star .kksr-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.8l2.8 5.9 6.4.8-4.7 4.4 1.2 6.4L12 17.2l-5.7 3.1 1.2-6.4-4.7-4.4 6.4-.8z' fill='%23ffc21a' stroke='%2312151c' stroke-width='1.3' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.kk-star-ratings .kksr-legend {
	color: var(--kq-doux);
	font-size: 15px !important;
	font-weight: 600;
}

/* Autrice. */
.kq-auteur {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 22px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 3px solid var(--kq-encre);
}

.kq-auteur img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
}

.kq-auteur__etiquette {
	color: var(--kq-doux);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.kq-auteur__nom {
	margin-top: 2px;
	font-size: 36px;
	font-weight: 900;
	line-height: 1;
}

.kq-auteur__bio {
	margin-top: 8px;
	font-size: 16px;
	line-height: 1.6;
}

.kq-auteur .kq-plus {
	display: inline-block;
	margin: 10px 0 0;
	font-size: 17px;
}

/* Articles similaires (YARPP). */
.kq-a-lire {
	margin-top: 40px;
	padding: 22px 26px 12px;
	background: var(--kq-fond);
}

.kq-a-lire h2 {
	font-size: 32px;
	font-weight: 900;
	text-transform: uppercase;
}

.kq-a-lire ul {
	margin-top: 12px;
	list-style: none;
	columns: 2;
	column-gap: 34px;
}

.kq-a-lire li {
	padding-block: 11px 12px;
	border-top: 2px solid var(--kq-encre);
	break-inside: avoid;
}

.kq-a-lire a {
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.05;
}

/* Commentaires. */
.kq-commentaires {
	padding-block: 20px 20px;
}

.kq-commentaires__in {
	max-width: 800px;
}

.kq-commentaires .kq-titre-section h2 {
	font-size: 34px;
}

.kq-commentaires ol {
	list-style: none;
}

.kq-commentaire {
	padding-block: 18px;
	border-bottom: 1px solid var(--kq-filet);
}

.kq-commentaire .children {
	margin-top: 12px;
	padding-left: 28px;
	border-left: 3px solid var(--kq-jaune);
}

.kq-commentaire__tete {
	color: var(--kq-doux);
	font-size: 14px;
}

.kq-commentaire__tete b {
	margin-right: .5em;
	color: var(--kq-encre);
	font-size: 16px;
}

.kq-commentaire__texte {
	margin-top: 6px;
	font-size: 17px;
}

.comment-reply-title {
	margin-top: 26px;
	font-size: 30px;
	font-weight: 900;
	text-transform: uppercase;
}

.comment-reply-title small {
	margin-left: 10px;
	font-family: var(--kq-sans);
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
}

.comment-form {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 14px;
}

.comment-form > p {
	margin: 0;
}

.comment-form .comment-notes,
.comment-form .comment-form-comment,
.comment-form .comment-form-cookies-consent,
.comment-form .form-submit,
.comment-form .akismet-fields-container {
	grid-column: 1 / -1;
}

.comment-form label {
	display: block;
	margin-bottom: 4px;
	color: var(--kq-encre);
	font-size: 14px;
	font-weight: 700;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea {
	width: 100%;
	padding: 12px 14px;
	border: 2px solid var(--kq-encre);
	border-radius: 0;
	background: #fff;
	font-size: 17px;
	-webkit-appearance: none;
	appearance: none;
}

.comment-form textarea,
.wpcf7 textarea {
	min-height: 150px;
	resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus {
	outline: none;
	box-shadow: inset 0 -5px 0 var(--kq-jaune);
}

.comment-form .comment-form-cookies-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14px;
}

.comment-form .comment-form-cookies-consent label {
	margin: 0;
	font-weight: 500;
}

/* À la suite de l'article. */
.kq-suite {
	padding-block: 44px 20px;
}

/* ==========================================================================
   10. Pages
   ========================================================================== */

.kq-page {
	max-width: 880px;
	padding-block: 40px 64px;
}

.kq-page__titre {
	margin-top: 12px;
	font-size: 72px;
	font-weight: 900;
	line-height: .92;
}

.kq-page .kq-texte {
	margin-top: 26px;
	padding-top: 22px;
	border-top: 3px solid var(--kq-encre);
}

.wpcf7 form > p {
	margin-top: 16px;
}

.wpcf7 .screen-reader-response {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7-spinner {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 0 14px;
	vertical-align: middle;
	visibility: hidden;
}

.wpcf7 form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7 label {
	display: block;
	color: var(--kq-encre);
	font-size: 15px;
	font-weight: 700;
}

.wpcf7 label input,
.wpcf7 label textarea {
	margin-top: 6px;
	font-weight: 400;
}

.wpcf7-not-valid-tip {
	margin-top: 4px;
	color: #b3261e;
	font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 12px 16px;
	border: 3px solid var(--kq-encre);
	font-size: 15px;
}

/* Plan du site (WP Sitemap Page). */
.kq-texte .wsp-container h2 {
	margin-top: 1.4em;
	font-size: 34px;
	text-transform: uppercase;
}

.kq-texte .wsp-container h2::before {
	display: none;
}

.kq-texte .wsp-container h3 {
	font-size: 24px;
}

.kq-texte .wsp-container ul {
	columns: 2;
	column-gap: 36px;
	font-size: 16px;
	line-height: 1.4;
}

.kq-texte .wsp-container ul > li {
	break-inside: avoid;
}

/* 404. */
.kq-erreur {
	padding-block: 56px 20px;
}

.kq-erreur__tete {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 44px;
	align-items: center;
}

.kq-erreur__code {
	position: relative;
	padding: .1em .22em 0 .5em;
	background: var(--kq-jaune);
	color: var(--kq-encre);
	font-family: var(--kq-serre);
	font-size: 180px;
	font-weight: 900;
	line-height: .86;
	clip-path: polygon(.3em 0, 100% 0, 100% 100%, .3em 100%, 0 50%);
}

.kq-erreur__code::before {
	content: "";
	position: absolute;
	top: 50%;
	left: .2em;
	width: .1em;
	height: .1em;
	border-radius: 50%;
	background: var(--kq-papier);
	transform: translateY(-50%);
}

.kq-erreur h1 {
	font-size: 68px;
	font-weight: 900;
	line-height: .92;
}

.kq-erreur__texte {
	max-width: 56ch;
	margin-top: 14px;
	font-size: 19px;
}

.kq-erreur .kq-form-recherche {
	margin-top: 24px;
}

.kq-erreur__rubriques {
	margin-top: 44px;
}

.kq-erreur__rubriques .kq-rubriques {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0 24px;
}

.kq-erreur__rubriques .kq-rubriques li {
	border-top: 3px solid var(--kq-r);
}

/* ==========================================================================
   11. Pied de page
   ========================================================================== */

.kq-pied {
	margin-top: 56px;
	background: var(--kq-encre);
	color: #c6cbd5;
}

.kq-pied__haut {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	gap: 44px;
	padding-block: 52px 44px;
}

.kq-pied .kq-marque {
	color: #fff;
	font-size: 50px;
}

.kq-pied .kq-marque__etiquette {
	color: var(--kq-encre);
}

.kq-pied .kq-marque__etiquette::before {
	background: var(--kq-encre);
}

.kq-pied__texte {
	max-width: 44ch;
	margin-top: 18px;
	font-size: 15px;
	line-height: 1.6;
}

.kq-pied h2 {
	padding-bottom: 9px;
	border-bottom: 3px solid var(--kq-jaune);
	color: #fff;
	font-size: 23px;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.kq-pied ul {
	margin-top: 10px;
	list-style: none;
}

.kq-pied li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-block: 6px;
	color: #fff;
	font-size: 15.5px;
	line-height: 1.35;
}

.kq-pied li a:hover {
	color: var(--kq-jaune);
}

.kq-pied .kq-carre {
	flex: none;
	width: 11px;
	height: 11px;
	background: var(--kq-r);
}

.kq-pied .kq-etiquette {
	width: 20px;
	height: 14px;
	background: var(--kq-jaune);
	clip-path: polygon(6px 0, 100% 0, 100% 100%, 6px 100%, 0 50%);
}

.kq-pied .kq-etiquette::before {
	left: 5px;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	background: var(--kq-encre);
}

.kq-pied__nombre {
	margin-left: auto;
	color: #8f97a5;
	font-size: 13.5px;
}

.kq-pied__bas {
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.kq-pied__bas .kq-large {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 24px;
	padding-block: 16px;
	color: #969dab;
	font-size: 13.5px;
}

/* Le chapeau peut contenir du gras ou un lien. */
.kq-chapeau strong,
.kq-chapeau b {
	font-weight: 700;
}

.kq-chapeau a {
	color: var(--kq-bleu);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

/* Rubrique courante quand un menu est enregistre dans WordPress. */
.kq-nav .current-menu-item > a,
.kq-nav .current-menu-parent > a,
.kq-nav .current-menu-ancestor > a {
	box-shadow: inset 0 -9px 0 var(--kq-r);
}

/* Liste des commentaires. */
.kq-commentaires__liste {
	list-style: none;
}

.kq-commentaires .kq-titre-section {
	margin-top: 20px;
}

/* Images des articles alignees par l'editeur. */
.kq-texte .alignleft {
	float: left;
	margin: .3em 1.4em 1em 0;
}

.kq-texte .alignright {
	float: right;
	margin: .3em 0 1em 1.4em;
}

.kq-texte .wp-caption {
	max-width: 100%;
}

/* ==========================================================================
   12. Écrans moyens
   ========================================================================== */

@media (max-width: 1180px) {
	.kq-nav ul {
		gap: 16px;
	}

	.kq-nav a {
		font-size: 19px;
	}

	.kq-marque {
		font-size: 48px;
	}

	.kq-une__titre {
		font-size: 54px;
	}

	.kq-article {
		grid-template-columns: minmax(0, 1fr) 270px;
		gap: 44px;
	}

	.kq-article__titre {
		font-size: 68px;
	}

	.kq-article__titre--long {
		font-size: 58px;
	}

	.kq-article__titre--tres-long {
		font-size: 50px;
	}

	.kq-liste {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 40px;
	}

	.kq-ligne {
		grid-template-columns: 210px minmax(0, 1fr);
		gap: 22px;
	}

	.kq-pied__haut {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.kq-pied__marque {
		grid-column: 1 / -1;
	}
}

/* ==========================================================================
   13. Tablettes : menu replié, une seule colonne
   ========================================================================== */

@media (max-width: 960px) {
	:root {
		--kq-gouttiere: 24px;
	}

	.kq-entete__in {
		min-height: 72px;
		gap: 12px;
	}

	.kq-marque {
		font-size: 44px;
	}

	.kq-entete__loupe {
		display: none;
	}

	.kq-entete__menu {
		display: grid;
		margin-left: auto;
	}

	.kq-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		margin: 0;
		padding: 6px var(--kq-gouttiere) 24px;
		border-bottom: 3px solid var(--kq-encre);
		background: var(--kq-papier);
		box-shadow: 0 18px 30px rgba(18, 21, 28, .12);
	}

	.kq-nav.est-ouvert {
		display: block;
	}

	.kq-nav ul {
		flex-direction: column;
		gap: 0;
	}

	.kq-nav li {
		border-bottom: 1px solid var(--kq-filet);
	}

	.kq-nav a {
		padding: 15px 0 13px 22px;
		font-size: 25px;
		box-shadow: inset 8px 0 0 var(--kq-r);
	}

	.kq-nav a:hover,
	.kq-nav .est-courant > a {
		box-shadow: inset 14px 0 0 var(--kq-r);
	}

	.kq-nav .kq-nav__recherche {
		display: flex;
		margin-top: 20px;
	}

	.kq-couverture {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}

	.kq-grille--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kq-peut-on {
		grid-template-columns: minmax(0, 1fr);
	}

	.kq-bloc-rubrique--large .kq-bloc-rubrique__corps,
	.kq-duo {
		grid-template-columns: minmax(0, 1fr);
	}

	.kq-duo {
		gap: 0;
	}

	.kq-liste {
		grid-template-columns: minmax(0, 1fr);
	}

	.kq-article {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.kq-article__cote {
		display: none;
	}

	.kq-sommaire--replie {
		display: block;
	}

	.kq-tete-liste__titre {
		font-size: 90px;
	}

	.kq-erreur__rubriques .kq-rubriques {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ==========================================================================
   14. Téléphones
   ========================================================================== */

@media (max-width: 640px) {
	:root {
		--kq-gouttiere: 16px;
	}

	body {
		font-size: 16px;
	}

	.kq-bandeau {
		font-size: 12px;
	}

	.kq-bandeau__accroche {
		display: none;
	}

	.kq-entete__in {
		min-height: 64px;
		padding-block: 10px;
	}

	.kq-marque {
		font-size: 38px;
	}

	.kq-bouton-rond {
		width: 42px;
		height: 42px;
	}

	.kq-form-recherche input[type="search"] {
		height: 52px;
		font-size: 17px;
	}

	.kq-form-recherche button {
		height: 52px;
		padding-inline: 16px;
		font-size: 20px;
	}

	.kq-section {
		padding-top: 30px;
	}

	.kq-titre-section h2 {
		font-size: 32px;
	}

	.kq-plus {
		font-size: 17px;
	}

	.kq-couverture {
		padding-top: 16px;
	}

	.kq-une__texte {
		padding-top: 14px;
	}

	.kq-une__titre {
		font-size: 42px;
	}

	.kq-une__titre--long {
		font-size: 37px;
	}

	.kq-chapeau {
		font-size: 17.5px;
	}

	.kq-combien {
		padding: 20px 18px 16px;
	}

	.kq-combien__titre {
		font-size: 42px;
	}

	.kq-combien li a {
		font-size: 22px;
	}

	.kq-grille {
		gap: 24px 14px;
	}

	.kq-carte__titre {
		font-size: 21px;
	}

	.kq-carte .kq-meta {
		display: none;
	}

	.kq-carte--principale .kq-carte__titre {
		font-size: 31px;
	}

	.kq-bloc-rubrique .kq-grille--2 .kq-carte .kq-rubrique {
		display: none;
	}

	.kq-peut-on {
		margin-inline: calc(-1 * var(--kq-gouttiere));
		padding: 22px var(--kq-gouttiere);
	}

	.kq-peut-on__titre {
		font-size: 40px;
	}

	.kq-peut-on ul {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.kq-peut-on li a {
		font-size: 23px;
	}

	.kq-titres a {
		font-size: 21px;
	}

	.kq-tete-liste .kq-large {
		padding-block: 22px 22px;
	}

	.kq-tete-liste__titre {
		font-size: 62px;
	}

	.kq-tete-liste__titre--long {
		font-size: 48px;
	}

	.kq-tete-liste--recherche .kq-tete-liste__titre {
		font-size: 50px;
	}

	.kq-tete-liste--auteur .kq-large {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 16px;
	}

	.kq-tete-liste--auteur img {
		width: 76px;
		height: 76px;
	}

	.kq-liste {
		padding-block: 24px 44px;
	}

	.kq-une--liste {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.kq-une--liste .kq-une__texte {
		padding-top: 14px;
	}

	.kq-une--liste .kq-une__titre,
	.kq-une--liste .kq-une__titre--long {
		font-size: 36px;
	}

	.kq-ligne {
		grid-template-columns: 116px minmax(0, 1fr);
		gap: 14px;
		padding-block: 16px;
	}

	.kq-ligne--texte {
		grid-template-columns: minmax(0, 1fr);
	}

	.kq-ligne__titre {
		font-size: 22px;
	}

	.kq-ligne__extrait {
		display: none;
	}

	.kq-ligne .kq-meta {
		margin-top: 5px;
		font-size: 13px;
	}

	.kq-ligne__haut {
		font-size: 13px;
	}

	.kq-article {
		padding-top: 20px;
	}

	.kq-article__titre {
		font-size: 48px;
	}

	.kq-article__titre--long {
		font-size: 42px;
	}

	.kq-article__titre--tres-long {
		font-size: 37px;
	}

	.kq-article__tete .kq-chapeau {
		margin-top: 16px;
		font-size: 18px;
	}

	.kq-signature {
		align-items: flex-start;
		margin-top: 18px;
	}

	.kq-signature img {
		width: 40px;
		height: 40px;
	}

	.kq-signature p {
		font-size: 13.5px;
	}

	.kq-article__image {
		margin-top: 18px;
		margin-inline: calc(-1 * var(--kq-gouttiere));
	}

	.kq-texte {
		margin-top: 26px;
		font-size: 17.5px;
		line-height: 1.7;
	}

	.kq-texte h2 {
		font-size: 33px;
	}

	.kq-texte h2::before {
		width: 52px;
		height: 6px;
		margin-bottom: 11px;
	}

	.kq-texte h3 {
		font-size: 25px;
	}

	.kq-texte .kq-renvoi a {
		font-size: 22px;
	}

	.kq-note__titre {
		font-size: 24px;
	}

	.kq-auteur {
		grid-template-columns: 64px minmax(0, 1fr);
		gap: 16px;
	}

	.kq-auteur img {
		width: 64px;
		height: 64px;
	}

	.kq-auteur__nom {
		font-size: 30px;
	}

	.kq-a-lire {
		margin-inline: calc(-1 * var(--kq-gouttiere));
		padding-inline: var(--kq-gouttiere);
	}

	.kq-a-lire ul {
		columns: 1;
	}

	.comment-form {
		grid-template-columns: minmax(0, 1fr);
	}

	.kq-page__titre {
		font-size: 48px;
	}

	.kq-texte .wsp-container ul {
		columns: 1;
	}

	.kq-erreur {
		padding-top: 32px;
	}

	.kq-erreur__tete {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
		justify-items: start;
	}

	.kq-erreur__code {
		font-size: 120px;
	}

	.kq-erreur h1 {
		font-size: 46px;
	}

	.kq-pied__haut {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
		padding-block: 38px 30px;
	}

	.kq-pied .kq-marque {
		font-size: 42px;
	}
}

/* ==========================================================================
   15. Préférences
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition: none !important;
	}
}

@media print {
	.kq-bandeau,
	.kq-entete__menu,
	.kq-entete__loupe,
	.kq-nav,
	.kq-recherche,
	.kq-article__cote,
	.kq-sommaire--replie,
	.kq-note,
	.kq-suite,
	.kq-commentaires,
	.kq-pied {
		display: none !important;
	}

	.kq-article {
		display: block;
	}
}
