/* Page d’accueil — maquette Impact.Info Podcasts (Poppins + shell app) */
:root {
	--sb: 224px;
	--tb: 56px;
	--pl: 108px;
	--bg: #f8f9fd;
	--bg2: #f0f2f9;
	--surface: #ffffff;
	--text: #08102a;
	--text2: #6874a0;
	--accent: #0c53eb;
	--accent2: #0840c0;
	--accent-l: rgba(12, 83, 235, 0.08);
	--border: #e4e7f4;
	--card-r: 12px;
	--sh: 0 2px 12px rgba(12, 83, 235, 0.07);
	--sh-h: 0 8px 28px rgba(12, 83, 235, 0.16);
	--t: 0.17s ease;
	--grad: linear-gradient(135deg, #477beb 0%, #0c53eb 100%);
}
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: 14px;
	-webkit-text-size-adjust: 100%;
}
body.impact-home-podcast {
	font-family: "Poppins", sans-serif;
	background: var(--bg);
	color: var(--text);
	min-height: 100vh;
	overflow-x: hidden;
}
.impact-home-podcast a {
	text-decoration: none;
	color: inherit;
}
.impact-home-podcast button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}
.impact-home-podcast img {
	display: block;
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
	transform: translateZ(0);
	backface-visibility: hidden;
}
.impact-home-podcast ul {
	list-style: none;
}
.shell {
	display: flex;
	min-height: 100vh;
	padding-bottom: var(--pl);
}

/* SIDEBAR */
.sidebar {
	width: var(--sb);
	background: #fff;
	border-right: 1px solid var(--border);
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	z-index: 400;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: none;
	transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar::-webkit-scrollbar {
	display: none;
}
.sb-logo {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 18px 18px 14px;
	border-bottom: 1px solid var(--border);
	flex-shrink: 0;
}
.sb-logo img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	flex-shrink: 0;
}
.sb-logo-text {
	font-size: 15px;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: var(--text);
}
.sb-logo-text span {
	color: var(--accent);
}
a.sb-lang-btn,
button.sb-lang-btn {
	margin: 12px 12px 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--grad);
	color: #fff;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: opacity var(--t);
	flex-shrink: 0;
	width: calc(100% - 24px);
}
a.sb-lang-btn:hover,
button.sb-lang-btn:hover {
	opacity: 0.88;
}
.sb-nav {
	padding: 0 8px;
	flex-shrink: 0;
}
.sb-nav li a {
	display: flex;
	align-items: center;
	padding: 9px 14px;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	transition: background var(--t), color var(--t);
	margin-bottom: 1px;
	letter-spacing: -0.01em;
}
.sb-nav li a:hover,
.sb-nav li a.active,
.sb-nav li.current-menu-item a {
	background: var(--accent-l);
	color: var(--accent);
}
.sb-bottom {
	padding: 0 8px 12px;
	margin-top: auto;
	flex-shrink: 0;
}
.overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(8, 16, 42, 0.45);
	z-index: 350;
	backdrop-filter: blur(2px);
}
.main {
	margin-left: var(--sb);
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-width: 0;
}

