@charset "UTF-8";

/* =============================================================
   BLOG.ICISSOKHO.FR — Thème Ductile — Style Éditorial Pro Orange
   Basé sur le CSS original Ductile, ciblage exact des classes
   ============================================================= */

/* ── Imports obligatoires Ductile ── */
@import url(index.php?tf=rebase.css);
@import url(index.php?tf=mediaqueries.css);

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --c-bg:           #fafaf9;
  --c-bg3:          #ffffff;
  --c-surface:      #f5f5f4;
  --c-border:       #e7e5e4;
  --c-border2:      #d6d3d1;
  --c-text:         #1c1917;
  --c-text2:        #57534e;
  --c-muted:        #a8a29e;
  --c-orange:       #f97316;
  --c-orange-dark:  #c2410c;
  --c-orange-light: #fff7ed;
  --c-orange-mid:   #fed7aa;
  --font-serif:     'Lora', Georgia, serif;
  --font-sans:      'DM Sans', system-ui, sans-serif;
  --radius:         6px;
  --radius-lg:      10px;
  --t:              0.2s ease;
}

/* ══════════════════════════════════════════
   BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  font-family: var(--font-sans);
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

a {
  color: var(--c-orange);
  transition: color var(--t);
}
a:hover, a:focus {
  color: var(--c-orange-dark);
  background-color: transparent;
  text-decoration: underline;
}

h2, h2 a {
  font-family: var(--font-serif);
  font-weight: 700;
  margin-top: 0.75em;
}

del { color: #800000; }

blockquote {
  border-left: 3px solid var(--c-orange);
  padding: 0.6rem 1rem;
  background: var(--c-orange-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--c-text2);
  margin: 1rem 0;
}

code, pre {
  background: var(--c-surface);
  border: 0.5px solid var(--c-border);
  border-radius: 4px;
  font-size: 0.85em;
  font-family: 'Fira Code', monospace;
}
code { padding: 1px 5px; }
pre  { padding: 1rem 1.25rem; overflow-x: auto; border-radius: var(--radius); }
pre code { background: none; border: none; padding: 0; }

table { border: 1px solid #999; border-collapse: collapse; }
td, th, tr { padding: 4px 10px; border: 1px solid #ccc; border-collapse: collapse; }
thead th, tbody th { color: #555; background: #f0f0f5; text-align: left; font-weight: normal; }
tbody tr:hover { background: #eee; }
table caption { color: var(--c-text2); text-align: left; margin-bottom: 0.33em; font-weight: bold; }

ul ul { margin-top: 0; }

::selection { background: var(--c-orange); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-orange); }

/* ══════════════════════════════════════════
   HEADER — #header > #top
══════════════════════════════════════════ */
#header {
  background: #fff;
  border-bottom: 2px solid var(--c-orange);
  text-shadow: none;
  line-height: 1;
  position: relative;
}

#top {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 1rem;
}

/* Logo */
#logo a img,
#stickers a img { border: none; }

/* Titre h1 */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-variant: normal;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
h1 a {
  color: var(--c-text);
  text-decoration: none;
}
h1 a:hover, h1 a:focus {
  color: var(--c-orange);
  background: none;
  text-decoration: none;
}
/* Badge E5 */
h1 a::after {
  content: 'E5';
  background: var(--c-orange);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: super;
}

/* Description */
#blogdesc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--c-text2);
  font-style: italic;
  margin: 0 0 0 2px;
  text-shadow: none;
}
#blogdesc blockquote {
  margin: 0; padding: 0; border: none; background: none;
}
#blogdesc blockquote p {
  margin: 0; font-style: italic; color: var(--c-text2); text-align: left !important;
}

/* Liens accessibilité */
#prelude, .supranav {
  list-style-type: none;
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  font-size: 0.8em;
  line-height: 1.25;
}
#prelude {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  background: var(--c-surface);
  padding: 4px 1.5rem;
  border-bottom: 0.5px solid var(--c-border);
}
#prelude li { text-transform: none; }
#prelude li a { color: var(--c-muted); text-decoration: none; }
#prelude li a:hover { color: var(--c-orange); background: none; }

