/* standard steph-card-group */
.steph-card-group {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	gap: var(--cards-gap);
}
.steph-card-group > * { /* this is cards row */
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	width: 100%;
	gap: 2rem;
}

.steph-card-group .steph-card {
	display: flex;
	flex-direction: column;
	justify-content: start;
	gap: 2.5ex;
	padding: 1em;
	box-shadow: 1px 1px 3px 0px var(--card-shadow);
	border-radius: 10px;
	background-color: white;
}

.steph-card .steph-btn {
	justify-self: end;
}

.steph-card .wp-block-buttons:last-child {
	align-self: center;
	margin-top: auto;
}

/* spécifique pour les 'valeurs fondamentales' de stéphanie */
/*.steph-card-value-row .steph-card {
	align-items: center;
	flex-basis: max(35ch, calc((70ch + 2rem - 100%)*999));
	box-shadow: 1px 1px 3px 0px var(--card-shadow);
}
.steph-card-value-row .steph-card h2, .steph-card-fond-value-row .steph-card h2 {
	font-size: 1.8rem;
}

/* 'valeurs fondamentales' détaillées... (page à propos ?)*//*
.steph-card-fond-value-row .steph-card {
	flex-basis: max(calc(50% - 1rem), calc((70ch - 100%) * 999));/* *//*
	box-shadow: 1px 1px 3px 0px var(--primary);
}
.vision .steph-card {
	flex-basis: max(35ch, calc((70ch + 2rem - 100%)*999));
}
*/
/* standard steph-card */
.steph-card .subtitle {
	color: var(--primary);
}

/* liste-accompagnements */
.steph-card .liste-accompagnement {
	display: flex;
	flex-direction: column;
}
.steph-card .liste-accompagnement li {
	display: inline-flex;
	padding: unset;
	color: inherit;
	background: unset;
	border: unset;
}
.steph-card .liste-accompagnement li:before {
	font-family: "Font Awesome 5 Free";
	content: "-";
	padding-right: 1ex;
	color: var(--primary);
}
.steph-card .liste-accompagnement li:nth-child(3n+1):before {
	content: "\f133";
}
.steph-card .liste-accompagnement li:nth-child(3n+2):before {
	content: "\f14e";
}
.steph-card .liste-accompagnement li:nth-of-type(3n+3):before {
	content: "\f017";
}
