/* ==========================================================================
   MAM - Artistes & Albums — styles front (autonomes, préfixés .mam-)
   ========================================================================== */

.mam-section {
	padding: 60px 0;
	font-family: -apple-system, "Segoe UI", Arial, sans-serif;
}

.mam-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	font-weight: 700;
	color: #1fa39f;
	margin: 0 0 0.5em;
}

.mam-titre {
	font-size: 1.9rem;
	margin: 0 0 1.5em;
	color: #111318;
	line-height: 1.2;
}

.mam-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mam-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(17, 19, 24, 0.08);
	transition: transform 0.2s ease;
}

.mam-card:hover {
	transform: translateY(-4px);
}

.mam-card__media {
	display: block;
	aspect-ratio: 4 / 5;
	background: #f6f7f9;
}

.mam-card--album .mam-card__media {
	aspect-ratio: 1 / 1;
}

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

.mam-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 2.5rem;
	font-weight: 700;
	color: #2ec4c0;
}

.mam-card__body {
	padding: 16px;
}

.mam-card__body h3 {
	margin: 0 0 0.3em;
	font-size: 1.05rem;
	line-height: 1.3;
}

.mam-card__body h3 a {
	color: #111318;
	text-decoration: none;
}

.mam-card__body h3 a:hover {
	color: #1fa39f;
}

.mam-card__artiste {
	margin: 0 0 0.3em;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #1fa39f;
	font-weight: 700;
}

.mam-card__artiste a {
	color: inherit;
	text-decoration: none;
}

.mam-card__meta {
	color: #6b6f7b;
	font-size: 0.85rem;
	margin: 0 0 0.6em;
}

.mam-social {
	display: flex;
	gap: 12px;
	list-style: none;
	margin: 0.5em 0 0;
	padding: 0;
}

.mam-social a {
	font-size: 0.78rem;
	color: #6b6f7b;
	text-decoration: none;
}

.mam-social a:hover {
	color: #2ec4c0;
}

.mam-pistes {
	margin: 0.6em 0;
	font-size: 0.85rem;
}

.mam-pistes summary {
	cursor: pointer;
	color: #1fa39f;
	font-weight: 600;
}

.mam-pistes ol {
	margin: 0.5em 0 0;
	padding-left: 1.2em;
	color: #2b2d33;
}

.mam-btn {
	display: inline-block;
	margin-top: 0.6em;
	padding: 8px 18px;
	border-radius: 999px;
	background: #111318;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
}

.mam-btn:hover {
	background: #2ec4c0;
	color: #fff;
}

.mam-empty {
	color: #6b6f7b;
	font-style: italic;
}

@media (max-width: 900px) {
	.mam-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.mam-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Onglets de tri par genre musical (page « Les Artistes »)
   ========================================================================== */

.mam-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 2em;
}

.mam-tab {
	appearance: none;
	border: 1px solid #d8dbe2;
	background: #fff;
	color: #111318;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 8px 18px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mam-tab:hover {
	border-color: #2ec4c0;
	color: #1fa39f;
}

.mam-tab.is-active {
	background: #111318;
	border-color: #111318;
	color: #fff;
}

/* ==========================================================================
   Répertoire des artistes — mise en page façon « scrapbook » sur deux colonnes
   ========================================================================== */

