/* ==========================================================================
   DiGiProUnic - Design System
   Thème enfant GeneratePress
   Palette : navy / sky / cyan (aucun violet), icônes SVG officielles.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variables & base
   -------------------------------------------------------------------------- */
:root {
	/* Couleurs */
	--dpu-navy-950: #06101f;
	--dpu-navy-900: #0a1628;
	--dpu-navy-800: #0f1f3a;
	--dpu-navy-700: #16294d;
	--dpu-primary: #0ea5e9;
	--dpu-primary-2: #22d3ee;
	--dpu-accent: #14b8a6;
	--dpu-success: #10b981;
	--dpu-warning: #f59e0b;
	--dpu-danger: #ef4444;
	--dpu-text: #1e293b;
	--dpu-text-soft: #475569;
	--dpu-muted: #64748b;
	--dpu-border: #e2e8f0;
	--dpu-border-strong: #cbd5e1;
	--dpu-bg: #f8fafc;
	--dpu-bg-alt: #f1f5f9;
	--dpu-white: #ffffff;

	/* Dégradés */
	--dpu-gradient: linear-gradient(135deg, var(--dpu-primary) 0%, var(--dpu-primary-2) 100%);
	--dpu-gradient-soft: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(34, 211, 238, 0.12));

	/* Typographie */
	--dpu-font-heading: 'Space Grotesk', 'Inter', -apple-system, system-ui, sans-serif;
	--dpu-font-body: 'Inter', -apple-system, system-ui, 'Segoe UI', sans-serif;

	/* Mesures */
	--dpu-radius-sm: 8px;
	--dpu-radius: 14px;
	--dpu-radius-lg: 20px;
	--dpu-shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06), 0 1px 3px rgba(10, 22, 40, 0.1);
	--dpu-shadow: 0 4px 14px rgba(10, 22, 40, 0.08);
	--dpu-shadow-lg: 0 12px 32px rgba(10, 22, 40, 0.12);
	--dpu-container: 1200px;
	--dpu-gutter: clamp(18px, 4vw, 28px);

	/* Courbe d'animation premium (départ rapide, fin douce). */
	--dpu-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body,
button,
input,
select,
optgroup,
textarea {
	font-family: var(--dpu-font-body);
	color: var(--dpu-text);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--dpu-font-heading);
	line-height: 1.2;
	color: var(--dpu-navy-900);
}

a {
	color: var(--dpu-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
	color: var(--dpu-navy-700);
	text-decoration: underline;
}

:focus-visible {
	outline: 3px solid rgba(14, 165, 233, 0.5);
	outline-offset: 2px;
	border-radius: 4px;
}

img {
	max-width: 100%;
	height: auto;
}

::selection {
	background: rgba(14, 165, 233, 0.2);
}

/* Barre de défilement personnalisée (WebKit + Firefox). */
::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: var(--dpu-bg-alt);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--dpu-primary), var(--dpu-primary-2));
	border: 3px solid var(--dpu-bg-alt);
	border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #0284c7, #06b6d4);
}

@supports (scrollbar-color: auto) {
	html {
		scrollbar-color: var(--dpu-primary) var(--dpu-bg-alt);
		scrollbar-width: thin;
	}
}

/* --------------------------------------------------------------------------
   2. Conteneurs & entêtes de section
   -------------------------------------------------------------------------- */
.dpu-container {
	max-width: var(--dpu-container);
	margin-inline: auto;
	padding-inline: var(--dpu-gutter);
}

.dpu-section-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 26px;
}

.dpu-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--dpu-primary);
	background: var(--dpu-gradient-soft);
	border: 1px solid rgba(14, 165, 233, 0.2);
	padding: 7px 16px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.dpu-section-head h2 {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	margin: 0 0 6px;
}

.dpu-section-head h2::after {
	content: '';
	display: block;
	width: 58px;
	height: 3px;
	margin: 12px auto 0;
	border-radius: 3px;
	background: var(--dpu-gradient);
	box-shadow: 0 3px 12px rgba(14, 165, 233, 0.45);
}

/* --------------------------------------------------------------------------
   3. Boutons
   -------------------------------------------------------------------------- */
.dpu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 12px 22px;
	border-radius: 10px;
	font-family: var(--dpu-font-heading);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.2;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
	text-decoration: none;
}

.dpu-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.dpu-btn svg {
	flex: none;
}

.dpu-btn-lg {
	padding: 15px 28px;
	font-size: 16px;
	border-radius: 12px;
}

.dpu-btn-block {
	width: 100%;
}

.dpu-btn-primary {
	position: relative;
	overflow: hidden;
	background: var(--dpu-gradient);
	color: #fff;
	box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.dpu-btn-primary::after {
	content: '';
	position: absolute;
	top: 0;
	left: -80%;
	width: 45%;
	height: 100%;
	background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
	transform: skewX(-20deg);
	pointer-events: none;
	transition: left 0.5s var(--dpu-ease);
}

.dpu-btn-primary:hover::after {
	left: 135%;
}

.dpu-btn-primary:hover,
.dpu-btn-primary:focus-visible {
	background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
	color: #fff;
	box-shadow: 0 10px 26px rgba(14, 165, 233, 0.4);
}

.dpu-btn-light {
	background: rgba(255, 255, 255, 0.96);
	color: var(--dpu-navy-900);
	box-shadow: 0 8px 20px rgba(6, 16, 31, 0.25);
}

.dpu-btn-light:hover,
.dpu-btn-light:focus-visible {
	background: #fff;
	color: var(--dpu-navy-900);
}

.dpu-btn-ghost {
	background: transparent;
	color: var(--dpu-navy-800);
	border-color: var(--dpu-border-strong);
}

.dpu-btn-ghost:hover,
.dpu-btn-ghost:focus-visible {
	border-color: var(--dpu-primary);
	color: var(--dpu-primary);
	background: var(--dpu-gradient-soft);
}

.dpu-btn.is-loading {
	pointer-events: none;
	opacity: 0.75;
}

/* --------------------------------------------------------------------------
   4. HÉROS (page d'accueil)
   -------------------------------------------------------------------------- */
.dpu-hero {
	position: relative;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	overflow: hidden;
	padding: clamp(90px, 12vw, 150px) 0 clamp(70px, 9vw, 110px);
	color: #fff;
	background:
		radial-gradient(1100px 560px at 12% -12%, rgba(14, 165, 233, 0.4), transparent 60%),
		radial-gradient(900px 520px at 108% 18%, rgba(34, 211, 238, 0.25), transparent 55%),
		linear-gradient(160deg, var(--dpu-navy-950) 0%, var(--dpu-navy-900) 48%, var(--dpu-navy-700) 100%);
}

/* Orbes lumineux animés derrière le contenu du héros. */
.dpu-hero::before,
.dpu-hero::after {
	content: '';
	position: absolute;
	z-index: 0;
	border-radius: 50%;
	filter: blur(70px);
	pointer-events: none;
}

.dpu-hero::before {
	width: 480px;
	height: 480px;
	top: -160px;
	left: -120px;
	background: rgba(14, 165, 233, 0.35);
	animation: dpu-orb-a 16s ease-in-out infinite alternate;
}

.dpu-hero::after {
	width: 420px;
	height: 420px;
	bottom: -140px;
	right: -100px;
	background: rgba(20, 184, 166, 0.28);
	animation: dpu-orb-b 18s ease-in-out infinite alternate;
}

@keyframes dpu-orb-a {
	to {
		transform: translate(90px, 60px) scale(1.15);
	}
}

@keyframes dpu-orb-b {
	to {
		transform: translate(-80px, -50px) scale(1.1);
	}
}

.dpu-hero-bg {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
}

.dpu-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 860px;
	margin-inline: auto;
	padding-inline: var(--dpu-gutter);
	text-align: center;
}

