/* =========================================================
   Franchise Brain Podcast – page template styles
   Loaded only on pages using the "Franchise Brain Podcast" template.
   ========================================================= */

/* ---------- Satoshi font family (self-hosted) ---------- */
@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-LightItalic.woff') format('woff');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-Italic.woff') format('woff');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-MediumItalic.woff') format('woff');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-BoldItalic.woff') format('woff');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-BlackItalic.woff') format('woff');
	font-weight: 900;
	font-style: italic;
	font-display: swap;
}

:root {
	/* Brand palette (from Figma) */
	--fbp-color-fuchsia: #FF56B5;        /* "Fucsia principale" — accent */
	--fbp-color-gold:    #FFDB8C;        /* Book section accent */
	--fbp-color-white-49: rgba(255, 255, 255, 0.49); /* "Grigio" — white at ~49% alpha */
	--fbp-color-text-muted: #7A7A7A;     /* "Testo" — secondary text */

	/* Surfaces */
	--fbp-color-bg: #ffffff;
	--fbp-color-bg-dark: #000000;
	--fbp-color-text: #111111;
	--fbp-color-accent: var(--fbp-color-fuchsia);

	/* Layout */
	--fbp-container-max: 1200px;
	--fbp-container-pad: 1.5rem;
}

/* ---------- Full-bleed dark page: expand GP's content wrappers ---------- */
body.fb-podcast-page {
	background: var(--fbp-color-bg-dark);
}

body.fb-podcast-page .site-content,
body.fb-podcast-page .inside-content,
body.fb-podcast-page #content,
body.fb-podcast-page .content-area,
body.fb-podcast-page #primary {
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* ---------- Page wrapper ---------- */
.fb-podcast {
	font-family: 'Satoshi', system-ui, -apple-system, sans-serif;
	color: #ffffff;
	background: var(--fbp-color-bg-dark);
}

/* ---------- Hero ---------- */
.fb-podcast__hero {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 4rem 1.5rem 6rem;
	text-align: center;
	background:
		radial-gradient(ellipse 70% 60% at 95% 5%,  rgba(255, 86, 181, 0.35), transparent 55%),
		radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255, 86, 181, 0.15), transparent 55%),
		var(--fbp-color-bg-dark);
}

.fb-podcast__hero-inner {
	max-width: 1100px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.75rem;
}

.fb-podcast__hero-badge {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.fb-podcast__hero-title {
	margin: 0;
	font-size: clamp(2.25rem, 5vw, 4.5rem); /* 72px on desktop */
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: #ffffff;
}

.fb-podcast__hero-title em {
	font-style: normal;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 86, 181, 1) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	/* Keeps the gradient correct if the accent word ever wraps to a new line */
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.fb-podcast__hero-lede {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

/* ---------- CTAs ---------- */
.fb-podcast__hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	justify-content: center;
	margin-top: 0.5rem;
}

.fb-podcast__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.875rem 1.75rem;
	border-radius: 14px;
	font-weight: 600;
	font-size: 0.9375rem;
	color: #ffffff;
	text-decoration: none;
	transition: transform 0.15s ease, filter 0.15s ease;
}

.fb-podcast__btn:hover,
.fb-podcast__btn:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.15);
	color: #ffffff;
}

.fb-podcast__btn-icon {
	display: inline-flex;
	width: 22px;
	height: 22px;
}

