.rouss-single-post h2 {
	font-size: 2rem !important;
	margin: 0;
}
.rouss-single-post:not(:first-child) h2 {
	padding-top: 50px;
}

.rouss-single-post h5 {
	font-size: 0.9rem !important;
	margin: 0;
}
.rouss-single-post p {
	font-size: 1rem !important;
	margin: 15px 0;
}


#echange-post-gallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.echange-img-container img {
	object-fit: cover;
	height: 200px !important;

	transition: 0.3s ease;
}
.echange-img-container img:hover {
	opacity: 0.6;
	cursor: pointer;
}



#echange-popup-container {
	position: fixed;
	top: 0;
	left: 0;

	height: 100vh;
	width: 100vw;
	background-color: rgba(0, 0, 0, 0.5);

	z-index: 99;
	/* display: none; */

	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}
#echange-popup-container.active {
	opacity: 1;
	pointer-events: auto;
}

#echange-popup-container .echange-popup-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	max-width: 90vw;
	max-height: 90vh;
}

#echange-popup-container .echange-popup-cross {
	position: absolute;
	top: 10vh;
	right: 10vh;
	width: 1.2em;
	cursor: pointer;
}