/**
 * Modules « cours » — moteur de recherche + cours populaires.
 * Les couleurs sont regroupées ici pour être ajustées facilement.
 */

.asc-cours,
.asc-populaires,
.asc-fiche,
.asc-fiche-entete,
.asc-fiche-hero,
.asc-fiche-contenu,
.asc-fiche-infos {
	--asc-bleu: #1550c5;
	--asc-bleu-fonce: #0f3f9e;
	--asc-orange: #e79c1f;
	--asc-orange-clair: #fdf0d9;
	--asc-encre: #1c1f26;
	--asc-gris-texte: #5b6472;
	--asc-gris-bord: #e6e8ec;
	--asc-gris-fond: #f6f6f6;
	--asc-blanc: #ffffff;
	--asc-rayon: 10px;
	--asc-ombre: 0 10px 30px rgba(16, 24, 40, .08);

	box-sizing: border-box;
	color: var(--asc-encre);
	font-family: inherit;
}

.asc-cours *,
.asc-populaires *,
.asc-fiche *,
.asc-fiche-entete *,
.asc-fiche-contenu *,
.asc-fiche-infos * {
	box-sizing: border-box;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ------------------------------------------------------------------ *
 * Module 1 — Barre de recherche
 * ------------------------------------------------------------------ */

.asc-cours-search {
	position: relative;
	z-index: 5;
	max-width: 900px;
	margin: calc(var(--asc-overlap, 46px) * -1) auto 48px;
}

.asc-cours-search__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: var(--asc-blanc);
	border-radius: var(--asc-rayon);
	box-shadow: var(--asc-ombre);
}

.asc-cours-search__query {
	position: relative;
	display: flex;
	flex: 1 1 200px;
	align-items: center;
	min-width: 0;
}

.asc-cours-search__icon {
	width: 18px;
	height: 18px;
	margin-right: 8px;
	color: var(--asc-gris-texte);
	flex: none;
}

.asc-cours-search__query input[type="search"] {
	width: 100%;
	padding: 6px 0;
	font-size: 15px;
	color: var(--asc-encre);
	background: transparent;
	border: 0;
	outline: none;
	box-shadow: none;
}

.asc-cours-search__query input[type="search"]::placeholder {
	color: #9aa1ac;
}

.asc-cours-search__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.asc-cours-select select {
	appearance: none;
	-webkit-appearance: none;
	padding: 8px 32px 8px 14px;
	font-size: 13px;
	color: var(--asc-encre);
	background-color: var(--asc-blanc);
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%235b6472' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 10px;
	border: 1px solid var(--asc-gris-bord);
	border-radius: 999px;
	cursor: pointer;
	line-height: 1.4;
}

.asc-cours-select select:focus {
	border-color: var(--asc-bleu);
	outline: none;
}

.asc-cours-search__submit {
	flex: none;
	padding: 11px 26px;
	font-size: 14px;
	font-weight: 600;
	color: var(--asc-blanc);
	background: var(--asc-bleu);
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color .2s ease;
}

.asc-cours-search__submit:hover,
.asc-cours-search__submit:focus {
	background: var(--asc-bleu-fonce);
	color: var(--asc-blanc);
}

/* ------------------------------------------------------------------ *
 * Module 1 — Résultats
 * ------------------------------------------------------------------ */

.asc-cours-results__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 12px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--asc-gris-bord);
}

.asc-cours-results__title {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	color: var(--asc-encre);
}

.asc-cours-results__count {
	margin: 0;
	font-size: 13px;
	color: var(--asc-gris-texte);
}

.asc-cours-table-wrap {
	position: relative;
	overflow-x: auto;
	background: var(--asc-blanc);
	border: 1px solid var(--asc-gris-bord);
	border-radius: var(--asc-rayon);
	box-shadow: var(--asc-ombre);
}

.asc-cours-table {
	width: 100%;
	min-width: 820px;
	border-collapse: collapse;
	font-size: 14px;
}

.asc-cours-table thead th {
	padding: 14px 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-align: left;
	color: var(--asc-blanc);
	background: #2b2d33;
	white-space: nowrap;
}