/* ══════════════════════════════════════════
   NAVIGATION — .supranav / .simple-menu
══════════════════════════════════════════ */
.supranav {
  background: #fff;
  border-bottom: 0.5px solid var(--c-border);
  clear: both;
  display: flex;
}
.simple-menu-navigation { background: #fff; border-bottom: 0.5px solid var(--c-border); }

#sn-top, #sn-bottom {
  list-style: none;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 960px;
  display: flex;
}

.supranav li, .simple-menu li { text-transform: none; vertical-align: top; }

.supranav li a,
.simple-menu li a {
  display: inline-block;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--c-text2);
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: 0;
  background: none !important;
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.supranav li a:hover,
.supranav li a:active,
.supranav li a:focus,
.simple-menu li a:hover,
.simple-menu li.active a {
  color: var(--c-orange);
  background-color: transparent !important;
  border-bottom-color: var(--c-orange);
  text-decoration: none;
}
.supranav li a span {
  display: inline;
  font-family: var(--font-sans);
  font-style: normal;
  text-shadow: none;
  text-transform: none;
}

/* ══════════════════════════════════════════
   LAYOUT — #wrapper
══════════════════════════════════════════ */
#wrapper {
  clear: both;
  position: relative;
}

#main { min-width: 0; }
#content { padding-bottom: 2em; }

/* Content-info (pages spéciales) */
#content-info {
  font-family: var(--font-sans);
  font-size: 0.875em;
}
#content-info h2 { color: var(--c-orange); margin-top: 1em; margin-bottom: 0.33em; }
#subcategories {
  font-family: var(--font-sans);
  padding-top: 1em; font-size: 0.875em;
}

/* Pagination */
.navlinks, .pagination {
  margin: 2em 0 1em;
  padding: 6px 10px;
  text-align: center;
  font-size: 0.875em;
  background: var(--c-surface);
  border: 0.5px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text2);
  clear: both;
}
.navlinks a, .pagination a {
  color: var(--c-text2);
  font-weight: 500;
}
.navlinks a:hover, .pagination a:hover { color: var(--c-orange); background: none; }

/* ══════════════════════════════════════════
   BILLETS — div.post
══════════════════════════════════════════ */
.post {
  background: var(--c-bg3);
  border: 0.5px solid var(--c-border);
  border-top: 2px solid var(--c-orange);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: box-shadow var(--t), transform var(--t);
}
.post:hover {
  box-shadow: 0 4px 20px rgba(249,115,22,0.08);
  transform: translateY(-1px);
}

/* Date du jour */
.day-date {
  display: block !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
}

/* Titre billet */
.post-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
  margin-bottom: 0.66em;
}
.post-title a {
  color: var(--c-text);
  text-decoration: none;
}
.post-title a:hover, .post-title a:focus {
  color: var(--c-orange);
  background: none;
  text-decoration: none;
}
.short .post-title { margin-bottom: 0.33em; }

/* Méta */
.post-attr { margin-bottom: 0.75em; }

.post-info, .post-tags {
  font-size: 0.78rem;
  color: var(--c-muted);
  margin: 0;
  background: transparent;
  display: block;
  padding: 0 0.66em 0 0;
  font-family: var(--font-sans);
  line-height: 1.4;
}
.post-info { margin-bottom: 0.4rem; }

.post-date, .post-attr a { white-space: nowrap; }
.post-author { color: var(--c-text2); font-weight: 500; }

/* Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0.75rem;
}
.post-tags li {
  display: inline;
  padding-left: 0;
  background: none;
}
.post-tags li::after { content: ''; }
.post-tags li:first-child { padding-left: 0; background: none; }
.post-tags li a {
  display: inline-block;
  background: var(--c-orange-light);
  color: var(--c-orange-dark);
  border: 0.5px solid var(--c-orange-mid);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background var(--t);
}
.post-tags li a:hover {
  background: var(--c-orange-mid);
  text-decoration: none;
}

/* Contenu */
.post-content {
  font-size: 0.97rem;
  color: var(--c-text2);
  line-height: 1.8;
  padding-bottom: 9px;
}
.post-content p:first-child, .short .post-content p { margin-top: 0; }
.post-content p { margin: 0 0 1rem; }

.post-content a:link, .post-content a:visited { color: var(--c-orange); font-weight: normal; }
.post-content a:hover, .post-content a:focus { color: var(--c-orange-dark); background: none; }

