/* VIDEO PODCAST AUTOMATION PAGE — Additional styles
   Template:  template-automation-video-podcast.php
   Scope:     .is-video-podcast-page
   Tokens:    Inherited from main.css (do NOT redefine root vars)
   ------------------------------------------------------------------ */

/* =================================================================
   UTILITY CLASSES  (duplicated per template — intentional)
================================================================== */

.section {
	padding: clamp(72px, 8vw, 112px) 0;
}

.section-alt {
	background: var(--mist);
}

.section-dark {
	background: var(--ink);
}

.wrap {
	width: var(--w);
	margin: 0 auto;
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--r2);
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
	background: rgba(255, 255, 255, 0.08);
	color: var(--chalk);
	border: 1px solid rgba(255, 255, 255, 0.18);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.32);
	color: var(--chalk);
}

/* =================================================================
   H1 TYPOGRAPHIC MODIFIERS
================================================================== */

.is-video-podcast-page .h1-dim {
	display: block;
	color: rgba(255, 255, 255, 0.45);
}

.is-video-podcast-page .h1-white {
	color: var(--chalk);
}

.is-video-podcast-page .h1-fire {
	color: var(--fire);
}

.is-video-podcast-page .h1-underline {
	display: block;
	position: relative;
	color: var(--chalk);
	white-space: nowrap;
}

.is-video-podcast-page .h1-underline::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 0;
	height: 3px;
	border-radius: 99px;
	background: var(--fire);
	transition: width 0.7s var(--ease);
}

.is-video-podcast-page .h1-underline.drawn::after {
	width: 100%;
}

/* =================================================================
   REVEAL ANIMATION UTILITIES
================================================================== */

.is-video-podcast-page .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.is-video-podcast-page .reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

.is-video-podcast-page .reveal-d1 { transition-delay: 0.1s; }
.is-video-podcast-page .reveal-d2 { transition-delay: 0.2s; }
.is-video-podcast-page .reveal-d3 { transition-delay: 0.3s; }
.is-video-podcast-page .reveal-d4 { transition-delay: 0.4s; }

/* =================================================================
   SHARED SECTION LABELS
================================================================== */

.is-video-podcast-page .eyebrow {
	display: inline-block;
	font-family: var(--ff-head);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fire);
	margin-bottom: 12px;
}

.is-video-podcast-page .h2 {
	font-family: var(--ff-head);
	font-size: clamp(1.75rem, 3.2vw, 2.5rem);
	font-weight: 800;
	color: var(--ink);
	line-height: 1.18;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.is-video-podcast-page .h2-white {
	color: var(--chalk);
}

/* =================================================================
   HERO ENTRY ANIMATIONS
================================================================== */

@keyframes vpHeroFadeUp {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes vpHeroFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes vpNodePop {
	from { opacity: 0; transform: scale(0.75) translateY(8px); }
	to   { opacity: 1; transform: scale(1) translateY(0); }
}

.is-video-podcast-page .hero-pill    { animation: vpHeroFadeIn 0.5s var(--ease) 0.10s both; }
.is-video-podcast-page .hero-h1      { animation: vpHeroFadeUp 0.6s var(--ease) 0.20s both; }
.is-video-podcast-page .hero-sub     { animation: vpHeroFadeUp 0.6s var(--ease) 0.35s both; }
.is-video-podcast-page .hero-actions { animation: vpHeroFadeUp 0.6s var(--ease) 0.48s both; }
.is-video-podcast-page .hero-stats   { animation: vpHeroFadeUp 0.6s var(--ease) 0.60s both; }
.is-video-podcast-page .hero-right   { animation: vpHeroFadeIn 0.8s var(--ease) 0.50s both; }

/* =================================================================
   HERO SECTION
================================================================== */

.is-video-podcast-page #hero {
	background: var(--ink);
	position: relative;
	overflow: hidden;
	padding: clamp(80px, 10vw, 128px) 0 0;
}

/* Glow orbs */
.is-video-podcast-page .hero-glow,
.is-video-podcast-page .hero-glow2 {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.is-video-podcast-page .hero-glow {
	width: 580px;
	height: 580px;
	top: -180px;
	left: -140px;
	background: radial-gradient(circle, rgba(240, 98, 12, 0.16) 0%, transparent 70%);
}

.is-video-podcast-page .hero-glow2 {
	width: 440px;
	height: 440px;
	bottom: 40px;
	right: -80px;
	background: radial-gradient(circle, rgba(240, 98, 12, 0.09) 0%, transparent 70%);
}

/* Hero inner layout */
.is-video-podcast-page .hero-body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

/* ---- Left column ---- */
.is-video-podcast-page .hero-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Pill badge */
.is-video-podcast-page .hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	border-radius: 99px;
	background: rgba(240, 98, 12, 0.12);
	border: 1px solid rgba(240, 98, 12, 0.3);
	color: var(--fire);
	font-family: var(--ff-head);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	width: fit-content;
}

.is-video-podcast-page .pill-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fire);
	animation: pulse 2s infinite;
	flex-shrink: 0;
}

