/* === Base "Texte simple" === */
:root {
  --ts-maxw: 72ch;
  --ts-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  --ts-text: #1a1a1a;
  --ts-muted: #6b7280;
  --ts-bg: #ffffff;
  --ts-link: #0d6efd;
  --ts-border: #e5e7eb;
}

.ts-wrap {
  background: var(--ts-bg);
  display: block;
  padding: clamp(1.5rem, 2vw, 3rem) 1rem;
}

.ts-article {
  margin: 0 auto;
  max-width: var(--ts-maxw);
  font-family: var(--ts-font);
  color: var(--ts-text);
  line-height: 1.65;
  font-size: 1.0625rem;
  padding: 20px;
}

.ts-header {
  margin-bottom: 1.5rem;
}

.ts-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 .25rem;
  letter-spacing: -.01em;
}

.ts-excerpt {
  margin: 0;
  color: var(--ts-muted);
  font-size: 1.05rem;
}

.ts-content>*+* {
  margin-top: 1rem;
  padding : 10px 0 16px 0;
}

h1 {
  font-family: "Abril Fatface", serif !important;
  text-transform: none !important;
  letter-spacing: -0.001em !important;
  color: #233D4B !important;

}
h1:before {
  content: "";
  display: block;
  background-color: #E73157; /* Couleur du soulignement */
  width: 47px;
  height: 8px;
  margin-bottom: 10px;
  
}

h2 {
  font-family: "lato", sans-serif !important;
  text-transform: uppercase !important;
  font-size: 1.5rem !important;
  margin-top: 2rem !important;
  margin-bottom: 0rem !important;
  font-weight: 600 !important;
  /*letter-spacing: -0.05em !important;*/
  
}



h2 {
  position: relative;
  color: #233D4B; /*#E73157;*/
  display: inline-block; /* Nécessaire pour que le soulignement suive la largeur du texte */
  padding-bottom: 0.2em;  /* Espace entre le texte et le soulignement */
  text-transform: uppercase !important;
}




.ts-content h2::before {
    content: none !important;
    display: block;
    width: 47px;
    height: 8px;
    background-color: #edbd36;
    margin-bottom: 0px;
}

.ts-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

.ts-content a {
  color: var(--ts-link);
  text-decoration: underline;
  text-underline-offset: .15em;
}

.ts-content a:hover {
  text-decoration-thickness: 2px;
}

.ts-content blockquote {
  border-left: 3px solid var(--ts-border);
  padding-left: 1rem;
  color: var(--ts-muted);
  font-style: italic;
}

.ts-content code,
.ts-content pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  background: #f8fafc;
  border: 1px solid var(--ts-border);
  border-radius: 6px;
}

.ts-content code {
  padding: .15rem .35rem;
}

.ts-content pre {
  padding: .9rem;
  overflow: auto;
}

.ts-content ul,
.ts-content ol {
  padding-left: 1.25rem;
}

.ts-content hr {
  border: 0;
  border-top: 1px solid var(--ts-border);
  margin: 2rem 0;
}

.ts-pages {
  margin-top: 2rem;
}

.ts-pages .post-page-numbers {
  display: inline-block;
  padding: .35rem .6rem;
  border: 1px solid var(--ts-border);
  margin-right: .35rem;
  border-radius: 6px;
  text-decoration: none;
}

.ts-pages .current {
  background: #f3f4f6;
}