.dpu-hero-title {
	position: relative;
	margin: 26px 0 20px;
	font-size: clamp(32px, 6vw, 60px);
	font-weight: 700;
	line-height: 1.08;
	color: #fff;
	letter-spacing: -0.02em;
}

.dpu-hero-title::after {
	content: '';
	display: block;
	width: 88px;
	height: 4px;
	margin: 20px auto 0;
	border-radius: 4px;
	background: var(--dpu-gradient);
	box-shadow: 0 4px 18px rgba(14, 165, 233, 0.6);
}

.dpu-hero-text {
	margin: 0 auto 34px;
	max-width: 640px;
	font-size: clamp(16px, 2vw, 19px);
	line-height: 1.7;
	color: rgba(226, 232, 240, 0.92);
}

.dpu-hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.dpu-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	max-width: 640px;
	margin: 54px auto 0;
}

.dpu-stat {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--dpu-radius);
	padding: 18px 14px;
	backdrop-filter: blur(6px);
	transition: transform 0.2s var(--dpu-ease), background-color 0.2s ease, border-color 0.2s ease;
}

.dpu-stat:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(34, 211, 238, 0.4);
}

.dpu-stat strong {
	display: block;
	font-family: var(--dpu-font-heading);
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 700;
	background: var(--dpu-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dpu-stat span {
	font-size: 13.5px;
	color: rgba(226, 232, 240, 0.85);
}

/* --------------------------------------------------------------------------
   5. Thématiques (page d'accueil)
   -------------------------------------------------------------------------- */
.dpu-topics {
	padding: clamp(56px, 8vw, 96px) 0 0;
}

.dpu-topics-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.dpu-topic-card {
	display: block;
	position: relative;
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	padding: 30px 26px;
	box-shadow: var(--dpu-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

.dpu-topic-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--dpu-gradient);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--dpu-ease);
}

.dpu-topic-card:hover::before {
	transform: scaleX(1);
}

.dpu-topic-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--dpu-shadow-lg);
	border-color: rgba(14, 165, 233, 0.4);
	text-decoration: none;
}

.dpu-topic-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: var(--dpu-gradient-soft);
	color: var(--dpu-primary);
	margin-bottom: 18px;
	transition: background 0.2s ease, color 0.2s ease;
}

.dpu-topic-card:hover .dpu-topic-icon {
	background: var(--dpu-gradient);
	color: #fff;
}

.dpu-topic-card h3 {
	margin: 0 0 8px;
	font-size: 19px;
	font-weight: 600;
}

.dpu-topic-card p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--dpu-text-soft);
}

/* --------------------------------------------------------------------------
   6. Derniers articles / grille de cartes
   -------------------------------------------------------------------------- */
.dpu-latest {
	padding: clamp(56px, 8vw, 96px) 0;
	scroll-margin-top: 96px;
}

.dpu-latest-footer {
	display: flex;
	justify-content: center;
	margin-top: 38px;
}

/* --------------------------------------------------------------------------
   5-bis. Section "Pourquoi DiGiProUnic" (page d'accueil)
   -------------------------------------------------------------------------- */
.dpu-why {
	padding: clamp(56px, 8vw, 96px) 0 0;
}

.dpu-why-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: clamp(28px, 4vw, 52px);
	align-items: center;
}

.dpu-why-media {
	position: relative;
}

.dpu-why-media img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--dpu-radius-lg);
	box-shadow: var(--dpu-shadow-lg);
}

.dpu-why-badge {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	background: rgba(10, 22, 40, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(6px);
	padding: 10px 16px;
	border-radius: 999px;
}

.dpu-why-badge svg {
	color: var(--dpu-accent);
	flex: none;
}

.dpu-why-content .dpu-section-eyebrow {
	margin-bottom: 14px;
}

.dpu-why-content h2 {
	margin: 0 0 14px;
	font-size: clamp(26px, 3.6vw, 38px);
	line-height: 1.15;
	letter-spacing: -0.01em;
}

.dpu-why-sub {
	margin: 0 0 26px;
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--dpu-text-soft);
}

.dpu-why-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 24px;
}

.dpu-why-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 0;
}

.dpu-why-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: 12px;
	background: var(--dpu-gradient-soft);
	color: var(--dpu-primary);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--dpu-ease);
}

.dpu-why-item:hover .dpu-why-icon {
	background: var(--dpu-gradient);
	color: #fff;
	transform: translateY(-2px);
}

.dpu-why-item h3 {
	margin: 0 0 4px;
	font-size: 16.5px;
	font-weight: 600;
}

.dpu-why-item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--dpu-text-soft);
}

.dpu-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

/* Archives (blog, catégories, étiquettes) : 2 articles par ligne. */
.dpu-card-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dpu-card {
	position: relative;
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	overflow: hidden;
	box-shadow: var(--dpu-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	height: 100%;
}

.dpu-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--dpu-gradient);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--dpu-ease);
	z-index: 1;
}

.dpu-card:hover::before {
	transform: scaleX(1);
}

.dpu-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--dpu-shadow-lg);
	border-color: rgba(14, 165, 233, 0.4);
}

