/**
 * Podcast archive — light/dark mockup.
 */

body.shf-media-audio {
	--shf-pod-bg: #f4f2ec;
	--shf-pod-card: #ffffff;
	--shf-pod-ink: #2a342c;
	--shf-pod-muted: #6b7368;
	--shf-pod-accent: #5f7358;
	--shf-pod-accent-deep: #3d4f3a;
	--shf-pod-coral: #e76f51;
	--shf-pod-line: rgba(45, 62, 51, 0.1);
	--shf-pod-gold: #c4a574;
	--shf-pod-shadow: 0 14px 36px rgba(45, 62, 51, 0.07);
	--shf-container: 1240px;
	background:
		radial-gradient(900px 480px at 10% 8%, rgba(135, 160, 120, 0.14), transparent 55%),
		radial-gradient(800px 420px at 90% 12%, rgba(196, 165, 116, 0.12), transparent 50%),
		linear-gradient(180deg, #f8f5ee 0%, var(--shf-pod-bg) 40%, #f1eee6 100%);
}

html[data-theme="dark"] body.shf-media-audio {
	--shf-pod-bg: #0e0e0e;
	--shf-pod-card: rgba(26, 26, 26, 0.92);
	--shf-pod-ink: #f0ebe3;
	--shf-pod-muted: #a8aea2;
	--shf-pod-accent: #c5a059;
	--shf-pod-accent-deep: #d4af37;
	--shf-pod-coral: #d4af37;
	--shf-pod-line: rgba(212, 175, 110, 0.16);
	--shf-pod-gold: #d4af37;
	--shf-pod-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
	background:
		radial-gradient(900px 480px at 12% 6%, rgba(197, 160, 89, 0.1), transparent 55%),
		radial-gradient(700px 400px at 88% 10%, rgba(95, 115, 88, 0.12), transparent 50%),
		linear-gradient(180deg, #121212 0%, #0e0e0e 100%);
}

.shf-pod {
	position: relative;
	padding-bottom: 2.5rem;
	color: var(--shf-pod-ink);
}

.shf-pod__glow {
	pointer-events: none;
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(520px 280px at 70% 12%, rgba(255, 255, 255, 0.35), transparent 70%);
}

html[data-theme="dark"] .shf-pod__glow {
	background: radial-gradient(520px 280px at 70% 12%, rgba(212, 175, 110, 0.08), transparent 70%);
}

.shf-pod > * {
	position: relative;
	z-index: 1;
}

/* Hero */
.shf-pod-hero {
	padding: 1.1rem 0 1.5rem;
}

.shf-pod-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 1.25rem;
	align-items: stretch;
}

.shf-pod-side {
	order: 2;
}

.shf-pod-feature {
	order: 1;
}

.shf-pod-card,
.shf-pod-feature {
	background: var(--shf-pod-card);
	border: 1px solid var(--shf-pod-line);
	border-radius: 1.5rem;
	box-shadow: var(--shf-pod-shadow);
	backdrop-filter: blur(12px);
}

.shf-pod-card {
	padding: 1.1rem 1.15rem 1rem;
	height: 100%;
}

.shf-pod-card__head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.shf-pod-card__head h2 {
	margin: 0;
	font-size: 1rem;
}

.shf-pod-card__icon {
	color: var(--shf-pod-accent-deep);
}

.shf-pod-card__more {
	display: block;
	margin-top: 0.9rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--shf-pod-line);
	text-align: center;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--shf-pod-accent-deep);
	text-decoration: none;
}

.shf-pod-empty {
	margin: 0;
	color: var(--shf-pod-muted);
	font-size: 0.9rem;
}

.shf-pod-mini {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.shf-pod-mini__item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.6rem;
	align-items: center;
}

.shf-pod-mini__play {
	width: 2rem;
	height: 2rem;
	border: 0;
	border-radius: 50%;
	background: var(--shf-pod-accent-deep);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding-inline-start: 2px;
}

html[data-theme="dark"] .shf-pod-mini__play {
	background: var(--shf-pod-gold);
	color: #1a1a1a;
}

.shf-pod-mini__play.is-disabled {
	opacity: 0.4;
}

.shf-pod-mini__title {
	display: block;
	font-size: 0.86rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--shf-pod-ink);
}

.shf-pod-mini__meta {
	font-size: 0.74rem;
	color: var(--shf-pod-muted);
}