.fb-podcast__btn-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Spotify — dark base with a subtle green glow rising from bottom-left */
.fb-podcast__btn--spotify {
	background:
		radial-gradient(ellipse 80% 100% at 0% 100%, rgba(30, 215, 96, 0.35), transparent 60%),
		#0d0d0d;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

/* YouTube — dark base with a subtle red glow rising from bottom-left */
.fb-podcast__btn--youtube {
	background:
		radial-gradient(ellipse 80% 100% at 0% 100%, rgba(255, 0, 51, 0.35), transparent 60%),
		#0d0d0d;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================================================
   Episodes carousel
   ========================================================= */

.fb-podcast__episodes {
	padding-block: 4rem 5rem;
	background: var(--fbp-color-bg-dark);
}

/* Positioning context for the side arrow buttons */
.fb-podcast__episodes-wrap {
	position: relative;
}

.fb-podcast__episodes-track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-block: 1rem;
	padding-inline: clamp(1rem, 3vw, 3rem);
	scroll-padding-inline: clamp(1rem, 3vw, 3rem);
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0%,
		#000 10%,
		#000 90%,
		transparent 100%
	);
	mask-image: linear-gradient(
		to right,
		transparent 0%,
		#000 10%,
		#000 90%,
		transparent 100%
	);
}

.fb-podcast__episodes-track::-webkit-scrollbar {
	display: none;
}

/* ---------- Prev / Next arrows ---------- */
.fb-podcast__episodes-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: background 0.15s ease, transform 0.15s ease, opacity 0.2s ease;
}

.fb-podcast__episodes-nav:hover,
.fb-podcast__episodes-nav:focus-visible {
	background: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.08);
	outline: none;
}

.fb-podcast__episodes-nav[disabled],
.fb-podcast__episodes-nav[aria-disabled="true"] {
	opacity: 0.35;
	cursor: not-allowed;
}

.fb-podcast__episodes-nav-arrow {
	display: block;
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
}

.fb-podcast__episodes-nav--prev .fb-podcast__episodes-nav-arrow {
	border-right: 10px solid #ffffff;
	margin-left: -2px;
}

.fb-podcast__episodes-nav--next .fb-podcast__episodes-nav-arrow {
	border-left: 10px solid #ffffff;
	margin-right: -2px;
}

.fb-podcast__episodes-nav--prev { left: clamp(0.5rem, 2vw, 2rem); }
.fb-podcast__episodes-nav--next { right: clamp(0.5rem, 2vw, 2rem); }

/* ---------- Card ---------- */
.fb-podcast__card {
	flex: 0 0 auto;
	position: relative;
	width: min(600px, 85vw);
	aspect-ratio: 1.55 / 1;
	border-radius: 22px;
	overflow: hidden;
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
	scroll-snap-align: center;
	isolation: isolate;
}

.fb-podcast__card-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* Dark gradient on the left so text stays legible */
.fb-podcast__card::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		100deg,
		rgba(0, 0, 0, 0.85) 0%,
		rgba(0, 0, 0, 0.6)  35%,
		rgba(0, 0, 0, 0.0)  65%
	);
}

.fb-podcast__card-body {
	position: relative;
	z-index: 2;
	height: 100%;
	width: 65%;
	padding: 1.75rem 1.75rem 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: #fff;
}

.fb-podcast__card-meta {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #FF56B5;
}

.fb-podcast__card-title {
	margin: 0;
	font-size: clamp(1.375rem, 2vw, 2rem);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: -0.01em;
	color: #fff;
}

.fb-podcast__card-foot {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
}

.fb-podcast__card-guest-role {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
}

.fb-podcast__card-guest-name {
	margin: 0 0 0.875rem;
	font-size: 1.0625rem;
	font-weight: 600;
	color: #fff;
}

.fb-podcast__card-btn {
	display: inline-block;
	padding: 0.625rem 1.25rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: background 0.15s ease, transform 0.15s ease;
}

.fb-podcast__card-btn:hover,
.fb-podcast__card-btn:focus-visible {
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	transform: translateY(-1px);
}

.fb-podcast__card-censored {
	display: inline-block;
	padding: 0.625rem 0;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
}

/* Round play button bottom-right */
.fb-podcast__card-play {
	position: absolute;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 3;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	text-decoration: none;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: background 0.15s ease, transform 0.15s ease;
}

.fb-podcast__card-play:hover,
.fb-podcast__card-play:focus-visible {
	background: rgba(255, 255, 255, 0.3);
	color: #fff;
	transform: scale(1.06);
}