.post-content img, .post-excerpt img {
  border: 0.5px solid var(--c-border);
  border-radius: var(--radius);
  max-width: 96%;
  padding: 4px;
  margin: 0.5rem 0;
}
img.smiley { border: none; padding: 0; }

.post h3, .post h4, .post h5, .post h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--c-text);
  font-variant: normal;
}

.post-content ul, .post-excerpt ul { list-style-type: square; margin-left: 1em; }
.post ol { margin-left: 1em; }

/* Image miniature posts courts */
.post-icon {
  display: block;
  float: left;
  margin: 0.33em 1em 0.66em 0;
  padding: 4px;
  border: 0.5px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: none;
}

/* Lire la suite */
.read-it {
  text-align: right;
  margin: 0 0 0.5em;
  clear: both;
}
.read-it a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-orange);
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: background var(--t), transform var(--t);
}
.read-it a:hover { background: var(--c-orange-dark); transform: translateX(2px); }
.read-it a::after { content: ' →'; }

/* Infos commentaires */
.post-info-co {
  position: absolute;
  bottom: 0.75rem;
  right: 1.75rem;
  margin: 0;
  background: transparent;
  font-size: 0.75rem;
  font-style: italic;
  font-family: var(--font-sans);
  padding-right: 0.5em;
  max-width: 60%;
}
.post-info-co a {
  text-decoration: none;
  padding-right: 0.75em;
  padding-left: 0;
  color: var(--c-muted);
  background: none !important;
}
.post-info-co a:hover { color: var(--c-orange); background: none; }

/* Footnotes, attachments */
.footnotes { font-size: 0.875em; }
.footnotes h4 { font-variant: normal; font-weight: bold; }
#attachments { font-size: 0.875em; border-bottom: 0.5px solid var(--c-border); margin: 0 0 2em; }
#attachments h3 { font-weight: normal; color: var(--c-muted); }
#attachments ul { list-style-type: none; margin: 0 0 1em; padding: 0; }

/* ══════════════════════════════════════════
   COMMENTAIRES
══════════════════════════════════════════ */
#comments, #ping-url, #comment-form, #comments-feed {
  color: var(--c-text2);
  font-family: var(--font-sans);
  font-size: 0.875em;
  clear: both;
}
#comment-form, #ping-url {
  padding: 1em;
  background: var(--c-surface);
  margin-top: 1em;
  border: 0.5px solid var(--c-border);
  border-radius: var(--radius-lg);
}
#pr {
  padding: 1em;
  border: 1px dashed var(--c-border2);
  border-radius: var(--radius);
  margin-bottom: 1em;
}
#comments h3, #ping-url h3, #pr h3, #comment-form h3 {
  margin-top: 2em;
  color: var(--c-text2);
}
#comment-form h3, #ping-url h3 { margin-top: 0; }

#comments > ul { margin-left: 0; padding-left: 0; list-style-type: none; }
.comment, .ping { clear: left; margin-left: 0; border-top: 0.5px solid var(--c-border); }
.comment-info { padding-bottom: 0.2em; line-height: 1.25; color: var(--c-muted); font-family: var(--font-sans); }
#comments .me { color: var(--c-orange); }
.comment-number {
  font-size: 2em; font-weight: normal; font-style: italic;
  text-decoration: none; color: var(--c-orange);
  display: block; width: 2em; background: none !important;
}

#comments-feed { border-top: 0.5px solid var(--c-border); margin-top: 1.5em; padding-top: 1em; }

.field { margin-bottom: 1em; }
.field label { display: block; font-size: 0.875em; color: var(--c-text2); text-indent: 6px; }
.field input, .field textarea {
  display: block; font-size: 100%;
  border: 0.5px solid var(--c-border2);
  padding: 6px 10px; border-radius: var(--radius);
  font-family: var(--font-sans);
  width: 100%;
  background: var(--c-bg);
  color: var(--c-text);
  transition: border-color var(--t);
}
.field input:focus, .field textarea:focus {
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
  outline: none;
}
.field textarea { padding: 0.5em 1em; }
#c_content { width: 95%; padding: 4px; }
.form-help { margin-top: 0; font-size: 0.875em; font-style: italic; }