.shf-pod-mini__thumb {
	width: 44px;
	height: 44px;
	border-radius: 0.65rem;
	overflow: hidden;
	background: #e5e0d4;
}

html[data-theme="dark"] .shf-pod-mini__thumb {
	background: #222;
}

.shf-pod-mini__thumb img,
.shf-pod-mini__ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shf-pod-mini__ph {
	background: linear-gradient(135deg, #c8d2c0, #e8d5b8);
}

.shf-pod-feature {
	padding: 1.35rem 1.5rem 1.25rem;
	position: relative;
	overflow: hidden;
	min-height: 100%;
}

.shf-pod-feature__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-bottom: 0.85rem;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	background: rgba(196, 165, 116, 0.18);
	color: var(--shf-pod-accent-deep);
	font-size: 0.78rem;
	font-weight: 700;
}

html[data-theme="dark"] .shf-pod-feature__badge {
	background: rgba(212, 175, 110, 0.14);
	color: var(--shf-pod-gold);
}

.shf-pod-feature__archive-lead {
	margin: 0 0 1rem;
	max-width: 36rem;
	color: var(--shf-pod-muted, var(--shf-muted));
	font-size: 0.95rem;
	line-height: 1.75;
}

.shf-pod-feature__layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 1.25rem;
	align-items: center;
}

.shf-pod-feature__visual {
	order: -1;
}

.shf-pod-feature__copy h1 {
	margin: 0 0 0.55rem;
	font-size: clamp(1.55rem, 3vw, 2.25rem);
	line-height: 1.35;
	color: var(--shf-pod-ink);
}

.shf-pod-feature__ep {
	margin: 0 0 0.65rem;
	color: var(--shf-pod-muted);
	font-size: 0.92rem;
}

.shf-pod-feature__lead {
	margin: 0 0 1rem;
	color: var(--shf-pod-muted);
	font-size: 0.92rem;
	line-height: 1.8;
}

.shf-pod-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 1.15rem;
}

.shf-pod-tag {
	display: inline-flex;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	border: 1px solid var(--shf-pod-line);
	background: rgba(95, 115, 88, 0.08);
	color: var(--shf-pod-accent-deep);
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: none;
}

html[data-theme="dark"] .shf-pod-tag {
	background: rgba(212, 175, 110, 0.08);
	color: var(--shf-pod-gold);
}

.shf-pod-player {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem 0.65rem;
	padding: 0.65rem 0.75rem;
	border-radius: 1.15rem;
	background: rgba(95, 115, 88, 0.06);
	border: 1px solid var(--shf-pod-line);
}

html[data-theme="dark"] .shf-pod-player {
	background: rgba(0, 0, 0, 0.28);
}

.shf-pod-player__play {
	width: 2.85rem;
	height: 2.85rem;
	border: 0;
	border-radius: 50%;
	background: var(--shf-pod-coral);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding-inline-start: 3px;
	box-shadow: 0 10px 22px rgba(231, 111, 81, 0.28);
}

html[data-theme="dark"] .shf-pod-player__play {
	background: var(--shf-pod-gold);
	color: #1a1a1a;
	box-shadow: 0 10px 22px rgba(212, 175, 110, 0.28);
}

.shf-pod-player__skip,
.shf-pod-player__tool {
	width: 2.1rem;
	height: 2.1rem;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--shf-pod-muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
}

.shf-pod-player__track {
	flex: 1;
	min-width: 160px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.45rem;
	align-items: center;
	font-size: 0.75rem;
	color: var(--shf-pod-muted);
}

.shf-pod-player__track input[type="range"] {
	width: 100%;
	accent-color: var(--shf-pod-coral);
}

html[data-theme="dark"] .shf-pod-player__track input[type="range"] {
	accent-color: var(--shf-pod-gold);
}

.shf-pod-player__tools {
	display: inline-flex;
	gap: 0.15rem;
}

.shf-pod-feature__visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 220px;
}

.shf-pod-feature__visual img {
	width: min(100%, 320px);
	height: auto;
	filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.18));
	animation: shf-pod-float 5.5s ease-in-out infinite;
}

.shf-pod-feature__wave {
	position: absolute;
	inset-inline-start: 8%;
	bottom: 14%;
	display: flex;
	align-items: end;
	gap: 0.3rem;
	height: 90px;
	opacity: 0.4;
	pointer-events: none;
}