.mam-directory {
	column-count: 2;
	column-gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mam-directory__item {
	display: flex;
	align-items: center;
	gap: 18px;
	break-inside: avoid;
	margin-bottom: 34px;
}

.mam-directory__media {
	position: relative;
	display: block;
	flex: 0 0 130px;
	width: 130px;
	height: 130px;
	border-radius: 6px;
	overflow: hidden;
	background: #f6f7f9;
	box-shadow: 0 8px 20px rgba(17, 19, 24, 0.12);
}

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

.mam-share {
	position: absolute;
	left: 8px;
	bottom: 8px;
	width: 26px;
	height: 26px;
	border: none;
	border-radius: 50%;
	background: #2ec4c0;
	color: #fff;
	font-size: 0.9rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mam-share:hover {
	background: #1fa39f;
}

.mam-share.is-copied::after {
	content: "✓";
}

.mam-directory__infos {
	display: flex;
	flex-direction: column;
}

.mam-directory__genre {
	margin: 0 0 0.1em;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #6b6f7b;
	font-weight: 700;
}

.mam-directory__nom {
	margin: 0;
	font-family: "Caveat", "Segoe Script", cursive;
	font-size: 2.1rem;
	line-height: 1;
	transform: rotate(-3deg);
}

.mam-directory__item:nth-child(even) .mam-directory__nom {
	transform: rotate(2deg);
}

.mam-directory__nom a {
	color: #1fa39f;
	text-decoration: none;
}

.mam-directory__nom a:hover {
	color: #111318;
}

@media (max-width: 700px) {
	.mam-directory {
		column-count: 1;
	}
}

/* ==========================================================================
   Fiche artiste complète — [mam_fiche_artiste]
   ========================================================================== */

.mam-fiche-artiste {
	font-family: -apple-system, "Segoe UI", Arial, sans-serif;
	color: #2b2d33;
}

.mam-fiche-artiste section,
.mam-fiche-artiste header {
	margin: 0 0 2.5em;
}

.mam-fiche__header {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.mam-fiche__photo {
	flex: 0 0 220px;
	width: 220px;
	height: 220px;
	border-radius: 10px;
	overflow: hidden;
	background: #f6f7f9;
	box-shadow: 0 10px 30px rgba(17, 19, 24, 0.1);
}

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

.mam-fiche__intro {
	flex: 1 1 320px;
	min-width: 260px;
}

.mam-fiche__nom {
	margin: 0 0 0.2em;
	font-size: 2rem;
	line-height: 1.15;
	color: #111318;
}

.mam-fiche__genre {
	margin: 0 0 0.8em;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #1fa39f;
	font-weight: 700;
}

.mam-fiche__tagline {
	margin: 0 0 1em;
	color: #4b4e58;
	line-height: 1.5;
}

.mam-fiche__website {
	margin: 0 0 1em;
	font-size: 0.95rem;
}

.mam-fiche__website a {
	color: #1fa39f;
	word-break: break-all;
}

.mam-social--fiche {
	display: flex;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mam-social--fiche a {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 999px;
	background: #111318;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
}

.mam-social--fiche a:hover {
	background: #2ec4c0;
}

.mam-fiche__apropos .mam-eyebrow {
	margin-bottom: 0.8em;
}

.mam-citations {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6em;
}

.mam-citations li {
	padding-left: 1.2em;
	border-left: 3px solid #2ec4c0;
	font-size: 0.95rem;
	color: #3a3d45;
}

.mam-citations__texte {
	font-style: italic;
}

.mam-citations__source {
	display: inline-block;
	margin-left: 0.5em;
	font-style: normal;
	font-weight: 700;
	color: #1fa39f;
}

.mam-citations__source::before {
	content: "— ";
}

.mam-fiche__clip-titre {
	font-size: 1.3rem;
	margin: 0 0 0.8em;
	color: #111318;
}

.mam-video-frame {
	position: relative;
	width: 100%;
	max-width: 720px;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	overflow: hidden;
	border: 6px solid #111318;
	margin: 0 0 1em;
}

.mam-video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.mam-video-frame--jaune {
	border-color: #f4c62d;
}

.mam-video-frame--noir {
	border-color: #111318;
}

.mam-video-frame--rose {
	border-color: #ef6fa7;
}

.mam-video-frame__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: #f6f7f9;
	color: #1fa39f;
	text-decoration: none;
	font-weight: 700;
}

.mam-btn--album {
	background: #f4a13c;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.78rem;
}

.mam-btn--album:hover {
	background: #111318;
}

.mam-fiche__discographie .mam-titre {
	font-size: 1.5rem;
}

.mam-fiche__mot-de-la-fin {
	font-size: 1rem;
	line-height: 1.7;
	color: #3a3d45;
}

.mam-fiche__mot-de-la-fin p {
	margin: 0 0 1em;
}

@media (max-width: 640px) {
	.mam-fiche__photo {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		flex-basis: 100%;
	}
}

/* ==========================================================================
   Fiche album complète
   ========================================================================== */
.mam-fiche-album,
.mam-fiche-artiste {
	font-family: -apple-system, "Segoe UI", Arial, sans-serif;
}

.mam-album-single__header {
	display: grid;
	grid-template-columns: minmax(220px, 380px) 1fr;
	gap: 42px;
	align-items: center;
	margin: 0 0 42px;
}

.mam-album-single__cover {
	aspect-ratio: 1 / 1;
	background: #f6f7f9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(17, 19, 24, 0.12);
}

.mam-album-single__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mam-album-single__title {
	margin: 0 0 0.35em;
	font-size: clamp(2rem, 5vw, 3.8rem);
	line-height: 1.05;
	color: #111318;
}

.mam-album-single__artist,
.mam-album-single__date {
	margin: 0.5em 0;
	color: #6b6f7b;
}

.mam-album-single__artist a {
	color: #1fa39f;
	font-weight: 700;
	text-decoration: none;
}

.mam-album-single__tracks,
.mam-album-single__description {
	margin-top: 32px;
}

.mam-album-single__tracks ol {
	padding-left: 1.4em;
	line-height: 1.8;
}

@media (max-width: 720px) {
	.mam-album-single__header {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* ==========================================================================
   Fiche artiste premium — v1.2.0
   ========================================================================== */
.mam-fiche-artiste {
	--mam-ink: #0d1016;
	--mam-ink-2: #171b23;
	--mam-cyan: #25b8c4;
	--mam-cyan-dark: #1595a0;
	--mam-yellow: #f4c62d;
	--mam-pink: #ef6fa7;
	--mam-paper: #ffffff;
	--mam-soft: #f6f8fa;
	--mam-muted: #6b7280;
	--mam-line: rgba(13, 16, 22, .10);
	--mam-shadow: 0 28px 70px rgba(13, 16, 22, .12);
	width: min(100%, 1080px);
	margin-inline: auto;
}

.mam-fiche-artiste .mam-artist-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(240px, 36%) 1fr;
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
	margin: 10px 0 48px;
	padding: clamp(26px, 4vw, 52px);
	border-radius: 28px;
	background:
		radial-gradient(circle at 92% 8%, rgba(37,184,196,.22), transparent 28%),
		linear-gradient(135deg, var(--mam-ink) 0%, #111722 100%);
	box-shadow: var(--mam-shadow);
	overflow: hidden;
}

.mam-fiche-artiste .mam-artist-hero::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 7px;
	background: linear-gradient(180deg, var(--mam-cyan), var(--mam-yellow), var(--mam-pink));
}

.mam-fiche-artiste .mam-artist-hero::after {
	content: "MUSIC • ART • UP";
	position: absolute;
	right: -34px;
	bottom: 22px;
	font-size: clamp(2.8rem, 7vw, 6rem);
	font-weight: 900;
	letter-spacing: -.05em;
	color: rgba(255,255,255,.025);
	white-space: nowrap;
	pointer-events: none;
}

.mam-artist-hero__visual {
	position: relative;
	z-index: 1;
}

.mam-fiche-artiste .mam-fiche__photo {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 22px;
	box-shadow: 16px 16px 0 var(--mam-yellow), 0 20px 50px rgba(0,0,0,.32);
	transform: rotate(-1.2deg);
	border: 4px solid #fff;
}

.mam-artist-hero__stamp {
	position: absolute;
	left: -16px;
	bottom: -18px;
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: var(--mam-cyan);
	color: #fff;
	font-size: .9rem;
	font-weight: 900;
	letter-spacing: .12em;
	border: 5px solid var(--mam-ink);
	box-shadow: 0 12px 26px rgba(0,0,0,.28);
	transform: rotate(-9deg);
}

.mam-artist-hero__content {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.mam-artist-hero__kicker {
	margin: 0 0 12px;
	font-size: .76rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: var(--mam-cyan);
}

.mam-fiche-artiste .mam-fiche__nom {
	margin: 0 0 16px;
	font-size: clamp(2.5rem, 6vw, 5.4rem);
	line-height: .96;
	letter-spacing: -.055em;
	color: #fff;
	text-wrap: balance;
}

.mam-fiche__genres {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 20px;
}

.mam-fiche__genres span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 12px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 999px;
	background: rgba(255,255,255,.07);
	color: #fff;
	font-size: .72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .07em;
}

.mam-fiche-artiste .mam-fiche__tagline {
	max-width: 680px;
	margin: 0 0 24px;
	font-size: clamp(1rem, 1.8vw, 1.18rem);
	line-height: 1.65;
	color: rgba(255,255,255,.78);
}

.mam-artist-hero__meta {
	display: flex;
	align-items: stretch;
	gap: 12px;
	flex-wrap: wrap;
	margin: 0 0 18px;
}

.mam-fiche-artiste .mam-fiche__website {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
	min-height: 58px;
	max-width: 330px;
	margin: 0;
	padding: 10px 16px;
	border-radius: 14px;
	background: #fff;
	color: var(--mam-ink);
	text-decoration: none;
	box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.mam-fiche-artiste .mam-fiche__website span {
	font-size: .68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--mam-cyan-dark);
}

.mam-fiche-artiste .mam-fiche__website strong {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: .88rem;
}

.mam-artist-hero__stats {
	display: flex;
	gap: 8px;
}

.mam-artist-hero__stats span {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 78px;
	padding: 8px 13px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 14px;
	background: rgba(255,255,255,.06);
	color: rgba(255,255,255,.7);
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.mam-artist-hero__stats strong {
	font-size: 1.15rem;
	line-height: 1;
	color: #fff;
}

.mam-fiche-artiste .mam-social--fiche {
	gap: 8px;
	flex-wrap: wrap;
}

.mam-fiche-artiste .mam-social--fiche a {
	gap: 8px;
	min-height: 36px;
	padding: 6px 12px 6px 7px;
	border: 1px solid rgba(255,255,255,.13);
	background: rgba(255,255,255,.07);
	color: #fff;
}

.mam-fiche-artiste .mam-social--fiche a span {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--mam-cyan);
	font-weight: 900;
}

.mam-fiche-artiste .mam-social--fiche a b {
	font-size: .72rem;
	font-weight: 800;
}

.mam-fiche-artiste .mam-panel {
	margin: 0 0 28px;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid var(--mam-line);
	border-radius: 22px;
	background: var(--mam-paper);
	box-shadow: 0 14px 40px rgba(13,16,22,.07);
}

.mam-section-heading {
	margin: 0 0 20px;
}

.mam-section-heading .mam-eyebrow {
	margin-bottom: 6px;
}

.mam-section-heading h2 {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	line-height: 1.1;
	letter-spacing: -.025em;
	color: var(--mam-ink);
}

.mam-fiche-artiste .mam-fiche__apropos {
	position: relative;
	background: linear-gradient(135deg, #f8fbfc 0%, #fff 62%);
}

.mam-fiche-artiste .mam-fiche__apropos::after {
	content: "“";
	position: absolute;
	right: 28px;
	top: 4px;
	font-family: Georgia, serif;
	font-size: 7rem;
	line-height: 1;
	color: rgba(37,184,196,.09);
	pointer-events: none;
}

.mam-fiche-artiste .mam-citations {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.mam-fiche-artiste .mam-citations li {
	margin: 0;
	padding: 18px 20px;
	border: 0;
	border-radius: 16px;
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--mam-line);
	font-size: .96rem;
	line-height: 1.6;
}

.mam-fiche-artiste .mam-citations__source {
	display: block;
	margin: 8px 0 0;
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.mam-fiche-artiste .mam-panel--clip {
	padding-bottom: clamp(24px, 3vw, 36px);
	background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
}

.mam-clip-heading {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 18px;
}

.mam-clip-heading__number {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--mam-ink);
	color: #fff;
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .08em;
}

.mam-fiche-artiste .mam-fiche__clip-titre {
	margin: 0;
	font-size: clamp(1.28rem, 2.5vw, 1.75rem);
	line-height: 1.15;
	letter-spacing: -.02em;
}

.mam-fiche-artiste .mam-video-frame {
	max-width: none;
	margin: 0;
	border-width: 4px;
	border-radius: 16px;
	box-shadow: 0 16px 34px rgba(13,16,22,.13);
}

.mam-fiche-artiste .mam-btn--album {
	margin-top: 16px;
	padding: 10px 18px;
	border-radius: 10px;
	background: var(--mam-yellow);
	color: var(--mam-ink);
	font-weight: 900;
}

.mam-fiche-artiste .mam-fiche__discographie {
	background: var(--mam-ink);
}

.mam-fiche-artiste .mam-fiche__discographie .mam-eyebrow,
.mam-fiche-artiste .mam-fiche__discographie .mam-titre {
	color: #fff;
}

.mam-fiche-artiste .mam-fiche__discographie .mam-eyebrow {
	color: var(--mam-cyan);
}

.mam-fiche-artiste .mam-fiche__discographie .mam-card {
	box-shadow: none;
}

.mam-fiche-artiste .mam-fiche__mot-de-la-fin {
	position: relative;
	font-size: 1.02rem;
	line-height: 1.8;
	background: linear-gradient(135deg, #fff9df 0%, #fff 65%);
	border-color: rgba(244,198,45,.42);
}

.mam-fiche-artiste .mam-fiche__mot-de-la-fin::before {
	content: "";
	position: absolute;
	left: 0;
	top: 24px;
	bottom: 24px;
	width: 5px;
	border-radius: 0 8px 8px 0;
	background: var(--mam-yellow);
}

@media (max-width: 820px) {
	.mam-fiche-artiste .mam-artist-hero {
		grid-template-columns: 1fr;
		gap: 34px;
	}
	.mam-artist-hero__visual {
		width: min(100%, 430px);
	}
	.mam-fiche-artiste .mam-citations {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.mam-fiche-artiste .mam-artist-hero {
		padding: 22px;
		border-radius: 20px;
	}
	.mam-fiche-artiste .mam-fiche__photo {
		box-shadow: 10px 10px 0 var(--mam-yellow), 0 16px 36px rgba(0,0,0,.28);
	}
	.mam-artist-hero__stamp {
		left: -8px;
		bottom: -13px;
		width: 62px;
		height: 62px;
	}
	.mam-artist-hero__meta,
	.mam-artist-hero__stats {
		width: 100%;
	}
	.mam-fiche-artiste .mam-fiche__website {
		max-width: none;
		width: 100%;
	}
	.mam-artist-hero__stats span {
		flex: 1;
	}
	.mam-fiche-artiste .mam-social--fiche a b {
		display: none;
	}
	.mam-fiche-artiste .mam-social--fiche a {
		padding-right: 7px;
	}
	.mam-fiche-artiste .mam-panel {
		padding: 20px;
		border-radius: 18px;
	}
}


/* Vidéo YouTube vedette intégrée au hero de la fiche artiste. */
.mam-artist-hero__video {
	position: relative;
	z-index: 2;
	grid-column: 1 / -1;
	margin-top: clamp(2px, 1vw, 12px);
	padding: clamp(12px, 2vw, 18px);
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 22px;
	background: rgba(255,255,255,.055);
	box-shadow: 0 22px 55px rgba(0,0,0,.24);
	backdrop-filter: blur(10px);
}

.mam-featured-video__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 12px;
}

.mam-featured-video__head > div {
	display: flex;
	align-items: baseline;
	gap: 12px;
	min-width: 0;
}

.mam-featured-video__eyebrow {
	flex: 0 0 auto;
	padding: 6px 9px;
	border-radius: 999px;
	background: var(--mam-yellow);
	color: var(--mam-ink);
	font-size: .66rem;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .11em;
}

.mam-featured-video__head strong {
	overflow: hidden;
	color: #fff;
	font-size: clamp(.92rem, 1.7vw, 1.15rem);
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mam-featured-video__youtube {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: #ff0033;
	color: #fff;
	font-size: .9rem;
	box-shadow: 0 10px 24px rgba(255,0,51,.28);
}

.mam-featured-video__frame {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	background: #05070a;
	box-shadow: 0 18px 50px rgba(0,0,0,.34);
}

.mam-featured-video__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: inherit;
	pointer-events: none;
}

.mam-featured-video__frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.mam-featured-video__frame > a {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 28px;
	color: #fff;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
}

@media (max-width: 640px) {
	.mam-artist-hero__video {
		margin-inline: -6px;
		padding: 9px;
		border-radius: 17px;
	}

	.mam-featured-video__head {
		gap: 10px;
		margin-bottom: 9px;
	}

	.mam-featured-video__head > div {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.mam-featured-video__head strong {
		white-space: normal;
	}

	.mam-featured-video__youtube {
		width: 34px;
		height: 34px;
		border-radius: 10px;
	}

	.mam-featured-video__frame {
		border-radius: 12px;
	}
}


/* Biographie premium de la fiche artiste. */
.mam-fiche-artiste .mam-fiche__biographie {
	position: relative;
	display: grid;
	grid-template-columns: minmax(92px, 150px) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 52px);
	overflow: hidden;
	padding: clamp(28px, 5vw, 58px);
	background:
		radial-gradient(circle at 8% 14%, rgba(16,184,207,.12), transparent 28%),
		linear-gradient(135deg, #ffffff 0%, #f7fbfc 100%);
	border: 1px solid rgba(16,184,207,.18);
}

.mam-fiche-artiste .mam-fiche__biographie::after {
	content: "";
	position: absolute;
	right: -85px;
	bottom: -95px;
	width: 220px;
	height: 220px;
	border: 34px solid rgba(244,198,45,.15);
	border-radius: 50%;
	pointer-events: none;
}

.mam-biographie__aside {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.mam-biographie__aside span {
	display: grid;
	place-items: center;
	width: clamp(86px, 10vw, 132px);
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--mam-ink);
	color: var(--mam-yellow);
	font-size: clamp(1.55rem, 3vw, 2.7rem);
	font-weight: 950;
	letter-spacing: .08em;
	box-shadow: 12px 12px 0 var(--mam-cyan);
}

.mam-biographie__content {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.mam-fiche-artiste .mam-fiche__biographie .mam-section-heading {
	margin-bottom: clamp(18px, 3vw, 30px);
}

.mam-fiche-artiste .mam-fiche__biographie .mam-section-heading h2 {
	margin: 4px 0 0;
	color: var(--mam-ink);
	font-size: clamp(1.65rem, 3.2vw, 2.65rem);
	line-height: 1.08;
}

.mam-biographie__text {
	max-width: 850px;
	color: #333a43;
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	line-height: 1.88;
}

.mam-biographie__text > :first-child { margin-top: 0; }
.mam-biographie__text > :last-child { margin-bottom: 0; }

.mam-biographie__text p {
	margin: 0 0 1.15em;
}

.mam-biographie__text strong {
	color: var(--mam-ink);
	font-weight: 850;
}

.mam-biographie__text a {
	color: #078ba0;
	font-weight: 750;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.mam-biographie__text blockquote {
	margin: 1.5em 0;
	padding: 18px 22px;
	border-left: 5px solid var(--mam-yellow);
	background: rgba(244,198,45,.09);
	color: var(--mam-ink);
	font-size: 1.05em;
	font-weight: 650;
}

@media (max-width: 760px) {
	.mam-fiche-artiste .mam-fiche__biographie {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.mam-biographie__aside {
		justify-content: flex-start;
	}

	.mam-biographie__aside span {
		width: 82px;
		box-shadow: 8px 8px 0 var(--mam-cyan);
		font-size: 1.45rem;
	}
}

/* ========================================================================== 
   Archive dynamique « Les Artistes » — v1.5
   ========================================================================== */
.mam-artistes-archive {
	background: #fff;
	color: #111318;
}

.mam-artistes-archive__inner {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.mam-artistes-archive__hero {
	position: relative;
	overflow: hidden;
	padding: 76px 0 62px;
	background: linear-gradient(135deg, #101216 0%, #171a20 100%);
	color: #fff;
}

.mam-artistes-archive__hero::after {
	content: "MAM";
	position: absolute;
	right: -20px;
	top: -48px;
	font: 900 clamp(8rem, 22vw, 20rem)/1 Arial, sans-serif;
	letter-spacing: -.08em;
	color: rgba(255,255,255,.035);
	pointer-events: none;
}

.mam-artistes-archive__eyebrow {
	margin: 0 0 12px;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #2ec4c0;
}

.mam-artistes-archive__hero h1 {
	margin: 0 0 12px;
	font-size: clamp(2.7rem, 6vw, 5.6rem);
	line-height: .95;
	letter-spacing: -.045em;
	color: #fff;
}

.mam-artistes-archive__hero p:not(.mam-artistes-archive__eyebrow) {
	max-width: 700px;
	margin: 0;
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	line-height: 1.65;
	color: rgba(255,255,255,.72);
}

.mam-artistes-archive__content {
	padding: 64px 0 90px;
}

.mam-artistes-archive .mam-section {
	max-width: none;
	margin: 0;
	padding: 0;
}

.mam-artistes-archive .mam-eyebrow {
	color: #2ec4c0;
	font-weight: 800;
	letter-spacing: .16em;
}

.mam-artistes-archive .mam-titre {
	margin-bottom: 30px;
	font-size: clamp(2rem, 4vw, 3.8rem);
}

.mam-artistes-archive .mam-tabs {
	position: sticky;
	top: 12px;
	z-index: 20;
	padding: 12px;
	margin: 0 0 42px;
	border: 1px solid #e7e9ee;
	border-radius: 18px;
	background: rgba(255,255,255,.94);
	box-shadow: 0 12px 34px rgba(17,19,24,.07);
	backdrop-filter: blur(12px);
}

.mam-artistes-archive .mam-tab {
	padding: 9px 16px;
	border-radius: 10px;
}

.mam-artistes-archive .mam-tab.is-active {
	background: #2ec4c0;
	border-color: #2ec4c0;
	color: #fff;
}

.mam-artistes-archive .mam-directory {
	column-count: 3;
	column-gap: 34px;
}

.mam-artistes-archive .mam-directory__item {
	position: relative;
	align-items: flex-end;
	gap: 14px;
	padding: 0 0 22px;
	margin-bottom: 30px;
	border-bottom: 1px solid #eceef2;
}

.mam-artistes-archive .mam-directory__media {
	flex-basis: 150px;
	width: 150px;
	height: 180px;
	border-radius: 4px;
	box-shadow: 0 14px 30px rgba(17,19,24,.13);
}

.mam-artistes-archive .mam-directory__genre {
	color: #111318;
	font-size: .66rem;
	font-weight: 800;
}

.mam-artistes-archive .mam-directory__nom {
	font-size: 2rem;
}

@media (max-width: 1050px) {
	.mam-artistes-archive .mam-directory { column-count: 2; }
}

@media (max-width: 700px) {
	.mam-artistes-archive__inner { width: min(100% - 28px, 1180px); }
	.mam-artistes-archive__hero { padding: 52px 0 44px; }
	.mam-artistes-archive__content { padding: 44px 0 68px; }
	.mam-artistes-archive .mam-tabs { position: static; gap: 7px; }
	.mam-artistes-archive .mam-directory { column-count: 1; }
	.mam-artistes-archive .mam-directory__media { flex-basis: 122px; width: 122px; height: 148px; }
}


/* 1.6.0 — genres musicaux portés par les albums */
.mam-album-genres {
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	margin:16px 0 18px;
}
.mam-album-genres span {
	display:inline-flex;
	align-items:center;
	min-height:30px;
	padding:6px 11px;
	border:1px solid rgba(46,196,192,.38);
	border-radius:999px;
	background:rgba(46,196,192,.09);
	color:#168f8c;
	font-size:.72rem;
	font-weight:800;
	letter-spacing:.08em;
	text-transform:uppercase;
}
.mam-card__genres {
	margin:7px 0 8px;
	color:#168f8c;
	font-size:.72rem;
	font-weight:800;
	letter-spacing:.045em;
	text-transform:uppercase;
}


/* ========================================================================== 
   Fiche artiste soft & compacte — v1.7.0
   Le genre est déduit des albums liés à l’artiste et affiché dans le hero.
   ========================================================================== */
.mam-fiche-artiste {
	--mam-soft-cyan: rgba(37,184,196,.09);
	--mam-soft-yellow: rgba(244,198,45,.13);
	width: min(100%, 980px);
}

.mam-fiche-artiste .mam-artist-hero {
	grid-template-columns: 230px minmax(0,1fr);
	gap: 30px;
	margin: 10px 0 26px;
	padding: 24px;
	border: 1px solid rgba(13,16,22,.08);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(13,16,22,.07);
	overflow: visible;
}
.mam-fiche-artiste .mam-artist-hero::before {
	width: 4px;
	border-radius: 20px 0 0 20px;
	background: var(--mam-cyan);
}
.mam-fiche-artiste .mam-artist-hero::after { display:none; }
.mam-fiche-artiste .mam-fiche__photo {
	border: 0;
	border-radius: 16px;
	box-shadow: 0 10px 26px rgba(13,16,22,.10);
	transform: none;
}
.mam-artist-hero__stamp {
	left: 10px;
	bottom: 10px;
	width: 46px;
	height: 46px;
	border: 3px solid #fff;
	background: var(--mam-cyan);
	font-size: .62rem;
	box-shadow: 0 6px 16px rgba(13,16,22,.16);
	transform: none;
}
.mam-artist-hero__kicker {
	margin-bottom: 8px;
	font-size: .68rem;
	letter-spacing: .12em;
	color: var(--mam-cyan-dark);
}
.mam-fiche-artiste .mam-fiche__nom {
	margin-bottom: 12px;
	font-size: clamp(2rem,4vw,3.65rem);
	line-height: 1;
	letter-spacing: -.04em;
	color: var(--mam-ink);
}
.mam-fiche__genres {
	align-items: center;
	gap: 7px;
	margin-bottom: 15px;
}
.mam-fiche__genres span {
	min-height: 26px;
	padding: 4px 10px;
	border: 1px solid rgba(37,184,196,.16);
	background: var(--mam-soft-cyan);
	color: #127f89;
	font-size: .66rem;
	letter-spacing: .055em;
}
.mam-fiche__genres .mam-fiche__genres-label {
	padding-left: 0;
	border: 0;
	background: transparent;
	color: var(--mam-muted);
	font-size: .65rem;
	letter-spacing: .08em;
}
.mam-fiche-artiste .mam-fiche__tagline {
	max-width: 600px;
	margin-bottom: 16px;
	font-size: .98rem;
	line-height: 1.62;
	color: #5f6671;
}
.mam-artist-hero__meta { gap:8px; margin-bottom:12px; }
.mam-fiche-artiste .mam-fiche__website {
	min-height: 48px;
	max-width: 290px;
	padding: 8px 12px;
	border: 1px solid rgba(13,16,22,.08);
	border-radius: 11px;
	box-shadow: none;
}
.mam-artist-hero__stats span {
	min-width: 68px;
	padding: 6px 10px;
	border: 1px solid rgba(13,16,22,.08);
	border-radius: 11px;
	background: #f7f8fa;
	color: #747b86;
}
.mam-artist-hero__stats strong { color:var(--mam-ink); }
.mam-fiche-artiste .mam-social--fiche a {
	min-height: 32px;
	padding: 4px 9px 4px 5px;
	border: 1px solid rgba(13,16,22,.08);
	background: #fff;
	color: #48505b;
}
.mam-fiche-artiste .mam-social--fiche a span { width:22px; height:22px; font-size:.7rem; }

.mam-artist-hero__video {
	grid-column: 1 / -1;
	width: min(100%, 760px);
	margin: 6px auto 0;
	padding: 10px;
	border: 1px solid rgba(13,16,22,.08);
	border-radius: 15px;
	background: #f8f9fa;
	box-shadow: none;
	backdrop-filter: none;
}
.mam-featured-video__head { margin-bottom:8px; }
.mam-featured-video__eyebrow { padding:5px 8px; font-size:.6rem; }
.mam-featured-video__head strong { color:var(--mam-ink); font-size:.92rem; }
.mam-featured-video__youtube { width:30px; height:30px; border-radius:9px; font-size:.72rem; box-shadow:none; }
.mam-featured-video__frame { border-radius:11px; box-shadow:none; }

.mam-fiche-artiste .mam-panel {
	width: min(100%, 900px);
	margin: 0 auto 18px;
	padding: 22px;
	border: 1px solid rgba(13,16,22,.08);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(13,16,22,.05);
}
.mam-section-heading { margin-bottom:14px; }
.mam-section-heading h2 { font-size: clamp(1.35rem,2.4vw,1.8rem); }

.mam-fiche-artiste .mam-fiche__biographie {
	grid-template-columns: 58px minmax(0,1fr);
	gap: 20px;
	padding: 24px;
	background: linear-gradient(135deg,#fff 0%,#f9fbfb 100%);
	border-color: rgba(37,184,196,.14);
}
.mam-fiche-artiste .mam-fiche__biographie::after { display:none; }
.mam-biographie__aside { justify-content:flex-start; }
.mam-biographie__aside span {
	width: 52px;
	border-radius: 12px;
	background: var(--mam-soft-cyan);
	color: var(--mam-cyan-dark);
	font-size: .85rem;
	box-shadow: none;
}
.mam-fiche-artiste .mam-fiche__biographie .mam-section-heading { margin-bottom:14px; }
.mam-fiche-artiste .mam-fiche__biographie .mam-section-heading h2 { font-size: clamp(1.4rem,2.5vw,1.9rem); }
.mam-biographie__text { max-width:none; font-size:.96rem; line-height:1.72; color:#454b55; }
.mam-biographie__text p { margin-bottom:.9em; }

.mam-fiche-artiste .mam-fiche__apropos { background:#fff; }
.mam-fiche-artiste .mam-fiche__apropos::after { display:none; }
.mam-fiche-artiste .mam-citations { gap:10px; }
.mam-fiche-artiste .mam-citations li {
	padding: 14px 15px;
	border-radius: 12px;
	background:#fafbfc;
	box-shadow:none;
	font-size:.9rem;
	line-height:1.55;
}

.mam-fiche-artiste .mam-panel--clip {
	width:min(100%,820px);
	padding:18px;
	background:#fff;
}
.mam-clip-heading { gap:10px; margin-bottom:12px; }
.mam-clip-heading__number {
	flex-basis:34px;
	width:34px;
	height:34px;
	border-radius:9px;
	background:var(--mam-soft-cyan);
	color:var(--mam-cyan-dark);
	font-size:.66rem;
}
.mam-fiche-artiste .mam-fiche__clip-titre { font-size:1.2rem; }
.mam-fiche-artiste .mam-video-frame {
	border-width:0;
	border-radius:12px;
	box-shadow:none;
}
.mam-fiche-artiste .mam-btn--album {
	margin-top:10px;
	padding:7px 12px;
	border-radius:8px;
	font-size:.72rem;
}

.mam-fiche-artiste .mam-fiche__discographie {
	background:#f7f8fa;
	border-color:rgba(13,16,22,.06);
}
.mam-fiche-artiste .mam-fiche__discographie .mam-eyebrow { color:var(--mam-cyan-dark); }
.mam-fiche-artiste .mam-fiche__discographie .mam-titre { color:var(--mam-ink); }
.mam-fiche-artiste .mam-fiche__discographie .mam-grid { grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }
.mam-fiche-artiste .mam-fiche__discographie .mam-card { border:1px solid rgba(13,16,22,.07); border-radius:12px; }
.mam-fiche-artiste .mam-fiche__discographie .mam-card__body { padding:11px; }
.mam-fiche-artiste .mam-fiche__discographie .mam-card__body h3 { font-size:.92rem; }
.mam-fiche-artiste .mam-fiche__discographie .mam-card__artiste,
.mam-fiche-artiste .mam-fiche__discographie .mam-card__meta,
.mam-fiche-artiste .mam-fiche__discographie .mam-card__genres { font-size:.7rem; }
.mam-fiche-artiste .mam-fiche__discographie .mam-pistes,
.mam-fiche-artiste .mam-fiche__discographie .mam-btn { font-size:.72rem; }

.mam-fiche-artiste .mam-fiche__mot-de-la-fin {
	background:#fffdf5;
	border-color:rgba(244,198,45,.26);
	font-size:.95rem;
	line-height:1.7;
}
.mam-fiche-artiste .mam-fiche__mot-de-la-fin::before { width:3px; top:18px; bottom:18px; }

@media (max-width: 860px) {
	.mam-fiche-artiste .mam-fiche__discographie .mam-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
	.mam-fiche-artiste .mam-artist-hero { grid-template-columns:1fr; padding:18px; gap:20px; }
	.mam-artist-hero__visual { width:min(100%,260px); margin:auto; }
	.mam-fiche-artiste .mam-fiche__nom { font-size:clamp(2rem,10vw,3rem); }
	.mam-fiche-artiste .mam-fiche__biographie { grid-template-columns:1fr; gap:12px; }
	.mam-biographie__aside span { width:44px; }
}
@media (max-width: 520px) {
	.mam-fiche-artiste .mam-panel { padding:17px; border-radius:14px; }
	.mam-fiche-artiste .mam-fiche__discographie .mam-grid { grid-template-columns:1fr 1fr; gap:9px; }
	.mam-fiche-artiste .mam-fiche__discographie .mam-card__body { padding:9px; }
	.mam-featured-video__head strong { white-space:normal; }
}

/* ==========================================================================\n   Fiche album soft premium — v1.8.0\n   ========================================================================== */
.mam-fiche-album {
	--mam-album-ink:#15171c;
	--mam-album-muted:#747983;
	--mam-album-line:rgba(21,23,28,.09);
	--mam-album-soft:#f7f8f9;
	--mam-album-cyan:#24b7c1;
	--mam-album-cyan-dark:#168f97;
	width:min(100%, 1040px);
	margin:0 auto;
	color:var(--mam-album-ink);
}

.mam-fiche-album .mam-album-single__header {
	grid-template-columns:minmax(210px, 300px) minmax(0,1fr);
	gap:34px;
	padding:22px;
	margin:0 0 24px;
	background:#fff;
	border:1px solid var(--mam-album-line);
	border-radius:20px;
	box-shadow:0 12px 38px rgba(21,23,28,.055);
}

.mam-fiche-album .mam-album-single__cover {
	border-radius:15px;
	box-shadow:none;
	background:var(--mam-album-soft);
}

.mam-fiche-album .mam-album-single__intro {
	min-width:0;
}

.mam-fiche-album .mam-eyebrow {
	margin:0 0 8px;
	color:var(--mam-album-cyan-dark);
	font-size:.72rem;
	font-weight:800;
	letter-spacing:.13em;
	text-transform:uppercase;
}

.mam-fiche-album .mam-album-single__title {
	max-width:760px;
	margin:0 0 8px;
	font-size:clamp(2rem,4vw,3.25rem);
	font-weight:800;
	letter-spacing:-.035em;
	line-height:1.02;
}

.mam-fiche-album .mam-album-single__artist {
	margin:0 0 14px;
	font-size:1rem;
}

.mam-fiche-album .mam-album-single__artist a {
	color:var(--mam-album-ink);
	font-weight:800;
	border-bottom:1px solid rgba(36,183,193,.45);
}

.mam-fiche-album .mam-album-genres {
	display:block;
	margin:18px 0;
	padding:13px 15px;
	background:rgba(36,183,193,.055);
	border:1px solid rgba(36,183,193,.18);
	border-radius:13px;
}

.mam-fiche-album .mam-album-genres__label {
	display:block;
	margin:0 0 8px;
	color:#6b7179;
	font-size:.68rem;
	font-weight:800;
	letter-spacing:.11em;
	text-transform:uppercase;
}

.mam-fiche-album .mam-album-genres__tags {
	display:flex;
	flex-wrap:wrap;
	gap:7px;
}

.mam-fiche-album .mam-album-genres__tags span {
	display:inline-flex;
	align-items:center;
	min-height:28px;
	padding:5px 10px;
	border:0;
	border-radius:999px;
	background:#fff;
	box-shadow:inset 0 0 0 1px rgba(36,183,193,.25);
	color:var(--mam-album-cyan-dark);
	font-size:.69rem;
	font-weight:800;
	letter-spacing:.045em;
	text-transform:none;
}

.mam-fiche-album .mam-album-single__date {
	display:flex;
	gap:7px;
	align-items:center;
	margin:12px 0 16px;
	font-size:.9rem;
	color:var(--mam-album-muted);
}

.mam-fiche-album .mam-btn {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:42px;
	padding:10px 17px;
	border-radius:11px;
	background:var(--mam-album-ink);
	color:#fff;
	font-size:.78rem;
	font-weight:800;
	letter-spacing:.025em;
	text-decoration:none;
	box-shadow:none;
}

.mam-fiche-album .mam-btn:hover {
	background:var(--mam-album-cyan-dark);
	color:#fff;
	transform:translateY(-1px);
}

.mam-fiche-album .mam-album-single__tracks,
.mam-fiche-album .mam-album-single__description {
	margin:18px 0 0;
	padding:22px 24px;
	background:#fff;
	border:1px solid var(--mam-album-line);
	border-radius:18px;
	box-shadow:0 10px 30px rgba(21,23,28,.045);
}

.mam-fiche-album .mam-album-single__tracks h2,
.mam-fiche-album .mam-album-single__description h2 {
	margin:0 0 14px;
	font-size:1.25rem;
	line-height:1.2;
}

.mam-fiche-album .mam-album-single__tracks ol {
	margin:0;
	padding:0;
	list-style:none;
	counter-reset:mam-track;
}

.mam-fiche-album .mam-album-single__tracks li {
	counter-increment:mam-track;
	display:grid;
	grid-template-columns:28px 1fr;
	gap:10px;
	align-items:center;
	padding:10px 0;
	border-bottom:1px solid var(--mam-album-line);
	font-size:.92rem;
	line-height:1.45;
}

.mam-fiche-album .mam-album-single__tracks li:last-child { border-bottom:0; }
.mam-fiche-album .mam-album-single__tracks li::before {
	content:counter(mam-track, decimal-leading-zero);
	color:var(--mam-album-cyan-dark);
	font-size:.68rem;
	font-weight:900;
	letter-spacing:.05em;
}

.mam-fiche-album .mam-album-single__description {
	color:#4d525b;
	font-size:.96rem;
	line-height:1.75;
}
.mam-fiche-album .mam-album-single__description > :first-child { margin-top:0; }
.mam-fiche-album .mam-album-single__description > :last-child { margin-bottom:0; }

@media (max-width:760px) {
	.mam-fiche-album .mam-album-single__header {
		grid-template-columns:1fr;
		gap:20px;
		padding:16px;
		border-radius:16px;
	}
	.mam-fiche-album .mam-album-single__cover {
		width:min(100%, 320px);
		margin:0 auto;
	}
	.mam-fiche-album .mam-album-single__tracks,
	.mam-fiche-album .mam-album-single__description {
		padding:18px;
		border-radius:15px;
	}
}

/* ========================================================================== 
   Archive Albums — grille éditoriale inspirée de la page Artistes
   ========================================================================== */
.mam-albums-archive {
	background: #fff;
	color: #15171b;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
.mam-albums-archive__inner {
	width: min(100% - 40px, 1120px);
	margin-inline: auto;
}
.mam-albums-archive__hero {
	padding: 56px 0 42px;
	background: #fafafa;
	border-bottom: 1px solid #f0f1f3;
}
.mam-albums-archive__eyebrow {
	margin: 0 0 8px;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: #16a6ad;
}
.mam-albums-archive__hero h1 {
	margin: 0;
	font-size: clamp(2.2rem, 5vw, 4.25rem);
	line-height: .98;
	letter-spacing: -.045em;
	color: #111318;
}
.mam-albums-archive__hero p:not(.mam-albums-archive__eyebrow) {
	max-width: 650px;
	margin: 15px 0 0;
	color: #737780;
	font-size: 1rem;
	line-height: 1.65;
}
.mam-albums-archive__content {
	padding: 44px 0 84px;
}
.mam-albums-archive .mam-section {
	padding: 0;
}
.mam-albums-archive .mam-eyebrow {
	margin-bottom: 5px;
	font-size: .7rem;
	letter-spacing: .13em;
	color: #1aa9b0;
}
.mam-albums-archive .mam-titre {
	margin-bottom: 24px;
	font-size: clamp(1.8rem, 3.2vw, 2.7rem);
	letter-spacing: -.035em;
}
.mam-albums-directory__tabs {
	position: sticky;
	top: 14px;
	z-index: 15;
	gap: 7px;
	margin: 0 0 36px;
	padding: 9px;
	border: 1px solid #eceef1;
	border-radius: 14px;
	background: rgba(255,255,255,.94);
	box-shadow: 0 8px 30px rgba(18,22,28,.05);
	backdrop-filter: blur(12px);
}
.mam-albums-directory__tabs .mam-tab {
	padding: 7px 13px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	font-size: .68rem;
	letter-spacing: .045em;
}
.mam-albums-directory__tabs .mam-tab:hover {
	background: #f4f7f7;
}
.mam-albums-directory__tabs .mam-tab.is-active {
	background: #16a6ad;
	color: #fff;
}
.mam-album-directory {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 38px 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mam-album-directory__item {
	min-width: 0;
}
.mam-album-directory__cover {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 5px;
	background: #f4f5f6;
	box-shadow: 0 8px 20px rgba(16,22,27,.07);
}
.mam-album-directory__cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}
.mam-album-directory__item:hover .mam-album-directory__cover img {
	transform: scale(1.025);
}
.mam-album-directory__arrow {
	position: absolute;
	left: 10px;
	bottom: 10px;
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 4px;
	background: #16a6ad;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	box-shadow: 0 5px 16px rgba(22,166,173,.25);
}
.mam-album-directory__content {
	position: relative;
	padding: 12px 2px 0;
}
.mam-album-directory__genre {
	margin: 0 0 5px;
	color: #16a6ad;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.mam-album-directory__title {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.18;
	font-weight: 800;
	letter-spacing: -.018em;
}
.mam-album-directory__title a,
.mam-album-directory__artist a {
	color: inherit;
	text-decoration: none;
}
.mam-album-directory__title a:hover,
.mam-album-directory__artist a:hover {
	color: #16a6ad;
}
.mam-album-directory__artist {
	margin: 5px 0 0;
	color: #555b63;
	font-size: .82rem;
	font-weight: 600;
}
.mam-album-directory__date {
	margin: 5px 0 0;
	color: #a0a4aa;
	font-size: .7rem;
	font-weight: 700;
}
@media (max-width: 860px) {
	.mam-album-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 20px; }
	.mam-albums-directory__tabs { position: static; }
}
@media (max-width: 540px) {
	.mam-albums-archive__inner { width: min(100% - 28px, 1120px); }
	.mam-albums-archive__hero { padding: 42px 0 34px; }
	.mam-albums-archive__content { padding: 34px 0 58px; }
	.mam-album-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
	.mam-album-directory__title { font-size: .92rem; }
	.mam-album-directory__artist { font-size: .75rem; }
	.mam-albums-directory__tabs { margin-bottom: 26px; padding: 7px; }
	.mam-albums-directory__tabs .mam-tab { padding: 6px 9px; font-size: .61rem; }
}