.dpu-card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.dpu-card-thumb {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9.4;
	background: var(--dpu-bg-alt);
}

.dpu-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.dpu-card:hover .dpu-card-thumb img {
	transform: scale(1.05);
}

.dpu-card-read {
	position: absolute;
	right: 12px;
	bottom: 12px;
	font-size: 12.5px;
	font-weight: 600;
	color: #fff;
	background: rgba(10, 22, 40, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(4px);
	padding: 6px 12px;
	border-radius: 999px;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.dpu-card:hover .dpu-card-read {
	opacity: 1;
	transform: translateY(0);
}

.dpu-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px 24px 24px;
}

.dpu-card-cat,
.dpu-post-cat {
	display: inline-block;
	align-self: flex-start;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--dpu-primary);
	background: var(--dpu-gradient-soft);
	border: 1px solid rgba(14, 165, 233, 0.2);
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.dpu-card-cat:hover,
.dpu-post-cat:hover {
	background: var(--dpu-gradient);
	color: #fff;
	text-decoration: none;
}

.dpu-post-cat {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dpu-post-cat svg {
	width: 14px;
	height: 14px;
	flex: none;
}

.dpu-card-title {
	margin: 0 0 10px;
	font-size: 19px;
	line-height: 1.35;
}

.dpu-card-title a {
	color: var(--dpu-navy-900);
}

.dpu-card-title a:hover {
	color: var(--dpu-primary);
	text-decoration: none;
}

.dpu-card-excerpt {
	margin: 0 0 18px;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--dpu-text-soft);
}

.dpu-card-meta,
.dpu-post-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-top: auto;
	font-size: 13.5px;
	color: var(--dpu-muted);
}

.dpu-card-meta span,
.dpu-post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dpu-empty {
	text-align: center;
	color: var(--dpu-muted);
	padding: 40px 0;
}

/* --------------------------------------------------------------------------
   7. Newsletter (bandeau d'accueil + carte sidebar)
   -------------------------------------------------------------------------- */
.dpu-newsletter-band {
	position: relative;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	background:
		radial-gradient(800px 400px at 85% 10%, rgba(20, 184, 166, 0.28), transparent 60%),
		linear-gradient(150deg, var(--dpu-navy-900) 0%, var(--dpu-navy-700) 100%);
	padding: clamp(52px, 7vw, 84px) 0;
	color: #fff;
}

.dpu-newsletter-band::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.28;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 75%);
}

.dpu-newsletter-band-inner {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin-inline: auto;
	padding-inline: var(--dpu-gutter);
	text-align: center;
}

.dpu-newsletter-band h2 {
	margin: 0 0 12px;
	font-size: clamp(26px, 4vw, 36px);
	color: #fff;
}

.dpu-newsletter-band p {
	margin: 0 auto 26px;
	max-width: 560px;
	color: rgba(226, 232, 240, 0.9);
	line-height: 1.7;
}

.dpu-newsletter-card {
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	padding: 26px 24px;
	box-shadow: var(--dpu-shadow);
}

.dpu-nl-lead {
	text-align: center;
	margin-bottom: 22px;
}

.dpu-nl-lead img {
	width: 140px;
	height: auto;
	border-radius: 6px;
	margin-bottom: 14px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	transform: perspective(1000px) rotateY(-8deg);
	transition: transform 0.3s ease;
}

.dpu-nl-lead img:hover {
	transform: perspective(1000px) rotateY(0deg);
}

.dpu-nl-lead p {
	font-size: 15px;
	line-height: 1.45;
	color: var(--dpu-primary);
	margin: 0;
	font-weight: 600;
}

.dpu-newsletter-band .dpu-newsletter-card {
	background: transparent;
	border: none;
	padding: 0;
	box-shadow: none;
}

.dpu-newsletter-band .dpu-nl-lead {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	text-align: left;
	margin-bottom: 20px;
}

.dpu-newsletter-band .dpu-nl-lead img {
	width: 110px;
}

.dpu-newsletter-band .dpu-nl-lead p {
	font-size: 14px;
	font-weight: 600;
	color: var(--dpu-primary-2);
}

.dpu-newsletter-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 16px 0 0;
	font-size: 13px;
	color: var(--dpu-muted);
}

.dpu-newsletter-note svg {
	color: var(--dpu-accent);
}

/* --------------------------------------------------------------------------
   8. Formulaires (contact + newsletter)
   -------------------------------------------------------------------------- */
.dpu-form-card {
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	box-shadow: var(--dpu-shadow);
	padding: clamp(24px, 4vw, 36px);
	max-width: 760px;
	margin-inline: auto;
}

.dpu-form-head {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 26px;
}

.dpu-form-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	flex: none;
	border-radius: 14px;
	background: var(--dpu-gradient);
	color: #fff;
}

.dpu-form-head h3 {
	margin: 0 0 4px;
	font-size: 21px;
}

.dpu-form-head p {
	margin: 0;
	font-size: 14px;
	color: var(--dpu-text-soft);
}

.dpu-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.dpu-field {
	margin-bottom: 18px;
}

.dpu-field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 7px;
	color: var(--dpu-navy-800);
}

.dpu-input-wrap {
	position: relative;
}

.dpu-input-icon {
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
	display: inline-flex;
	color: var(--dpu-muted);
	pointer-events: none;
}

.dpu-field input[type="text"],
.dpu-field input[type="email"],
.dpu-field textarea {
	width: 100%;
	font-family: var(--dpu-font-body);
	font-size: 15px;
	color: var(--dpu-text);
	background: var(--dpu-bg);
	border: 1.5px solid var(--dpu-border-strong);
	border-radius: 10px;
	padding: 13px 14px 13px 44px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dpu-field textarea {
	padding-left: 14px;
	resize: vertical;
	min-height: 120px;
}

.dpu-field input:focus,
.dpu-field textarea:focus {
	outline: none;
	border-color: var(--dpu-primary);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.dpu-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--dpu-text-soft);
	margin-bottom: 20px;
	cursor: pointer;
}

.dpu-consent input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex: none;
	margin-top: 1px;
	accent-color: var(--dpu-primary);
	cursor: pointer;
}

.dpu-form-actions .dpu-btn {
	width: 100%;
}

.dpu-form-status {
	display: none;
	margin-top: 16px;
	padding: 13px 16px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	border: 1px solid transparent;
}