.shf-pod-feature__wave span {
	width: 6px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--shf-pod-gold), var(--shf-pod-coral));
	animation: shf-pod-wave 1.5s ease-in-out infinite;
}

.shf-pod-feature__wave span:nth-child(1) { height: 30%; }
.shf-pod-feature__wave span:nth-child(2) { height: 55%; animation-delay: 0.08s; }
.shf-pod-feature__wave span:nth-child(3) { height: 42%; animation-delay: 0.16s; }
.shf-pod-feature__wave span:nth-child(4) { height: 75%; animation-delay: 0.04s; }
.shf-pod-feature__wave span:nth-child(5) { height: 36%; animation-delay: 0.2s; }
.shf-pod-feature__wave span:nth-child(6) { height: 60%; animation-delay: 0.12s; }
.shf-pod-feature__wave span:nth-child(7) { height: 48%; animation-delay: 0.24s; }
.shf-pod-feature__wave span:nth-child(8) { height: 68%; animation-delay: 0.1s; }

@keyframes shf-pod-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

@keyframes shf-pod-wave {
	0%, 100% { transform: scaleY(0.65); }
	50% { transform: scaleY(1); }
}

.shf-pod-feature__empty {
	padding: 2rem 0;
	text-align: center;
}

.shf-pod-feature__empty-img {
	display: block;
	width: min(100%, 220px);
	height: auto;
	margin: 0 auto 1rem;
	filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.12));
}

.shf-pod-feature__empty h1 {
	margin: 0 0 0.5rem;
}

.shf-pod-feature__empty p {
	margin: 0 auto;
	max-width: 28rem;
	color: var(--shf-pod-muted, var(--shf-muted));
}

/* Topics */
.shf-pod-topics {
	padding: 0.25rem 0 1.25rem;
}

.shf-pod-topics__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
	padding: 0.85rem 1.1rem;
	border-radius: 1.15rem;
	background: var(--shf-pod-card);
	border: 1px solid var(--shf-pod-line);
	box-shadow: var(--shf-pod-shadow);
}

.shf-pod-topics__label {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--shf-pod-accent-deep);
	white-space: nowrap;
}

.shf-pod-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	flex: 1;
}

.shf-pod-chip {
	display: inline-flex;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	border: 1px solid var(--shf-pod-line);
	background: transparent;
	color: var(--shf-pod-muted);
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
}

.shf-pod-chip.is-active,
.shf-pod-chip:hover {
	background: var(--shf-pod-accent-deep);
	border-color: var(--shf-pod-accent-deep);
	color: #fff;
}

html[data-theme="dark"] .shf-pod-chip.is-active,
html[data-theme="dark"] .shf-pod-chip:hover {
	background: var(--shf-pod-gold);
	border-color: var(--shf-pod-gold);
	color: #1a1a1a;
}

/* Sections */
.shf-pod-section {
	padding: 0.75rem 0 1.5rem;
}

