@font-face {
  font-family: "Jost-Black";
  src: url(/fonts/Jost-Black.ttf?c758141821cd9ea5cebac52a49664f4a) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url(/fonts/OpenSans-Medium.ttf?be793100b2ab027d9b747a11a9acaf71) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 100 700;
  src: url(/fonts/Material.woff2?02aebb8b316adf1b0b5b8bbaa48594b9) format("woff2");
}
:root {
  --responsive-translate: -300px;
}
@media screen and (min-width: 600px) {
  :root {
    --responsive-translate: -500px;
  }
}
@media screen and (min-width: 600px) and (min-width: 1000px) {
  :root {
    --responsive-translate: -900px;
  }
}

a {
  text-decoration: none;
}

div > div.titrePage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ececec;
}
div > div.titrePage h1 {
  transition: all 0.2s ease;
  color: #000000;
  font-family: "Jost-Black", serif;
  font-size: 40pt;
}
div.admin-control {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;
  background-color: #ececec;
  height: 40px;
  padding: 10px;
}
div.admin-control > a > button {
  font-family: "OpenSans", serif;
  font-size: 15px;
  text-align: justify;
  transition: all 0.4s ease;
  height: 35px;
  width: 100%;
  padding: 5px 15px;
  color: #FFFFFF;
  background-color: #FA5003;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}
div.admin-control > a > button:hover {
  background-color: #F6A783;
  transition: all 0.5s ease;
}
div > div.content-page {
  background-color: #ececec;
  display: flex;
  flex-direction: column;
}
div > div.content-page > div.posts {
  width: 100%;
  margin: 0 auto;
  height: auto;
  display: flex;
  max-width: 820px;
  flex-direction: column;
}
@media screen and (min-width: 650px) {
  div > div.content-page > div.posts {
    flex-direction: row;
    max-width: 75%;
  }
  div > div.content-page > div.posts div.colPosts {
    flex: 1;
  }
}
@media screen and (min-width: 1420px) {
  div > div.content-page > div.posts {
    flex-direction: row;
    max-width: 50%;
  }
}
div > div.content-page > div.posts > div {
  float: left;
}
div > div.content-page > div.posts > div > div.post {
  border-radius: 6px;
  box-sizing: border-box;
  width: calc(100% - 20px);
  margin: 20px 10px;
  height: auto;
  box-shadow: 0px 0px 15px 0px #c9c9c9;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
div > div.content-page > div.posts > div > div.post div > div {
  padding: 15px;
}
div > div.content-page > div.posts > div > div.post div.enTete {
  width: 100%;
  display: grid;
  grid-template-columns: 75% 25%;
  position: relative;
}
div > div.content-page > div.posts > div > div.post div.enTete > div.titre {
  font-family: "OpenSans", serif;
  font-size: 25px;
  font-weight: bold;
  transition: all 0.4s ease;
  color: #FA5003;
}
div > div.content-page > div.posts > div > div.post div.enTete > div.date {
  font-family: "OpenSans", serif;
  font-size: 13px;
  text-align: justify;
  transition: all 0.4s ease;
  text-align: right;
  padding-top: 20px;
}
div > div.content-page > div.posts > div > div.post div.enTete > div.actions {
  position: absolute;
  z-index: 100;
  top: 23px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: "Material Symbols Rounded", serif;
  right: 0px;
}
div > div.content-page > div.posts > div > div.post div.enTete > div.actions span.archive-post {
  color: red;
  font-size: 20px;
  display: none;
  cursor: pointer;
}
div > div.content-page > div.posts > div > div.post div.mainImage > div.image {
  aspect-ratio: 20/9;
  height: auto;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
div > div.content-page > div.posts > div > div.post div.mainImage > div.image > img {
  aspect-ratio: inherit;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
div > div.content-page > div.posts > div > div.post div.resume > div.texte {
  max-height: 50vh;
  overflow: hidden;
  font-family: "OpenSans", serif;
  font-size: 15px;
  text-align: justify;
  transition: all 0.4s ease;
  text-wrap: wrap;
  -webkit-hyphens: auto;
          hyphens: auto;
}
div > div.content-page > div.posts > div > div.post div.footer > div.savoirPlus {
  font-family: "OpenSans", serif;
  font-size: 15px;
  text-align: right;
  transition: all 0.4s ease;
  color: #FA5003;
  font-weight: bold;
}
div > div.content-page > div.posts > div > div.post div.footer > div.savoirPlus > a {
  color: #FA5003;
  text-decoration: none;
}
div > div.content-page > div.posts > div > div.post div.footer > div.savoirPlus > a:hover {
  color: #F6A783;
  transition: all 0.2s ease;
  text-decoration: underline;
}
div > div.pagination {
  background-color: #ececec;
  font-family: "OpenSans", serif;
  font-size: 15pt;
  text-align: justify;
  transition: all 0.4s ease;
  padding: 4px 15px 4px 15px;
  display: flex;
  justify-content: center;
}
div > div.pagination > * {
  margin: 5px;
}
div > div.pagination > a {
  text-decoration: none;
}
div > div.pagination > a.page, div > div.pagination > a.pageArrow, div > div.pagination > a.pageDoubleArrow {
  cursor: pointer;
}
div > div.pagination > a.page:hover, div > div.pagination > a.pageArrow:hover, div > div.pagination > a.pageDoubleArrow:hover {
  color: #F6A783;
  transition: all 0.2s ease;
}
div > div.pagination > a.page:hover {
  text-decoration: underline;
}
div > div.pagination > a.page {
  color: #000000;
}
div > div.pagination > a.pageArrow > span, div > div.pagination > a.pageDoubleArrow > span {
  font-size: 18pt;
  font-family: "Material Symbols Rounded", serif;
}
div > div.pagination > a.pageArrow {
  color: #FA5003;
}
div > div.pagination > a.pageDoubleArrow {
  color: #e64900;
}
div > div.pagination > span.pageNow {
  color: #FA5003;
  font-weight: bold;
}
div > div.pagination > span.pageNow:visited {
  color: #FA5003;
}