/* TOPBAR */
.topbar {
	position: sticky;
	top: 0;
	z-index: 200;
	height: var(--tb);
	background: rgba(248, 249, 253, 0.92);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	padding: 0 28px;
	gap: 12px;
}
.menu-btn {
	display: none;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	flex-shrink: 0;
	color: var(--text);
	transition: background var(--t);
}
.menu-btn:hover {
	background: var(--accent-l);
}
.search-wrap {
	flex: 1;
	display: flex;
	justify-content: center;
}
.search-box {
	width: 100%;
	max-width: 520px;
	position: relative;
}
.search-box svg {
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text2);
	pointer-events: none;
}
.search-box input {
	width: 100%;
	height: 36px;
	background: #fff;
	border: 1.5px solid var(--border);
	border-radius: 50px;
	padding: 0 16px 0 40px;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	color: var(--text);
	outline: none;
	transition: border-color var(--t), box-shadow var(--t);
}
.search-box input::placeholder {
	color: var(--text2);
}
.search-box input:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-l);
}
.topbar-mobile-logo {
	display: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 15px;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: var(--text);
	pointer-events: none;
	white-space: nowrap;
}
.topbar-mobile-logo span {
	color: var(--accent);
}
.search-icon-btn {
	display: none;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	flex-shrink: 0;
	color: var(--text);
	transition: background var(--t);
	margin-left: auto;
}
.search-icon-btn:hover {
	background: var(--accent-l);
}
.search-icon-btn.active {
	background: var(--accent-l);
	color: var(--accent);
}
.mobile-search-bar {
	display: none;
	position: sticky;
	top: var(--tb);
	z-index: 199;
	background: rgba(248, 249, 253, 0.97);
	border-bottom: 1px solid var(--border);
	padding: 8px 16px;
}
.mobile-search-bar .search-box {
	max-width: 100%;
}
.mobile-search-bar.open {
	display: block;
}

/* HERO */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes heroIn {
	from {
		opacity: 0;
		transform: scale(1.03);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.4;
		transform: scale(0.8);
	}
}
@keyframes eqAnim {
	0%,
	100% {
		transform: scaleY(1);
	}
	50% {
		transform: scaleY(0.25);
	}
}

.hero-split {
	margin: 20px 28px 0;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	height: 90vh;
	min-height: 520px;
	max-height: 880px;
	background: #07245c;
	box-shadow: 0 20px 60px rgba(8, 16, 42, 0.22), 0 4px 16px rgba(8, 16, 42, 0.1);
	animation: heroIn 0.7s cubic-bezier(0.2, 0, 0.1, 1) both;
	touch-action: pan-y;
}
@media (max-width: 900px) {
	.hero-split {
		margin: 16px 16px 0;
		height: 80vh;
		min-height: 440px;
		border-radius: 20px;
	}
}
@media (max-width: 640px) {
	.hero-split {
		margin: 12px 12px 0;
		height: 75vh;
		min-height: 400px;
		border-radius: 16px;
	}
	.hero-slide-grad {
		background: linear-gradient(to bottom, transparent 20%, rgba(4, 10, 28, 0.92) 100%);
	}
}

.hero-col-right {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}
.hero-slide {
	position: absolute;
	inset: 0;
	transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}
.hero-slide.active {
	opacity: 1;
}
.hero-slide-img-bg {
	position: absolute;
	inset: -5%;
	width: 110%;
	height: 110%;
	object-fit: cover;
	filter: blur(22px) brightness(0.55) saturate(1.3);
	transform: scale(1);
	pointer-events: none;
}
.hero-slide-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	will-change: transform;
}
.hero-slide-grad {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, transparent 25%, rgba(4, 10, 28, 0.55) 60%, rgba(4, 10, 28, 0.92) 100%),
		linear-gradient(to right, rgba(7, 36, 92, 0.95) 0%, rgba(7, 36, 92, 0.75) 28%, rgba(7, 36, 92, 0.3) 52%, transparent 72%);
	z-index: 2;
}
.hero-slide-content {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 4;
	padding: 18px 36px 90px;
	width: 46%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 7px;
}
@media (max-width: 900px) {
	.hero-slide-content {
		width: 100%;
		align-items: flex-start;
		padding: 14px 18px 70px;
	}
}
@media (max-width: 640px) {
	.hero-slide-content {
		width: 100%;
		align-items: flex-start;
		padding: 14px 16px 60px;
	}
}
.hero-slide-cat {
	display: inline-flex;
	align-items: center;
	background: var(--grad);
	color: #fff;
	padding: 3px 10px;
	border-radius: 4px;
	font-size: 8.5px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	width: fit-content;
}
.hero-slide-title {
	font-size: clamp(12px, 1.4vw, 15px);
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: right;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
	max-width: 300px;
}
@media (max-width: 900px) {
	.hero-slide-title {
		text-align: left;
	}
}
.hero-slide-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}
.hero-slide-photo {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	overflow: hidden;
	flex-shrink: 0;
}
.hero-slide-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}
.hero-slide-guest-text {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.72);
}
.hero-slide-guest-text strong {
	color: #fff;
	font-weight: 600;
}
.hero-slide-actions {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 2px;
}
.btn-play-hero {
	display: flex;
	align-items: center;
	gap: 6px;
	background: var(--grad);
	color: #fff;
	padding: 9px 18px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	box-shadow: 0 4px 18px rgba(12, 83, 235, 0.45);
	transition: opacity var(--t), transform var(--t);
	letter-spacing: 0.02em;
	border: none;
	cursor: pointer;
	font-family: inherit;
}
.btn-play-hero:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}
.hero-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	gap: 6px;
	align-items: center;
}
.hero-dot {
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	border: none;
	padding: 0;
	transition: background var(--t), width var(--t);
	width: 18px;
}
.hero-dot.active {
	background: #fff;
	width: 32px;
}