.asc-cours-table tbody td {
	padding: 16px 20px;
	color: var(--asc-gris-texte);
	border-bottom: 1px solid var(--asc-gris-bord);
	vertical-align: middle;
}

.asc-cours-table tbody tr:last-child td {
	border-bottom: 0;
}

.asc-cours-table tbody tr:nth-child(even) {
	background: #fafbfc;
}

.asc-cours-table tbody tr:hover {
	background: #f2f6fd;
	cursor: pointer;
}

.asc-cours-table__langue {
	font-weight: 700;
	color: var(--asc-encre) !important;
	white-space: nowrap;
}

.asc-cours-table__tarif {
	font-weight: 700;
	color: var(--asc-encre) !important;
	white-space: nowrap;
}

.asc-cours-table__horaires {
	white-space: nowrap;
}

.asc-cours-table__vide {
	color: #b6bcc6;
}

.asc-cours-table__lien {
	width: 56px;
	text-align: right;
}

.asc-cours-table__lien a {
	display: inline-flex;
	color: var(--asc-orange);
	transition: transform .2s ease;
}

.asc-cours-table__lien svg {
	width: 18px;
	height: 18px;
}

.asc-cours-table__row:hover .asc-cours-table__lien a {
	transform: translateX(3px);
}

.asc-badge {
	display: inline-block;
	min-width: 30px;
	padding: 3px 8px;
	font-size: 11px;
	font-weight: 700;
	text-align: center;
	color: var(--asc-orange);
	background: var(--asc-orange-clair);
	border-radius: 4px;
}

.asc-cours-empty {
	padding: 40px 20px;
	margin: 0;
	font-size: 15px;
	text-align: center;
	color: var(--asc-gris-texte);
}

.asc-cours-empty[hidden] {
	display: none;
}

.asc-cours-loader {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: rgba(255, 255, 255, .75);
}

.asc-cours-loader[hidden] {
	display: none;
}

.asc-cours-loader__dot {
	width: 8px;
	height: 8px;
	background: var(--asc-bleu);
	border-radius: 50%;
	animation: asc-pulse 1s infinite ease-in-out;
}

.asc-cours-loader__dot:nth-child(2) {
	animation-delay: .15s;
}

.asc-cours-loader__dot:nth-child(3) {
	animation-delay: .3s;
}

@keyframes asc-pulse {

	0%,
	80%,
	100% {
		opacity: .25;
		transform: scale(.8);
	}

	40% {
		opacity: 1;
		transform: scale(1);
	}
}

.asc-cours-results__foot {
	margin-top: 28px;
	text-align: center;
}

.asc-cours-more {
	display: inline-block;
	padding: 12px 30px;
	font-size: 14px;
	font-weight: 600;
	color: var(--asc-bleu);
	text-decoration: none;
	background: var(--asc-blanc);
	border: 1px solid var(--asc-bleu);
	border-radius: 6px;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.asc-cours-more:hover {
	color: var(--asc-blanc);
	background: var(--asc-bleu);
}

.asc-cours-more[hidden] {
	display: none;
}

.asc-cours-erreur {
	margin: 16px 0 0;
	font-size: 14px;
	color: #b42318;
	text-align: center;
}

/* ------------------------------------------------------------------ *
 * Module 2 — Cours populaires
 * ------------------------------------------------------------------ */

.asc-populaires {
	padding: 64px 0;
	background: var(--asc-gris-fond);
}

.asc-populaires__inner {
	max-width: 1180px;
	padding: 0 20px;
	margin: 0 auto;
}

.asc-populaires__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}

.asc-populaires__surtitre {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--asc-orange);
}

.asc-populaires__titre {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	color: var(--asc-encre);
}

.asc-populaires__texte {
	max-width: 260px;
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--asc-gris-texte);
}

.asc-populaires__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.asc-carte {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--asc-blanc);
	border-radius: var(--asc-rayon);
	box-shadow: 0 4px 16px rgba(16, 24, 40, .06);
	transition: transform .2s ease, box-shadow .2s ease;
}

.asc-carte:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(16, 24, 40, .12);
}

.asc-carte__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e9ecf1;
}

.asc-carte__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.asc-carte__media--vide {
	display: block;
	width: 100%;
	height: 100%;
}

