.mfm-schedule-current,
.mfm-programs-grid,
.mfm-hosts-grid,
.mfm-schedule-grid {
	box-sizing: border-box;
	width: 100%;
}

.mfm-schedule-current {
	display: grid;
	grid-template-columns: minmax(180px, 360px) minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	padding: 24px;
	border-radius: 10px;
	background: #171717;
	color: #fff;
}

.mfm-schedule-current img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 8px;
}

.mfm-schedule-current h2 {
	margin: 8px 0;
	color: inherit;
}

.mfm-schedule-badge {
	display: inline-flex;
	border-radius: 999px;
	background: #ef233c;
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	line-height: 1;
	padding: 7px 10px;
}

.mfm-schedule-grid,
.mfm-programs-grid,
.mfm-hosts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.mfm-schedule-grid__item,
.mfm-programs-grid__item,
.mfm-hosts-grid__item {
	display: grid;
	gap: 8px;
	padding: 16px;
	border: 1px solid #e3e3e3;
	border-radius: 8px;
	background: #fff;
}

.mfm-schedule-grid__item.is-live {
	border-color: #ef233c;
	box-shadow: 0 0 0 2px rgba(239, 35, 60, 0.14);
}

.mfm-programs-grid__item img,
.mfm-hosts-grid__item img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 6px;
}

.mfm-programs-grid__item h2,
.mfm-hosts-grid__item h2 {
	margin: 0;
	font-size: 20px;
}

.mfm-programs-grid__item a,
.mfm-hosts-grid__item a {
	color: inherit;
	text-decoration: none;
}

.mfm-host-single {
	background: #f4f5f7;
}

.mfm-host-hero {
	position: relative;
	overflow: hidden;
	background: #101014;
	color: #fff;
}

.mfm-host-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.76) 48%, rgba(0,0,0,.5) 100%),
		var(--mfm-host-hero-image, none) center / cover no-repeat;
	filter: saturate(1.05);
	transform: scale(1.02);
}

.mfm-host-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 16%, rgba(255,210,31,.24), transparent 32%),
		linear-gradient(0deg, rgba(16,16,20,.85), transparent 52%);
}

.mfm-host-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
	gap: 32px;
	align-items: end;
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
	padding: 58px 0;
}

.mfm-host-hero__image {
	margin: 0;
}

.mfm-host-hero__image img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border: 4px solid rgba(255,255,255,.9);
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.mfm-host-hero__body {
	max-width: 720px;
	padding-bottom: 8px;
}

.mfm-host-hero__eyebrow {
	display: inline-flex;
	margin-bottom: 14px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #ef233c;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.mfm-host-hero h1 {
	margin: 0;
	color: #fff !important;
	font-size: clamp(42px, 7vw, 78px);
	line-height: .94;
	text-shadow: 0 3px 18px rgba(0,0,0,.85);
	-webkit-text-fill-color: #fff;
}

.mfm-host-profile__role {
	margin: 14px 0 0;
	font-weight: 800;
	color: #ffd21f;
	font-size: 18px;
}

.mfm-host-hero__meta {
	margin: 10px 0 0;
	color: rgba(255,255,255,.84);
	font-weight: 700;
}

.mfm-host-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 24px;
	width: min(1120px, calc(100% - 40px));
	margin: 32px auto 44px;
}

.mfm-host-detail__main,
.mfm-host-detail__aside {
	display: grid;
	gap: 16px;
	align-content: start;
}

.mfm-host-panel {
	padding: 24px;
	border: 1px solid rgba(17,17,17,.1);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(0,0,0,.06);
}

.mfm-host-panel h2 {
	margin: 0 0 16px;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1;
}

.mfm-host-panel--bio {
	font-size: 16px;
	line-height: 1.75;
}

.mfm-host-panel__content > :first-child {
	margin-top: 0;
}

.mfm-host-panel__content > :last-child {
	margin-bottom: 0;
}

.mfm-host-panel p {
	display: grid;
	gap: 4px;
	margin: 0 0 12px;
}

.mfm-host-panel p strong {
	font-size: 11px;
	text-transform: uppercase;
	color: #666;
}