#comment-form input[type='submit'],
#comment-form input[type='reset'] {
  display: inline-block;
  font-size: 0.875em;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--t);
  width: auto;
}
#comment-form input[type='submit'] {
  background: var(--c-orange);
  color: #fff;
}
#comment-form input[type='submit']:hover { background: var(--c-orange-dark); text-decoration: none; }
#comment-form input[type='reset'] {
  background: var(--c-surface);
  color: var(--c-text2);
  border: 0.5px solid var(--c-border2);
}
#comment-form input[type='reset']:hover { background: var(--c-border); text-decoration: none; }

/* ══════════════════════════════════════════
   SIDEBAR — #sidebar
══════════════════════════════════════════ */
#sidebar { font-size: 0.875em; font-family: var(--font-sans); }
#sidebar img { max-width: 100%; }

#blognav > div, #blogextra > div {
  background: var(--c-bg3);
  border: 0.5px solid var(--c-border);
  border-top: 2px solid var(--c-orange);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25em;
  padding: 1rem 1.25rem;
  box-shadow: none;
}

#sidebar h2 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-orange);
  font-family: var(--font-sans);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.5px solid var(--c-border);
}
#sidebar h2.toggle { background: none; padding-left: 0; }
#sidebar h2.expanded { background: none; }
#sidebar h2.toggle a { text-decoration: none; color: var(--c-orange); }

#sidebar h3 {
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--c-text2);
  margin-bottom: 0;
}

#sidebar ul { margin: 0.5em 0; list-style-type: none; padding: 0; }
#sidebar ul li { padding-left: 0; background: none; }
#sidebar ul li ul { margin: 0; }
#sidebar ul li ul li { background: none; padding-left: 12px; }

/* Tags sidebar */
#sidebar .tags ul { display: flex; flex-wrap: wrap; gap: 4px; }
#sidebar .tags ul li, #sidebar .tags ul li a {
  display: inline; width: auto;
  padding: 0; background: none;
  text-decoration: none; line-height: 1.5em;
}
#sidebar .tags ul li a {
  display: inline-block;
  background: var(--c-orange-light);
  color: var(--c-orange-dark);
  border: 0.5px solid var(--c-orange-mid);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background var(--t);
}
#sidebar .tags ul li a:hover { background: var(--c-orange-mid); text-decoration: none; }
#sidebar .tags p { margin: 0.75rem 0 0; }
#sidebar .tags p a { font-size: 0.8rem; font-weight: 600; color: var(--c-text2); }
#sidebar .tags p a:hover { color: var(--c-orange); background: none; }

/* Syndication sidebar */
#sidebar .syndicate li { background-image: none; padding-left: 0; }
#sidebar .syndicate a { color: var(--c-orange); font-weight: 500; }
#sidebar .syndicate a:hover { color: var(--c-orange-dark); background: none; }

/* Recherche */
#search p {
  background: transparent;
  text-align: right;
  border: none;
  vertical-align: middle;
  padding: 0;
  display: flex;
  gap: 6px;
}
#search input { margin: 0; border: none; height: auto; line-height: 2em; }
#q {
  float: none;
  flex: 1;
  width: auto;
  font-size: 100%;
  padding: 0.4rem 0.75rem;
  border: 0.5px solid var(--c-border2) !important;
  border-radius: var(--radius);
  background: var(--c-bg);
  color: var(--c-text);
  transition: border-color var(--t);
}
#q:focus {
  border-color: var(--c-orange) !important;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
  outline: none;
}
#search .submit {
  background: var(--c-orange);
  color: #fff;
  vertical-align: top;
  width: auto;
  padding: 0.4rem 0.85rem;
  font-variant: normal;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  height: auto;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--t);
}
#search .submit:hover, #search .submit:focus {
  background: var(--c-orange-dark);
}

.category-current { font-weight: bold; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer {
  clear: both;
  background: var(--c-text);
  color: rgba(255,255,255,0.55);
  font-size: 0.875em;
  font-family: var(--font-sans);
  border-top: 2px solid var(--c-orange);
}
#footer p {
  padding: 0.75em 1.5em;
  margin: 0;
  text-align: right;
  max-width: 960px;
  margin: 0 auto;
}
#footer a { color: rgba(255,255,255,0.65); }
#footer a:hover, #footer a:focus {
  color: var(--c-orange);
  background: none;
  text-decoration: none;
}

