/* ==========================================================================
   Blog — Listing, cartes d'articles, article seul, commentaires, widgets
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. En-tête de la page Blog
   -------------------------------------------------------------------------- */

.gp-blog-header {
	padding-bottom: 60px;
}

.gp-blog-header h1 {
	margin-bottom: 14px;
}

.gp-blog-header p {
	max-width: 760px;
}

/* --------------------------------------------------------------------------
   2. Filtres par catégorie et recherche
   -------------------------------------------------------------------------- */

.gp-blog-filters {
	position: sticky;
	top: 78px;
	z-index: 90;
	background: rgba(253, 252, 249, 0.96);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(17, 17, 17, 0.07);
	padding: 16px 0;
}

.gp-blog-filters .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.gp-blog-filters ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gp-blog-filters a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 18px;
	border: 1px solid rgba(17, 17, 17, 0.12);
	border-radius: 50px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.6px;
	color: var(--text-dark);
	text-decoration: none;
	transition: var(--transition);
	white-space: nowrap;
}

.gp-blog-filters a:hover {
	border-color: var(--secondary-color);
	color: var(--secondary-dark);
}

.gp-blog-filters a.is-active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--text-light);
}

.gp-blog-filters .gp-count {
	font-size: 0.7rem;
	opacity: 0.6;
}

/* --------------------------------------------------------------------------
   3. Grille d'articles
   -------------------------------------------------------------------------- */

.gp-blog-wrap {
	padding-bottom: 40px;
}

.gp-blog-wrap > .container {
	padding-top: 60px;
}

.gp-posts-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
}

@media (min-width: 992px) {
	.gp-posts-grid {
		grid-template-columns: repeat(var(--gp-cols, 3), minmax(0, 1fr));
	}
}

/* Carte d'article. */
.gp-post-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid rgba(17, 17, 17, 0.07);
	border-radius: var(--gp-radius);
	overflow: hidden;
	transition: var(--transition);
	height: 100%;
}

@media (hover: hover) {
	.gp-post-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
		border-color: rgba(197, 160, 89, 0.35);
	}
}

.gp-post-card-link {
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.gp-post-card-media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #f2efe9;
	overflow: hidden;
}

.gp-post-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (hover: hover) {
	.gp-post-card:hover .gp-post-card-media img {
		transform: scale(1.06);
	}
}

.gp-post-card-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: rgba(197, 160, 89, 0.5);
	font-size: 2.2rem;
}

.gp-post-card-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px 24px 22px;
	flex: 1 1 auto;
}

.gp-post-card-cat {
	align-self: flex-start;
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--secondary-dark);
	text-decoration: none;
}

a.gp-post-card-cat:hover {
	color: var(--primary-color);
}

.gp-post-card-title {
	margin: 0;
	font-family: var(--font-titles);
	font-size: 1.22rem;
	line-height: 1.35;
}

.gp-post-card-title a {
	color: var(--text-dark);
	text-decoration: none;
}

.gp-post-card-title a:hover {
	color: var(--secondary-dark);
}

.gp-post-card-excerpt {
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.7;
	color: var(--text-muted-dark);
	flex: 1 1 auto;
}

.gp-post-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(17, 17, 17, 0.06);
	font-size: 0.78rem;
	color: var(--text-muted-dark);
}

.gp-post-card-reading {
	color: var(--secondary-dark);
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   4. Article mis en une
   -------------------------------------------------------------------------- */

.gp-post-featured {
	display: grid;
	gap: 0;
	margin-bottom: 60px;
	background: #111111;
	border-radius: var(--gp-radius);
	overflow: hidden;
	grid-template-columns: 1fr;
}

@media (min-width: 992px) {
	.gp-post-featured {
		grid-template-columns: 1.15fr 1fr;
		align-items: stretch;
	}
}

.gp-post-featured-media {
	display: block;
	position: relative;
	min-height: 280px;
	overflow: hidden;
	background: #1c1c1c;
}

.gp-post-featured-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (hover: hover) {
	.gp-post-featured:hover .gp-post-featured-media img {
		transform: scale(1.05);
	}
}

.gp-post-featured-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 280px;
	color: rgba(197, 160, 89, 0.45);
	font-size: 3rem;
}

.gp-post-featured-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 45px 40px;
	color: var(--text-light);
}

.gp-post-featured-label {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	color: var(--secondary-color);
}

.gp-post-featured-body .gp-post-card-cat {
	color: var(--secondary-color);
}