.asc-carte__corps {
	flex: 1 1 auto;
	padding: 16px 18px 12px;
}

.asc-carte__entete {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.asc-carte__titre {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--asc-encre);
}

.asc-carte__titre a {
	color: inherit;
	text-decoration: none;
}

.asc-carte__accroche {
	margin: 8px 0 0;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--asc-orange);
}

.asc-carte__horaires {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 10px 0 0;
	font-size: 12.5px;
	color: var(--asc-gris-texte);
}

.asc-carte__horaires svg {
	width: 14px;
	height: 14px;
	flex: none;
}

.asc-carte__pied {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 18px 18px;
}

.asc-carte__tarif {
	font-size: 16px;
	font-weight: 700;
	color: var(--asc-encre);
}

.asc-carte__cta {
	padding: 9px 20px;
	font-size: 13px;
	font-weight: 600;
	color: var(--asc-blanc);
	text-decoration: none;
	background: var(--asc-bleu);
	border-radius: 5px;
	transition: background-color .2s ease;
}

.asc-carte__cta:hover {
	color: var(--asc-blanc);
	background: var(--asc-bleu-fonce);
}

/* ------------------------------------------------------------------ *
 * Responsive
 * ------------------------------------------------------------------ */

@media (max-width: 1100px) {
	.asc-populaires__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.asc-populaires__texte {
		max-width: none;
	}
}

@media (max-width: 980px) {
	.asc-cours-search {
		margin-top: 0;
	}

	.asc-cours-search__bar {
		align-items: stretch;
	}

	.asc-cours-search__query {
		flex: 1 1 100%;
		padding-bottom: 10px;
		border-bottom: 1px solid var(--asc-gris-bord);
	}

	.asc-cours-search__filters {
		flex: 1 1 auto;
	}

	.asc-cours-search__submit {
		flex: 1 1 100%;
	}
}

@media (max-width: 860px) {
	.asc-cours-table-wrap {
		overflow-x: visible;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.asc-cours-table {
		min-width: 0;
	}

	.asc-cours-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
	}

	.asc-cours-table tbody tr {
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 4px 14px;
		padding: 16px 18px;
		margin-bottom: 12px;
		background: var(--asc-blanc);
		border: 1px solid var(--asc-gris-bord);
		border-radius: var(--asc-rayon);
	}

	.asc-cours-table tbody tr:nth-child(even) {
		background: var(--asc-blanc);
	}

	.asc-cours-table tbody td {
		display: contents;
		padding: 0;
		border: 0;
	}

	.asc-cours-table tbody td::before {
		content: attr(data-label);
		font-size: 11px;
		font-weight: 700;
		letter-spacing: .06em;
		text-transform: uppercase;
		color: #98a0ac;
	}

	.asc-cours-table__lien {
		display: none !important;
	}

	.asc-populaires__grid {
		grid-template-columns: 1fr;
	}
}

/* ------------------------------------------------------------------ *
 * Module 3 — Fiche cours
 * ------------------------------------------------------------------ */

/* Le module est autoportant : il ne dépend d'aucun réglage de la section Divi
   qui l'accueille (fond, couleur de texte, largeur, colonnes). */
.asc-fiche {
	display: block;
	color: var(--asc-encre);
}

/* Garde-fou : sans cette règle, un SVG sans feuille de style s'étale. */
.asc-fiche svg,
.asc-fiche-entete svg,
.asc-fiche-contenu svg,
.asc-fiche-infos svg {
	flex: none;
	max-width: 100%;
	vertical-align: middle;
}

/* --- Bannière ------------------------------------------------------ */

.asc-fiche-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #23272f 0%, #16181d 100%);
	color: #ffffff;
}

.asc-fiche-hero::after {
	content: "";
	position: absolute;
	top: -140px;
	right: -120px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(231, 156, 31, .16) 0%, rgba(231, 156, 31, 0) 70%);
	pointer-events: none;
}

.asc-fiche-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	padding: 72px 24px 64px;
	margin: 0 auto;
}

.asc-fiche-hero__surtitre {
	margin: 0 0 14px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--asc-orange);
}