.hero-col-left {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 52%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 18px;
	padding: 0 36px 90px;
	pointer-events: none;
}
.hero-col-left > * {
	pointer-events: auto;
}
@media (max-width: 900px) {
	.hero-col-left {
		width: 70%;
		padding: 0 24px 78px;
	}
}
@media (max-width: 640px) {
	.hero-col-left {
		display: none;
	}
}
.hero-col-left::before {
	content: "";
	position: absolute;
	bottom: -50px;
	left: -30px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(71, 123, 235, 0.22) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}
.hero-col-left::after {
	content: "";
	position: absolute;
	top: 10%;
	right: 10%;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(12, 83, 235, 0.15) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.hero-top-info,
.hero-bottom-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	z-index: 1;
}
.hero-tagline {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 7px;
}
.hero-tagline::before {
	content: "";
	display: block;
	width: 18px;
	height: 1.5px;
	background: linear-gradient(135deg, #477beb, #0c53eb);
	border-radius: 2px;
}
.hero-headline {
	font-size: clamp(26px, 3.2vw, 48px);
	font-weight: 900;
	letter-spacing: -0.03em;
	color: #fff;
	line-height: 1.06;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.hero-headline em {
	font-style: normal;
	background: linear-gradient(135deg, #477beb 0%, #0c53eb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero-desc {
	font-size: 11.5px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.58);
	max-width: 300px;
}
.hero-stats {
	display: flex;
	gap: 22px;
	padding: 14px 0;
	border-top: 1px solid rgba(71, 123, 235, 0.35);
	border-bottom: 1px solid rgba(71, 123, 235, 0.35);
}
.hero-stat {
	display: flex;
	flex-direction: column;
}
.hero-stat-n {
	font-size: 22px;
	font-weight: 900;
	background: linear-gradient(135deg, #6fa0ff 0%, #4c7aff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}
.hero-stat-l {
	font-size: 8px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-top: 4px;
}
.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(12, 83, 235, 0.28);
	border: 1px solid rgba(71, 123, 235, 0.55);
	backdrop-filter: blur(8px);
	color: #fff;
	padding: 7px 13px;
	border-radius: 50px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	width: fit-content;
}
.hero-pill-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, #477beb, #0c53eb);
	animation: pulse 2s ease infinite;
	box-shadow: 0 0 8px rgba(71, 123, 235, 0.8);
}

/* CONTENT */
.content {
	flex: 1;
	padding: 8px 0 16px;
	min-width: 0;
}
.row {
	margin-bottom: 28px;
}
.row-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 28px 12px;
}
.row-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
}
.row-header-right {
	display: flex;
	align-items: center;
	gap: 8px;
}
.row-see-all {
	display: inline-flex;
	align-items: center;
	background: var(--accent-l);
	color: var(--accent);
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	border: 1px solid rgba(12, 83, 235, 0.15);
	transition: background var(--t), color var(--t);
}
.row-see-all:hover {
	background: var(--grad);
	color: #fff;
	border-color: transparent;
}
.scroll-row-wrap {
	position: relative;
}
.scroll-row-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid var(--border);
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 12px rgba(8, 16, 42, 0.1);
	transition: all var(--t);
	opacity: 0;
	pointer-events: none;
}
.scroll-row-wrap:hover .scroll-row-arrow.visible {
	opacity: 1;
	pointer-events: all;
}
.scroll-row-arrow:hover {
	background: var(--grad);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 4px 14px rgba(12, 83, 235, 0.28);
	transform: translateY(-50%) scale(1.06);
}
.scroll-row-arrow.disabled {
	opacity: 0 !important;
	pointer-events: none !important;
}
.scroll-row-arrow.arrow-prev {
	left: 6px;
}
.scroll-row-arrow.arrow-next {
	right: 6px;
}
.scroll-row {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding: 4px 28px 12px;
	scrollbar-width: none;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}