.gp-post-featured-title {
	margin: 0;
	font-family: var(--font-titles);
	font-size: clamp(1.4rem, 3vw, 2rem);
	line-height: 1.25;
}

.gp-post-featured-title a {
	color: var(--text-light);
	text-decoration: none;
}

.gp-post-featured-title a:hover {
	color: var(--secondary-color);
}

.gp-post-featured-excerpt {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.8;
	color: rgba(253, 252, 249, 0.78);
	flex: 1 1 auto;
}

.gp-post-featured-body .gp-post-card-meta {
	border-top-color: rgba(255, 255, 255, 0.1);
	color: rgba(253, 252, 249, 0.6);
}

.gp-post-featured-cta {
	margin: 6px 0 0;
}

@media (max-width: 768px) {
	.gp-post-featured-body {
		padding: 30px 24px;
	}
}

/* --------------------------------------------------------------------------
   5. Article seul
   -------------------------------------------------------------------------- */

.gp-article-header {
	position: relative;
	padding: 90px 0 60px;
	background: linear-gradient(180deg, #111111 0%, #1c1c1c 100%);
	color: var(--text-light);
	overflow: hidden;
}

.gp-article-header.has-image {
	padding: 140px 0 80px;
}

.gp-article-hero {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.gp-article-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gp-article-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.75) 0%, rgba(17, 17, 17, 0.92) 100%);
}

.gp-article-header .container {
	position: relative;
	z-index: 2;
	max-width: 860px;
}

.gp-article-header h1 {
	color: var(--text-light);
	margin-bottom: 22px;
	font-size: clamp(1.7rem, 4.5vw, 2.9rem);
	line-height: 1.2;
}

.gp-article-header .gp-hero-eyebrow a {
	color: var(--secondary-color);
	text-decoration: none;
}

.gp-article-header .gp-hero-eyebrow a:hover {
	text-decoration: underline;
}

/* Métadonnées de l'article. */
.gp-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 22px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.82rem;
	color: rgba(253, 252, 249, 0.62);
}

.gp-post-meta li {
	display: flex;
	align-items: center;
	gap: 7px;
}

.gp-post-meta a {
	color: rgba(253, 252, 249, 0.78);
	text-decoration: none;
}

.gp-post-meta a:hover {
	color: var(--secondary-color);
}

.gp-post-meta-cat a {
	color: var(--secondary-color);
	font-weight: 600;
}

.gp-post-meta-reading::before {
	content: '·';
	margin-right: 12px;
	opacity: 0.5;
}

/* Mise en page à deux colonnes : contenu + colonne latérale. */
.gp-article-layout {
	display: grid;
	gap: 55px;
	grid-template-columns: 1fr;
	max-width: var(--gp-container);
	margin: 0 auto;
	padding: 60px 20px 40px;
	align-items: start;
}

@media (min-width: 1100px) {
	.gp-article-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
	}
}

.gp-article-main {
	min-width: 0;
}

.gp-article-body {
	font-size: 1.05rem;
}

.gp-article-body > * + * {
	margin-top: 1.5em;
}

.gp-article-body h2 {
	scroll-margin-top: 110px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.gp-article-body h3 {
	scroll-margin-top: 110px;
	color: var(--secondary-dark);
}

/* Le premier paragraphe est mis en valeur. */
.gp-article-body > p:first-of-type {
	font-size: 1.14rem;
	line-height: 1.85;
	color: #1f1f1f;
}

/* Étiquettes. */
.gp-article-tags {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.gp-article-tags-title {
	font-size: 0.8rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--text-muted-dark);
	margin-bottom: 14px;
}

.gp-article-tags ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gp-article-tags a {
	display: inline-block;
	padding: 7px 16px;
	background: rgba(197, 160, 89, 0.09);
	border: 1px solid rgba(197, 160, 89, 0.25);
	border-radius: 50px;
	font-size: 0.8rem;
	color: var(--secondary-dark);
	text-decoration: none;
	transition: var(--transition);
}

.gp-article-tags a:hover {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	color: var(--primary-color);
}

.gp-article-source {
	margin-top: 24px;
	font-size: 0.85rem;
	color: var(--text-muted-dark);
}

/* Navigation entre articles. */
.gp-article-nav {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin-top: 45px;
}

@media (min-width: 768px) {
	.gp-article-nav {
		grid-template-columns: 1fr 1fr;
	}
}

.gp-article-nav-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 22px 24px;
	background: var(--bg-light);
	border: 1px solid rgba(17, 17, 17, 0.07);
	border-radius: var(--gp-radius);
	text-decoration: none;
	transition: var(--transition);
}