.dpu-form-status.is-visible {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.dpu-form-status.is-loading {
	color: var(--dpu-navy-700);
	background: var(--dpu-bg-alt);
	border-color: var(--dpu-border);
}

.dpu-form-status.is-success {
	color: #065f46;
	background: rgba(16, 185, 129, 0.12);
	border-color: rgba(16, 185, 129, 0.35);
}

.dpu-form-status.is-already {
	color: #92400e;
	background: rgba(245, 158, 11, 0.12);
	border-color: rgba(245, 158, 11, 0.35);
}

.dpu-form-status.is-error {
	color: #991b1b;
	background: rgba(239, 68, 68, 0.1);
	border-color: rgba(239, 68, 68, 0.35);
}

/* Honeypot invisible */
.dpu-hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* Spinner de chargement */
.dpu-spin {
	animation: dpu-spin 0.9s linear infinite;
}

@keyframes dpu-spin {
	to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   9. Widget outils recommandés (sidebar)
   -------------------------------------------------------------------------- */
.dpu-tools-widget {
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	padding: 24px 20px;
	box-shadow: var(--dpu-shadow-sm);
}

.dpu-tools-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dpu-tools-list li {
	margin: 0;
}

.dpu-tools-list li + li {
	border-top: 1px solid var(--dpu-border);
}

.dpu-tools-list a {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 12px 2px;
	color: var(--dpu-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.dpu-tools-list a:hover {
	color: var(--dpu-primary);
}

.dpu-tools-row {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.dpu-tools-row strong {
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.35;
	min-width: 0;
	overflow-wrap: break-word;
}

.dpu-tools-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 11px;
	background: var(--dpu-bg-alt);
	color: var(--dpu-navy-700);
	transition: background 0.2s ease, color 0.2s ease;
}

.dpu-tools-list a:hover .dpu-tools-icon {
	background: var(--dpu-gradient-soft);
	color: var(--dpu-primary);
}

.dpu-tools-desc {
	font-size: 12.5px;
	color: var(--dpu-muted);
	line-height: 1.4;
	margin-left: 52px;
	min-width: 0;
	overflow-wrap: break-word;
}

.dpu-tools-note {
	margin: 16px 0 0;
	font-size: 12px;
	line-height: 1.5;
	color: var(--dpu-muted);
	border-top: 1px dashed var(--dpu-border);
	padding-top: 14px;
}

/* --------------------------------------------------------------------------
   10. FAQ (accordéon)
   -------------------------------------------------------------------------- */
.dpu-faq {
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius);
	background: var(--dpu-white);
	margin-bottom: 12px;
	overflow: hidden;
	box-shadow: var(--dpu-shadow-sm);
}

.dpu-faq-title {
	margin: 0;
}

.dpu-faq-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	text-align: left;
	padding: 18px 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	font-family: var(--dpu-font-heading);
	font-size: 16px;
	font-weight: 600;
	color: var(--dpu-navy-900);
}

.dpu-faq-toggle:hover {
	color: var(--dpu-primary);
}

.dpu-faq-icon {
	flex: none;
	color: var(--dpu-primary);
	transition: transform 0.25s ease;
}

.dpu-faq-toggle[aria-expanded="true"] .dpu-faq-icon {
	transform: rotate(180deg);
}

.dpu-faq-panel {
	padding: 0 20px 18px;
	color: var(--dpu-text-soft);
	line-height: 1.7;
	font-size: 15px;
}

.dpu-faq-panel p {
	margin: 0;
}

/* --------------------------------------------------------------------------
   11. Pages (À propos / Services / légal)
   -------------------------------------------------------------------------- */
.dpu-page-intro {
	max-width: 760px;
	margin: 0 auto 36px;
	font-size: 17px;
	line-height: 1.75;
	color: var(--dpu-text-soft);
}

.dpu-page-intro p {
	margin: 0 0 14px;
}

.dpu-features-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.dpu-feature {
	position: relative;
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	padding: 28px 24px;
	box-shadow: var(--dpu-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dpu-feature::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--dpu-gradient);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--dpu-ease);
}

.dpu-feature:hover::before {
	transform: scaleX(1);
}

.dpu-feature:hover {
	transform: translateY(-4px);
	box-shadow: var(--dpu-shadow);
}

.dpu-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--dpu-gradient-soft);
	color: var(--dpu-primary);
	margin-bottom: 16px;
}

.dpu-feature h3 {
	margin: 0 0 8px;
	font-size: 17px;
}

.dpu-feature p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--dpu-text-soft);
}

.dpu-legal {
	max-width: 780px;
	margin-inline: auto;
}

.dpu-legal h2 {
	margin: 36px 0 12px;
	font-size: 22px;
}

.dpu-legal h2:first-child {
	margin-top: 0;
}

.dpu-legal p {
	margin: 0 0 14px;
	line-height: 1.75;
	color: var(--dpu-text-soft);
}

.dpu-legal ul,
.dpu-legal ol {
	margin: 0 0 16px;
	padding-left: 1.4em;
	line-height: 1.75;
	color: var(--dpu-text-soft);
}

.dpu-legal li {
	margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   11-bis. Blocs des pages : étapes numérotées + appel à l'action
   -------------------------------------------------------------------------- */
.dpu-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin: 0 0 44px;
}

.dpu-step {
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	padding: 26px 24px;
	box-shadow: var(--dpu-shadow-sm);
}

.dpu-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	font-family: var(--dpu-font-heading);
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	background: var(--dpu-gradient);
	box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
	margin-bottom: 16px;
}

.dpu-step h3 {
	margin: 0 0 8px;
	font-size: 17px;
}

.dpu-step p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--dpu-text-soft);
}

.dpu-cta {
	position: relative;
	overflow: hidden;
	text-align: center;
	color: #fff;
	background:
		radial-gradient(600px 320px at 85% 0%, rgba(34, 211, 238, 0.25), transparent 60%),
		linear-gradient(150deg, var(--dpu-navy-900) 0%, var(--dpu-navy-700) 100%);
	border-radius: var(--dpu-radius-lg);
	padding: clamp(32px, 5vw, 56px);
	margin: 8px 0 0;
}

.dpu-cta h2 {
	margin: 0 0 12px;
	font-size: clamp(22px, 3.4vw, 32px);
	color: #fff;
}

.dpu-cta p {
	margin: 0 auto 26px;
	max-width: 560px;
	color: rgba(226, 232, 240, 0.9);
	line-height: 1.7;
}

.dpu-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

/* --------------------------------------------------------------------------
   11-ter. Pages : note d'information + services + témoignages
   -------------------------------------------------------------------------- */