.scroll-row::-webkit-scrollbar {
	display: none;
}
.filter-bar {
	display: flex;
	gap: 6px;
	padding: 0 28px 12px;
	flex-wrap: wrap;
}
#articlesFilterBar {
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	padding-right: 16px;
}
#articlesFilterBar::-webkit-scrollbar {
	display: none;
}
#articlesFilterBar .filter-btn {
	flex-shrink: 0;
}
.filter-btn {
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
	border: 1.5px solid var(--border);
	color: var(--text2);
	background: #fff;
	transition: all var(--t);
	cursor: pointer;
	font-family: inherit;
}
.filter-btn:hover {
	border-color: var(--accent);
	color: var(--accent);
}
.filter-btn.active {
	background: var(--grad);
	color: #fff;
	border-color: transparent;
}

/* POD CARD */
.pod-card {
	flex-shrink: 0;
	width: 152px;
	cursor: pointer;
	transition: transform var(--t);
}
.pod-card:hover {
	transform: translateY(-3px);
}
.pod-art {
	width: 152px;
	height: 152px;
	border-radius: var(--card-r);
	overflow: hidden;
	position: relative;
	background: var(--bg2);
	box-shadow: var(--sh);
	transition: box-shadow var(--t);
}
.pod-card:hover .pod-art {
	box-shadow: var(--sh-h);
}
.pod-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pod-overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 16, 42, 0.42);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--t);
	border-radius: var(--card-r);
}
.pod-card:hover .pod-overlay {
	opacity: 1;
}
.pod-circle {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--grad);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(12, 83, 235, 0.45);
	transform: translateY(6px);
	transition: transform var(--t);
}
.pod-card:hover .pod-circle {
	transform: translateY(0);
}
.pod-circle svg {
	margin-left: 2px;
}
.pod-art.now-playing::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 2.5px solid var(--accent);
	border-radius: var(--card-r);
	pointer-events: none;
}
.pod-audio-wave {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 20px;
	z-index: 3;
}
.pod-audio-wave .wav-b {
	width: 3px;
	border-radius: 2px;
	background: #fff;
	box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
	animation: eqAnim 0.7s ease-in-out infinite alternate;
	transform-origin: bottom;
}
.pod-audio-wave .wav-b:nth-child(1) {
	height: 8px;
	animation-duration: 0.55s;
	animation-delay: 0s;
}
.pod-audio-wave .wav-b:nth-child(2) {
	height: 16px;
	animation-duration: 0.75s;
	animation-delay: 0.1s;
}
.pod-audio-wave .wav-b:nth-child(3) {
	height: 11px;
	animation-duration: 0.6s;
	animation-delay: 0.05s;
}
.pod-audio-wave .wav-b:nth-child(4) {
	height: 18px;
	animation-duration: 0.85s;
	animation-delay: 0.15s;
}
.pod-audio-wave .wav-b:nth-child(5) {
	height: 9px;
	animation-duration: 0.65s;
	animation-delay: 0.08s;
}
.pod-art.now-playing .pod-overlay {
	opacity: 1;
	background: rgba(8, 16, 42, 0.52);
}
.pod-art.now-playing .pod-circle {
	display: none;
}
.pod-info {
	padding: 9px 2px 0;
}
.pod-tag {
	font-size: 9px;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.07em;
	text-transform: uppercase;
	margin-bottom: 2px;
}
.pod-title {
	font-size: 11.5px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.4;
	margin-bottom: 2px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.pod-guest {
	font-size: 10px;
	color: var(--text2);
}

/* PLAYLIST CARD */
a.pl-card {
	flex-shrink: 0;
	width: 240px;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	border: 1.5px solid var(--border);
	box-shadow: var(--sh);
	cursor: pointer;
	transition: transform var(--t), box-shadow var(--t), border-color var(--t);
	display: block;
	color: inherit;
	text-decoration: none;
}
a.pl-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--sh-h);
	border-color: var(--accent);
}
.pl-thumb {
	height: 140px;
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 58% 42%;
	gap: 2px;
	background: var(--bg2);
}
.pl-thumb-img {
	overflow: hidden;
	background: var(--bg2);
}
.pl-thumb-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}
.pl-thumb-img:first-child {
	grid-column: span 2;
}
.pl-thumb-img:first-child img {
	object-position: center top;
}
.pl-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 30%, rgba(8, 16, 42, 0.6) 100%);
	display: flex;
	align-items: flex-end;
	padding: 10px 12px;
}
.pl-count {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
}
.pl-body {
	padding: 12px 14px;
}
.pl-cat {
	font-size: 9px;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.09em;
	text-transform: uppercase;
	margin-bottom: 3px;
}
.pl-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
}
.eq {
	display: flex;
	align-items: flex-end;
	gap: 2px;
	height: 13px;
}
.eq-b {
	width: 3px;
	background: var(--grad);
	border-radius: 1px;
	animation: eqAnim 0.8s ease-in-out infinite alternate;
}
.eq-b:nth-child(1) {
	animation-duration: 0.6s;
	height: 5px;
}
.eq-b:nth-child(2) {
	animation-duration: 0.9s;
	height: 11px;
}
.eq-b:nth-child(3) {
	animation-duration: 0.7s;
	height: 7px;
}