.gp-article-nav-item:hover {
	border-color: var(--secondary-color);
	background: #ffffff;
}

.gp-article-nav-next {
	text-align: right;
}

.gp-article-nav-label {
	font-size: 0.72rem;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--secondary-dark);
	font-weight: 700;
}

.gp-article-nav-title {
	font-family: var(--font-titles);
	font-size: 1.02rem;
	color: var(--text-dark);
	line-height: 1.4;
}

/* --------------------------------------------------------------------------
   6. Colonne latérale et sommaire
   -------------------------------------------------------------------------- */

.gp-article-sidebar {
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: sticky;
	top: 100px;
}

@media (max-width: 1099px) {
	.gp-article-sidebar {
		position: static;
	}
}

.gp-toc {
	background: var(--bg-light);
	border: 1px solid rgba(197, 160, 89, 0.25);
	border-radius: var(--gp-radius);
	padding: 24px 26px;
}

.gp-toc-title {
	margin: 0 0 14px;
	font-size: 0.78rem;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--secondary-dark);
}

.gp-toc ol {
	list-style: none;
	counter-reset: gp-toc;
	margin: 0;
	padding: 0;
}

.gp-toc li {
	counter-increment: gp-toc;
	position: relative;
	padding-left: 26px;
	margin-bottom: 10px;
	font-size: 0.9rem;
	line-height: 1.5;
}

.gp-toc li::before {
	content: counter(gp-toc);
	position: absolute;
	left: 0;
	top: 0;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--secondary-color);
}

.gp-toc a {
	color: var(--text-dark);
	text-decoration: none;
}

.gp-toc a:hover {
	color: var(--secondary-dark);
	text-decoration: underline;
}

/* Widgets. */
.gp-widget {
	margin-bottom: 30px;
}

.gp-widget-title {
	font-size: 0.8rem;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--text-dark);
	margin: 0 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.gp-widget-posts {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gp-widget-posts li {
	display: flex;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.gp-widget-posts li:last-child {
	border-bottom: 0;
}

.gp-widget-post-thumb {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 8px;
	overflow: hidden;
	display: block;
}

.gp-widget-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gp-widget-post-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.gp-widget-post-title {
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 600;
}

.gp-widget-post-title:hover {
	color: var(--secondary-dark);
}

.gp-widget-post-date {
	font-size: 0.75rem;
	color: var(--text-muted-dark);
}

.gp-widget-contact {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.gp-widget-contact li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 12px;
	font-size: 0.9rem;
	line-height: 1.6;
}

.gp-widget-contact i {
	color: var(--secondary-color);
	margin-top: 4px;
	width: 16px;
	text-align: center;
}

.gp-widget-contact a {
	color: var(--text-dark);
	text-decoration: none;
}

.gp-widget-contact a:hover {
	color: var(--secondary-dark);
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   7. Encart auteur
   -------------------------------------------------------------------------- */

.gp-author-box {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-top: 50px;
	padding: 30px;
	background: var(--bg-light);
	border: 1px solid rgba(197, 160, 89, 0.22);
	border-radius: var(--gp-radius);
}

.gp-author-avatar {
	flex-shrink: 0;
}

.gp-author-avatar img,
.gp-author-avatar-placeholder {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(197, 160, 89, 0.35);
}

.gp-author-avatar-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: var(--secondary-color);
	font-size: 1.6rem;
}

.gp-author-body {
	min-width: 0;
}

.gp-author-label {
	margin: 0 0 4px;
	font-size: 0.7rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--secondary-dark);
	font-weight: 700;
}

.gp-author-name {
	margin: 0 0 10px;
	font-size: 1.25rem;
}

.gp-author-bio {
	margin: 0 0 16px;
	font-size: 0.93rem;
	line-height: 1.75;
	color: var(--text-muted-dark);
}

.gp-author-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
}

.gp-author-actions .btn {
	padding: 11px 24px;
	font-size: 0.82rem;
}

@media (max-width: 640px) {
	.gp-author-box {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.gp-author-actions {
		justify-content: center;
	}
}

/* --------------------------------------------------------------------------
   8. Articles liés
   -------------------------------------------------------------------------- */

.gp-related .section-title {
	margin-bottom: 45px;
}

/* --------------------------------------------------------------------------
   9. Encart d'inscription
   -------------------------------------------------------------------------- */

.gp-newsletter {
	margin-top: 70px;
	border-radius: var(--gp-radius);
	overflow: hidden;
	background: linear-gradient(135deg, #111111 0%, #1f1f1f 100%);
	color: var(--text-light);
	position: relative;
}

.gp-newsletter::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 15% 20%, rgba(197, 160, 89, 0.14) 0%, transparent 55%);
	pointer-events: none;
}

