 * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */

  -webkit-font-smoothing: antialiased; /* font anti-crénelage (anti-aliasing) */
  -moz-osx-font-smoothing: grayscale; /* font anti-crénelage (anti-aliasing) */
}

:root {
  --padding: 1rem;
  --color-black: #2B2B2B;
  --color-white: #Ffffff;
  --color-grey: #808080;
  --color-light: #F8F7F8;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-light);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #00f;
  --color-code-purple:      #F1EBFF;
  --font-family-70: "Redaction70", serif;
  --font-family-50: "Redaction50", serif;
  --font-family-20: "Redaction20", serif;
}

@font-face {
  src: local("Redaction70-Regular"),
       url("fonts/Redaction70-Regular.otf") format("opentype-variations"),
       url("fonts/Redaction70-Regular.woff2") format("woff2-variations");
  font-family: "Redaction70";
  font-style: normal;
  font-weight: normal;
}
@font-face {
  src: local("Redaction70-Italic"),
       url("fonts/Redaction70-Italic.otf") format("opentype-variations"),
       url("fonts/Redaction70-Italic.woff2") format("woff2-variations");
  font-family: "Redaction70";
  font-style: oblique;
  font-weight: normal;
}
@font-face {
  src: local("Redaction70-Bold"),
       url("fonts/Redaction70-Bold.otf") format("opentype-variations"),
       url("fonts/Redaction70-Bold.woff2") format("woff2-variations");
  font-family: "Redaction70";
  font-style: normal;
  font-weight: bold;
}
@font-face {
  src: local("Redaction50-Regular"),
       url("fonts/Redaction50-Regular.otf") format("opentype-variations"),
       url("fonts/Redaction50-Regular.woff2") format("woff2-variations");
  font-family: "Redaction50";
  font-style: normal;
  font-weight: normal;
}
@font-face {
  src: local("Redaction50-Italic"),
       url("fonts/Redaction50-Italic.otf") format("opentype-variations"),
       url("fonts/Redaction50-Italic.woff2") format("woff2-variations");
  font-family: "Redaction50";
  font-style: oblique;
  font-weight: normal;
}
@font-face {
  src: local("Redaction50-Bold"),
       url("fonts/Redaction50-Bold.otf") format("opentype-variations"),
       url("fonts/Redaction50-Bold.woff2") format("woff2-variations");
  font-family: "Redaction50";
  font-style: normal;
  font-weight: bold;
}
@font-face {
  src: local("Redaction20-Regular"),
       url("fonts/Redaction20-Regular.otf") format("opentype-variations"),
       url("fonts/Redaction20-Regular.woff2") format("woff2-variations");
  font-family: "Redaction20";
  font-style: normal;
  font-weight: normal;
}
@font-face {
  src: local("Redaction20-Italic"),
       url("fonts/Redaction20-Italic.otf") format("opentype-variations"),
       url("fonts/Redaction20-Italic.woff2") format("woff2-variations");
  font-family: "Redaction20";
  font-style: oblique;
  font-weight: normal;
}
@font-face {
  src: local("Redaction20-Bold"),
       url("fonts/Redaction20-Bold.otf") format("opentype-variations"),
       url("fonts/Redaction20-Bold.woff2") format("woff2-variations");
  font-family: "Redaction20";
  font-style: normal;
  font-weight: bold;
}
@font-face {
  src: local("Redaction-Regular"),
       url("fonts/Redaction-Regular.otf") format("opentype-variations"),
       url("fonts/Redaction-Regular.woff2") format("woff2-variations");
  font-family: "Redaction";
  font-style: normal;
  font-weight: normal;
}
@font-face {
  src: local("Redaction-Italic"),
       url("fonts/Redaction-Italic.otf") format("opentype-variations"),
       url("fonts/Redaction-Italic.woff2") format("woff2-variations");
  font-family: "Redaction";
  font-style: oblique;
  font-weight: normal;
}
@font-face {
  src: local("Redaction-Bold"),
       url("fonts/Redaction-Bold.otf") format("opentype-variations"),
       url("fonts/Redaction-Bold.woff2") format("woff2-variations");
  font-family: "Redaction";
  font-style: normal;
  font-weight: bold;
}
@font-face {
    src: url('fonts/wingdings-webfont.woff2') format('woff2'),
         url('fonts/wingdings-webfont.woff') format('woff'),
         url('fonts/wingdings.ttf') format('truetype-variations');
    font-family: "Wingdings";
    font-weight: normal;
    font-style: normal;
}
  