.asc-fiche-hero__titre {
	max-width: 20ch;
	margin: 0;
	font-size: clamp(30px, 4.4vw, 50px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.01em;
	color: #ffffff;
}

.asc-fiche-hero__formule {
	max-width: 46ch;
	margin: 16px 0 0;
	font-size: 17px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .78);
}

.asc-fiche-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 26px 0 0;
	list-style: none;
}

.asc-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.2;
	color: rgba(255, 255, 255, .9);
	background: rgba(255, 255, 255, .09);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 999px;
}

.asc-chip--niveau {
	min-width: 44px;
	justify-content: center;
	font-weight: 700;
	letter-spacing: .03em;
	color: var(--asc-orange);
	background: rgba(231, 156, 31, .14);
	border-color: rgba(231, 156, 31, .35);
}

.asc-fiche-hero__financement {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding-top: 22px;
	margin: 26px 0 0;
	font-size: 14px;
	color: rgba(255, 255, 255, .72);
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.asc-fiche-hero__financement-label {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .45);
}

.asc-fiche-hero__financement a {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.asc-fiche-hero__financement a:hover {
	color: var(--asc-orange);
}

/* --- Corps : descriptif + colonne collante -------------------------- */

.asc-fiche-corps {
	background: var(--asc-blanc);
}

.asc-fiche-corps__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 56px;
	max-width: 1180px;
	padding: 64px 24px 72px;
	margin: 0 auto;
	align-items: start;
}

.asc-fiche-lateral {
	position: sticky;
	top: 100px;
}

/* --- Chapeau -------------------------------------------------------- */

.asc-fiche-chapeau__titre {
	max-width: 24ch;
	margin: 0 0 16px;
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.01em;
	color: var(--asc-encre);
}

.asc-fiche-chapeau__texte {
	font-size: 16.5px;
	line-height: 1.75;
	color: var(--asc-gris-texte);
}

.asc-fiche-chapeau__texte p {
	margin: 0 0 16px;
}

.asc-fiche-chapeau__texte p:last-child {
	margin-bottom: 0;
}

/* --- Sections dépliables -------------------------------------------- */

.asc-fiche-sections {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 40px;
}

.asc-fiche-section {
	overflow: hidden;
	background: var(--asc-blanc);
	border: 1px solid var(--asc-gris-bord);
	border-radius: var(--asc-rayon);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.asc-fiche-section:hover {
	border-color: #d3d7de;
}

.asc-fiche-section[open] {
	border-color: #d3d7de;
	box-shadow: 0 6px 22px rgba(16, 24, 40, .07);
}

/* Suppression du marqueur natif ▶ sur tous les moteurs. */
.asc-fiche-section__titre {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 22px;
	cursor: pointer;
	list-style: none;
}

.asc-fiche-section__titre::-webkit-details-marker {
	display: none;
}

.asc-fiche-section__titre::marker {
	content: "";
}

.asc-fiche-section__titre:focus-visible {
	outline: 2px solid var(--asc-bleu);
	outline-offset: -2px;
}

.asc-fiche-section__intitule {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--asc-encre);
	transition: color .2s ease;
}

.asc-fiche-section__titre:hover .asc-fiche-section__intitule {
	color: var(--asc-bleu);
}

.asc-fiche-section__signe {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex: none;
	color: var(--asc-orange);
	background: var(--asc-orange-clair);
	border-radius: 50%;
	transition: transform .25s ease, background-color .2s ease;
}

.asc-fiche-section__signe svg {
	width: 14px;
	height: 14px;
}

.asc-fiche-section[open] .asc-fiche-section__signe {
	transform: rotate(135deg);
}

.asc-fiche-section__contenu {
	padding: 0 22px 22px;
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--asc-gris-texte);
}

.asc-fiche-section__contenu > :first-child {
	margin-top: 0;
}

.asc-fiche-section__contenu p {
	margin: 0 0 14px;
}

.asc-fiche-section__contenu p:last-child {
	margin-bottom: 0;
}

.asc-fiche-section__contenu h3,
.asc-fiche-section__contenu h4 {
	margin: 22px 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--asc-encre);
}

