.page_banner, .banner_title {
	color: var(--oxy_color_8);
}

.page_banner {
	position: relative;
	background-size: cover;
	background-position: 80% center;
	padding-inline: 20px;
	z-index: 2;
}

.page_banner > .ct-section-inner-wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: space-between;
	width: 100%;
	padding: 100px 0;
	min-height: 500px;
}

.banner_courbe_blanc {
	position: absolute;
	bottom: -0.5px;
	right: -1px;
	width: 15%;
}

/* --- Contenu principal --- */
.banner_title_container {
	max-width: 1000px;
}

.banner_description {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2em;
}

/* --- Cas spécifique : pages "single" (articles, CPT, etc.) --- */
.wp-singular:not(.home):not(.single-post) .banner_title_container {
	max-width: unset;
	width: 60%;
}

.banner_category {
	color: #00ff84;
	font-weight: 700;
	font-size: clamp(22px, 4.6vw, 40px);
	margin-bottom: 15px;
	text-transform: uppercase;
}

.banner_title.big_title {
	font-size:clamp(32px,7.5vw,64px)!important;
	line-height: 1.10;
	font-weight: 500;
}
.banner_subtitle {
    font-size:clamp(24px, 4.6vw, 32px)!important;
    color: var(--oxy_color_7);
	font-weight: 400;
    line-height: 1.3em;
    margin-top: 10px;
}
.banner_date {
	color: var(--oxy_color_8);
	font-size: 20px;
	margin-top: 6px;
}


/* --- Séparateur --- */
.banner_separator {
	border: none;
	height: 2px;
	width: 100%;
	background: var(--oxy_color_7);
	margin: 20px 0 28px;
}

/* --- Bloc partage --- */
.banner_share {
	display: flex;
	align-items: center;
	gap: 20px;
}

.banner_share .share_icon {
	display: flex;
}
.banner_share .share_icon img {
	width: 33px;
	height: 33px;
}

.banner_share .share_icon:hover img {
	filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(420%) hue-rotate(141deg) brightness(100%) contrast(100%);
}

.banner_share .share_text {
	color: var(--oxy_color_8);
	font-size: 20px;
	font-weight: 500;
}

/* --- CTA --- */
.banner_cta .btn_bg_green_widea_white {
	margin-top: 27px;
}

/* --- Responsive --- */
@media only screen and (max-width: 991px) {
	.banner_courbe_blanc {
		width: 150px;
	}
}
@media only screen and (max-width: 870px) {
	.page_banner > .ct-section-inner-wrap {
		min-height: 300px;
	}
}

@media only screen and (max-width: 479px) {
	.page_banner > .ct-section-inner-wrap {
		padding: 50px 0;
	}
	.wp-singular:not(.home):not(.single-post) .banner_title_container {
		width: 100%!important;
	}
	.banner_subtitle {
		line-height: 1.1em;
	}
	.banner_share {
		flex-wrap: wrap;
		gap: 12px;
	}
	.banner_share .share_icon img {
		width: 25px;
		height: 25px;
	}
	.banner_share .share_text {
		width: 100%;
		font-size: 16px;
	}
	.banner_courbe_blanc {
		width: 100px;
	}
}