/* ARTICLES */
.articles-grid {
	display: flex;
	flex-direction: row;
	gap: 14px;
	overflow-x: auto;
	padding: 4px 28px 12px;
	scrollbar-width: none;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	transition: opacity 0.2s ease;
}
.articles-grid::-webkit-scrollbar {
	display: none;
}
@media (max-width: 768px) {
	.articles-grid {
		padding: 4px 16px 12px;
	}
}
.articles-grid.fading {
	opacity: 0;
}
.acrd {
	background: #fff;
	border-radius: 14px;
	border: 1.5px solid var(--border);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	width: 220px;
	transition: transform var(--t), box-shadow var(--t), border-color var(--t);
	box-shadow: var(--sh);
}
.acrd:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-h);
	border-color: rgba(12, 83, 235, 0.22);
}
.acrd.playing {
	border-color: var(--accent);
	background: var(--accent-l);
}
.acrd-img-wrap {
	position: relative;
	width: 100%;
	padding-top: 52%;
	overflow: hidden;
	background: var(--bg2);
	flex-shrink: 0;
}
.acrd-img-wrap img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.38s ease;
}
.acrd-cat-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--grad);
	color: #fff;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 8.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 4px;
}
.acrd-cat-badge .badge-short {
	display: none;
}
.acrd-cat-badge .badge-full {
	display: inline;
}
@media (max-width: 640px) {
	.acrd-cat-badge .badge-short {
		display: inline;
	}
	.acrd-cat-badge .badge-full {
		display: none;
	}
}
.acrd-img-overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 16, 42, 0.32);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--t);
	z-index: 2;
}
.acrd:hover .acrd-img-overlay {
	opacity: 1;
}
.acrd.playing .acrd-img-overlay {
	opacity: 1;
	background: rgba(8, 16, 42, 0.52);
}
.acrd-play-circle {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
	transform: scale(0.8);
	transition: transform var(--t);
}
.acrd:hover .acrd-play-circle {
	transform: scale(1);
}
.acrd.playing .acrd-play-circle {
	display: none;
}
.acrd-play-circle svg {
	color: var(--accent);
	margin-left: 2px;
}
.acrd-audio-wave {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 24px;
}
.acrd-audio-wave .wav-b {
	width: 3px;
	border-radius: 2px;
	background: #fff;
	box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
	animation: eqAnim 0.7s ease-in-out infinite alternate;
	transform-origin: bottom;
}
.acrd-audio-wave .wav-b:nth-child(1) {
	height: 8px;
	animation-duration: 0.55s;
	animation-delay: 0s;
}
.acrd-audio-wave .wav-b:nth-child(2) {
	height: 18px;
	animation-duration: 0.75s;
	animation-delay: 0.1s;
}
.acrd-audio-wave .wav-b:nth-child(3) {
	height: 12px;
	animation-duration: 0.6s;
	animation-delay: 0.05s;
}
.acrd-audio-wave .wav-b:nth-child(4) {
	height: 20px;
	animation-duration: 0.85s;
	animation-delay: 0.15s;
}
.acrd-audio-wave .wav-b:nth-child(5) {
	height: 10px;
	animation-duration: 0.65s;
	animation-delay: 0.08s;
}
.acrd-body {
	padding: 22px 14px 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}