html {
  font-family: var(--font-family-20);
  color: var(--color-text);
  background: var(--color-background);
  scrollbar-gutter: stable;
}
body {
  text-rendering: optimizeLegibility;
  margin: 0 auto;
}
main {
  padding:550px 0 52.5px ;
}
li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
a:hover {
  font-family: var(--font-family-70);
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}
img {
  width: 100%;
}

.bg-light {
  background-color: var(--color-light);
}

.header {
  background-color: var(--color-background);
  position: fixed;
  z-index: 1;
  width: 100%;
  padding: 1rem 1rem 458px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px dashed var(--color-black);
/*  align-items: center;*/
}

#vanish1 {
  transition: ease-in opacity 0.01s, ease-out visibility 0.01s;
}
#vanish2 {
  transition: ease-in opacity 0.1s, ease-out visibility 0.1s;
}

.logo {
/*  padding: 1rem 1rem 1.5rem 1rem;*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.logoImg {
  padding-bottom: 0px;
  width: 74px;
  height: 74px;
  border: 1px dashed var(--color-black);
  margin-right: 1rem;
}

.bandeau img {
  object-fit: cover;
  height: 424px;
  position: fixed;
  z-index: 1;
  width: calc(100% - 32px);
}
.bandeau h1 {
  z-index: 1;
  font-size: 2rem;
  /*color: var(--color-light);
  mix-blend-mode: color-dodge;*/
  color: white;
  mix-blend-mode: difference;
  font-family: var(--font-family-20);
}
.bandeauBlank {
  position: fixed;
  z-index: 1;
  top: 108px;
  left: 16px;
  height: 424px;
  width: calc(100% - 34px);
  border: 1px dashed var(--color-black);
}

.menu {
  display: flex;
}
.menu a {
  font-size: 2rem;
  line-height: 38px;
  font-family: var(--font-family-20);
  display: block;
  height: fit-content;
  color: var(--color-code-blue);
}
.menu a[aria-current] {
  text-decoration: underline;
}
.menu a:hover {
  font-family: var(--font-family-70);
}

.social {
  display: flex;
  padding: 0 .5rem;
}
.social a {
  padding: 1rem .5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(12, 1fr);
}
.grid > .column {
  grid-column: span var(--columns);
  margin-bottom: var(--gutter);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0;
}

.tags li {
  margin: 0 12px 16px 0;
}

.tags a {
  padding: 4px 12px 4px 12px;
  background-color: var(--color-white);
  border-radius: 8px;
}
.tags a:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

.blog {
  display: block;
  margin: 0 1rem;
}

