/* Tiret avant */
.has-tiret-before {
}

/* Tiret après */
.has-tiret-after {
	position: relative;

	display: flex;
	align-items: center;
	flex-wrap: nowrap;

	max-width: 75%;
	margin-right: 0 !important;
	margin-left: 0 !important;
	&::after {
		position: absolute;
		right: -30%;

		width: 2.5em;
		max-width: 25%;
		height: 1px;
		margin-top: 0.2em;
		margin-left: 0.5em;

		content: "";

		background-color: var(--color-orange);
	}
}