.mfm-host-panel p a {
	color: #171717;
	font-weight: 800;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.mfm-host-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mfm-host-socials a {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
	padding: 0 10px;
	border-radius: 999px;
	background: #171717;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
}

.mfm-host-socials a:hover,
.mfm-host-socials a:focus {
	background: #ef233c;
	color: #fff !important;
}

.mfm-schedule-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.mfm-schedule-socials__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 44px;
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid #dedede;
	border-radius: 7px;
	background: #f8f8f8;
	color: #171717;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.mfm-schedule-socials__link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	flex: 0 0 auto;
}

.mfm-schedule-socials__link:hover,
.mfm-schedule-socials__link:focus {
	border-color: transparent;
	background: #171717;
	color: #fff;
	transform: translateY(-1px);
}

.mfm-schedule-socials__link--instagram:hover,
.mfm-schedule-socials__link--instagram:focus {
	background: #c13584;
}

.mfm-schedule-socials__link--facebook:hover,
.mfm-schedule-socials__link--facebook:focus {
	background: #1877f2;
}

.mfm-schedule-socials__link--x:hover,
.mfm-schedule-socials__link--x:focus {
	background: #111;
}

.mfm-schedule-socials__link--tiktok:hover,
.mfm-schedule-socials__link--tiktok:focus {
	background: #00a6a6;
}

.mfm-schedule-socials__link--youtube:hover,
.mfm-schedule-socials__link--youtube:focus {
	background: #e62117;
}

.mfm-schedule-socials__link--whatsapp:hover,
.mfm-schedule-socials__link--whatsapp:focus {
	background: #25d366;
	color: #071b0f;
}

.mfm-schedule-socials--radio .mfm-schedule-socials__link {
	background: #fff;
}

.mfm-schedule-player {
	width: 100%;
	max-width: 100%;
}

.mfm-schedule-player__eyebrow {
	margin: 0 0 10px;
	color: #1c3d7a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.mfm-schedule-player__notice {
	margin: 12px 0 0;
	color: #243047;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.mfm-schedule-player .mfm-floating-player--inline {
	--mfm-floating-text-width: 100%;
	position: relative;
	inset: auto;
	width: 100%;
	max-width: 100%;
	box-shadow: none;
	transform: none;
}

.mfm-schedule-player .mfm-floating-player__content,
.mfm-schedule-player .mfm-floating-player__title,
.mfm-schedule-player .mfm-floating-player__hosts,
.mfm-schedule-player .mfm-floating-player__volume-row {
	width: 100%;
}

.mfm-schedule-player .mfm-floating-player__share,
.mfm-schedule-player .mfm-floating-player__share:hover,
.mfm-schedule-player .mfm-floating-player__share:focus {
	color: #fff !important;
	opacity: 1;
}

.mfm-schedule-player .mfm-floating-player__share svg,
.mfm-schedule-player .mfm-floating-player__share img {
	fill: currentColor;
	filter: brightness(0) invert(1);
	opacity: 1;
}

.mfm-schedule-player__fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	width: 100%;
	border-radius: 8px;
	background: #ffd21f;
	color: #111;
	font-weight: 900;
	text-decoration: none;
}

.mfm-host-detail .mfm-programs-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mfm-host-detail .mfm-programs-grid__item {
	padding: 0;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.mfm-host-detail .mfm-programs-grid__item img {
	border-radius: 0;
}

.mfm-host-detail .mfm-programs-grid__item h3,
.mfm-host-detail .mfm-programs-grid__item p,
.mfm-host-detail .mfm-programs-grid__item time,
.mfm-host-program-card__button {
	margin-right: 16px;
	margin-left: 16px;
}

.mfm-host-detail .mfm-programs-grid__item h3 {
	margin-top: 14px;
	margin-bottom: 0;
	font-size: 22px;
	line-height: 1.1;
}

.mfm-host-detail .mfm-programs-grid__item time {
	color: #ef233c;
	font-weight: 900;
}

.mfm-host-program-card__button {
	display: inline-flex;
	width: max-content;
	min-height: 38px;
	align-items: center;
	margin-top: 6px;
	margin-bottom: 16px;
	padding: 0 14px;
	border-radius: 7px;
	background: #171717;
	color: #fff !important;
	text-decoration: none;
	font-weight: 900;
}

.mfm-host-program-card__button:hover,
.mfm-host-program-card__button:focus {
	background: #ef233c;
	color: #fff !important;
}

.mfm-host-programs,
.mfm-schedule-page-header {
	max-width: 1120px;
	margin: 0 auto;
	padding: 20px;
}

.mfm-program-archive,
.mfm-host-archive {
	width: 100%;
	max-width: none;
	padding: 0;
}

.mfm-archive-hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: 360px;
	padding: 56px 20px;
	background: #171717 center / cover no-repeat;
	color: #fff;
	overflow: hidden;
}