.fb-podcast__card-play svg {
	width: 22px;
	height: 22px;
	margin-left: 3px; /* optical centering for the triangle */
}

/* =========================================================
   Book section
   ========================================================= */

.fb-podcast__book {
	padding-block: 5rem;
	background: var(--fbp-color-bg-dark);
}

.fb-podcast__book-inner {
	max-width: 820px;
	margin-inline: auto;
	padding-inline: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.75rem;
	text-align: center;
}

.fb-podcast__book-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 1rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.fb-podcast__book-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--fbp-color-gold);
	box-shadow: 0 0 12px rgba(255, 219, 140, 0.6);
}

.fb-podcast__book-title {
	margin: 0;
	font-size: clamp(1.875rem, 3.5vw, 3rem);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: #ffffff;
}

.fb-podcast__book-title em {
	font-style: normal;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		var(--fbp-color-gold) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.fb-podcast__book-lede {
	max-width: 580px;
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

.fb-podcast__book-lede + .fb-podcast__book-lede {
	margin-top: 0.5rem;
}

.fb-podcast__book-image {
	display: block;
	max-width: min(380px, 70%);
	height: auto;
	margin-block: 1rem;
}

.fb-podcast__book-cta-title {
	margin: 0;
	font-size: clamp(1.25rem, 1.8vw, 1.75rem);
	font-weight: 500;
	line-height: 1.3;
	color: #ffffff;
}

.fb-podcast__book-cta {
	display: inline-block;
	padding: 0.875rem 1.75rem;
	background: var(--fbp-color-gold);
	border-radius: 999px;
	color: #1a1a1a;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.15s ease, filter 0.15s ease;
}

.fb-podcast__book-cta:hover,
.fb-podcast__book-cta:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.06);
	color: #1a1a1a;
}

/* =========================================================
   Lead form section
   ========================================================= */

.fb-podcast__lead {
	padding-block: 5rem;
	background: var(--fbp-color-bg-dark);
}

.fb-podcast__lead-head {
	max-width: 1100px;
	margin: 0 auto 2.5rem;
	padding-inline: 1.5rem;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	column-gap: 2rem;
	row-gap: 1.25rem;
	align-items: start;
}

.fb-podcast__lead-badge {
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
	padding: 0.45rem 1rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.fb-podcast__lead-title { grid-column: 1; grid-row: 2; }
.fb-podcast__lead-lede  { grid-column: 2; grid-row: 2; }

.fb-podcast__lead-title {
	margin: 0;
	font-size: clamp(1.875rem, 3.5vw, 3rem);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: #ffffff;
}

.fb-podcast__lead-title em {
	font-style: normal;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		var(--fbp-color-fuchsia) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.fb-podcast__lead-lede {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

/* ---------- Form card ---------- */
.fb-podcast__form {
	max-width: 680px;
	margin: 0 auto;
	padding: 2rem 2.25rem 2.25rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	display: grid;
	gap: 1.5rem;
}

.fb-podcast__form-title {
	margin: 0 0 0.25rem;
	font-size: 1.375rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: #ffffff;
}

.fb-podcast__form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.fb-podcast__form-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.fb-podcast__form-field label,
.fb-podcast__form-label {
	font-size: 0.8125rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
}

/* ---------- Inputs ---------- */
.fb-podcast__form-field input[type="text"],
.fb-podcast__form-field input[type="email"],
.fb-podcast__form-field input[type="tel"],
.fb-podcast__form-field select,
.fb-podcast__form-field textarea {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	padding: 0.85rem 1rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: #ffffff;
	font-family: inherit;
	font-size: 0.9375rem;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.fb-podcast__form-field textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.5;
}

.fb-podcast__form-field input::placeholder,
.fb-podcast__form-field textarea::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.fb-podcast__form-field input:focus,
.fb-podcast__form-field select:focus,
.fb-podcast__form-field textarea:focus {
	outline: none;
	border-color: rgba(255, 86, 181, 0.5);
	background: rgba(255, 255, 255, 0.06);
}

/* Custom dropdown arrow */
.fb-podcast__form-field select {
	padding-right: 2.5rem;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.875rem center;
	background-size: 18px 18px;
}

.fb-podcast__form-field select option {
	background: #111;
	color: #fff;
}

/* ---------- Budget radio-as-buttons ---------- */
.fb-podcast__form-budget-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.fb-podcast__form-budget {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9375rem;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
	text-align: center;
}

.fb-podcast__form-budget input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.fb-podcast__form-budget:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.18);
}

.fb-podcast__form-budget:has(input:checked) {
	background: rgba(255, 86, 181, 0.12);
	border-color: rgba(255, 86, 181, 0.55);
	color: #ffffff;
}

/* ---------- Consent checkbox ---------- */
.fb-podcast__form-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-size: 0.8125rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
}

