.main-content {
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Galerie principale */

.gallery {
	display: flex;
	justify-content: center;
	width: 90%;
	flex-flow: row wrap;
	box-sizing: border-box;
	overflow: hidden;
	scroll-behavior: smooth;
}

.gallery-item {
	display: flex;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 30px;
    margin-right: 10px;
    margin-left: 10px;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.post_contenu {
	width: 100%;
	height: 90%;
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
}

.post_media {
    display: inline-flex;
    overflow-y: hidden;
    overflow-x: hidden;
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-snap-align: center;
}

.post_media_item {
	display: flex;
	width: 100%;
}

.post_media_item.hidden {
	display: none;
}

.post_media img {
    object-fit: contain;
    width: 100%;
    max-height: 80vh;
}

 .post_media video {
    object-fit: contain;
    width: 100%;
    max-height: 80vh;
}

.bouton_box {
	display: flex;
	flex-direction: row;
}

.bouton_gauche, .bouton_droite {
	color: #390042;
	z-index: 1;
	display: flex;
	max-height: 4vh;
	min-height: 20px;
	aspect-ratio: 1/1;
	border-radius: 5px;
	align-items: center;
	justify-content: center;
	align-content: center;
	border: none;
	background-color: #e5bfea;
	cursor: pointer;
	margin-top: 10px;
    margin-bottom: 10px;
}

@media (hover: hover) {
  .bouton_gauche:hover,
  .bouton_droite:hover {
    background-color: white; 
  }
}

.bouton_gauche {
	margin-right: 10px;
}

.bouton_droite {
	margin-left: 10px;
}

.post_footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
}

.post_caption {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.post_caption p {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
    font-size: 12px;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
}

.post_caption .caption-titre {
    font-style: italic;
    font-size: 14px;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 5px;
}