.mfm-archive-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.55)),
		radial-gradient(circle at 80% 20%, rgba(255,210,31,.2), transparent 36%);
}

.mfm-archive-hero--hosts {
	background-color: #171717;
}

.mfm-archive-hero__inner {
	position: relative;
	z-index: 1;
	width: min(1120px, 100%);
	margin: 0 auto;
}

.mfm-archive-hero h1,
.mfm-archive-hero .mfm-archive-hero__title {
	max-width: 780px;
	margin: 14px 0 10px;
	color: #fff !important;
	font-size: clamp(42px, 7vw, 84px);
	line-height: .94;
	text-shadow: 0 3px 18px rgba(0,0,0,.85);
	-webkit-text-fill-color: #fff;
}

.mfm-archive-hero p {
	max-width: 640px;
	margin: 0;
	color: #fff;
	font-size: 19px;
	text-shadow: 0 2px 12px rgba(0,0,0,.8);
}

.mfm-archive-hero__live {
	display: inline-grid;
	gap: 2px;
	margin-top: 22px;
	padding: 14px 16px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 8px;
	background: rgba(0,0,0,.52);
	backdrop-filter: blur(8px);
}

.mfm-archive-hero__live strong {
	color: #ffd21f;
	font-size: 12px;
	text-transform: uppercase;
}

.mfm-archive-hero__live span {
	font-size: 18px;
	font-weight: 800;
}

.mfm-archive-hero__live small {
	color: rgba(255,255,255,.84);
}

.mfm-archive-section {
	width: min(1120px, calc(100% - 40px));
	margin: 34px auto 48px;
}

.mfm-archive-section__head {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: end;
	margin-bottom: 22px;
}

.mfm-archive-section__head h2 {
	margin: 0;
	font-size: clamp(28px, 4vw, 42px);
}

.mfm-archive-section__head p {
	max-width: 430px;
	margin: 0;
	color: #666;
}

.mfm-program-archive-grid,
.mfm-host-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.mfm-program-archive-card,
.mfm-host-archive-card {
	display: grid;
	overflow: hidden;
	border: 1px solid #e3e3e3;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(0,0,0,.07);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.mfm-program-archive-card:hover,
.mfm-host-archive-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(0,0,0,.1);
}

.mfm-program-archive-card__media,
.mfm-host-archive-card__media {
	position: relative;
	display: block;
	background: #171717;
	color: inherit;
	text-decoration: none;
}

.mfm-program-archive-card__media img,
.mfm-host-archive-card__media img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.mfm-host-archive-card__media img {
	height: 240px;
	object-position: center;
}

.mfm-program-archive-card__media span {
	position: absolute;
	left: 12px;
	bottom: 12px;
	padding: 5px 8px;
	border-radius: 5px;
	background: #ffd21f;
	color: #111;
	font-size: 12px;
	font-weight: 800;
}

.mfm-program-archive-card__body,
.mfm-host-archive-card__body {
	display: grid;
	gap: 12px;
	padding: 20px;
	align-content: start;
}

.mfm-program-archive-card h3,
.mfm-host-archive-card h3 {
	margin: 0;
	font-size: 23px;
	line-height: 1.1;
}

.mfm-program-archive-card h3 a,
.mfm-host-archive-card h3 a {
	color: inherit;
	text-decoration: none;
}

.mfm-program-archive-card p,
.mfm-host-archive-card p {
	margin: 0;
	color: #555;
	line-height: 1.55;
}

.mfm-program-archive-card__meta {
	display: grid;
	gap: 4px;
	padding-top: 4px;
	color: #333;
	font-weight: 700;
}

.mfm-program-archive-card__meta time {
	color: #ef233c;
}

.mfm-host-archive-card__body > strong {
	color: #ef233c;
}

.mfm-host-archive-card__programs {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	padding-top: 4px;
}