.acrd-title {
	font-size: 12px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color var(--t);
}
.acrd:hover .acrd-title,
.acrd.playing .acrd-title {
	color: var(--accent);
}
.acrd-excerpt {
	font-size: 10.5px;
	line-height: 1.6;
	color: var(--text2);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}
.acrd-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	gap: 6px;
}
.acrd-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.acrd-dur {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 9px;
	font-weight: 600;
	color: var(--text2);
	background: var(--bg2);
	padding: 2px 7px;
	border-radius: 20px;
}
.acrd-date {
	font-size: 9px;
	color: var(--text2);
}
.acrd-read-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--accent-l);
	color: var(--accent);
	border: 1px solid rgba(12, 83, 235, 0.18);
	padding: 5px 12px;
	border-radius: 50px;
	font-size: 10px;
	font-weight: 700;
	transition: background var(--t), color var(--t);
	white-space: nowrap;
	flex-shrink: 0;
}
.acrd-read-btn:hover {
	background: var(--grad);
	color: #fff;
	border-color: transparent;
}
.articles-empty {
	flex-shrink: 0;
	min-width: 200px;
	text-align: center;
	padding: 40px 20px;
	color: var(--text2);
	font-size: 13px;
}
.acrd-ai-note {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 8.5px;
	color: #7c3aed;
	font-weight: 600;
	margin-top: 2px;
}

/* NEWSLETTER */
.nl-wrap {
	margin: 4px 28px 28px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(12, 83, 235, 0.28);
	min-height: 180px;
	background: linear-gradient(135deg, #477beb 0%, #0c53eb 100%);
	position: relative;
}
.nl-wrap::after {
	content: "";
	position: absolute;
	top: 20%;
	bottom: 20%;
	left: 50%;
	width: 1px;
	background: rgba(255, 255, 255, 0.12);
	pointer-events: none;
}
@media (max-width: 640px) {
	.nl-wrap {
		grid-template-columns: 1fr;
		margin: 4px 12px 24px;
	}
	.nl-wrap::after {
		display: none;
	}
}
.nl-linkedin,
.nl-email {
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	position: relative;
	overflow: hidden;
}
@media (max-width: 480px) {
	.nl-linkedin,
	.nl-email {
		padding: 22px 20px;
	}
}
.nl-linkedin::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
	pointer-events: none;
}
.nl-email::after {
	content: "";
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
	pointer-events: none;
}
.nl-label {
	font-size: 8.5px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 7px;
}
.nl-label::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 1.5px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 2px;
}
.nl-linkedin h3,
.nl-email h3 {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.2;
	position: relative;
	z-index: 1;
}
.nl-linkedin p,
.nl-email p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.65;
	max-width: 260px;
	position: relative;
	z-index: 1;
}
.nl-linkedin-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: #fff;
	color: var(--accent);
	border-radius: 8px;
	padding: 10px 18px;
	width: fit-content;
	font-size: 12px;
	font-weight: 700;
	transition: background var(--t), transform var(--t);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	position: relative;
	z-index: 1;
	text-decoration: none;
}
.nl-linkedin-btn:hover {
	background: var(--bg);
	transform: translateY(-1px);
}
.nl-linkedin-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}
.nl-freq {
	font-size: 9px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.42);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