#blogcustom {
  clear: both;
  background: #111;
  color: rgba(255,255,255,0.5);
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
  max-width: 100%;
}
#blogcustom h2 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-sans);
  margin: 0 0 0.5rem;
}
#blogcustom a:link, #blogcustom a:visited { color: var(--c-orange); }
#blogcustom a:hover { color: #fff; background: none; }
#blogcustom > div {
  display: inline-block;
  vertical-align: top;
  width: auto;
  padding: 0 2rem 0 0;
}
#blogcustom div.feed { background-image: none; }
#blogcustom img { max-width: 100%; }
#blogcustom ul { padding: 0.5em 0 0; margin: 0; text-align: left; line-height: 1.75; list-style: none; }
#blogcustom li { padding-left: 0; margin-left: 0; }
#blogcustom .syndicate ul, #blogcustom .tags ul { list-style-type: none; padding-left: 0; }

/* Stickers RSS */
#stickers { list-style-type: none; margin: 0; display: none; }

/* Haut de page */
#gotop {
  list-style: none;
  margin: 0; padding: 0.5rem 1.5rem;
  text-align: right;
  background: var(--c-surface);
  border-top: 0.5px solid var(--c-border);
}
#gotop li { background: none; padding-left: 0; }
#gotop li a { font-size: 0.78rem; color: var(--c-muted); text-decoration: none; }
#gotop li a:hover { color: var(--c-orange); background: none; }

/* Flux RSS */
.feed { padding-left: 0; background: none; }

/* ══════════════════════════════════════════
   TAGS (taille nuage)
══════════════════════════════════════════ */
.dc-tags .content-inner, .dc-tags .content-inner ul { font-size: 1.25em; margin: 0; padding: 0; }
.dc-tags #content ul li, .dc-tags #content ul li a,
#blogcustom .tags ul li, #blogcustom .tags ul li a {
  display: inline; width: auto; padding: 0 0.5em 0 0;
  background: none; text-decoration: none; line-height: 1.5em;
}
.tags ul li a:hover { background: none; }
.dc-tags .tag0, .tags .tag0   { font-size: 85%; }
.dc-tags .tag10, .tags .tag10 { font-size: 90%; }
.dc-tags .tag20, .tags .tag20 { font-size: 95%; }
.dc-tags .tag30, .tags .tag30 { font-size: 100%; }
.dc-tags .tag40, .tags .tag40 { font-size: 105%; }
.dc-tags .tag50, .tags .tag50 { font-size: 110%; }
.dc-tags .tag60, .tags .tag60 { font-size: 115%; }
.dc-tags .tag70, .tags .tag70 { font-size: 120%; }
.dc-tags .tag80, .tags .tag80 { font-size: 125%; }
.dc-tags .tag90, .tags .tag90 { font-size: 130%; }
.dc-tags .tag100, .tags .tag100 { font-size: 135%; }