.shf-pod-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.shf-pod-section__head h2 {
	margin: 0;
	font-size: 1.12rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.shf-pod-section__icon {
	color: var(--shf-pod-accent-deep);
}

.shf-pod-popular {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1rem;
}

.shf-pod-pop {
	background: var(--shf-pod-card);
	border: 1px solid var(--shf-pod-line);
	border-radius: 1.15rem;
	overflow: hidden;
	box-shadow: var(--shf-pod-shadow);
}

.shf-pod-pop__media {
	position: relative;
	aspect-ratio: 1;
	background: #e8e2d6;
}

html[data-theme="dark"] .shf-pod-pop__media {
	background: #222;
}

.shf-pod-pop__media img,
.shf-pod-pop__ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shf-pod-pop__ph {
	background: linear-gradient(145deg, #c7d2c2, #e8d7b5);
}

.shf-pod-pop__play {
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
	width: 2.6rem;
	height: 2.6rem;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: #2a342c;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding-inline-start: 2px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.shf-pod-pop__dur {
	position: absolute;
	inset-block-end: 0.5rem;
	inset-inline-start: 0.5rem;
	padding: 0.18rem 0.45rem;
	border-radius: 999px;
	background: rgba(20, 24, 20, 0.65);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 600;
}

.shf-pod-pop__body {
	padding: 0.7rem 0.75rem 0.85rem;
}

.shf-pod-pop__body h3 {
	margin: 0 0 0.3rem;
	font-size: 0.86rem;
	line-height: 1.4;
}

.shf-pod-pop__body h3 a {
	text-decoration: none;
	color: var(--shf-pod-ink);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.shf-pod-pop__body p {
	margin: 0;
	font-size: 0.74rem;
	color: var(--shf-pod-muted);
}

.shf-pod-latest {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
}

.shf-pod-latest__item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.7rem;
	align-items: center;
	padding: 0.65rem 0.75rem;
	border-radius: 1rem;
	background: var(--shf-pod-card);
	border: 1px solid var(--shf-pod-line);
	box-shadow: var(--shf-pod-shadow);
}

.shf-pod-latest__thumb {
	width: 56px;
	height: 56px;
	border-radius: 0.75rem;
	overflow: hidden;
	background: #e8e2d6;
}

.shf-pod-latest__thumb img,
.shf-pod-latest__ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shf-pod-latest__ph {
	background: linear-gradient(135deg, #c8d2c0, #e8d5b8);
}

.shf-pod-latest__body h3 {
	margin: 0 0 0.2rem;
	font-size: 0.88rem;
}

.shf-pod-latest__body h3 a {
	text-decoration: none;
	color: var(--shf-pod-ink);
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.shf-pod-latest__body p {
	margin: 0;
	font-size: 0.74rem;
	color: var(--shf-pod-muted);
}

.shf-pod-latest__play {
	width: 2.1rem;
	height: 2.1rem;
	border: 0;
	border-radius: 50%;
	background: var(--shf-pod-coral);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding-inline-start: 2px;
}

html[data-theme="dark"] .shf-pod-latest__play {
	background: var(--shf-pod-gold);
	color: #1a1a1a;
}

/* Mid: hosts + continue */
.shf-pod-mid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
	gap: 1.25rem;
	align-items: start;
}

.shf-pod-hosts,
.shf-pod-continue {
	background: var(--shf-pod-card);
	border: 1px solid var(--shf-pod-line);
	border-radius: 1.35rem;
	padding: 1.15rem 1.2rem 1.25rem;
	box-shadow: var(--shf-pod-shadow);
}

.shf-pod-hosts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.shf-pod-host {
	text-align: center;
}

.shf-pod-host__avatar {
	display: inline-grid;
	place-items: center;
	width: 5.25rem;
	height: 5.25rem;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 0.55rem;
	background: rgba(95, 115, 88, 0.12);
	color: var(--shf-pod-accent-deep);
	font-weight: 700;
	font-size: 1.35rem;
	border: 3px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0 8px 20px rgba(45, 62, 51, 0.1);
}

html[data-theme="dark"] .shf-pod-host__avatar {
	border-color: rgba(212, 175, 110, 0.25);
}

.shf-pod-host__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shf-pod-host strong {
	display: block;
	font-size: 0.86rem;
}

.shf-pod-host small {
	display: block;
	color: var(--shf-pod-muted);
	font-size: 0.74rem;
	margin-top: 0.15rem;
}

.shf-pod-continue__card {
	display: grid;
	gap: 0.85rem;
}

.shf-pod-continue__media {
	aspect-ratio: 16 / 10;
	border-radius: 1rem;
	overflow: hidden;
	background: #e8e2d6;
}

.shf-pod-continue__media img,
.shf-pod-continue__ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shf-pod-continue__ph {
	background: linear-gradient(145deg, #c9d9c4, #e8cfc4);
}

.shf-pod-continue__body h3 {
	margin: 0 0 0.65rem;
	font-size: 1rem;
}

.shf-pod-continue__body h3 a {
	text-decoration: none;
	color: var(--shf-pod-ink);
}

.shf-pod-continue__bar {
	height: 6px;
	border-radius: 999px;
	background: rgba(95, 115, 88, 0.15);
	margin-bottom: 0.85rem;
	overflow: hidden;
}

.shf-pod-continue__bar span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--shf-pod-coral);
}

html[data-theme="dark"] .shf-pod-continue__bar span {
	background: var(--shf-pod-gold);
}

.shf-pod-continue .shf-pill--accent {
	background: var(--shf-pod-coral);
	color: #fff !important;
	border: 0;
	cursor: pointer;
	font: inherit;
}

html[data-theme="dark"] .shf-pod-continue .shf-pill--accent {
	background: var(--shf-pod-gold);
	color: #1a1a1a !important;
}

/* Courses section (full-width cards) */
.shf-pod-section--courses {
	padding-block: 1rem 1.75rem;
}

.shf-pod-courses__head {
	align-items: flex-end;
}

.shf-pod-courses__title-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4rem;
}

.shf-pod-courses__badge {
	display: inline-flex;
	padding: 0.2rem 0.65rem;
	border-radius: 999px;
	background: rgba(95, 115, 88, 0.12);
	color: var(--shf-pod-muted);
	font-size: 0.72rem;
	font-weight: 700;
}

html[data-theme="dark"] .shf-pod-courses__badge {
	background: rgba(212, 175, 110, 0.12);
	color: var(--shf-pod-gold);
}

.shf-pod-courses__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.1rem;
}