.nl-form {
	display: flex;
	gap: 7px;
	flex-shrink: 0;
	margin-top: 4px;
}
@media (max-width: 480px) {
	.nl-form {
		flex-direction: column;
	}
}
.nl-input {
	background: rgba(255, 255, 255, 0.15);
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	border-radius: 8px;
	padding: 9px 14px;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	flex: 1;
	outline: none;
	transition: border-color var(--t), background var(--t);
}
.nl-input:focus {
	border-color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.2);
}
.nl-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}
.nl-btn {
	background: #fff;
	color: var(--accent);
	border: none;
	border-radius: 8px;
	padding: 9px 18px;
	font-family: "Poppins", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--t), transform var(--t);
	white-space: nowrap;
	flex-shrink: 0;
}
.nl-btn:hover {
	background: var(--bg);
	transform: translateY(-1px);
}

/* FOOTER */
.footer {
	background: #fff;
	border-top: 1px solid var(--border);
	padding: 16px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.footer-logo {
	font-size: 13px;
	font-weight: 900;
	letter-spacing: -0.02em;
}
.footer-logo span {
	color: var(--accent);
}
.footer-links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	align-items: center;
}
.footer-links .footer-links-menu {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}
.footer-links .footer-links-menu a {
	font-size: 11px;
	color: var(--text2);
	transition: color var(--t);
}
.footer-links .footer-links-menu a:hover {
	color: var(--accent);
}
.footer-links > a {
	font-size: 11px;
	color: var(--text2);
	transition: color var(--t);
}
.footer-links > a:hover {
	color: var(--accent);
}

/* PLAYER */
.player {
	position: fixed;
	bottom: 16px;
	left: calc(var(--sb) + 16px);
	right: 16px;
	z-index: 500;
	height: 80px;
	background: #fff;
	border: 1.5px solid var(--border);
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(8, 16, 42, 0.1), 0 2px 8px rgba(8, 16, 42, 0.05);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 0 22px;
	gap: 12px;
}
@media (max-width: 768px) {
	.player {
		left: 16px;
		grid-template-columns: 1fr auto;
		gap: 8px;
		padding: 0 16px;
	}
	.player-right {
		display: none;
	}
}
@media (max-width: 480px) {
	.player {
		grid-template-columns: auto 1fr;
	}
	.player-info .player-meta {
		display: none;
	}
}
.player-info {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
}
.player-thumb {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--bg2);
}
.player-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.player-meta {
	min-width: 0;
}
.player-title {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 2px;
}
.player-guest {
	font-size: 11px;
	color: var(--text2);
}
.player-like {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text2);
	transition: color var(--t);
	flex-shrink: 0;
	background: none;
	border: none;
	cursor: pointer;
}
.player-like:hover,
.player-like.liked {
	color: var(--accent);
}
.player-controls {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
.player-btns {
	display: flex;
	align-items: center;
	gap: 12px;
}
.ctrl {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text2);
	transition: color var(--t), transform var(--t);
	background: none;
	border: none;
	cursor: pointer;
}
.ctrl:hover {
	color: var(--accent);
}
.ctrl.play-main {
	width: 42px;
	height: 42px;
	background: var(--grad);
	color: #fff;
	box-shadow: 0 4px 12px rgba(12, 83, 235, 0.28);
	transition: transform var(--t), opacity var(--t);
}
.ctrl.play-main:hover {
	transform: scale(1.07);
	opacity: 0.88;
}
.player-prog {
	display: flex;
	align-items: center;
	gap: 7px;
	width: 100%;
	max-width: 360px;
}
@media (max-width: 900px) {
	.player-prog {
		max-width: 220px;
	}
}
.prog-time {
	font-size: 9.5px;
	color: var(--text2);
	flex-shrink: 0;
	min-width: 32px;
}
.prog-track {
	flex: 1;
	height: 3px;
	background: var(--bg2);
	border-radius: 2px;
	cursor: pointer;
	position: relative;
}
.prog-fill {
	height: 100%;
	background: var(--grad);
	border-radius: 2px;
	width: 0%;
	position: relative;
	transition: width 0.5s linear;
}
.prog-fill::after {
	content: "";
	position: absolute;
	right: -5px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
	opacity: 0;
	transition: opacity var(--t);
}
.prog-track:hover .prog-fill::after {
	opacity: 1;
}
.player-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}
.vol-btn {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text2);
	transition: color var(--t);
	background: none;
	border: none;
	cursor: pointer;
}
.vol-btn:hover {
	color: var(--accent);
}
.vol-track {
	width: 68px;
	height: 3px;
	background: var(--bg2);
	border-radius: 2px;
	cursor: pointer;
}
.vol-fill {
	height: 100%;
	background: var(--grad);
	opacity: 0.55;
	border-radius: 2px;
	width: 68%;
}
.speed-btn {
	font-size: 10px;
	font-weight: 700;
	color: var(--text2);
	padding: 3px 8px;
	border-radius: 6px;
	border: 1.5px solid var(--border);
	transition: color var(--t), border-color var(--t), background var(--t);
	background: #fff;
	cursor: pointer;
	font-family: inherit;
}
.speed-btn:hover {
	color: var(--accent);
	border-color: var(--accent);
	background: var(--accent-l);
}