.dpu-note {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--dpu-gradient-soft);
	border: 1px solid rgba(14, 165, 233, 0.25);
	border-left: 3px solid var(--dpu-primary);
	border-radius: var(--dpu-radius-lg);
	padding: 18px 22px;
	margin: 0 0 44px;
}

.dpu-note-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--dpu-gradient);
	color: #fff;
}

.dpu-note p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: var(--dpu-text-soft);
}

.dpu-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin: 0 0 44px;
}

.dpu-service {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	padding: 28px 24px;
	box-shadow: var(--dpu-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dpu-service::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--dpu-gradient);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--dpu-ease);
}

.dpu-service:hover::before {
	transform: scaleX(1);
}

.dpu-service:hover {
	transform: translateY(-4px);
	box-shadow: var(--dpu-shadow);
}

.dpu-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--dpu-gradient-soft);
	color: var(--dpu-primary);
	margin-bottom: 16px;
}

.dpu-service h3 {
	margin: 0 0 8px;
	font-size: 17px;
}

.dpu-service > p {
	margin: 0 0 16px;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--dpu-text-soft);
}

.dpu-service-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-top: auto;
}

.dpu-service-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--dpu-navy-800);
}

.dpu-service-list li > span:last-child {
	min-width: 0;
	overflow-wrap: break-word;
}

.dpu-service-check {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: var(--dpu-primary);
}

.dpu-service-check svg {
	width: 16px;
	height: 16px;
}

.dpu-process-sub {
	text-align: center;
	max-width: 560px;
	margin: -14px auto 44px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--dpu-text-soft);
}

.dpu-testimonials {
	margin-top: 8px;
}

.dpu-tst-sub {
	text-align: center;
	max-width: 560px;
	margin: -14px auto 40px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--dpu-text-soft);
}

.dpu-tst {
	position: relative;
	max-width: 760px;
	margin-inline: auto;
}

.dpu-tst-viewport {
	overflow: hidden;
	border-radius: var(--dpu-radius-lg);
}

.dpu-tst-track {
	display: flex;
	transition: transform 0.5s var(--dpu-ease);
}

.dpu-tst-slide {
	flex: 0 0 100%;
	min-width: 0;
	margin: 0;
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	box-shadow: var(--dpu-shadow-sm);
	padding: clamp(28px, 5vw, 48px);
	text-align: center;
}

.dpu-tst-quote {
	margin: 0 0 24px;
}

.dpu-tst-mark {
	color: var(--dpu-primary);
	opacity: 0.35;
	margin-bottom: 12px;
}

.dpu-tst-quote p {
	margin: 0;
	font-size: clamp(16px, 2.4vw, 19px);
	line-height: 1.7;
	color: var(--dpu-text-soft);
	font-style: italic;
}

.dpu-tst-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.dpu-tst-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--dpu-gradient);
	color: #fff;
	font-family: var(--dpu-font-heading);
	font-weight: 700;
	font-size: 16px;
	box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
}

.dpu-tst-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	text-align: left;
}

.dpu-tst-meta strong {
	font-size: 16px;
}

.dpu-tst-meta span {
	font-size: 13.5px;
	color: var(--dpu-text-soft);
}

.dpu-tst-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 26px;
}

.dpu-tst-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dpu-tst-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	border: 0;
	padding: 0;
	background: var(--dpu-border);
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease;
}

.dpu-tst-dot.is-active {
	width: 24px;
	background: var(--dpu-gradient);
}

/* --------------------------------------------------------------------------
   12. Archives & recherche
   -------------------------------------------------------------------------- */
.dpu-archive-header {
	max-width: 760px;
	margin: 0 auto clamp(36px, 5vw, 56px);
	text-align: center;
}

.dpu-archive-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.dpu-archive-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	flex: none;
	border-radius: 18px;
	background: var(--dpu-gradient);
	color: #fff;
	box-shadow: 0 10px 24px rgba(14, 165, 233, 0.3);
}

.dpu-archive-title {
	margin: 0;
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 700;
	letter-spacing: -0.01em;
}

.dpu-search-term {
	color: var(--dpu-primary);
}

.dpu-archive-desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--dpu-text-soft);
}

.dpu-archive-desc p {
	margin: 0;
}

/* --------------------------------------------------------------------------
   13. Fil d'Ariane (breadcrumbs)
   -------------------------------------------------------------------------- */
.dpu-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 13px;
	color: var(--dpu-muted);
	margin-bottom: 18px;
}

.dpu-breadcrumbs a {
	color: var(--dpu-muted);
}

.dpu-breadcrumbs a:hover {
	color: var(--dpu-primary);
}

.dpu-breadcrumbs-sep {
	display: inline-flex;
	color: var(--dpu-border-strong);
}

.dpu-breadcrumbs-current {
	color: var(--dpu-text-soft);
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   14. Article unique (single post)
   -------------------------------------------------------------------------- */
.dpu-post-meta {
	margin: 16px 0 0;
}

.dpu-post-meta .avatar {
	border-radius: 50%;
	width: 26px;
	height: 26px;
}

.dpu-meta-sep {
	color: var(--dpu-border-strong);
}

.dpu-meta-reading {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dpu-post-thumbnail {
	margin: 26px 0 0;
	border-radius: var(--dpu-radius-lg);
	overflow: hidden;
	box-shadow: var(--dpu-shadow);
}

.dpu-post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

/* Ancres des titres */
.dpu-anchor {
	position: relative;
	top: -90px;
}

/* Table des matières */
.dpu-toc {
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-left: 4px solid var(--dpu-primary);
	border-radius: 0 var(--dpu-radius) var(--dpu-radius) 0;
	padding: 20px 22px;
	margin: 0 0 28px;
	box-shadow: var(--dpu-shadow-sm);
}

.dpu-toc-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	font-family: var(--dpu-font-heading);
	font-size: 16px;
	font-weight: 700;
	color: var(--dpu-navy-900);
}

.dpu-toc-title svg {
	color: var(--dpu-primary);
}

/* Bouton plier / déplier le sommaire. */
.dpu-toc-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	text-align: left;
}

.dpu-toc-toggle .dpu-toc-title {
	margin: 0;
}

.dpu-toc-toggle:hover .dpu-toc-title {
	color: var(--dpu-primary);
}

.dpu-toc-chevron {
	flex: none;
	color: var(--dpu-primary);
	transition: transform 0.25s var(--dpu-ease);
}

.dpu-toc.is-collapsed .dpu-toc-chevron {
	transform: rotate(-90deg);
}