.asc-fiche-section__contenu ul {
	padding-left: 20px;
	margin: 0 0 14px;
}

/* --- Encadré -------------------------------------------------------- */

.asc-fiche-infos {
	overflow: hidden;
	background: var(--asc-blanc);
	border: 1px solid var(--asc-gris-bord);
	border-radius: 14px;
	box-shadow: var(--asc-ombre);
}

.asc-fiche-achat {
	padding: 24px 24px 22px;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	border-bottom: 1px solid var(--asc-gris-bord);
}

.asc-fiche-prix {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0 0 16px;
}

.asc-fiche-prix__prefixe,
.asc-fiche-prix__suffixe {
	font-size: 14px;
	color: var(--asc-gris-texte);
}

.asc-fiche-prix__montant {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -.02em;
	color: var(--asc-encre);
}

.asc-fiche-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 15px 20px;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: .05em;
	text-align: center;
	text-transform: uppercase;
	color: var(--asc-blanc);
	text-decoration: none;
	background: var(--asc-bleu);
	border-radius: 8px;
	transition: background-color .2s ease, transform .15s ease;
}

.asc-fiche-cta:hover,
.asc-fiche-cta:focus {
	color: var(--asc-blanc);
	background: var(--asc-bleu-fonce);
	transform: translateY(-1px);
}

.asc-fiche-cta svg {
	transition: transform .2s ease;
}

.asc-fiche-cta:hover svg {
	transform: translateX(3px);
}

.asc-fiche-bloc {
	padding: 22px 24px;
	border-bottom: 1px solid var(--asc-gris-bord);
}

.asc-fiche-bloc:last-child {
	border-bottom: 0;
}

.asc-fiche-bloc__titre {
	margin: 0 0 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #98a0ac;
}

/* Informations pratiques : libellé au-dessus, valeur en dessous —
   les valeurs longues (« du 22.09.2026 au 08.12.2026 ») restent lisibles. */
.asc-fiche-infos-liste {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
}

.asc-fiche-infos-liste__ligne {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.asc-fiche-infos-liste dt {
	font-size: 12px;
	font-weight: 600;
	color: var(--asc-gris-texte);
}

.asc-fiche-infos-liste dd {
	margin: 0;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--asc-encre);
}

.asc-fiche-points {
	padding: 0;
	margin: 0;
	list-style: none;
}

.asc-fiche-points li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 10px;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--asc-gris-texte);
}

.asc-fiche-points li:last-child {
	margin-bottom: 0;
}

.asc-fiche-points svg {
	margin-top: 2px;
	color: var(--asc-orange);
}

.asc-fiche-tarifs {
	margin: 0;
}

.asc-fiche-tarifs__ligne {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 0;
	border-bottom: 1px dashed var(--asc-gris-bord);
}

.asc-fiche-tarifs__ligne:last-child {
	border-bottom: 0;
}

.asc-fiche-tarifs dt {
	font-size: 13.5px;
	color: var(--asc-gris-texte);
}

.asc-fiche-tarifs dd {
	margin: 0;
	font-size: 13.5px;
	font-weight: 700;
	text-align: right;
	color: var(--asc-encre);
}

.asc-fiche-notes {
	padding: 14px 0 0;
	margin: 10px 0 0;
	font-size: 12.5px;
	line-height: 1.5;
	color: #8a929e;
	list-style: none;
	border-top: 1px solid var(--asc-gris-bord);
}

.asc-fiche-notes li {
	margin: 0 0 4px;
}

/* --- Responsive ----------------------------------------------------- */

@media (max-width: 1080px) {
	.asc-fiche-corps__inner {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 36px;
	}
}

@media (max-width: 900px) {
	.asc-fiche-hero__inner {
		padding: 52px 20px 44px;
	}

	.asc-fiche-corps__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 36px;
		padding: 40px 20px 52px;
	}

	/* Prix et bouton d'abord sur mobile : la décision d'achat avant le détail. */
	.asc-fiche-lateral {
		position: static;
		order: -1;
	}

	.asc-fiche-section__titre {
		padding: 16px 18px;
	}

	.asc-fiche-section__contenu {
		padding: 0 18px 18px;
	}
}