/* RESPONSIVE */
@media (max-width: 900px) {
	:root {
		--sb: 200px;
	}
}
@media (max-width: 768px) {
	:root {
		--sb: 200px;
	}
	.sidebar {
		transform: translateX(-100%);
		box-shadow: none;
	}
	.sidebar.open {
		transform: translateX(0);
		box-shadow: 4px 0 24px rgba(8, 16, 42, 0.15);
	}
	.overlay.open {
		display: block;
	}
	.main {
		margin-left: 0 !important;
	}
	.menu-btn {
		display: flex;
	}
	.topbar {
		padding: 0 12px;
		position: relative;
	}
	.search-wrap {
		display: none;
	}
	.topbar-mobile-logo {
		display: block;
	}
	.search-icon-btn {
		display: flex;
	}
	.row-header,
	.filter-bar {
		padding-left: 16px;
		padding-right: 16px;
	}
	.scroll-row {
		padding-left: 16px;
		padding-right: 16px;
	}
	.footer {
		padding: 14px 16px;
	}
	.scroll-row-arrow {
		display: none !important;
	}
	.articles-grid {
		padding: 4px 16px 12px;
	}
}
@media (max-width: 1024px) {
	.scroll-row-arrow {
		display: none !important;
	}
}
@media (max-width: 480px) {
	.pod-card {
		width: 130px;
	}
	.pod-art {
		width: 130px;
		height: 130px;
	}
	a.pl-card {
		width: 200px;
	}
	.topbar {
		padding: 0 10px;
	}
}
.row:nth-child(1) {
	animation: fadeUp 0.5s ease 0.1s both;
}
.row:nth-child(2) {
	animation: fadeUp 0.5s ease 0.17s both;
}
.row:nth-child(3) {
	animation: fadeUp 0.5s ease 0.24s both;
}
.row:nth-child(4) {
	animation: fadeUp 0.5s ease 0.31s both;
}
.row:nth-child(5) {
	animation: fadeUp 0.5s ease 0.38s both;
}

/* Accessibilité */
.skip-link.screen-reader-text {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.skip-link.screen-reader-text:focus {
	position: fixed;
	left: 12px;
	top: 12px;
	width: auto;
	height: auto;
	padding: 8px 14px;
	background: #fff;
	z-index: 99999;
	border-radius: 8px;
	box-shadow: var(--sh-h);
}