.CTA {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lien {
  display: block;
  padding: 12px 16px;
  background-color: var(--color-white);
  border-radius: 8px;
  max-width: fit-content;
  text-overflow: ellipsis;
}
.lien:hover {
  background: var(--color-black);
  color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.default {
  margin: 16px;
  
}
.default .h1 {
  line-height: unset !important;
}
.text {
  font-size: 2rem;
  max-width: 680px;
}
.text > * {
  width: 100%;
/*  max-width: 680px;*/
}
.text a {
  text-decoration: underline;
  color: var(--color-code-blue);
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
/*  list-style: '⌘ ';*/
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text h1,
.h1,
.intro {
  font-size: 2rem;
/*  margin-bottom: 3rem;*/
  line-height: 38px;
}
.text h2,
.h2 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 136px;
}
.text p + h2 {
  margin-top: 24px;
}

.text h3,
.h3 {
  font-weight: 600;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
/*  font-size: 1.25rem;
  line-height: 1.325em;*/
  text-align: center;
  text-align-last: center;
  font-size: 20px;
  line-height: 28px;
  font-style: italic;
  border-left: 1px dashed var(--color-text);
  border-right: 1px dashed var(--color-text);
  padding: 0 4rem;
  margin: 3rem 0;
/*  max-width: 25rem;*/
}

.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}
.text figure {
  margin: 56px 0 96px;
}
.text figure + figure {
  margin-top: -32px !important;
}

.text figcaption {
  font-family: Redaction;
  padding-top: 8px;
  line-height: 19px;
  color: var(--color-text);
  border-bottom: 1px dashed var(--color-text);
}
.text figure ul {
  line-height: 0;
  display: grid;
  gap: 8px;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}
.text figure ul li {
  list-style: none;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.footer {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 52.5px;
  padding: 1rem 1rem;
  background: var(--color-background);
  border-top: 1px dashed var(--color-black);
  justify-content: space-between;
}


.footer h2 {
  font-weight: 600;
  margin-bottom: .75rem;
}
.footer ul,
.footer p {
/*color: var(--color-text-grey);*/
}
.footer div, .signature {
  display: flex;
  align-items: center;
  height: 19.5px;
}
.footer div{
    cursor: default;
}
.footer span {
  font-family: "Wingdings";
  font-size: 32px;
  margin-right: 6px;
  height: 45px;
}
.signature:hover span{
  transform-origin: 50% 50%;
  transform: rotate(-5deg);
}

.footer a {
  color: var(--color-code-blue);
}
.footer a:hover {
/*  color: var(--color-text);*/
}
.footer img {
  margin: 0 6px 2px 0;
  width: auto;
  height: 16px;
}
.phrase2 {
  display: none;
}
.signature:hover .phrase2 {
  display: flex;
}
.signature:hover .phrase1 {
  display: none;
}

.maj {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;       
  position: fixed;
  bottom: 1rem;
  z-index: 1;
  color: var(--color-text-grey);
  pointer-events: none;
}

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}

.pagination {
  display: flex;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}
.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.coverMobile {
  display: none;
}
.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt figcaption {
  padding: 12px 0;
  border-top: 1px dashed var(--color-black);
  font-size: 20px;
  line-height: 20px;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.titre {
  display: flex;
  gap: 8px;
  text-align: center;
  word-break: break-all;
}
.subheadline {
  font-style: italic;
}

.data {
  display: flex;
  gap: 12px;
}
.note-excerpt .bandeau {
  display: none;
  align-items: center;
  justify-content: center;    
  height: 424px;
  position: fixed;
  z-index: 1;
  top: 108px;
  left: 16px;
  width: calc(100% - 32px);
}

.note-excerpt .avatar {
  display: none;
  object-fit: cover;
  height: 76px;
  width: 76px;
  position: fixed;
  z-index: 1;
  top: 16px;
  left: 16px;
}
.note-excerpt-title {
  text-transform: capitalize;
/*  font-weight: 600;*/
}
.note-excerpt-date {
  color: var(--color-text-grey);
}
.note-excerpt :hover .bandeau {
  display: flex;
}
.note-excerpt :hover .avatar {
  display: block;
}

.blog-prevnext .note-excerpt {
  max-width: 348px;
}


@media screen and (max-width: 1081px) {
.header {
  margin: 8px 8px;
  padding: 5px 8px 3px !important;
  display: block;
  border: 1px dashed var(--color-black);
  width: calc(100% - 16px);
  z-index: 2;
}
.logoImg {
  display: none;
}
.bandeauBlank {
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  height: 130px;
  left: 0;
  border: none;
  background-color: var(--color-background);
  z-index: 1;
}
.h1 {
  font-size: 24px;
  line-height: unset;
  margin-bottom: 24px;
}
.menu a {
  font-size: 24px;
  line-height: unset;
}
.grid {
grid-template-columns: 1fr;
}

.main {
  padding: 138px 0 37.5px !important;
}
.blog {
  margin: 0 8px;
}

.note-excerpt {
  line-height: unset;
}
.note-excerpt figcaption {
  display: flex;
  flex-direction: column-reverse;
  font-size: 18px;
  line-height: unset;
  gap: 6px;
  padding: 8px 0 6px;
}

.note-excerpt :hover .avatar {
  display: none;
}
.note-excerpt a {
  display: flex;
  flex-direction: column-reverse;
}
.note-excerpt .bandeau {
  display: flex;
  position: unset;
  height: 32px;
  width: 100%;
  margin-bottom: 12px;
  z-index: 0;
}
.coverDesktop {
  display: none !important;
}
.bandeau h1 {
  display: none;
}
.bandeau img {
/*  height: 32px;
  position: unset;
  z-index: 0;
  width: 100%;*/
}
.coverMobile {
  display: block;
  margin-bottom: 12px;
}

.titre {
  width: 100%;
  display: block;
  text-align: left;
  word-break: normal;
}
.titre p {
  display: none;
}
.data {
  width: 100%;
  font-size: 14px;
  justify-content: space-between;
}
.maj {
  display: none;
}
.footer {
  padding: 8px 8px;
  height: 37.5px;
}

}
