summary {
  cursor: pointer;
}

.voir-plus > summary::before {
  content: "Details";
  display: block; /* Or inline, depending on your design */
}

.voir-plus > summary::after {
  content: " ▼";
  float: right;
}

.voir-plus[open] > summary::after {
  content: " ▲";
}

.voir-plus > summary {
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
}

.voir-plus > p {
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-top: none;
}

header {
  /*background-color: #f5f5f9 !important;*/
}

/*
  The CSS in this style tag is based off of Bear Blog's default CSS.
  https://github.com/HermanMartinus/bearblog/blob/297026a877bc2ab2b3bdfbd6b9f7961c350917dd/templates/styles/blog/default.css
  License MIT: https://github.com/HermanMartinus/bearblog/blob/master/LICENSE.md
 */
details {
  /*margin-left: 2em;*/
}

:root {
}
a {
  color: inherit;
  text-decoration: none;
  transition: text-decoration 0.2s;
}
a:hover,
a:focus {
  text-decoration: underline;
}

.zone-jeunesse {
}

.title {
  text-align: center;
  line-height: 1;
}

ul {
  /*
    padding-inline-start: 2em;*/
}

li {
  /*margin: 1em 0;*/
}

body {
  margin: 0;
  /*
  The CSS in this style tag is based off of Bear Blog's default CSS.
  https://github.com/HermanMartinus/bearblog/blob/297026a877bc2ab2b3bdfbd6b9f7961c350917dd/templates/styles/blog/default.css
  License MIT: https://github.com/HermanMartinus/bearblog/blob/master/LICENSE.md
 */
  font-family: sans-serif;
  padding: 0;
  text-align: left;
  background: linear-gradient(var(--gray-gradient)) no-repeat;
  background-size: 100% 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: rgb(var(--gray-dark));
  line-height: 1.7;
}
main {
  width: 720px;
  max-width: calc(100% - 2em);
  margin: auto;
  padding: 1em 1em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1rem 0rem 1rem 0;
  color: rgb(var(--black));
  line-height: 1.2;
}
h1 {
  font-size: 1.8em;
}
h2 {
  font-size: 1.6em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.4em;
}
h5 {
  font-size: 1.2em;
}
strong,
b {
  font-weight: 700;
}
p {
  font-size: 1em;
}

textarea {
  width: 100%;
  /*font-size: 16px;*/
}
input {
  /*font-size: 16px;*/
}
table {
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
code {
  background-color: rgb(var(--gray-light));
}
pre {
}
pre > code {
  all: unset;
}
blockquote {
  border-left: 4px solid grey;
  padding: 0 0 0 20px;
  margin: 0px;
  font-size: 1em;
}
hr {
  border-top: 1px solid rgb(var(--gray-light));
}
body {
  font-size: 1rem;
}
main {
  padding: 1em;
}

.sr-only {
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  /* IE6, IE7 - a 0 height clip, off to the bottom right of the visible 1px box */
  clip: rect(1px 1px 1px 1px);
  /* maybe deprecated but we need to support legacy browsers */
  clip: rect(1px, 1px, 1px, 1px);
  /* modern browsers, clip-path works inwards from each corner */
  clip-path: inset(50%);
  /* added line to stop words getting smushed together (as they go onto seperate lines and some screen readers do not understand line feeds as a space */
  white-space: nowrap;
}