.dpu-toc.is-collapsed ol {
	display: none;
}

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

.dpu-toc li {
	margin: 0;
	padding: 5px 0;
	font-size: 14.5px;
	counter-increment: toc;
}

.dpu-toc li::before {
	content: counter(toc);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	margin-right: 9px;
	font-size: 12px;
	font-weight: 700;
	color: var(--dpu-primary);
	background: var(--dpu-gradient-soft);
	border-radius: 50%;
}

.dpu-toc li a {
	color: var(--dpu-text-soft);
}

.dpu-toc li a:hover {
	color: var(--dpu-primary);
	text-decoration: none;
}

.dpu-toc-sub {
	padding-left: 30px !important;
}

/* Contenu de l'article */
.inside-article {
	padding: 0;
}

.entry-header .entry-title {
	margin: 12px 0 0;
	font-size: clamp(28px, 4.5vw, 42px);
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.15;
}

.entry-content {
	font-size: 16.5px;
	line-height: 1.85;
	color: var(--dpu-text);
}

.entry-content > * {
	margin-bottom: 1.25em;
}

.entry-content h2 {
	font-size: clamp(24px, 3.4vw, 30px);
	margin: 1.8em 0 0.6em;
	padding-top: 0.4em;
	border-top: 1px solid var(--dpu-border);
}

.entry-content h3 {
	font-size: clamp(20px, 2.6vw, 24px);
	margin: 1.6em 0 0.6em;
}

.entry-content h4 {
	font-size: 18px;
	margin: 1.4em 0 0.5em;
}

.entry-content p {
	margin-bottom: 1.25em;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 1.4em;
	padding-left: 1.4em;
}

.entry-content li {
	margin-bottom: 0.45em;
}

.entry-content blockquote {
	border-left: 4px solid var(--dpu-primary);
	background: var(--dpu-bg-alt);
	padding: 18px 22px;
	border-radius: 0 var(--dpu-radius) var(--dpu-radius) 0;
	font-style: italic;
	color: var(--dpu-text-soft);
	margin: 1.6em 0;
}

.entry-content code,
.entry-content kbd {
	background: var(--dpu-bg-alt);
	border: 1px solid var(--dpu-border);
	border-radius: 6px;
	padding: 2px 7px;
	font-size: 0.88em;
	color: #be185d;
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

.entry-content pre {
	position: relative;
	background: var(--dpu-navy-900);
	color: #e2e8f0;
	border-radius: var(--dpu-radius);
	padding: 20px 22px;
	overflow-x: auto;
	line-height: 1.6;
	margin: 1.6em 0;
}

.entry-content pre code {
	background: transparent;
	border: none;
	color: inherit;
	padding: 0;
}

.entry-content img {
	border-radius: var(--dpu-radius);
	box-shadow: var(--dpu-shadow-sm);
}

.entry-content a {
	font-weight: 500;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.6em 0;
	font-size: 15px;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--dpu-border);
	padding: 11px 14px;
	text-align: left;
}

.entry-content th {
	background: var(--dpu-bg-alt);
	font-family: var(--dpu-font-heading);
	font-weight: 600;
}

.page-links {
	clear: both;
	margin: 28px 0 0;
	font-weight: 600;
}

.page-links .page-numbers {
	margin-left: 6px;
}

/* --------------------------------------------------------------------------
   15. Partage, tags, auteur, articles similaires
   -------------------------------------------------------------------------- */
.dpu-share {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 18px;
	margin: 34px 0;
	padding: 24px;
	background: var(--dpu-bg-alt);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
}

.dpu-share-label {
	display: flex;
	align-items: center;
	margin: 0;
}

.dpu-share-label-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--dpu-gradient);
	color: #fff;
	box-shadow: 0 8px 18px rgba(14, 165, 233, 0.3);
}

.dpu-share-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
}

.dpu-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 50%;
	font-size: 13.5px;
	font-weight: 600;
	color: #fff;
	background: var(--dpu-primary);
	text-decoration: none;
	transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.dpu-share-btn:hover {
	transform: translateY(-2px);
	background: var(--dpu-primary-2);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(14, 165, 233, 0.35);
}

.dpu-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 6px 0 30px;
}

.dpu-tags-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--dpu-navy-800);
}

.dpu-tags-label-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--dpu-gradient-soft);
	color: var(--dpu-primary);
}

.dpu-tags-label-icon svg {
	width: 16px;
	height: 16px;
}

.dpu-tag {
	font-size: 13px;
	font-weight: 500;
	color: var(--dpu-text-soft);
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	padding: 5px 13px;
	border-radius: 999px;
	transition: all 0.18s ease;
}

.dpu-tag:hover {
	color: #fff;
	background: var(--dpu-gradient);
	border-color: transparent;
	text-decoration: none;
}

.dpu-author-box {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	padding: 24px;
	margin: 30px 0;
	box-shadow: var(--dpu-shadow-sm);
}

.dpu-author-avatar img {
	border-radius: 50%;
	width: 72px;
	height: 72px;
	object-fit: cover;
}

.dpu-author-meta .dpu-author-role {
	margin: 0 0 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dpu-primary);
}

.dpu-author-meta h4 {
	margin: 0 0 6px;
	font-size: 18px;
}

.dpu-author-meta h4 a {
	color: var(--dpu-navy-900);
}

.dpu-author-meta p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--dpu-text-soft);
}

.dpu-related {
	margin-top: 44px;
}

.dpu-related-title {
	font-size: clamp(22px, 3vw, 28px);
	margin: 0 0 22px;
}

.dpu-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.dpu-related-card {
	position: relative;
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dpu-related-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--dpu-gradient);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--dpu-ease);
	z-index: 1;
}

.dpu-related-card:hover::before {
	transform: scaleX(1);
}

.dpu-related-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--dpu-shadow);
}

.dpu-related-thumb {
	display: block;
	aspect-ratio: 16 / 9.4;
	overflow: hidden;
	background: var(--dpu-bg-alt);
}

.dpu-related-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.dpu-related-card:hover .dpu-related-thumb img {
	transform: scale(1.04);
}

.dpu-related-card h3 {
	margin: 0;
	padding: 16px 18px 4px;
	font-size: 16px;
	line-height: 1.4;
}

.dpu-related-card h3 a {
	color: var(--dpu-navy-900);
}

.dpu-related-card h3 a:hover {
	color: var(--dpu-primary);
	text-decoration: none;
}

.dpu-related-date {
	margin: 0;
	padding: 0 18px 16px;
	font-size: 13px;
	color: var(--dpu-muted);
}