/* H1 */
.is-video-podcast-page .hero-h1 {
	font-family: var(--ff-head);
	font-size: clamp(2.1rem, 4.5vw, 3.4rem);
	font-weight: 800;
	line-height: 1.13;
	letter-spacing: -0.025em;
	margin: 0;
}

/* Subtext */
.is-video-podcast-page .hero-sub {
	font-family: var(--ff-body);
	font-size: clamp(1rem, 1.3vw, 1.125rem);
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	margin: 0;
	max-width: 520px;
}

/* Button row */
.is-video-podcast-page .hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

/* Fire button */
.is-video-podcast-page .btn-fire {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--fire);
	color: var(--chalk);
	border: 2px solid var(--fire);
	border-radius: var(--r2);
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.22s var(--ease), transform 0.18s var(--ease), box-shadow 0.22s var(--ease);
	box-shadow: 0 4px 20px rgba(240, 98, 12, 0.38);
}

.is-video-podcast-page .btn-fire:hover,
.is-video-podcast-page .btn-fire:focus-visible {
	background: var(--fire2);
	border-color: var(--fire2);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(240, 98, 12, 0.48);
}

/* Stats row */
.is-video-podcast-page .hero-stats {
	display: flex;
	gap: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 24px;
	width: fit-content;
}

.is-video-podcast-page .hero-stat {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding-right: 28px;
	margin-right: 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.is-video-podcast-page .hero-stat:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.is-video-podcast-page .hero-stat strong {
	font-family: var(--ff-head);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--chalk);
	line-height: 1;
}

.is-video-podcast-page .hero-stat strong sup {
	font-size: 0.9rem;
	font-weight: 700;
}

.is-video-podcast-page .hero-stat span {
	font-family: var(--ff-body);
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Right column */
.is-video-podcast-page .hero-right {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

/* =================================================================
   VIDEO PANEL (hero mockup)
================================================================== */

.video-panel {
	background: #111827;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55);
	width: 100%;
	max-width: 440px;
}

/* Panel header */
.video-panel-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.video-tl-dots {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}

.tl-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	flex-shrink: 0;
}

.tl-red    { background: #ff5f57; }
.tl-yellow { background: #febc2e; }
.tl-green  { background: #28c840; }

.video-panel-title {
	flex: 1;
	margin-left: 8px;
	font-family: var(--ff-head);
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.video-play-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(240, 98, 12, 0.18);
	border: 1px solid rgba(240, 98, 12, 0.3);
	color: var(--fire);
	flex-shrink: 0;
}

/* Panel body */
.video-panel-body {
	padding: 22px 20px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

/* Source recording indicator */
.vp-source {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	animation: vpHeroFadeIn 0.5s var(--ease) 0.65s both;
}

.vp-source-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(240, 98, 12, 0.14);
	border: 2px solid rgba(240, 98, 12, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fire);
	box-shadow: 0 0 0 8px rgba(240, 98, 12, 0.06);
}

.vp-source-label {
	font-family: var(--ff-head);
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--chalk);
}

.vp-source-sub {
	font-family: var(--ff-body);
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.35);
}

.vp-arrow-down {
	color: rgba(255, 255, 255, 0.2);
	animation: vpHeroFadeIn 0.3s var(--ease) 0.80s both;
}

/* Output nodes 2x3 grid */
.vp-outputs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	width: 100%;
}

.vp-output-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	padding: 12px 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: var(--r1);
	animation: vpNodePop 0.4s var(--ease) both;
}