.gp-newsletter-inner {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 35px;
	padding: 50px 45px;
	grid-template-columns: 1fr;
	align-items: center;
}

@media (min-width: 900px) {
	.gp-newsletter-inner {
		grid-template-columns: 1fr 1fr;
	}
}

.gp-newsletter-copy h2 {
	color: var(--text-light);
	font-size: clamp(1.3rem, 3vw, 1.75rem);
	margin-bottom: 12px;
}

.gp-newsletter-copy p {
	margin: 0;
	color: rgba(253, 252, 249, 0.75);
	font-size: 0.95rem;
	line-height: 1.8;
}

.gp-newsletter-fields {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.gp-newsletter-form input[type='email'],
.gp-newsletter-form input[type='text']:not(.gp-honeypot input) {
	flex: 1 1 220px;
	min-width: 0;
	padding: 15px 20px;
	border: 1px solid rgba(197, 160, 89, 0.35);
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-light);
	font-family: var(--font-text);
	font-size: 0.95rem;
}

.gp-newsletter-form input::placeholder {
	color: rgba(253, 252, 249, 0.45);
}

.gp-newsletter-form input:focus {
	outline: none;
	border-color: var(--secondary-color);
	background: rgba(255, 255, 255, 0.1);
}

.gp-newsletter-form .btn {
	padding: 15px 32px;
	border: 0;
	cursor: pointer;
	font-family: var(--font-text);
}

/* Champ leurre : invisible pour les humains, visible pour les robots. */
.gp-honeypot {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.gp-newsletter-status {
	margin: 14px 0 0;
	font-size: 0.88rem;
	min-height: 1.2em;
}

.gp-newsletter-status.is-success {
	color: #8fd19e;
}

.gp-newsletter-status.is-error {
	color: #f0a5a5;
}

.gp-newsletter-legal {
	margin: 12px 0 0;
	font-size: 0.76rem;
	color: rgba(253, 252, 249, 0.45);
	line-height: 1.6;
}

.gp-newsletter-legal a {
	color: rgba(253, 252, 249, 0.65);
	text-decoration: underline;
}

@media (max-width: 640px) {
	.gp-newsletter-inner {
		padding: 35px 24px;
	}

	.gp-newsletter-fields .btn {
		width: 100%;
	}
}

/* --------------------------------------------------------------------------
   10. Pagination
   -------------------------------------------------------------------------- */

.gp-pagination {
	margin: 60px 0 20px;
}

.gp-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gp-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid rgba(17, 17, 17, 0.12);
	border-radius: 50px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text-dark);
	text-decoration: none;
	transition: var(--transition);
}

.gp-pagination a.page-numbers:hover {
	border-color: var(--secondary-color);
	color: var(--secondary-dark);
}

.gp-pagination .page-numbers.is-active,
.gp-pagination .page-numbers.current {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--text-light);
}

.gp-pagination .page-numbers.dots {
	border-color: transparent;
	min-width: auto;
}

/* --------------------------------------------------------------------------
   11. Aucun résultat
   -------------------------------------------------------------------------- */

.gp-no-results {
	text-align: center;
	padding: 60px 20px;
	max-width: 620px;
	margin: 0 auto;
}

.gp-no-results > i {
	font-size: 2.6rem;
	color: rgba(197, 160, 89, 0.5);
	margin-bottom: 20px;
	display: block;
}

.gp-no-results h2 {
	margin-bottom: 14px;
}

.gp-no-results p {
	color: var(--text-muted-dark);
	line-height: 1.8;
}

.gp-no-results-search {
	max-width: 440px;
	margin: 26px auto;
}

.gp-no-results-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

/* --------------------------------------------------------------------------
   12. Formulaire de recherche
   -------------------------------------------------------------------------- */

.gp-search-form {
	max-width: 420px;
}

.gp-search-fields {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1px solid rgba(17, 17, 17, 0.14);
	border-radius: 50px;
	overflow: hidden;
	background: #ffffff;
	transition: var(--transition);
}

.gp-search-fields:focus-within {
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.gp-search-input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px 20px;
	border: 0;
	background: transparent;
	font-family: var(--font-text);
	font-size: 0.9rem;
	color: var(--text-dark);
}