.shf-pod-courses__grid .shf-course-card {
	background: #fff;
	border: 0;
	border-radius: 0.85rem;
	box-shadow: 0 8px 24px rgba(45, 62, 51, 0.06);
}

html[data-theme="dark"] .shf-pod-courses__grid .shf-course-card {
	background: var(--shf-pod-card);
	border: 1px solid var(--shf-pod-line);
	box-shadow: var(--shf-pod-shadow);
}

.shf-pod-courses__grid .shf-course-card__media {
	aspect-ratio: 16 / 10;
}

.shf-pod-courses__grid .shf-course-card__body {
	padding: 1rem 1.05rem 1.15rem;
	background: #fff;
}

html[data-theme="dark"] .shf-pod-courses__grid .shf-course-card__body {
	background: transparent;
}

.shf-pod-courses__grid .shf-course-card__body h3 {
	font-size: 0.95rem;
	color: var(--shf-pod-ink);
}

.shf-pod-courses__grid .shf-course-card__price {
	color: var(--shf-pod-ink);
	font-size: 0.9rem;
}

html[data-theme="dark"] .shf-pod-courses__grid .shf-course-card__price {
	color: var(--shf-pod-gold);
}

.shf-pod-cats--wide {
	background: var(--shf-pod-card);
	border: 1px solid var(--shf-pod-line);
	border-radius: 1.35rem;
	padding: 1.15rem 1.2rem 1.25rem;
	box-shadow: var(--shf-pod-shadow);
}

.shf-pod-cats--wide .shf-pod-cats__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shf-pod-cats {
	background: var(--shf-pod-card);
	border: 1px solid var(--shf-pod-line);
	border-radius: 1.35rem;
	padding: 1.15rem 1.2rem 1.25rem;
	box-shadow: var(--shf-pod-shadow);
}

.shf-pod-cats__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.shf-pod-cat {
	display: grid;
	justify-items: center;
	gap: 0.3rem;
	padding: 0.85rem 0.55rem;
	border-radius: 1rem;
	border: 1px solid var(--shf-pod-line);
	background: rgba(95, 115, 88, 0.04);
	text-decoration: none;
	text-align: center;
	color: var(--shf-pod-ink);
	transition: background 0.15s ease, border-color 0.15s ease;
}

.shf-pod-cat:hover {
	background: rgba(95, 115, 88, 0.1);
	border-color: var(--shf-pod-accent);
	color: var(--shf-pod-ink);
}

html[data-theme="dark"] .shf-pod-cat {
	background: rgba(212, 175, 110, 0.05);
}

.shf-pod-cat__icon {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	background: rgba(95, 115, 88, 0.12);
	position: relative;
}

html[data-theme="dark"] .shf-pod-cat__icon {
	background: rgba(212, 175, 110, 0.12);
}

.shf-pod-cat__icon::before {
	content: "";
	position: absolute;
	inset: 0.55rem;
	border-radius: 0.25rem;
	background: var(--shf-pod-accent-deep);
	opacity: 0.85;
}