.vp-node-1 { animation-delay: 0.90s; }
.vp-node-2 { animation-delay: 1.00s; }
.vp-node-3 { animation-delay: 1.10s; }
.vp-node-4 { animation-delay: 1.20s; }
.vp-node-5 { animation-delay: 1.30s; }
.vp-node-6 { animation-delay: 1.40s; }

.vp-node-icon {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: rgba(240, 98, 12, 0.1);
	border: 1px solid rgba(240, 98, 12, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fire);
	flex-shrink: 0;
}

.vp-node-label {
	font-family: var(--ff-head);
	font-size: 0.67rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	line-height: 1.2;
}

.vp-auto-badge {
	font-family: var(--ff-body);
	font-size: 0.6rem;
	font-weight: 700;
	color: #4ade80;
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.2);
	border-radius: 99px;
	padding: 2px 6px;
	white-space: nowrap;
}

/* Total badge */
.vp-total-badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	background: rgba(240, 98, 12, 0.14);
	border: 1px solid rgba(240, 98, 12, 0.28);
	border-radius: 99px;
	font-family: var(--ff-head);
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--fire);
	animation: vpHeroFadeIn 0.5s var(--ease) 1.55s both;
}

/* =================================================================
   TICKER
================================================================== */

.is-video-podcast-page .hero-ticker {
	margin-top: clamp(48px, 6vw, 72px);
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	padding: 13px 0;
	position: relative;
	z-index: 1;
}

.is-video-podcast-page .ticker-track {
	display: flex;
	gap: 0;
	white-space: nowrap;
	animation: tickerRun 36s linear infinite;
}

.is-video-podcast-page .ticker-track span {
	font-family: var(--ff-head);
	font-size: 0.875rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.04em;
	padding-right: 40px;
}

.is-video-podcast-page .ticker-track .sp {
	color: var(--fire);
	padding-right: 40px;
}

/* =================================================================
   REPURPOSING PIPELINE — 6-card grid
================================================================== */

.vp-output-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.vp-output-card {
	background: var(--chalk);
	border: 1px solid var(--line);
	border-radius: var(--r3);
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.vp-output-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--fire);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.28s var(--ease);
	border-radius: 0 2px 2px 0;
}

.vp-output-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
	border-color: var(--line2);
	transform: translateY(-3px);
}

.vp-output-card:hover::before {
	transform: scaleY(1);
}

.vp-output-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(240, 98, 12, 0.08);
	border: 1px solid rgba(240, 98, 12, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fire);
	flex-shrink: 0;
}

.vp-output-card h3 {
	font-family: var(--ff-head);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
}

.vp-output-card p {
	font-family: var(--ff-body);
	font-size: 0.9375rem;
	color: var(--text2);
	line-height: 1.65;
	margin: 0;
}

/* =================================================================
   WHO IT'S FOR — 2x2 grid
================================================================== */

.vp-who-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.vp-who-card {
	background: var(--chalk);
	border: 1px solid var(--line);
	border-left: 3px solid transparent;
	border-radius: var(--r2);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: border-left-color 0.28s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.vp-who-card:hover {
	border-left-color: var(--fire);
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.vp-who-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: rgba(240, 98, 12, 0.08);
	border: 1px solid rgba(240, 98, 12, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fire);
	flex-shrink: 0;
}

.vp-who-card h3 {
	font-family: var(--ff-head);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
}

.vp-who-card p {
	font-family: var(--ff-body);
	font-size: 0.9375rem;
	color: var(--text2);
	line-height: 1.65;
	margin: 0;
}

/* =================================================================
   TOOLS USED — chip cloud
================================================================== */

.vp-tools-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.vp-tool-chip {
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	background: var(--chalk);
	border: 1px solid var(--line2);
	border-radius: 99px;
	font-family: var(--ff-head);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ink);
	transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}

.vp-tool-chip:hover {
	border-color: var(--fire);
	color: var(--fire);
	background: rgba(240, 98, 12, 0.04);
}

/* =================================================================
   ADSENSE WRAP
================================================================== */

.vp-adsense-wrap {
	padding: 24px 0;
	background: var(--chalk);
}

/* =================================================================
   PROCESS — 4 steps horizontal
================================================================== */

.vp-process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

/* Connecting line */
.vp-process-steps::before {
	content: '';
	position: absolute;
	top: 28px;
	left: calc(12.5% + 20px);
	right: calc(12.5% + 20px);
	height: 2px;
	background: linear-gradient(90deg, var(--fire) 0%, rgba(240, 98, 12, 0.2) 100%);
	z-index: 0;
}