/* --------------------------------------------------------------------------
   16. Commentaires
   -------------------------------------------------------------------------- */
.comments-area {
	margin-top: 44px;
	padding-top: 36px;
	border-top: 1px solid var(--dpu-border);
}

.comments-title {
	font-size: 24px;
	margin: 0 0 22px;
}

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

.comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0 0 0 44px;
}

.comment-list > .comment,
.comment-list > .pingback,
.comment-list > .trackback,
.comment-list .children > .comment {
	margin: 0 0 22px;
}

.comment-body {
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	padding: 20px 22px;
	box-shadow: var(--dpu-shadow-sm);
}

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

.comment-meta .avatar {
	border-radius: 50%;
	width: 44px;
	height: 44px;
	object-fit: cover;
}

.comment-author-info .fn {
	font-family: var(--dpu-font-heading);
	font-style: normal;
	font-weight: 600;
	font-size: 15.5px;
	color: var(--dpu-navy-900);
}

.comment-author-info .fn a {
	color: var(--dpu-navy-900);
}

.comment-metadata {
	margin: 2px 0 0;
	font-size: 12.5px;
	color: var(--dpu-muted);
}

.comment-metadata a {
	color: var(--dpu-muted);
}

.comment-metadata .edit-link {
	margin-left: 4px;
}

.comment-content {
	font-size: 15px;
	line-height: 1.7;
	color: var(--dpu-text-soft);
}

.comment-content p {
	margin: 0 0 10px;
}

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

.comment-content a {
	word-break: break-word;
}

.comment .reply {
	margin-top: 12px;
}

.comment .reply a {
	font-size: 13px;
	font-weight: 600;
	color: var(--dpu-primary);
}

.comment .reply a:hover {
	color: var(--dpu-navy-700);
}

.comment-awaiting-moderation {
	margin: 8px 0 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--dpu-warning);
}

/* Formulaire de commentaires */
#commentform {
	margin-top: 28px;
}

#commentform .comment-notes,
#commentform .logged-in-as {
	font-size: 13.5px;
	color: var(--dpu-muted);
	margin: 0 0 14px;
}

#commentform p {
	margin: 0 0 16px;
}

#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
	width: 100%;
	font-family: var(--dpu-font-body);
	font-size: 15px;
	color: var(--dpu-text);
	background: var(--dpu-bg);
	border: 1.5px solid var(--dpu-border-strong);
	border-radius: 10px;
	padding: 12px 14px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#commentform input:focus,
#commentform textarea:focus {
	outline: none;
	border-color: var(--dpu-primary);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

#commentform .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 13.5px;
	color: var(--dpu-text-soft);
}

#commentform .comment-form-cookies-consent input {
	width: auto;
	margin-top: 2px;
	accent-color: var(--dpu-primary);
}

#commentform .form-submit .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 26px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	font-family: var(--dpu-font-heading);
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background: var(--dpu-gradient);
	box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

#commentform .form-submit .submit:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
	box-shadow: 0 10px 26px rgba(14, 165, 233, 0.4);
}

.comment-navigation {
	margin: 10px 0 22px;
	font-size: 14px;
}

.comment-navigation .nav-previous,
.comment-navigation .nav-next {
	display: inline-block;
}

.comment-navigation a {
	font-weight: 600;
}

.no-comments {
	color: var(--dpu-muted);
	font-size: 14.5px;
	margin: 22px 0;
}

/* --------------------------------------------------------------------------
   17. Navigation de pagination & articles
   -------------------------------------------------------------------------- */
.paging-navigation {
	margin-top: 40px;
}

.paging-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.paging-navigation .page-numbers,
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--dpu-navy-800);
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.18s ease;
}

.paging-navigation .page-numbers:hover,
.paging-navigation .page-numbers.current,
.post-navigation a:hover {
	color: #fff;
	background: var(--dpu-gradient);
	border-color: transparent;
}

.paging-navigation .page-numbers.current {
	cursor: default;
}

.post-navigation {
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid var(--dpu-border);
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
	justify-content: flex-start;
	min-height: 0;
	padding: 10px 18px;
	line-height: 1.4;
}

/* --------------------------------------------------------------------------
   18. Page 404
   -------------------------------------------------------------------------- */
.dpu-404 {
	max-width: 640px;
	margin: 40px auto 60px;
	text-align: center;
}

.dpu-404-code {
	font-family: var(--dpu-font-heading);
	font-size: clamp(96px, 20vw, 170px);
	font-weight: 700;
	line-height: 1;
	background: var(--dpu-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dpu-404-title {
	font-size: clamp(24px, 4vw, 34px);
	margin: 10px 0 12px;
}

.dpu-404-text {
	margin: 0 auto 24px;
	max-width: 460px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--dpu-text-soft);
}

.dpu-404 .search-form {
	max-width: 420px;
	margin: 0 auto 28px;
}

.dpu-404-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 40px;
}

.dpu-404-links {
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	padding: 24px 26px;
	text-align: left;
	box-shadow: var(--dpu-shadow-sm);
}

.dpu-404-links h2 {
	margin: 0 0 14px;
	font-size: 19px;
}

.dpu-404-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dpu-404-links li + li {
	border-top: 1px solid var(--dpu-border);
}

.dpu-404-links a {
	display: block;
	padding: 10px 0;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--dpu-text-soft);
}

.dpu-404-links a:hover {
	color: var(--dpu-primary);
	text-decoration: none;
	padding-left: 6px;
}

/* --------------------------------------------------------------------------
   19. Blocs AdSense
   -------------------------------------------------------------------------- */
.dpu-ad {
	clear: both;
	margin: 32px auto;
	text-align: center;
	overflow: hidden;
}

.dpu-ad-in-article,
.dpu-ad-multiplex {
	max-width: 760px;
}

.dpu-ad-sidebar {
	margin: 0 0 28px;
}

.dpu-ad-banner {
	max-width: 970px;
}

/* --------------------------------------------------------------------------
   20. Bouton "remonter en haut"
   -------------------------------------------------------------------------- */
.dpu-scroll-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 999;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	color: #fff;
	background: var(--dpu-gradient);
	box-shadow: 0 8px 22px rgba(14, 165, 233, 0.4);
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.dpu-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dpu-scroll-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(14, 165, 233, 0.5);
}

/* --------------------------------------------------------------------------
   20-bis. Barre de progression de lecture + bouton "copier le code"
   -------------------------------------------------------------------------- */