/* ══════════════════════════════════════════
   CLASSES UTILITAIRES
══════════════════════════════════════════ */
.error { border: 1px solid #c44; background: #fef2f2; padding: 0.5em; border-radius: var(--radius); }
.error ul { padding-left: 20px; }
.error li { list-style: square; }

.left { float: left; margin-right: 1em; }
.right { float: right; margin-left: 1em; }
.center { margin-left: auto; margin-right: auto; }
.left-text { text-align: left; }
.right-text { text-align: right; }
.center-text { text-align: center; }
.little-text { font-size: 0.875em; }
.little-upper-text { font-size: 0.875em; text-transform: uppercase; }
hr.hidden { background: #fff; color: #fff; border-color: #fff; margin: 0; }

/* ══════════════════════════════════════════
   PAGES SPÉCIFIQUES
══════════════════════════════════════════ */
.arch-block { display: inline-block; margin: 0 0 2em 4em; vertical-align: top; }
.arch-block:first-child { margin-left: 0; }
.arch-block h3 { margin-bottom: 1em; font-size: 1.2em; font-style: italic; font-weight: normal; color: var(--c-orange); }
.arch-block h4 { font-family: var(--font-sans); font-weight: normal; font-size: 1.1em; margin: 0; }
.arch-block ul { list-style-type: none; margin: 0; padding: 0; }
.arch-block ul ul { margin-left: 20px; }

.dc-archive #search { padding: 4px 8px; }
.dc-archive-month .title h2.post-title { font-size: 1.3em; }

.dc-404 #content-info { padding-bottom: 200px; }
.dc-404 .content-inner ul { margin-left: 0; padding-left: 0; list-style-type: none; }
.dc-404 .content-inner h3 { font-size: 1.1em; }

.dc-search #content-info em { color: var(--c-orange); }

/* ══════════════════════════════════════════
   CLEARERS (obligatoires Ductile)
══════════════════════════════════════════ */
.post, .pagination, .navlinks, .footnotes,
#attachments, .read-it, .post-info-co,
#comments, #footer, .clearer { clear: both; }

.post-content::before, .post-content::after { content: ''; display: table; }
.post-content::after { clear: both; }
.post::before, .post::after { content: ''; display: table; }
.post::after { clear: both; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 720px) {
  #top { padding: 1rem; }
  .post { padding: 1.25rem; }
  .post-info-co { position: static; max-width: 100%; margin-top: 0.5rem; }
}

/* ══════════════════════════════════════════
   ACCESSIBILITÉ — REDUCED MOTION
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-delay: 0s !important;
    transition-duration: 0s !important;
  }
}

/* ══════════════════════════════════════════
   OVERRIDE LARGEUR — plus d'espace
══════════════════════════════════════════ */
@media only screen and (width > 1024px) {
  #wrapper { padding: 0 3% !important; }
  #content { margin: 0 17em 0 0 !important; }
  #sidebar { width: 15em !important; }
  #main { margin: 0 -15em 0 0 !important; }
}

@media only screen and (width > 1280px) {
  #content { margin: 0 17em 0 0 !important; }
  .full .post-attr,
  .simple .post-attr {
    margin-left: 0 !important;
    float: none !important;
    width: auto !important;
    text-align: left !important;
  }
  #content-info, .navlinks, .pagination {
    margin-left: 0 !important;
  }
}

@media only screen and (width > 1600px) {
  #wrapper { padding: 0 5% !important; }
}

















/* ============================================
   MY BLOG — Header H Animé — Dotclear
   Fichier : header-myblog.css
   À placer dans : /themes/TON-THEME/css/
   Et à lier dans _head.html ou style.css
   ============================================ */

/* === ANIMATIONS KEYFRAMES === */

@keyframes hdr-stripe-slide {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

@keyframes hdr-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hdr-title-reveal {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to   { clip-path: inset(0 0% 0 0);   opacity: 1; }
}

@keyframes hdr-avatar-pop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.12); }
  100% { transform: scale(1);   opacity: 1; }
}

@keyframes hdr-pulse-ring {
  0%   { box-shadow: 0 0 0 0px  rgba(229, 103, 0, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(229, 103, 0, 0);    }
  100% { box-shadow: 0 0 0 0px  rgba(229, 103, 0, 0);    }
}

@keyframes hdr-nav-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hdr-active-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

/* === CONTENEUR PRINCIPAL === */

#site-header {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  margin-bottom: 2rem;
  font-family: system-ui, -apple-system, sans-serif;
}

/* === BARRE ORANGE EN HAUT === */

#site-header .header-stripe {
  height: 5px;
  background: #e56700;
  animation: hdr-stripe-slide 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* === CORPS DU HEADER === */

#site-header .header-body {
  padding: 22px 28px 0;
}

/* === LIGNE PRINCIPALE : TITRE + AVATAR === */

#site-header .header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

/* === BLOC GAUCHE : NOM DU BLOG === */

#site-header .header-left {
  animation: hdr-fade-up 0.55s 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
}

#site-header .header-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e56700;
  margin-bottom: 5px;
}

#site-header .header-title {
  font-size: 30px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 5px;
  animation: hdr-title-reveal 0.55s 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

#site-header .header-title a {
  color: inherit;
  text-decoration: none;
}

#site-header .header-badge {
  display: inline-block;
  background: #e56700;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 7px;
}

#site-header .header-desc {
  font-size: 13px;
  color: #666666;
  animation: hdr-fade-up 0.5s 0.5s both;
}

/* === BLOC DROIT : AVATAR === */

#site-header .header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  animation: hdr-fade-up 0.5s 0.4s both;
}

#site-header .header-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e56700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  cursor: default;
  animation:
    hdr-avatar-pop  0.5s  0.55s cubic-bezier(0.4, 0, 0.2, 1) both,
    hdr-pulse-ring  2.2s  1.2s  ease-out infinite;
  transition: transform 0.18s, background 0.18s;
  text-decoration: none;
}