.vp-process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	padding: 0 16px;
	position: relative;
	z-index: 1;
}

.vp-process-num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--ink);
	border: 3px solid var(--fire);
	color: var(--fire);
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 0 0 6px var(--chalk);
}

.vp-process-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vp-process-body h3 {
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
}

.vp-process-body p {
	font-family: var(--ff-body);
	font-size: 0.875rem;
	color: var(--text2);
	line-height: 1.6;
	margin: 0;
}

/* =================================================================
   FAQ
================================================================== */

.vp-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.vp-faq-item {
	border-bottom: 1px solid var(--line);
}

.vp-faq-item:first-child {
	border-top: 1px solid var(--line);
}

.vp-faq-q {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	text-align: left;
}

.vp-faq-q span {
	font-family: var(--ff-head);
	font-size: 1rem;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.4;
}

.vp-faq-icon {
	color: var(--text2);
	flex-shrink: 0;
	transition: transform 0.28s var(--ease), color 0.22s var(--ease);
}

.vp-faq-item.is-open .vp-faq-icon {
	transform: rotate(-180deg);
	color: var(--fire);
}

.vp-faq-item.is-open .vp-faq-q span {
	color: var(--fire);
}

.vp-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.38s var(--ease);
}

.vp-faq-a p {
	font-family: var(--ff-body);
	font-size: 0.9375rem;
	color: var(--text2);
	line-height: 1.7;
	padding-bottom: 20px;
	margin: 0;
}

/* =================================================================
   FINAL CTA — fire background
================================================================== */

.vp-cta-fire {
	background: var(--fire);
	position: relative;
	overflow: hidden;
}

.vp-cta-fire::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.12) 0%, transparent 60%);
	pointer-events: none;
}

.vp-cta-fire .h2 {
	color: var(--chalk);
	margin-bottom: 16px;
}

.vp-cta-sub {
	font-family: var(--ff-body);
	font-size: clamp(1rem, 1.3vw, 1.125rem);
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 36px;
	line-height: 1.65;
}

.vp-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	align-items: center;
}

.vp-cta-btn-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 30px;
	background: var(--chalk);
	color: var(--fire);
	border-radius: var(--r2);
	font-family: var(--ff-head);
	font-size: 1rem;
	font-weight: 800;
	text-decoration: none;
	transition: background 0.22s var(--ease), transform 0.18s var(--ease), box-shadow 0.22s var(--ease);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.vp-cta-btn-white:hover,
.vp-cta-btn-white:focus-visible {
	background: var(--mist);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
	color: var(--fire);
}

.vp-cta-fire .btn-ghost {
	border-color: rgba(255, 255, 255, 0.5);
}

/* =================================================================
   RESPONSIVE — 960px
================================================================== */

@media (max-width: 960px) {

	.is-video-podcast-page .hero-body {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.is-video-podcast-page .hero-right {
		display: flex;
		justify-content: center;
	}

	.video-panel {
		max-width: 480px;
	}

	.vp-output-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.vp-who-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vp-process-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.vp-process-steps::before {
		display: none;
	}

}

/* =================================================================
   RESPONSIVE — 768px
================================================================== */

@media (max-width: 768px) {

	.is-video-podcast-page .hero-h1 {
		font-size: clamp(1.8rem, 7vw, 2.4rem);
	}

	.is-video-podcast-page .hero-stats {
		flex-wrap: wrap;
		gap: 16px;
	}

	.is-video-podcast-page .hero-stat {
		border-right: none;
		padding-right: 0;
		margin-right: 0;
	}

	.vp-output-cards {
		grid-template-columns: 1fr;
	}

	.vp-who-grid {
		grid-template-columns: 1fr;
	}

	.vp-process-steps {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.vp-process-step {
		flex-direction: row;
		text-align: left;
		padding: 0;
	}

	.vp-cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.vp-cta-btn-white,
	.vp-cta-fire .btn-ghost {
		justify-content: center;
	}

}

/* =================================================================
   RESPONSIVE — 480px
================================================================== */

@media (max-width: 480px) {

	.is-video-podcast-page .hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.is-video-podcast-page .hero-actions a {
		justify-content: center;
	}

	.vp-outputs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

}
