/**********************************************************************************************************************************/
/* BOUTON
/**********************************************************************************************************************************/
.bouton {
	background: var(--rouge);
	padding: 10px 20px 10px 20px;
	border-radius: 10px;
	display: inline-flex;
	position: relative;
  font-weight: 700;
	color: #FFFFFF;
	font-size: 1.25rem;
	font-size: clamp(1.25rem, 0.875rem + 1.875vw, 3.125rem);
	text-transform: uppercase;
	font-style: italic;
}

.bouton:hover{
	background: var(--bleu);
}

.bouton.empty{
	padding: 30px;
	font-size: 0;
	background: #FFF;
	color: var(--rouge);
	border-radius: 320px;
}


.bouton.empty::after {
	width: 24px;
	height: 24px;
	content: '';
	position: absolute;
	top: 50%;
	right: 50%;
	background-color: currentColor;
	mask-image: url('../../Icons/fleche.svg');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-image: url('../../Icons/fleche.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	transition: all .2s ease;
	transform: translateY(-50%) translateX(50%);
}

@media only screen and (min-width: 600px) {

	.bouton.empty::after {
		width: 40px;
		height: 40px;
		transform: translateY(-50%);
		right: 10px;
	}
}


.text-center{
	text-align: center;
}

/**********************************************************************************************************************************/
/* SURTITRE
/**********************************************************************************************************************************/
.header-surtitre{
	font-weight: 700;
	font-size: 20px;
}


/**********************************************************************************************************************************/
/* MAIN H1
/**********************************************************************************************************************************/
h1{
	font-size: 1.875rem;
	font-size: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem);
	font-weight: 900;
}


/**********************************************************************************************************************************/
/* SPACES
/**********************************************************************************************************************************/
.frame-space-before-medium {
	margin-top: var(--margin);
}

.frame-space-after-medium{
	margin-bottom: var(--margin);
}


/**********************************************************************************************************************************/
/* SWIPER
/**********************************************************************************************************************************/
.swiper-container .swiper-button-next,
.swiper-container .swiper-rtl .swiper-button-prev,
.swiper-container .swiper-button-prev {
	right: 0;
	left: auto;
	width: 48px;
	height: 48px;
	background: #FFF;
	border-radius: 320px;
	display: flex;
	justify-content: center;
	transform: translateX(50%);
	box-shadow: 0 4px 48px 0 rgba(0, 0, 0, 0.05);
	background: #FFFFFF;
}

.swiper-container .swiper-button-prev {
	left: 0;
	right: auto;
	transform: translateX(-50%);
}

.swiper-container .swiper-button-next::after, .swiper-container .swiper-button-prev::after {
	font-size: 20px;
	color: #000000;
}

.swiper-container .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #FFFFFF;
}

.swiper-container .swiper-pagination-bullet-active {
	background: var(--rouge);
}


.image img{
	max-width: 100%;
	height: auto;
	display: block;
}

.frame h2{
	font-size: 1.25rem;
	font-size: clamp(1.25rem, 0.5rem + 3.75vw, 5rem);
	color: var(--bleu);
	text-transform: uppercase;
	font-style: italic;
	font-weight: 900;
}


/**********************************************************************************************************************************/
/* FRAME TYPE TEXT — Typographie RTE
/**********************************************************************************************************************************/

.frame-type-text  {
	line-height: 1.75;
}

/* Paragraphes */
.frame-type-text  p,
.frame-type-text  li {
	font-size: 1rem;
	font-size: clamp(1rem, 0.875rem + 0.625vw, 1.25rem);
	margin-bottom: 1em;
}

/* H2 dans le corps de texte (légèrement réduit vs le h2 de titre de frame) */
.frame-type-text  h2 {
	font-size: clamp(1.25rem, 0.75rem + 2.5vw, 3rem);
	color: var(--bleu);
	text-transform: uppercase;
	font-style: italic;
	font-weight: 900;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}

/* H3 */
.frame-type-text  h3 {
	font-size: clamp(1rem, 0.625rem + 1.875vw, 2rem);
	color: var(--bleu);
	font-style: italic;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 1.25em;
	margin-bottom: 0.4em;
}

/* H4 */
.frame-type-text  h4 {
	font-size: clamp(0.9375rem, 0.75rem + 0.9375vw, 1.5rem);
	color: var(--rouge);
	font-weight: 700;
	margin-top: 1em;
	margin-bottom: 0.35em;
}

/* Listes non ordonnées (hors .check géré dans rte.css) */
.frame-type-text  ul:not(.check) {
	list-style: none;
	padding-left: 0;
	margin: 1em 0;
}

.frame-type-text  ul:not(.check) li {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 0.5em;
}

.frame-type-text  ul:not(.check) li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	background: var(--rouge);
	border-radius: 50%;
}

/* Listes ordonnées */
.frame-type-text  ol {
	list-style: decimal;
	padding-left: 1.5em;
	margin: 1em 0;
}

.frame-type-text  ol li {
	margin-bottom: 0.5em;
	padding-left: 0.25em;
}

.frame-type-text  ol li::marker {
	color: var(--rouge);
	font-weight: 700;
}

/* Liens (hors .bouton géré séparément) */
.frame-type-text  a:not(.bouton) {
	color: var(--rouge);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.frame-type-text  a:not(.bouton):hover {
	color: var(--bleu);
}

/* Gras */
.frame-type-text  strong {
	font-weight: 700;
	color: var(--bleu);
}

/* Blockquote */
.frame-type-text  blockquote {
	border-left: 4px solid var(--rouge);
	margin: 1.5em 0;
	padding: 0.75em 1.5em;
	font-style: italic;
	color: var(--bleu);
	background: var(--gris);
	border-radius: 0 8px 8px 0;
}