#site-header .header-avatar:hover {
  transform: scale(1.1);
  background: #c45800;
  animation: none;
}

#site-header .header-handle {
  font-size: 11px;
  color: #e56700;
  font-weight: 500;
  animation: hdr-fade-up 0.4s 0.7s both;
  text-decoration: none;
}

#site-header .header-handle:hover {
  text-decoration: underline;
}

/* === BARRE DE NAVIGATION === */

#site-header .header-nav {
  display: flex;
  align-items: center;
  border-top: 1px solid #e5e5e5;
  margin-top: 0;
}

#site-header .header-nav a {
  font-size: 13px;
  color: #888888;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  animation: hdr-nav-in 0.4s both;
}

#site-header .header-nav a:nth-child(1) { animation-delay: 0.55s; }
#site-header .header-nav a:nth-child(2) { animation-delay: 0.65s; }
#site-header .header-nav a:nth-child(3) { animation-delay: 0.75s; }
#site-header .header-nav a:nth-child(4) { animation-delay: 0.85s; }

#site-header .header-nav a:hover {
  color: #111111;
}

#site-header .header-nav a.active,
#site-header .header-nav a[aria-current="page"] {
  color: #e56700;
  border-bottom: 3px solid #e56700;
  animation: hdr-active-pulse 3s 1.5s ease-in-out infinite;
}

/* === RESPONSIVE MOBILE === */

@media (max-width: 600px) {
  #site-header .header-body {
    padding: 16px 16px 0;
  }

  #site-header .header-title {
    font-size: 22px;
  }

  #site-header .header-avatar {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  #site-header .header-nav a {
    padding: 10px 10px;
    font-size: 12px;
  }
}















/* ================================================
   CORRECTIFS TAILLE — à coller à la fin de style.css
   Remplace / complète le bloc précédent
   ================================================ */

/* === HEADER : taille et espacement === */

#site-header .header-body {
  padding: 32px 36px 0 !important;
}

#site-header .header-top-row {
  margin-bottom: 24px !important;
}

#site-header .header-eyebrow {
  font-size: 11px !important;
  margin-bottom: 8px !important;
}

#site-header .header-title {
  font-size: 42px !important;
  margin-bottom: 8px !important;
}

#site-header .header-badge {
  font-size: 13px !important;
  padding: 3px 8px !important;
}

#site-header .header-desc {
  font-size: 15px !important;
  /* Neutralise le fond beige de Ductile */
  background: none !important;
  border: none !important;
  border-left: 3px solid #e56700 !important;
  padding: 6px 12px !important;
  margin-top: 8px !important;
  border-radius: 0 !important;
}

#site-header .header-avatar {
  width: 54px !important;
  height: 54px !important;
  font-size: 16px !important;
}

#site-header .header-handle {
  font-size: 12px !important;
}

#site-header .header-nav a {
  font-size: 14px !important;
  padding: 14px 18px !important;
}

/* === CONTENU DES ARTICLES : taille === */

/* Titre de l'article */
#main #content .post-title,
#main #content h2.post-title,
#main #content .post h2 {
  font-size: 26px !important;
  line-height: 1.3 !important;
  margin-bottom: 8px !important;
}

/* Corps du texte */
#main #content .post-content,
#main #content .post-content p {
  font-size: 16px !important;
  line-height: 1.8 !important;
  margin-bottom: 1.2em !important;
}

/* Sous-titres h1/h2/h3 dans les articles */
#main #content .post-content h1 {
  font-size: 28px !important;
  margin: 1.8em 0 0.6em !important;
}

#main #content .post-content h2 {
  font-size: 22px !important;
  margin: 1.6em 0 0.5em !important;
}

#main #content .post-content h3 {
  font-size: 18px !important;
  margin: 1.4em 0 0.4em !important;
}

/* Date et auteur */
#main #content .post-info,
#main #content .post-info p {
  font-size: 13px !important;
}

/* Mots-clés / tags */
#main #content .post-tags {
  font-size: 13px !important;
}

/* Sidebar : titres widgets */
#sidebar h2,
#sidebar .sidebar-title {
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
}

/* Sidebar : contenu */
#sidebar p,
#sidebar li,
#sidebar a {
  font-size: 14px !important;
}