.shf-pod-cat__icon--leaf::before { clip-path: ellipse(40% 55% at 50% 50%); }
.shf-pod-cat__icon--brain::before { border-radius: 50% 40% 50% 40%; }
.shf-pod-cat__icon--sport::before { border-radius: 50%; background: var(--shf-pod-coral); }
.shf-pod-cat__icon--moon::before { border-radius: 50%; box-shadow: inset -0.3rem 0 0 var(--shf-pod-accent-deep); background: var(--shf-pod-gold); }
.shf-pod-cat__icon--heart::before { clip-path: path('M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z'); }
.shf-pod-cat__icon--star::before { clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.shf-pod-cat__icon--calm::before { border-radius: 999px; height: 0.35rem; inset-block: auto 50%; transform: translateY(50%); }

.shf-pod-cat strong {
	font-size: 0.82rem;
}

.shf-pod-cat small {
	font-size: 0.7rem;
	color: var(--shf-pod-muted);
}

/* Reviews */
.shf-pod-reviews {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.shf-pod-review {
	margin: 0;
	padding: 1.15rem 1.2rem;
	border-radius: 1.25rem;
	background: var(--shf-pod-card);
	border: 1px solid var(--shf-pod-line);
	box-shadow: var(--shf-pod-shadow);
}

.shf-pod-review__stars {
	color: var(--shf-pod-gold);
	letter-spacing: 0.08em;
	margin-bottom: 0.55rem;
	font-size: 0.9rem;
}

.shf-pod-review p {
	margin: 0 0 1rem;
	color: var(--shf-pod-muted);
	font-size: 0.9rem;
	line-height: 1.75;
}

.shf-pod-review footer {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.shf-pod-review__avatar {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	overflow: hidden;
	display: inline-grid;
	place-items: center;
	background: rgba(95, 115, 88, 0.15);
	font-weight: 700;
	flex-shrink: 0;
}

.shf-pod-review__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shf-pod-review strong {
	display: block;
	font-size: 0.86rem;
}

.shf-pod-review small {
	display: block;
	color: var(--shf-pod-muted);
	font-size: 0.74rem;
}

/* Newsletter */
.shf-pod-newsletter {
	padding: 0.5rem 0 1.5rem;
}

.shf-pod-newsletter__card {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 1.4fr auto;
	gap: 1.25rem;
	align-items: center;
	padding: 1.5rem 1.6rem;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, rgba(95, 115, 88, 0.12), rgba(196, 165, 116, 0.14));
	border: 1px solid var(--shf-pod-line);
	box-shadow: var(--shf-pod-shadow);
	overflow: hidden;
}

html[data-theme="dark"] .shf-pod-newsletter__card {
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(40, 36, 28, 0.95));
	border-color: rgba(212, 175, 110, 0.22);
}

.shf-pod-newsletter__copy h2 {
	margin: 0 0 0.4rem;
	font-size: 1.2rem;
}

.shf-pod-newsletter__copy p {
	margin: 0;
	color: var(--shf-pod-muted);
	font-size: 0.9rem;
}

.shf-pod-newsletter__form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	align-items: center;
}

.shf-pod-newsletter__field {
	flex: 1;
	min-width: 180px;
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 0.85rem;
	border-radius: 0.9rem;
	border: 1px solid var(--shf-pod-line);
	background: rgba(255, 255, 255, 0.75);
	color: var(--shf-pod-muted);
}

html[data-theme="dark"] .shf-pod-newsletter__field {
	background: rgba(0, 0, 0, 0.35);
}

.shf-pod-newsletter__field input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	outline: none;
	font: inherit;
	color: var(--shf-pod-ink);
}

.shf-pod-newsletter__form button {
	padding: 0.7rem 1.25rem;
	border: 0;
	border-radius: 0.9rem;
	background: var(--shf-pod-accent-deep);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

html[data-theme="dark"] .shf-pod-newsletter__form button {
	background: var(--shf-pod-gold);
	color: #1a1a1a;
}

.shf-pod-newsletter__deco {
	font-size: 2.5rem;
	opacity: 0.55;
	line-height: 1;
}

@media (max-width: 1200px) {
	.shf-pod-popular {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.shf-pod-courses__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shf-pod-cats--wide .shf-pod-cats__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.shf-pod-hero__grid,
	.shf-pod-feature__layout,
	.shf-pod-mid,
	.shf-pod-newsletter__card {
		grid-template-columns: 1fr;
	}

	.shf-pod-side,
	.shf-pod-feature {
		order: unset;
	}

	.shf-pod-latest {
		grid-template-columns: 1fr 1fr;
	}

	.shf-pod-hosts__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.shf-pod-popular,
	.shf-pod-latest,
	.shf-pod-reviews,
	.shf-pod-courses__grid,
	.shf-pod-hosts__grid,
	.shf-pod-cats__grid,
	.shf-pod-cats--wide .shf-pod-cats__grid {
		grid-template-columns: 1fr;
	}

	.shf-pod-feature__visual {
		order: -1;
	}
}
