article {
  width: 100%;
  border-bottom: 0px solid #eee;
  margin-bottom: 100px;
  padding-top: 50px;
}
.post-header-full {
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
    transition: height 2s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    justify-content: center; /* alignement vertical */
    align-items: center;     /* alignement horizontal */
    overflow: hidden;
    animation: slideDown 2s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
}

.post-header-full img.post-header-image {
width: 100%;
height: 400px;
object-fit: cover;
object-position: center;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.post-header-full::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 70vh;
background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 18%, rgba(0, 0, 0, 0));
pointer-events: none;
height: 400px;
}
.post-header-contain-title {
    z-index: 9;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.post-header-contain-title-in {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.post-header-avatar{
  
}
.post-header-avatar img {
  border-radius: 40px;
  width: 40px;
  height: auto;
  border: 1px solid #282D57;
}
.post-header-title{

  
}
.post-header-title h1 {
  font-size: 30px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 800;
  line-height: 35px;
}
.post-header-date{
  background-color: #282D57;
  width: fit-content;

}
.post-header-date p {
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
}
.post-content-flex{
  margin-bottom: 40px;
}
.post-content-img {
  width: 100%;
  display: block;
  text-align: center;
  background-color: #f4f4f4;
}
.post-content-img img {
  max-width: 100%;
  max-height: 70vh;
}
.post-relation-contain {
  background-color: #F2EEE2;
  display: flex;
  margin-left: 0px;
  margin-right: 0px;
  border: 1px solid #282D57;
}
.post-relation-thumb {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.post-relation-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.post-relation-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.post-relation-content {
  padding: 40px;
}
.post-relation-content p {
  padding-top: 0px;
  padding-bottom: 20px;
  margin: 0px 0px 0px 0px;
}
.post-relation-title {
  border-bottom: 1px solid #282D57;
  padding-bottom: 0px;
  margin-bottom: 20px;
}
.post-relation-title a {
  text-decoration: none;
  border: 0;
}
.post-legende-image {
  text-align: center;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 1px;
  color: #575757;
  padding: 0;
  margin: 10px 0px 0px 0px;
}
.mySwiper-post {
  height: 70vh;
  width: 100%;
  background-color: #f6f6f6;
  }
.swiper-pagination-post {
  bottom: 20px;
  font-weight: 400;
  font-size: 10px;
  text-align: left;
  width: 50px;
  height: 20px;
  position: absolute;
  left: 20px;
  }

.lite-youtube-fallback {
	aspect-ratio: 16 / 9; /* matches YouTube player */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1em;
	padding: 1em;
	background-color: #000;
	color: #fff;
	text-decoration: none;
}

/* right-facing triangle "Play" icon */
.lite-youtube-fallback::before {
	display: block;
	content: '';
	border: solid transparent;
	border-width: 2em 0 2em 3em;
	border-left-color: red;
}

.lite-youtube-fallback:hover::before {
	border-left-color: #fff;
}

.lite-youtube-fallback:focus {
	outline: 2px solid red;
}
.post-author {
  display: flex;
  align-items: center; /* C'est ça qui aligne verticalement */
  color: #fff;
}
.post-author p a {
  display: flex;
  align-items: center; /* Si le lien contient plusieurs éléments, ça les aligne aussi */
  color: #fff;
  text-decoration: none;
  border: 0;
}
.post-author p a:hover {
  display: flex;
  align-items: center; /* Si le lien contient plusieurs éléments, ça les aligne aussi */
  color: #fff;
  text-decoration: none;
  border: 0;
}
.post-author img {
  width: 40px;
  height: 40px;
  border-radius: 30px;
  margin-right: 20px;
  flex-shrink: 0;
}
.author-name {
  padding: 0;
  margin: 0;
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 15px;
}