/* ==========================================================================
   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;
	}
}
