/**
 * PWA standalone app shell — only when html.itm-app-active.
 * Light surfaces aligned with site theme tokens.
 */

html.itm-app-active {
	--itm-app-topbar-h: 56px;
	--itm-app-tabbar-h: 64px;
	--itm-app-safe-top: env(safe-area-inset-top, 0px);
	--itm-app-safe-right: env(safe-area-inset-right, 0px);
	--itm-app-safe-bottom: env(safe-area-inset-bottom, 0px);
	--itm-app-safe-left: env(safe-area-inset-left, 0px);
	--itm-app-shell-bg: var(--itm-bg, #ffffff);
	--itm-app-shell-surface: var(--itm-bg-card, #ffffff);
	--itm-app-shell-border: var(--itm-border, rgba(0, 0, 0, 0.08));
	--itm-app-shell-text: var(--itm-heading, #111111);
	--itm-app-shell-muted: var(--itm-text-muted, #6b7280);
	width: 100%;
	height: 100%;
	min-height: 100%;
	min-height: 100dvh;
	min-height: 100svh;
}

html.itm-app-active body {
	background: var(--itm-app-shell-bg);
	color: var(--itm-text, #1a1a1a);
	width: 100%;
	min-height: 100%;
	min-height: 100dvh;
	min-height: 100svh;
	margin: 0;
	overflow-x: hidden;
}

/* Hide website chrome in installed / app_mode */
html.itm-app-active .site-header-shell > .site-header-row,
html.itm-app-active .site-header-below,
html.itm-app-active #colophon.site-footer,
html.itm-app-active .itm-community-icon-bar,
html.itm-app-active .itm-cookie-banner,
html.itm-app-active #wpadminbar,
html.itm-app-active .itm-breadcrumbs,
html.itm-app-active nav.woocommerce-breadcrumb {
	display: none !important;
}

/* Remove WP admin-bar offset when the bar is hidden in the PWA */
html.itm-app-active.admin-bar {
	margin-top: 0 !important;
}

html.itm-app-active.admin-bar body {
	padding-top: 0 !important;
}

/* Keep global podcast player usable in app mode (above tab bar). */
html.itm-app-active .site-header-shell {
	display: block !important;
	position: fixed;
	left: 0;
	right: 0;
	bottom: calc(var(--itm-app-tabbar-h) + var(--itm-app-safe-bottom));
	z-index: 10040;
	background: transparent;
	border: 0;
	box-shadow: none;
	pointer-events: none;
}

html.itm-app-active .site-header-shell .itm-global-player {
	pointer-events: auto;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding-left: var(--itm-app-safe-left);
	padding-right: var(--itm-app-safe-right);
	box-sizing: border-box;
}

html.itm-app-active body.itm-global-player-active #page.site {
	padding-bottom: calc(var(--itm-app-tabbar-h) + var(--itm-app-safe-bottom) + 72px);
}

html.itm-app-active #page.site {
	width: 100%;
	max-width: 100%;
	padding-top: calc(var(--itm-app-topbar-h) + var(--itm-app-safe-top));
	padding-right: var(--itm-app-safe-right);
	padding-bottom: calc(var(--itm-app-tabbar-h) + var(--itm-app-safe-bottom) + 8px);
	padding-left: var(--itm-app-safe-left);
	min-height: 100%;
	min-height: 100dvh;
	min-height: 100svh;
	box-sizing: border-box;
}

html.itm-app-active #content.site-content,
html.itm-app-active .site-content,
html.itm-app-active .site-main {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

html.itm-app-active body.itm-app-tab-navigating #content.site-content {
	opacity: 0.55;
	transition: opacity 0.12s ease;
	pointer-events: none;
}

/* Content width / density live in app-pwa.css */

/* ---- Top bar ---- */

.itm-app-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	width: 100vw;
	max-width: none;
	margin: 0;
	transform: none;
	z-index: 10050;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	height: calc(var(--itm-app-topbar-h) + var(--itm-app-safe-top));
	padding: var(--itm-app-safe-top) max(14px, var(--itm-app-safe-right)) 0 max(14px, var(--itm-app-safe-left));
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--itm-app-shell-border);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-sizing: border-box;
	color: var(--itm-app-shell-text);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

html.itm-app-active .itm-app-topbar {
	display: flex;
}

.itm-app-topbar__brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	color: var(--itm-app-shell-text);
	text-decoration: none;
	font-family: var(--itm-font, inherit);
	font-weight: 800;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.itm-app-topbar__brand img {
	display: block;
	height: 28px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
}

.itm-app-topbar__mark {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--itm-accent, #52525b);
	box-shadow: 0 0 0 3px rgba(var(--itm-accent-rgb, 82, 82, 91), 0.18);
}

.itm-app-topbar__actions {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.itm-app-topbar__cart {
	display: inline-flex;
	align-items: center;
}

html.itm-app-active .itm-app-topbar__cart .itm-header-cart {
	position: relative;
	z-index: 10055;
}

html.itm-app-active .itm-app-topbar__cart .itm-cart-toggle {
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: var(--itm-app-shell-text);
	box-shadow: none;
}

html.itm-app-active .itm-app-topbar__cart .itm-cart-toggle:hover,
html.itm-app-active .itm-app-topbar__cart .itm-cart-toggle:focus-visible,
html.itm-app-active .itm-app-topbar__cart .itm-header-cart.is-open .itm-cart-toggle {
	background: rgba(0, 0, 0, 0.05);
	color: var(--itm-accent, #c70000);
	border-color: transparent;
	box-shadow: none;
}

html.itm-app-active .itm-app-topbar__cart .itm-header-cart-count {
	top: 4px;
	right: 4px;
}

html.itm-app-active .itm-app-topbar__cart .itm-mini-cart-dropdown {
	position: fixed;
	top: calc(var(--itm-app-topbar-h) + var(--itm-app-safe-top) + 8px);
	left: max(12px, var(--itm-app-safe-left));
	right: max(12px, var(--itm-app-safe-right));
	width: auto;
	z-index: 10080;
}

/* App shell already has its own cart; keep website header carts hidden there. */
html.itm-app-active .itm-header-cart-slot,
html.itm-app-active .header-actions .itm-header-cart,
html.itm-app-active .header-actions .itm-header-alerts {
	display: none !important;
}

.itm-app-topbar__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: var(--itm-app-shell-text);
	text-decoration: none;
	font-size: 1.1rem;
	cursor: pointer;
}

.itm-app-topbar__btn:hover,
.itm-app-topbar__btn:focus-visible {
	background: rgba(0, 0, 0, 0.05);
	outline: none;
}

.itm-app-topbar__badge {
	position: absolute;
	top: 8px;
	right: 8px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: var(--itm-btn-radius, 4px);
	background: var(--itm-accent, #52525b);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
}

/* Desktop Communications control in the app top bar */
html.itm-app-active .itm-app-topbar__comms {
	display: inline-flex;
	align-items: center;
}

html.itm-app-active .itm-app-topbar__comms .itm-header-alerts {
	gap: 0;
}

html.itm-app-active .itm-app-topbar__comms .itm-header-alert {
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 12px;
	background: transparent;
	box-shadow: none;
	color: var(--itm-app-shell-text);
}

html.itm-app-active .itm-app-topbar__comms .itm-header-alert:hover,
html.itm-app-active .itm-app-topbar__comms .itm-header-alert:focus-visible,
html.itm-app-active .itm-app-topbar__comms .itm-header-alert-menu.is-open .itm-header-alert {
	background: rgba(0, 0, 0, 0.05);
	border-color: transparent;
	box-shadow: none;
	color: var(--itm-accent, #c70000);
}

html.itm-app-active .itm-app-topbar__comms .itm-header-alert-dropdown {
	position: fixed;
	top: calc(var(--itm-app-topbar-h) + var(--itm-app-safe-top) + 8px);
	left: max(12px, var(--itm-app-safe-left));
	right: max(12px, var(--itm-app-safe-right));
	width: auto;
	z-index: 10080;
}

/* ---- Bottom tabs ---- */

.itm-app-tabbar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	width: 100vw;
	max-width: none;
	margin: 0;
	transform: none;
	z-index: 10050;
	display: none;
	align-items: center;
	justify-content: space-around;
	gap: 2px;
	min-height: calc(var(--itm-app-tabbar-h) + var(--itm-app-safe-bottom));
	padding: 6px max(6px, var(--itm-app-safe-right)) calc(6px + var(--itm-app-safe-bottom)) max(6px, var(--itm-app-safe-left));
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--itm-app-shell-border);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
	box-sizing: border-box;
}

html.itm-app-active .itm-app-tabbar {
	display: flex;
}

.itm-app-tab {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	min-width: 0;
	min-height: 52px;
	padding: 6px 4px;
	border: 0;
	border-radius: 14px;
	background: transparent;
	color: var(--itm-app-shell-muted);
	text-decoration: none;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.itm-app-tab i,
.itm-app-tab__icon {
	font-size: 1.2rem;
	line-height: 1;
}

.itm-app-tab__avatar-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	overflow: visible;
	flex-shrink: 0;
}

.itm-app-tab__avatar-wrap .itm-verified-avatar,
.itm-app-tab__avatar-wrap.itm-verified-avatar {
	position: relative;
	display: inline-flex;
	width: 34px;
	height: 34px;
	border-radius: 50%;
}

.itm-app-tab__avatar,
.itm-app-tab__avatar-wrap img.avatar,
.itm-app-tab__avatar-wrap img {
	display: block;
	width: 34px !important;
	height: 34px !important;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

.itm-app-tab__avatar-wrap .itm-verified-avatar::after {
	width: 14px;
	height: 14px;
	right: -2px;
	bottom: -1px;
}

.itm-app-tab.is-active i,
.itm-app-tab.is-active .itm-app-tab__label {
	color: var(--itm-accent, #52525b);
}

.itm-app-tab--me.is-active .itm-app-tab__avatar,
.itm-app-tab--me.is-active .itm-app-tab__avatar-wrap img,
.itm-app-tab--me[aria-expanded="true"] .itm-app-tab__avatar,
.itm-app-tab--me[aria-expanded="true"] .itm-app-tab__avatar-wrap img {
	border-color: var(--itm-accent, #c70000);
	box-shadow: 0 0 0 2px rgba(var(--itm-accent-rgb, 199, 0, 0), 0.18);
}

.itm-app-tab--create {
	position: relative;
	top: 0;
	flex: 1 1 0;
}

.itm-app-tab--create .itm-app-tab__label--spacer {
	visibility: hidden;
	pointer-events: none;
}

.itm-app-tab--me .itm-app-tab__label {
	max-width: 4.8rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.itm-app-tab--create .itm-app-tab__create-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-size: 1.2rem;
	line-height: 1;
	box-shadow: none;
	animation: none;
}

.itm-app-tab--create .itm-app-tab__create-btn::after {
	content: none;
}

.itm-app-tab--create.is-active,
.itm-app-tab--create[aria-expanded="true"] {
	color: var(--itm-accent, #c70000);
}

.itm-app-tab--create[aria-expanded="true"] .itm-app-tab__create-btn,
.itm-app-tab--create:active .itm-app-tab__create-btn {
	transform: none;
	animation: none;
}


/* ---- Anchored app menus (Create / Me) ---- */

.itm-app-menu {
	position: fixed;
	inset: 0;
	z-index: 10060;
	display: none;
	pointer-events: none;
}

.itm-app-menu.is-open {
	display: block;
	pointer-events: auto;
}

.itm-app-menu__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(15, 23, 42, 0.28);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	cursor: pointer;
}

.itm-app-menu__panel {
	position: fixed;
	z-index: 1;
	box-sizing: border-box;
	width: min(248px, calc(100vw - 20px));
	padding: 6px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow:
		0 18px 40px rgba(15, 23, 42, 0.18),
		0 2px 8px rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(18px) saturate(1.2);
	-webkit-backdrop-filter: blur(18px) saturate(1.2);
	color: var(--itm-app-shell-text, #111);
	transform-origin: bottom center;
	animation: itm-app-menu-pop 0.2s cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes itm-app-menu-pop {
	from {
		opacity: 0;
		transform: translateY(8px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.itm-app-menu__caret {
	position: absolute;
	bottom: -7px;
	width: 14px;
	height: 14px;
	margin-left: -7px;
	background: rgba(255, 255, 255, 0.94);
	border-right: 1px solid rgba(15, 23, 42, 0.08);
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	transform: rotate(45deg);
	box-shadow: 2px 2px 4px rgba(15, 23, 42, 0.06);
}

.itm-app-menu__list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.itm-app-menu__item {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 48px;
	padding: 8px 10px 8px 8px;
	border: 0;
	border-radius: 14px;
	background: transparent;
	color: var(--itm-app-shell-text, #111);
	text-decoration: none;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 650;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: background 0.14s ease;
}

.itm-app-menu__item:hover,
.itm-app-menu__item:focus-visible {
	background: rgba(var(--itm-accent-rgb, 199, 0, 0), 0.08);
	outline: none;
}

.itm-app-menu__item:active {
	background: rgba(var(--itm-accent-rgb, 199, 0, 0), 0.14);
}

.itm-app-menu__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 11px;
	background: linear-gradient(180deg, rgba(var(--itm-accent-rgb, 199, 0, 0), 0.14), rgba(var(--itm-accent-rgb, 199, 0, 0), 0.08));
	color: var(--itm-accent, #c70000);
	font-size: 0.95rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.itm-app-menu__icon i {
	display: inline-block;
	line-height: 1;
}

.itm-app-menu__label {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.itm-app-menu--create .itm-app-menu__list > li:nth-child(1) .itm-app-menu__icon { background: rgba(37, 99, 235, 0.12); color: #2563eb; }
.itm-app-menu--create .itm-app-menu__list > li:nth-child(2) .itm-app-menu__icon { background: rgba(217, 119, 6, 0.14); color: #d97706; }
.itm-app-menu--create .itm-app-menu__list > li:nth-child(3) .itm-app-menu__icon { background: rgba(5, 150, 105, 0.12); color: #059669; }

.itm-app-menu--me .itm-app-menu__list > li:nth-child(1) .itm-app-menu__icon { background: rgba(37, 99, 235, 0.12); color: #2563eb; }
.itm-app-menu--me .itm-app-menu__list > li:nth-child(2) .itm-app-menu__icon { background: rgba(234, 179, 8, 0.16); color: #ca8a04; }
.itm-app-menu--me .itm-app-menu__list > li:nth-child(3) .itm-app-menu__icon { background: rgba(199, 0, 0, 0.12); color: #c70000; }
.itm-app-menu--me .itm-app-menu__list > li:nth-child(4) .itm-app-menu__icon { background: rgba(147, 51, 234, 0.12); color: #7c3aed; }
.itm-app-menu--me .itm-app-menu__list > li:nth-child(5) .itm-app-menu__icon { background: rgba(14, 165, 233, 0.14); color: #0284c7; }
.itm-app-menu--me .itm-app-menu__list > li:nth-child(6) .itm-app-menu__icon { background: rgba(100, 116, 139, 0.14); color: #475569; }

@media (prefers-reduced-motion: reduce) {
	.itm-app-menu__panel {
		animation: none;
	}
}


/* Guest tab bar: fewer items, larger hits */
html.itm-app-active .itm-app-tabbar--guest .itm-app-tab {
	min-height: 56px;
	font-size: 0.75rem;
}

/* Respect site dark mode if explicitly enabled */
html.itm-app-active body.itm-dark-mode .itm-app-topbar,
html.itm-app-active body.itm-dark-mode .itm-app-tabbar {
	background: rgba(15, 15, 15, 0.94);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

html.itm-app-active body.itm-dark-mode .itm-app-topbar__btn:hover,
html.itm-app-active body.itm-dark-mode .itm-app-topbar__btn:focus-visible {
	background: rgba(255, 255, 255, 0.08);
}

html.itm-app-active body.itm-dark-mode .itm-app-menu__panel,
html.itm-app-active body.itm-dark-mode .itm-app-menu__caret {
	background: rgba(30, 30, 32, 0.96);
	border-color: rgba(255, 255, 255, 0.08);
	color: #f3f4f6;
}

html.itm-app-active body.itm-dark-mode .itm-app-menu__item:hover,
html.itm-app-active body.itm-dark-mode .itm-app-menu__item:focus-visible {
	background: rgba(255, 255, 255, 0.06);
}

/* Offline toast */
.itm-app-offline-toast {
	position: fixed;
	left: 50%;
	bottom: calc(var(--itm-app-tabbar-h, 64px) + var(--itm-app-safe-bottom, 0px) + 12px);
	z-index: 10070;
	display: none;
	align-items: center;
	gap: 10px;
	max-width: min(420px, calc(100% - 24px));
	padding: 12px 14px;
	border-radius: 12px;
	background: #111;
	color: #fff;
	font-size: 0.86rem;
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transform: translateX(-50%) translateY(8px);
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

html.itm-app-active .itm-app-offline-toast.is-visible,
.itm-app-offline-toast.is-visible {
	display: flex;
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.itm-app-offline-toast i {
	color: #fbbf24;
}

/* Top + bottom app chrome always span the full viewport (portrait and landscape). */
html.itm-app-active .itm-app-topbar,
html.itm-app-active .itm-app-tabbar {
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	width: 100vw !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	transform: none !important;
}

/* —— App home hub —— */
html.itm-app-active .itm-app-home {
	padding:
		calc(var(--itm-app-topbar-h, 56px) + var(--itm-app-safe-top, 0px) + 12px)
		16px
		calc(var(--itm-app-tabbar-h, 64px) + var(--itm-app-safe-bottom, 0px) + 20px);
	max-width: 100%;
	box-sizing: border-box;
}

html.itm-app-active .itm-app-home__inner {
	max-width: 520px;
	margin: 0 auto;
}

html.itm-app-active .itm-app-home__header {
	margin: 0 0 0.85rem;
}

html.itm-app-active .itm-app-home__title {
	margin: 0;
	font-size: clamp(1.35rem, 5vw, 1.6rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: var(--itm-app-shell-text, #111);
}

html.itm-app-active .itm-app-home__grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

html.itm-app-active .itm-app-home__card {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 12px;
	padding: 14px 14px;
	border: 1px solid var(--itm-app-shell-border, rgba(0, 0, 0, 0.08));
	border-radius: 14px;
	background: var(--itm-app-shell-surface, #fff);
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

html.itm-app-active .itm-app-home__card:hover,
html.itm-app-active .itm-app-home__card:focus-visible {
	border-color: rgba(var(--itm-accent-rgb, 82, 82, 91), 0.35);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
	outline: none;
}

html.itm-app-active .itm-app-home__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(var(--itm-accent-rgb, 82, 82, 91), 0.1);
	color: var(--itm-accent, #52525b);
	font-size: 1.15rem;
}

html.itm-app-active .itm-app-home__card--news .itm-app-home__icon {
	background: rgba(37, 99, 235, 0.12);
	color: #2563eb;
}

html.itm-app-active .itm-app-home__card--podcasts .itm-app-home__icon {
	background: rgba(147, 51, 234, 0.12);
	color: #7c3aed;
}

html.itm-app-active .itm-app-home__card--listings .itm-app-home__icon {
	background: rgba(5, 150, 105, 0.12);
	color: #059669;
}

html.itm-app-active .itm-app-home__card--reviews .itm-app-home__icon {
	background: rgba(217, 119, 6, 0.14);
	color: #d97706;
}

html.itm-app-active .itm-app-home__card--shop .itm-app-home__icon {
	background: rgba(199, 0, 0, 0.12);
	color: #c70000;
}

html.itm-app-active .itm-app-home__card-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: left;
}

html.itm-app-active .itm-app-home__card-title {
	font-size: 1.05rem;
	font-weight: 750;
	color: var(--itm-app-shell-text, #111);
	line-height: 1.25;
}

html.itm-app-active .itm-app-home__card-desc {
	font-size: 0.86rem;
	color: var(--itm-app-shell-muted, #65676b);
	line-height: 1.35;
}

html.itm-app-active .itm-app-home__chevron {
	color: var(--itm-app-shell-muted, #65676b);
	font-size: 0.8rem;
	opacity: 0.75;
}

html.itm-app-active .itm-app-home__feed-link {
	margin: 1.25rem 0 0;
	text-align: center;
}

html.itm-app-active .itm-app-home__feed-link a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	font-weight: 650;
	color: var(--itm-accent, #52525b);
	text-decoration: none;
}

html.itm-app-active .itm-app-home__feed-link a:hover,
html.itm-app-active .itm-app-home__feed-link a:focus-visible {
	text-decoration: underline;
	outline: none;
}

/* Hub replaces marketing homepage chrome in app mode */
html.itm-app-active.home .itm-news-slider,
html.itm-app-active.home .itm-home-review-social,
html.itm-app-active.home .itm-home-podcasts {
	display: none !important;
}