.fb-podcast__form-consent input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	appearance: none;
	-webkit-appearance: none;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
	position: relative;
}

.fb-podcast__form-consent input[type="checkbox"]:checked {
	background: var(--fbp-color-fuchsia);
	border-color: var(--fbp-color-fuchsia);
}

.fb-podcast__form-consent input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.fb-podcast__form-consent a {
	color: var(--fbp-color-fuchsia);
	text-decoration: underline;
}

/* ---------- Submit ---------- */
.fb-podcast__form-submit {
	appearance: none;
	-webkit-appearance: none;
	border: none;
	cursor: pointer;
	width: 100%;
	padding: 1rem 1.5rem;
	border-radius: 999px;
	color: #ffffff;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.005em;
	background:
		linear-gradient(90deg, #d11d8c 0%, #ff56b5 50%, #ff90d0 100%);
	box-shadow:
		0 12px 32px -8px rgba(255, 86, 181, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.08) inset;
	transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.fb-podcast__form-submit:hover:not(:disabled),
.fb-podcast__form-submit:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.06);
	box-shadow:
		0 16px 36px -8px rgba(255, 86, 181, 0.65),
		0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.fb-podcast__form-submit:disabled {
	cursor: not-allowed;
	opacity: 0.7;
}

/* ---------- Status message ---------- */
.fb-podcast__form-status {
	margin: 0;
	min-height: 1.25em;
	font-size: 0.875rem;
	text-align: center;
}

.fb-podcast__form-status--success { color: #4ade80; }
.fb-podcast__form-status--error   { color: #ff6b6b; }

/* =========================================================
   Network / services carousel
   ========================================================= */

.fb-podcast__network {
	padding-block: 5rem 4rem;
	background: var(--fbp-color-bg-dark);
}

.fb-podcast__network-head {
	max-width: 1100px;
	margin: 0 auto 2.5rem;
	padding-inline: 1.5rem;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	column-gap: 2rem;
	row-gap: 1.25rem;
	align-items: start;
}

.fb-podcast__network-badge {
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
	padding: 0.45rem 1rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.fb-podcast__network-title {
	grid-column: 1;
	grid-row: 2;
	margin: 0;
	font-size: clamp(1.875rem, 3.5vw, 3rem);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: #ffffff;
}

.fb-podcast__network-title em {
	font-style: normal;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		var(--fbp-color-fuchsia) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.fb-podcast__network-lede {
	grid-column: 2;
	grid-row: 2;
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

/* ---------- Services grid ---------- */
.fb-podcast__services {
	max-width: 1240px;
	margin: 0 auto;
	padding-inline: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

/* Second form (network section): spacing from the services grid above */
.fb-podcast__form--network {
	margin-top: 3rem;
}

/* ---------- Service card ---------- */
.fb-podcast__service {
	flex: 1 1 220px;
	max-width: 240px;
	padding: 1.5rem 1.5rem 1.75rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.fb-podcast__service-icon {
	width: 40px;
	height: 40px;
	display: block;
	margin-bottom: 0.5rem;
}

.fb-podcast__service-title {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 600;
	color: #ffffff;
}

.fb-podcast__service-desc {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   Master CEO section
   ========================================================= */

.fb-podcast__master {
	padding-block: 5rem 5rem;
	background: var(--fbp-color-bg-dark);
}

.fb-podcast__master-head {
	max-width: 900px;
	margin: 0 auto 3rem;
	padding-inline: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	text-align: center;
}

.fb-podcast__master-badge {
	padding: 0.45rem 1rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.fb-podcast__master-ornament {
	display: block;
	width: 56px;
	height: auto;
}

.fb-podcast__master-title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: #ffffff;
}

.fb-podcast__master-title em {
	font-style: normal;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		var(--fbp-color-fuchsia) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

/* ---------- Cards grid ---------- */
.fb-podcast__master-grid {
	max-width: 1240px;
	margin: 0 auto;
	padding-inline: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.fb-podcast__master-card {
	flex: 1 1 220px;
	max-width: 240px;
	padding: 1.5rem 1.5rem 1.5rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	position: relative;
	overflow: hidden;
}

/* ---------- Icon with colored blur behind ---------- */
.fb-podcast__master-icon-wrap {
	position: relative;
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.fb-podcast__master-icon-glow {
	position: absolute;
	inset: -20%;
	z-index: 0;
	border-radius: 50%;
	background: var(--accent, #ffffff);
	filter: blur(22px);
	opacity: 0.55;
	pointer-events: none;
}

.fb-podcast__master-icon {
	position: relative;
	z-index: 1;
	width: 28px;
	height: 28px;
	display: block;
}

.fb-podcast__master-card-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	color: #ffffff;
}

.fb-podcast__master-card-step {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
}

.fb-podcast__master-card-desc {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
}

.fb-podcast__master-card-long {
	margin: 0.5rem 0 0;
	font-size: 0.8rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   Master offer block (image + checklist + price + CTA)
   ========================================================= */

.fb-podcast__offer {
	max-width: 1100px;
	margin: 4rem auto 0;
	padding-inline: 1.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.fb-podcast__offer-media img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
}

.fb-podcast__offer-body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.fb-podcast__offer-eyebrow {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
}

.fb-podcast__offer-list {
	list-style: none;
	margin: 0.25rem 0 0.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.fb-podcast__offer-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1rem;
	font-weight: 500;
	color: #ffffff;
}

.fb-podcast__offer-check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
}

.fb-podcast__offer-availability {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.55);
}

.fb-podcast__offer-price {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	flex-wrap: wrap;
	margin-top: 0.25rem;
}

.fb-podcast__offer-price-old {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.45);
	text-decoration: line-through;
}

.fb-podcast__offer-price-new {
	font-size: 1.875rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.01em;
}

.fb-podcast__offer-promo {
	padding: 0.35rem 0.75rem;
	background: rgba(255, 86, 181, 0.18);
	border: 1px solid rgba(255, 86, 181, 0.4);
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--fbp-color-fuchsia);
}

.fb-podcast__offer-cta {
	display: inline-block;
	margin-top: 0.5rem;
	padding: 1rem 1.5rem;
	border-radius: 999px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	background:
		linear-gradient(90deg, #d11d8c 0%, #ff56b5 50%, #ff90d0 100%);
	box-shadow:
		0 12px 32px -8px rgba(255, 86, 181, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.08) inset;
	transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.fb-podcast__offer-cta:hover,
.fb-podcast__offer-cta:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.06);
	color: #ffffff;
	box-shadow:
		0 16px 36px -8px rgba(255, 86, 181, 0.65),
		0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.fb-podcast__offer-remaining {
	margin: 0;
	text-align: center;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   Responsive tweaks
   ========================================================= */
@media (max-width: 640px) {
	.fb-podcast__hero {
		padding-block: 3rem 4rem;
	}
	.fb-podcast__hero-title br {
		display: none;
	}
	.fb-podcast__episodes {
		padding-block: 3rem 4rem;
	}
	.fb-podcast__card-body {
		width: 70%;
		padding: 1rem 1rem 0.75rem;
	}
	.fb-podcast__card-title {
		font-size: 0.95rem;
	}
	.fb-podcast__card-meta {
		margin: 0 0 0.25rem;
		font-size: 0.65rem;
	}
	.fb-podcast__card-guest {
		font-size: 0.8rem;
	}
	.fb-podcast__card-cta {
		font-size: 0.75rem;
		padding: 0.4rem 1rem;
	}
	.fb-podcast__card-play {
		width: 48px;
		height: 48px;
		right: 1rem;
		bottom: 1rem;
	}
	.fb-podcast__book {
		padding-block: 3rem;
	}
	.fb-podcast__book-title br,
	.fb-podcast__book-cta-title br {
		display: none;
	}
	.fb-podcast__lead {
		padding-block: 3rem;
	}
	.fb-podcast__lead-head {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.fb-podcast__lead-badge,
	.fb-podcast__lead-title,
	.fb-podcast__lead-lede {
		grid-column: 1;
		grid-row: auto;
	}
	.fb-podcast__lead-title br {
		display: none;
	}
	.fb-podcast__form {
		padding: 1.5rem 1.25rem;
	}
	.fb-podcast__form-row,
	.fb-podcast__form-budget-grid {
		grid-template-columns: 1fr;
	}
	.fb-podcast__network {
		padding-block: 3rem;
	}
	.fb-podcast__network-head {
		grid-template-columns: 1fr;
		gap: 1rem;
		justify-items: center;
		text-align: center;
	}
	.fb-podcast__network-badge,
	.fb-podcast__network-title,
	.fb-podcast__network-lede {
		grid-column: 1;
		grid-row: auto;
	}
	.fb-podcast__network-badge {
		justify-self: center;
	}
	.fb-podcast__network-title br { display: none; }

	/* Mobile: convert the centered grids into scroll-snap carousels with fade */
	.fb-podcast__services,
	.fb-podcast__master-grid {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-inline: 1.25rem;
		scroll-padding-inline: 1.25rem;
		scrollbar-width: none;
		-ms-overflow-style: none;
		-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
		mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
	}
	.fb-podcast__services::-webkit-scrollbar,
	.fb-podcast__master-grid::-webkit-scrollbar {
		display: none;
	}
	.fb-podcast__service,
	.fb-podcast__master-card {
		flex: 0 0 240px;
		max-width: 240px;
		scroll-snap-align: start;
	}
	/* Smaller, higher-contrast carousel arrows on mobile */
	.fb-podcast__episodes-nav {
		width: 44px;
		height: 44px;
		background: rgba(0, 0, 0, 0.85);
		border-color: rgba(255, 255, 255, 0.55);
		color: #ffffff;
	}
	.fb-podcast__episodes-nav:hover,
	.fb-podcast__episodes-nav:focus-visible {
		background: #000000;
	}
	.fb-podcast__episodes-nav[disabled] {
		opacity: 0.55;
	}
	.fb-podcast__episodes-nav-arrow {
		border-top-width: 8px;
		border-bottom-width: 8px;
	}
	.fb-podcast__episodes-nav--prev .fb-podcast__episodes-nav-arrow {
		border-right-width: 12px;
	}
	.fb-podcast__episodes-nav--next .fb-podcast__episodes-nav-arrow {
		border-left-width: 12px;
	}
	.fb-podcast__master {
		padding-block: 3rem;
	}
	.fb-podcast__master-title br { display: none; }
	.fb-podcast__offer {
		grid-template-columns: 1fr;
		gap: 1.75rem;
		margin-top: 2.5rem;
	}
}
