.yceo-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	/* padding-top garantit au minimum 75px d'écart avec le haut de l'écran, même en centré */
	padding: 75px 20px 20px 20px;
	box-sizing: border-box;
	overflow-y: auto;
}

.yceo-popup-box {
	background: #fff;
	max-width: 600px;
	width: 100%;
	max-height: calc(100vh - 95px);
	overflow-y: auto;
	border-radius: 6px;
	position: relative;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	animation: yceo-fade-in 0.25s ease-out;
	margin: auto;
}

@keyframes yceo-fade-in {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.yceo-popup-title {
	padding: 16px 50px 16px 20px;
	font-size: 25px;
	font-weight: bold;
	border-radius: 6px 6px 0 0;
}

.yceo-popup-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Positions de l'image par rapport au texte */
.yceo-popup-content.yceo-img-top {
	flex-direction: column;
}
.yceo-popup-content.yceo-img-top .yceo-popup-image {
	order: 0;
}
.yceo-popup-content.yceo-img-top .yceo-popup-body {
	order: 1;
}

.yceo-popup-content.yceo-img-bottom {
	flex-direction: column;
}
.yceo-popup-content.yceo-img-bottom .yceo-popup-image {
	order: 1;
}
.yceo-popup-content.yceo-img-bottom .yceo-popup-body {
	order: 0;
}

.yceo-popup-content.yceo-img-left {
	flex-direction: row;
	align-items: flex-start;
}
.yceo-popup-content.yceo-img-left .yceo-popup-image {
	order: 0;
	flex-shrink: 0;
	width: 150px;
}
.yceo-popup-content.yceo-img-left .yceo-popup-body {
	order: 1;
	flex: 1;
	min-width: 0;
}

.yceo-popup-content.yceo-img-right {
	flex-direction: row;
	align-items: flex-start;
}
.yceo-popup-content.yceo-img-right .yceo-popup-image {
	order: 1;
	flex-shrink: 0;
	width: 150px;
}
.yceo-popup-content.yceo-img-right .yceo-popup-body {
	order: 0;
	flex: 1;
	min-width: 0;
}

.yceo-popup-image {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 4px;
}

.yceo-popup-body {
	font-size: 15px;
	line-height: 1.6;
	color: #333;
}

.yceo-popup-body h1,
.yceo-popup-body h2,
.yceo-popup-body h3,
.yceo-popup-body h4 {
	margin-top: 0.6em;
}

.yceo-popup-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: transparent;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.75;
}

.yceo-popup-close:hover {
	opacity: 1;
}

@media (max-width: 600px) {
	.yceo-popup-box {
		max-width: 100%;
		max-height: 85vh;
	}
	.yceo-popup-title {
		font-size: 22px;
		padding: 14px 44px 14px 16px;
	}
	.yceo-popup-content {
		padding: 15px;
	}
	/* Sur mobile, l'image passe toujours au-dessus du texte pour la lisibilité */
	.yceo-popup-content.yceo-img-left,
	.yceo-popup-content.yceo-img-right {
		flex-direction: column;
	}
	.yceo-popup-content.yceo-img-left .yceo-popup-image,
	.yceo-popup-content.yceo-img-right .yceo-popup-image {
		order: 0;
		max-width: 100%;
		width: auto !important;
	}
	.yceo-popup-content.yceo-img-left .yceo-popup-body,
	.yceo-popup-content.yceo-img-right .yceo-popup-body {
		order: 1;
	}
}