.mfm-host-archive-card__programs span {
	width: 100%;
	color: #666;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.mfm-host-archive-card__programs a {
	padding: 5px 8px;
	border-radius: 999px;
	background: #f3f3f3;
	color: #171717;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
}

.mfm-archive-card__button {
	display: inline-flex;
	width: fit-content;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	margin-top: 6px;
	padding: 0 14px;
	border-radius: 6px;
	background: #ffd21f;
	color: #111 !important;
	text-decoration: none !important;
	font-weight: 800;
}

.mfm-archive-card__button:hover {
	background: #171717;
	color: #fff !important;
}

.mfm-program-landing-hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: 420px;
	padding: 48px 20px;
	background: #171717 center / cover no-repeat;
	color: #fff;
}

.mfm-program-landing-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.78) 32%, rgba(0,0,0,.48) 68%, rgba(0,0,0,.36) 100%),
		linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.18));
}

.mfm-program-landing-hero__content {
	position: relative;
	z-index: 1;
	width: min(1120px, 100%);
	margin: 0 auto;
	color: #fff;
	text-shadow: 0 2px 14px rgba(0,0,0,.72);
}

.mfm-program-landing-hero__logo {
	display: block;
	max-width: 170px;
	max-height: 110px;
	object-fit: contain;
	margin: 16px 0;
}

.mfm-program-landing-hero h1,
.mfm-program-landing-hero .mfm-program-landing-hero__title {
	max-width: 760px;
	margin: 10px 0;
	color: #fff !important;
	font-size: clamp(36px, 6vw, 74px);
	line-height: .95;
	text-shadow: 0 3px 18px rgba(0,0,0,.9);
	-webkit-text-fill-color: #fff;
}

.mfm-program-landing-hero__slogan {
	max-width: 680px;
	font-size: 20px;
	color: #fff;
	text-shadow: 0 2px 14px rgba(0,0,0,.82);
}

.mfm-program-landing-hero__content > p:not(.mfm-program-landing-hero__slogan) {
	color: #fff;
	text-shadow: 0 2px 12px rgba(0,0,0,.82);
}

.mfm-program-landing-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 12px;
	padding: 0 18px;
	border-radius: 6px;
	background: #ffd21f;
	color: #111;
	font-weight: 800;
	text-decoration: none;
}

.mfm-program-landing {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 20px;
	width: min(1120px, calc(100% - 40px));
	margin: 28px auto;
}

.mfm-program-landing__main,
.mfm-program-landing__aside {
	display: grid;
	gap: 16px;
	align-content: start;
}

.mfm-program-landing__panel {
	padding: 20px;
	border: 1px solid #e3e3e3;
	border-radius: 8px;
	background: #fff;
}

.mfm-program-landing__panel h2 {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 18px;
	line-height: 1.2;
}

.mfm-program-landing__panel p {
	color: #555;
	line-height: 1.6;
}

.mfm-program-landing__panel--player,
.mfm-host-panel--player {
	padding: 0;
	border: 0;
	background: transparent;
}

.mfm-program-hosts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.mfm-program-hosts__item {
	display: flex;
	gap: 12px;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.mfm-program-hosts__item img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
}

.mfm-program-hosts__item small {
	display: block;
	color: #666;
}

.mfm-program-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.mfm-program-gallery img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 6px;
}

@media (max-width: 760px) {
	.mfm-schedule-current,
	.mfm-schedule-grid,
	.mfm-programs-grid,
	.mfm-hosts-grid,
	.mfm-host-hero__inner,
	.mfm-host-detail,
	.mfm-program-landing,
	.mfm-program-hosts,
	.mfm-program-gallery {
		grid-template-columns: 1fr;
	}

	.mfm-host-hero__inner {
		padding: 36px 0;
	}

	.mfm-host-hero__image {
		max-width: 240px;
	}

	.mfm-host-detail .mfm-programs-grid {
		grid-template-columns: 1fr;
	}

	.mfm-program-landing-hero {
		min-height: 340px;
	}

	.mfm-schedule-socials__link {
		flex: 1 1 120px;
	}

	.mfm-archive-section__head {
		display: grid;
		align-items: start;
	}

	.mfm-program-archive-grid,
	.mfm-host-archive-grid {
		grid-template-columns: 1fr;
	}
}