#dpu-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0;
	z-index: 99999;
	background: var(--dpu-gradient);
	box-shadow: 0 0 12px rgba(14, 165, 233, 0.6);
	pointer-events: none;
}

.dpu-copy-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 600;
	color: #e2e8f0;
	background: rgba(15, 31, 58, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	cursor: pointer;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.entry-content pre:hover .dpu-copy-btn,
.dpu-copy-btn:focus-visible {
	opacity: 1;
	transform: translateY(0);
}

.dpu-copy-btn:hover {
	background: var(--dpu-gradient);
	color: #fff;
}

.dpu-copy-btn.is-copied {
	background: rgba(16, 185, 129, 0.92);
	border-color: transparent;
	color: #fff;
}

/* --------------------------------------------------------------------------
   21. Animations : héros, révélations, TOC actif
   -------------------------------------------------------------------------- */
html {
	scroll-behavior: smooth;
}

.dpu-hero-inner > * {
	opacity: 0;
	transform: translateY(22px);
	animation: dpu-fade-up 0.7s ease forwards;
}

.dpu-hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.dpu-hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
.dpu-hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
.dpu-hero-inner > *:nth-child(4) { animation-delay: 0.35s; }

@keyframes dpu-fade-up {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* États cachés : actifs UNIQUEMENT si le JS est présent (classe dpu-js). */
.dpu-js .dpu-card-grid > .dpu-card,
.dpu-js .dpu-topic-card,
.dpu-js .dpu-feature,
.dpu-js .dpu-service,
.dpu-js .dpu-related-card {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.dpu-js .dpu-card-grid > .dpu-card.is-revealed,
.dpu-js .dpu-topic-card.is-revealed,
.dpu-js .dpu-feature.is-revealed,
.dpu-js .dpu-service.is-revealed,
.dpu-js .dpu-related-card.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Lien actif du TOC (scrollspy). */
.dpu-toc ol a.is-active {
	color: var(--dpu-primary);
	font-weight: 600;
}

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

	.dpu-hero-inner > *,
	.dpu-js .dpu-card-grid > .dpu-card,
	.dpu-js .dpu-topic-card,
	.dpu-js .dpu-feature,
	.dpu-js .dpu-service,
	.dpu-js .dpu-related-card {
		opacity: 1;
		transform: none;
		animation: none;
		transition: none;
	}
}

/* --------------------------------------------------------------------------
   22. Intégration GeneratePress (search, widgets sidebar, blocs)
   -------------------------------------------------------------------------- */
.search-form {
	position: relative;
	display: flex;
}

.search-form .search-field {
	flex: 1;
	min-width: 0;
	font-family: var(--dpu-font-body);
	font-size: 15px;
	color: var(--dpu-text);
	background: var(--dpu-white);
	border: 1.5px solid var(--dpu-border-strong);
	border-radius: 10px 0 0 10px;
	padding: 13px 16px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form .search-field:focus {
	outline: none;
	border-color: var(--dpu-primary);
	box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.search-form .search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border: none;
	border-radius: 0 10px 10px 0;
	cursor: pointer;
	color: #fff;
	background: var(--dpu-gradient);
	font-family: var(--dpu-font-heading);
	font-size: 14.5px;
	font-weight: 600;
	transition: background-color 0.18s ease;
}

.search-form .search-submit:hover {
	background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
}

/* Widgets de la barre latérale */
.sidebar .widget {
	background: var(--dpu-white);
	border: 1px solid var(--dpu-border);
	border-radius: var(--dpu-radius-lg);
	padding: 22px 20px;
	margin-bottom: 26px;
	box-shadow: var(--dpu-shadow-sm);
}

.sidebar .widget-title {
	font-family: var(--dpu-font-heading);
	font-size: 17px;
	font-weight: 700;
	color: var(--dpu-navy-900);
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--dpu-gradient-soft);
	position: relative;
}

.sidebar .widget-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 48px;
	height: 2px;
	background: var(--dpu-gradient);
	border-radius: 2px;
}

.sidebar .widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar .widget ul li {
	margin: 0;
	font-size: 14px;
}

.sidebar .widget ul li + li {
	border-top: 1px solid var(--dpu-border);
}

.sidebar .widget ul li a {
	display: block;
	padding: 9px 0;
	color: var(--dpu-text-soft);
}

.sidebar .widget ul li a:hover {
	color: var(--dpu-primary);
	text-decoration: none;
	padding-left: 5px;
}

.sidebar .widget .dpu-tools-widget,
.sidebar .widget .dpu-newsletter-card {
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
	background: transparent;
}

/* Alignements Gutenberg */
.alignwide {
	margin-left: -60px;
	margin-right: -60px;
	max-width: calc(100% + 120px);
}

.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
}

/* --------------------------------------------------------------------------
   23. Accessibilité & réduction de mouvement
   -------------------------------------------------------------------------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* --------------------------------------------------------------------------
   23-bis. Performance rendu : content-visibility (hors écran non peint)
   -------------------------------------------------------------------------- */
@supports (content-visibility: auto) {
	.dpu-card,
	.dpu-topic-card,
	.dpu-feature,
	.dpu-related-card,
	.dpu-stat,
	.dpu-faq,
	.sidebar .widget {
		content-visibility: auto;
		contain-intrinsic-size: auto 320px;
	}
}

/* --------------------------------------------------------------------------
   24. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.dpu-topics-grid,
	.dpu-features-grid,
	.dpu-services-grid,
	.dpu-steps,
	.dpu-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.dpu-why-grid {
		grid-template-columns: 1fr;
	}

	.dpu-why-media img {
		max-height: 420px;
		object-fit: cover;
	}

	.alignwide {
		margin-left: 0;
		margin-right: 0;
		max-width: 100%;
	}
}

@media (max-width: 782px) {
	.dpu-card-grid {
		grid-template-columns: 1fr;
	}

	.dpu-topics-grid,
	.dpu-features-grid,
	.dpu-services-grid,
	.dpu-steps,
	.dpu-related-grid {
		grid-template-columns: 1fr;
	}

	.dpu-why-list {
		grid-template-columns: 1fr;
	}

	.dpu-why-media img {
		max-height: none;
		object-fit: contain;
	}

	.dpu-hero-stats {
		grid-template-columns: 1fr;
		max-width: 320px;
	}

	.dpu-grid-2 {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.dpu-hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.dpu-hero-actions .dpu-btn {
		width: 100%;
		max-width: 340px;
	}

	.dpu-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

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