.gp-search-input:focus {
	outline: none;
}

.gp-search-submit {
	flex-shrink: 0;
	width: 48px;
	height: 46px;
	border: 0;
	background: var(--primary-color);
	color: var(--secondary-color);
	cursor: pointer;
	transition: var(--transition);
}

.gp-search-submit:hover {
	background: var(--secondary-color);
	color: var(--primary-color);
}

.gp-search-header-form {
	margin-top: 28px;
}

.gp-search-header-form .gp-search-form {
	margin: 0 auto;
}

.gp-search-header-form .gp-search-fields {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(197, 160, 89, 0.3);
}

.gp-search-header-form .gp-search-input {
	color: var(--text-light);
}

.gp-search-header-form .gp-search-input::placeholder {
	color: rgba(253, 252, 249, 0.5);
}

/* --------------------------------------------------------------------------
   13. Commentaires
   -------------------------------------------------------------------------- */

.gp-comments {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.gp-comments-title,
.comment-reply-title {
	font-size: 1.35rem;
	margin-bottom: 26px;
}

.gp-comment-list,
.gp-comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gp-comment-list .children {
	margin-left: 0;
	padding-left: 30px;
	border-left: 1px solid rgba(197, 160, 89, 0.25);
}

.gp-comment-list > li {
	margin-bottom: 26px;
}

.gp-comment-list .comment-body {
	padding: 22px 24px;
	background: var(--bg-light);
	border: 1px solid rgba(17, 17, 17, 0.07);
	border-radius: var(--gp-radius);
}

.gp-comment-list .comment-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.gp-comment-list .comment-author img {
	border-radius: 50%;
}

.gp-comment-list .comment-author .fn {
	font-family: var(--font-titles);
	font-weight: 700;
	font-size: 1rem;
	font-style: normal;
}

.gp-comment-list .comment-metadata {
	font-size: 0.78rem;
	color: var(--text-muted-dark);
}

.gp-comment-list .comment-metadata a {
	color: var(--text-muted-dark);
	text-decoration: none;
}

.gp-comment-list .comment-content {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #2b2b2b;
}

.gp-comment-list .comment-content p:last-child {
	margin-bottom: 0;
}

.gp-comment-list .reply a {
	display: inline-block;
	margin-top: 10px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--secondary-dark);
	text-decoration: none;
}

.gp-comment-list .reply a:hover {
	color: var(--primary-color);
}

.gp-comment-moderation {
	font-size: 0.85rem;
	font-style: italic;
	color: var(--text-muted-dark);
}

/* Formulaire de commentaire. */
.comment-form {
	margin-top: 40px;
}

.comment-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-dark);
}

.comment-form input[type='text'],
.comment-form input[type='email'],
.comment-form input[type='url'],
.comment-form textarea {
	width: 100%;
	padding: 13px 18px;
	border: 1px solid rgba(17, 17, 17, 0.14);
	border-radius: 10px;
	font-family: var(--font-text);
	font-size: 0.95rem;
	color: var(--text-dark);
	background: #ffffff;
	transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.comment-form textarea {
	resize: vertical;
	min-height: 140px;
}

.comment-form .comment-notes,
.comment-form .logged-in-as {
	font-size: 0.85rem;
	color: var(--text-muted-dark);
	margin-bottom: 22px;
}

.comment-form .form-submit {
	margin-top: 22px;
}

.comment-form .submit {
	padding: 15px 38px;
	border: 0;
	border-radius: 50px;
	background: var(--secondary-color);
	color: var(--primary-color);
	font-family: var(--font-text);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: var(--transition);
}

.comment-form .submit:hover {
	background: var(--secondary-dark);
	color: var(--text-light);
}

.comment-form .required {
	color: #b32d2e;
}

/* --------------------------------------------------------------------------
   14. Adaptation mobile
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
	.gp-blog-filters {
		position: static;
	}

	.gp-blog-filters .container {
		flex-direction: column;
		align-items: stretch;
	}

	.gp-blog-filters ul {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 6px;
		-webkit-overflow-scrolling: touch;
	}

	.gp-blog-filters .gp-search-form {
		max-width: 100%;
	}

	.gp-article-header {
		padding: 60px 0 45px;
	}

	.gp-article-header.has-image {
		padding: 100px 0 55px;
	}

	.gp-article-layout {
		padding: 40px 16px 20px;
		gap: 40px;
	}

	.gp-comment-list .children {
		padding-left: 16px;
	}

	.gp-post-card-body {
		padding: 20px 20px 18px;
	}
}
