:root {
	--em-pink: #ed006f;
	--em-pink-dark: #b00055;
	--em-ink: #101114;
	--em-muted: #676b72;
	--em-line: #e8e8eb;
	--em-soft: #f7f7f8;
	--em-pink-soft: #fff0f6;
	--em-green-soft: #effaf2;
	--em-shell: 1240px;
	--em-radius: 16px;
	--em-shadow: 0 12px 34px rgb(20 20 30 / 8%);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--em-ink);
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
}

body.admin-bar {
	--em-admin-offset: 32px;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-underline-offset: 0.18em;
}

.em-shell {
	width: min(100% - 48px, var(--em-shell));
	margin-inline: auto;
}

.em-site-header {
	position: relative;
	z-index: 50;
	background: #fff;
}

.em-header-utility {
	border-bottom: 1px solid var(--em-line);
	background: #fafafa;
	color: var(--em-muted);
	font-size: 0.78rem;
}

.em-header-utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}

.em-header-utility__inner p {
	display: flex;
	gap: 24px;
	margin: 0;
}

.em-header-utility a {
	color: inherit;
	text-decoration: none;
}

.em-portal-context,
.em-article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
}

.em-portal-context__city {
	color: var(--em-ink);
	font-weight: 700;
}

.em-header-main {
	display: grid;
	grid-template-columns: 312px minmax(320px, 1fr) auto;
	align-items: center;
	gap: clamp(24px, 4vw, 64px);
	min-height: 104px;
}

.em-header-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.em-header-logo {
	grid-column: 1;
	grid-row: 1;
}

.em-header-search {
	grid-column: 2;
	grid-row: 1;
	width: 100%;
	max-width: 480px;
	margin-inline: auto !important;
}

.em-header-search .wp-block-search__inside-wrapper {
	min-height: 48px;
	padding: 0;
	border: 1px solid #d9dadd;
	border-radius: 999px;
	overflow: hidden;
}

.em-header-search .wp-block-search__input,
.em-header-search .wp-block-search__button {
	border: 0;
}

.em-header-search .wp-block-search__input {
	padding-inline: 20px;
}

.em-header-search .wp-block-search__button {
	width: 54px;
	margin: 0;
	border-radius: 0;
}

.em-header-actions {
	grid-column: 3;
	grid-row: 1;
	display: flex;
	flex-wrap: nowrap !important;
	justify-content: flex-end;
	gap: 10px;
}

.em-header-actions .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	white-space: nowrap;
}

.em-mobile-navigation,
.em-mobile-back,
.em-mobile-header-tools,
.em-mobile-chips {
	display: none !important;
}

.em-desktop-nav {
	border-block: 1px solid var(--em-line);
}

.em-desktop-nav .em-shell {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 8px;
	min-height: 58px;
}

.em-desktop-nav a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--em-ink);
	font-size: 0.86rem;
	font-weight: 650;
	text-decoration: none;
}

.em-desktop-nav .dashicons {
	color: #4b4e54;
}

.em-desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	border-radius: 3px 3px 0 0;
	background: transparent;
	content: "";
}

.em-desktop-nav a:hover,
.em-desktop-nav a:focus-visible,
.em-desktop-nav a.is-current,
.em-desktop-nav a.is-current .dashicons {
	color: var(--em-pink);
}

.em-desktop-nav a.is-current::after {
	background: var(--em-pink);
}

.em-home {
	padding-block: 30px 0;
}

.em-home-stack {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 44px;
}

.em-home-stack > * {
	min-width: 0;
	max-width: 100%;
}

.em-story-grid {
	display: grid;
	grid-template-columns: 1.28fr 1fr;
	gap: 16px;
	height: 442px;
}

.em-story-grid__side {
	display: grid;
	grid-template-rows: repeat(3, 1fr);
	gap: 16px;
}

.em-story-card,
.em-story-card__link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: var(--em-radius);
	overflow: hidden;
}

.em-story-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.em-story-card__shade,
.em-related-card__shade {
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / 48%);
}

.em-story-card__content {
	position: absolute;
	right: 26px;
	bottom: 24px;
	left: 26px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
	color: #fff;
}

.em-chip {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	margin: 0;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--em-pink);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	line-height: 1;
	text-transform: uppercase;
}

.em-story-card__title {
	font-size: clamp(1.15rem, 1.8vw, 2rem);
	font-weight: 800;
	line-height: 1.15;
}

.em-story-card--hero .em-story-card__title {
	max-width: 690px;
	font-size: clamp(2rem, 3vw, 3.2rem);
}

.em-story-card__excerpt {
	max-width: 680px;
	font-size: 1rem;
}

.em-story-card time,
.em-trending-card time,
.em-feature-card time {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.76rem;
}

.em-story-card--side .em-story-card__content {
	right: 18px;
	bottom: 16px;
	left: 18px;
	gap: 5px;
}

.em-story-card--side .em-story-card__title {
	font-size: 1.08rem;
}

.em-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.em-section-heading h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.2;
}

.em-section-heading h2 .dashicons {
	color: var(--em-pink);
}

.em-section-heading > a {
	color: var(--em-pink);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
}

.em-trending__track {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
}

.em-trending-card {
	position: relative;
}

.em-trending-card a {
	display: grid;
	gap: 9px;
	color: var(--em-ink);
	text-decoration: none;
}

.em-trending-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	object-fit: cover;
}

.em-trending-card__number {
	position: absolute;
	top: -10px;
	left: -10px;
	z-index: 2;
	display: grid;
	width: 32px;
	height: 32px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--em-pink);
	color: #fff;
	font-weight: 800;
	place-items: center;
}

.em-trending-card strong {
	font-size: 0.94rem;
	line-height: 1.35;
}

.em-trending-card time,
.em-feature-card time,
.em-mini-list time {
	color: var(--em-muted);
}

.em-agenda-strip__track {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.em-agenda-card {
	border: 1px solid var(--em-line);
	border-radius: 12px;
	background: #fff;
}

.em-agenda-card a {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 108px;
	padding: 14px;
	color: var(--em-ink);
	text-decoration: none;
}

.em-agenda-card time,
.em-agenda-card__badge {
	display: grid;
	flex: 0 0 62px;
	min-height: 72px;
	border: 1px solid #ffd0e4;
	border-radius: 10px;
	color: var(--em-pink);
	font-size: 0.72rem;
	font-weight: 800;
	text-align: center;
	place-content: center;
	text-transform: uppercase;
}

.em-agenda-card time strong {
	font-size: 1.65rem;
	line-height: 1;
}

.em-agenda-card__badge .dashicons {
	margin-inline: auto;
	font-size: 26px;
}

.em-agenda-card a > div {
	display: grid;
	gap: 7px;
}

.em-agenda-card a > div > strong {
	font-size: 0.92rem;
	line-height: 1.3;
}

.em-agenda-card a > div > span {
	color: var(--em-muted);
	font-size: 0.74rem;
}

.em-home-panels {
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.88fr;
	gap: 18px;
}

.em-home-panel {
	padding: 18px;
	border: 1px solid #efeff1;
	border-radius: var(--em-radius);
	background: #fcfcfd;
}

.em-home-panel .em-section-heading h2 {
	font-size: 1.2rem;
}

.em-feature-card a {
	display: grid;
	gap: 9px;
	color: var(--em-ink);
	text-decoration: none;
}

.em-feature-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	object-fit: cover;
}

.em-feature-card strong {
	font-size: 1.28rem;
	line-height: 1.25;
}

.em-mini-list {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

.em-mini-list a,
.em-sidebar-list a {
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: 10px;
	color: var(--em-ink);
	text-decoration: none;
}

.em-mini-list img,
.em-sidebar-list img {
	width: 84px;
	height: 62px;
	border-radius: 9px;
	object-fit: cover;
}

.em-mini-list span,
.em-sidebar-list span {
	display: grid;
	align-content: center;
	gap: 4px;
}

.em-mini-list strong,
.em-sidebar-list strong {
	font-size: 0.78rem;
	line-height: 1.3;
}

.em-mini-list time,
.em-sidebar-list time {
	font-size: 0.68rem;
}

.em-neighborhood-chips,
.em-article-tags a {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.em-neighborhood-chips {
	margin-top: 14px;
}

.em-neighborhood-chips span,
.em-article-tags a {
	padding: 4px 10px;
	border: 1px solid #dadbe0;
	border-radius: 999px;
	font-size: 0.7rem;
}

.em-ranked-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.em-ranked-list li {
	display: grid;
	grid-template-columns: 26px 1fr;
	align-items: center;
	gap: 8px;
}

.em-ranked-list li > span {
	display: grid;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--em-pink);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	place-items: center;
}

.em-ranked-list a {
	display: grid;
	grid-template-columns: 64px 1fr;
	align-items: center;
	gap: 8px;
	color: var(--em-ink);
	text-decoration: none;
}

.em-ranked-list img {
	width: 64px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
}

.em-ranked-list strong {
	font-size: 0.74rem;
	line-height: 1.25;
}

.em-promo-strip {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 34px;
	padding: 28px 36px;
	border-radius: var(--em-radius);
}

.em-promo-strip__audio,
.em-promo-strip__newsletter {
	display: grid;
	grid-template-columns: 58px 1fr;
	align-items: center;
	gap: 18px;
}

.em-promo-strip__newsletter {
	grid-template-columns: 58px 1fr;
	padding-left: 32px;
	border-left: 1px solid rgb(255 255 255 / 28%);
}

.em-promo-strip > div > .dashicons {
	display: grid;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--em-pink);
	font-size: 28px;
	place-items: center;
}

.em-promo-strip h2 {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.3;
}

.em-promo-strip p {
	margin: 5px 0 10px;
}

.em-mobile-community {
	display: none;
}

.em-site-footer {
	margin-top: 58px;
	padding-top: 42px;
	border-top: 1px solid var(--em-line);
	background: #fff;
}

.em-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 0.85fr) 1.2fr;
	gap: 36px;
	padding-bottom: 42px;
}

.em-footer-brand p {
	max-width: 300px;
	color: var(--em-muted);
	font-size: 0.86rem;
}

.em-footer-column {
	display: grid;
	align-content: start;
	gap: 7px;
}

.em-footer-column strong,
.em-footer-contact h3 {
	margin: 0 0 8px;
	color: var(--em-pink);
	font-size: 0.88rem;
}

.em-footer-column a,
.em-footer-contact a {
	color: var(--em-ink);
	font-size: 0.78rem;
	text-decoration: none;
}

.em-portal-footer-info {
	display: grid;
	gap: 10px;
}

.em-portal-footer-info > div:first-child {
	display: none;
}

.em-portal-footer-info p {
	margin: 0;
	font-size: 0.78rem;
}

.em-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.em-footer-bottom {
	padding-block: 14px;
	font-size: 0.72rem;
}

.em-footer-bottom .em-shell {
	display: flex;
	justify-content: space-between;
}

.em-mobile-bottom-nav {
	display: none;
}

.em-article-page {
	padding-block: 18px 60px;
}

.em-breadcrumbs {
	margin-bottom: 20px;
	color: var(--em-muted);
	font-size: 0.74rem;
}

.em-breadcrumbs p {
	display: flex;
	gap: 9px;
	margin: 0;
}

.em-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.em-article-grid {
	display: grid;
	grid-template-columns: 54px minmax(0, 760px) 310px;
	align-items: start;
	justify-content: center;
	gap: 30px;
}

.em-share-rail {
	position: sticky;
	top: calc(var(--em-admin-offset, 0px) + 30px);
	display: grid;
	justify-items: center;
	gap: 10px;
	padding-top: 72px;
}

.em-share-rail > span {
	font-size: 0.66rem;
}

.em-share-rail a,
.em-copy-link {
	display: grid;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--em-line);
	border-radius: 50%;
	background: #fff;
	color: #363a40;
	text-decoration: none;
	place-items: center;
}

.em-share-rail a:hover,
.em-share-rail a:focus-visible,
.em-copy-link:hover,
.em-copy-link.is-copied {
	border-color: var(--em-pink);
	color: var(--em-pink);
}

.em-article-body > .em-eyebrow {
	display: inline-flex;
	width: auto;
	margin-bottom: 10px;
}

.em-article-body > .em-eyebrow a {
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--em-pink);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.em-article-body > h1 {
	margin: 0;
	font-size: clamp(2.45rem, 4vw, 4.35rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.04;
}

.em-article-lead {
	margin: 12px 0 18px;
	color: var(--em-muted);
	font-size: 1.15rem;
	line-height: 1.45;
}

.em-article-meta {
	margin-bottom: 22px;
	color: var(--em-muted);
	font-size: 0.76rem;
}

.em-article-meta a {
	color: var(--em-pink);
	font-weight: 700;
}

.em-featured-image {
	margin-bottom: 18px;
}

.em-featured-image img {
	width: 100%;
	border-radius: var(--em-radius);
}

.em-article-content {
	font-size: 1.04rem;
	line-height: 1.72;
}

.em-article-content > * {
	margin-block: 0 20px;
}

.em-article-content h2 {
	margin-top: 30px;
	font-size: 1.45rem;
	line-height: 1.25;
}

.em-article-content h3 {
	font-size: 1.18rem;
}

.em-article-content ul,
.em-article-content ol {
	padding-left: 1.3rem;
}

.em-article-content li::marker {
	color: var(--em-pink);
}

.em-article-content blockquote {
	margin: 28px 0;
	padding: 22px 26px;
	border-left: 5px solid var(--em-pink);
	border-radius: 0 12px 12px 0;
	background: var(--em-pink-soft);
	color: var(--em-pink-dark);
	font-size: 1.2rem;
	font-style: italic;
}

.em-article-content blockquote cite {
	display: block;
	margin-top: 10px;
	color: var(--em-ink);
	font-family: Inter, sans-serif;
	font-size: 0.72rem;
	font-style: normal;
}

.em-article-content .wp-block-media-text {
	gap: 22px;
	margin-block: 30px;
}

.em-article-content .wp-block-media-text__media img {
	border-radius: 14px;
}

.em-article-content .wp-block-media-text__content {
	padding-inline: 0;
}

.em-article-tips {
	gap: 10px;
}

.em-article-tips > .wp-block-column {
	padding: 14px;
	border: 1px solid var(--em-line);
	border-radius: 12px;
	background: #fff;
	font-size: 0.76rem;
	line-height: 1.45;
}

.em-article-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	margin-block: 26px 18px;
	font-size: 0.76rem;
}

.em-article-tags a {
	border-color: #ffc1dc;
	color: var(--em-pink);
	text-decoration: none;
}

.em-author-card {
	display: grid;
	grid-template-columns: 88px 1fr;
	align-items: center;
	gap: 16px;
	padding: 16px;
	border: 1px solid var(--em-line);
	border-radius: 14px;
}

.em-author-card__avatar {
	border-radius: 50%;
}

.em-author-card small {
	font-size: 0.68rem;
	font-weight: 700;
}

.em-author-card h2 {
	margin: 0;
	color: var(--em-pink);
	font-size: 1.1rem;
}

.em-author-card p {
	margin: 3px 0 0;
	color: var(--em-muted);
	font-size: 0.78rem;
}

.em-inline-cta {
	display: grid;
	grid-template-columns: 48px 1fr auto;
	align-items: center;
	gap: 14px;
	margin-top: 14px;
	padding: 14px 16px;
	border-radius: 12px;
}

.em-inline-cta--newsletter {
	background: var(--em-pink-soft);
}

.em-inline-cta--community {
	background: var(--em-green-soft);
}

.em-inline-cta > .dashicons {
	font-size: 34px;
}

.em-inline-cta--newsletter > .dashicons {
	color: var(--em-pink);
}

.em-inline-cta--community > .dashicons {
	color: #12a04b;
}

.em-inline-cta h3,
.em-inline-cta p {
	margin: 0;
}

.em-inline-cta h3 {
	font-size: 0.9rem;
}

.em-inline-cta p {
	color: var(--em-muted);
	font-size: 0.72rem;
}

.em-inline-cta .wp-block-button__link {
	padding: 9px 16px;
	font-size: 0.74rem;
}

.em-article-sidebar {
	position: sticky;
	top: calc(var(--em-admin-offset, 0px) + 24px);
	display: grid;
	gap: 18px;
}

.em-sidebar-card {
	padding: 20px;
	border: 1px solid #f0cadd;
	border-radius: 14px;
	background: #fff;
}

.em-sidebar-card h2 {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 15px;
	font-size: 1.15rem;
}

.em-sidebar-newsletter > .dashicons {
	color: var(--em-pink);
	font-size: 46px;
}

.em-sidebar-newsletter p {
	color: var(--em-muted);
	font-size: 0.78rem;
}

.em-button {
	display: block;
	padding: 11px 16px;
	border-radius: 8px;
	background: var(--em-pink);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
}

.em-sidebar-list {
	display: grid;
	gap: 14px;
}

.em-sidebar-list small {
	color: var(--em-pink);
	font-size: 0.62rem;
	font-weight: 800;
	text-transform: uppercase;
}

.em-related-posts {
	margin-top: 28px;
}

.em-related-posts__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.em-related-card,
.em-related-card a {
	position: relative;
	display: block;
	min-height: 130px;
	border-radius: 10px;
	overflow: hidden;
}

.em-related-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.em-related-card__content {
	position: absolute;
	right: 10px;
	bottom: 10px;
	left: 10px;
	display: grid;
	gap: 3px;
	color: #fff;
}

.em-related-card small {
	color: #ff6baa;
	font-size: 0.58rem;
	font-weight: 800;
	text-transform: uppercase;
}

.em-related-card strong {
	font-size: 0.74rem;
	line-height: 1.2;
}

.em-related-card time {
	font-size: 0.62rem;
}

.em-page,
.em-single,
.em-listing,
.em-error-page {
	padding-block: 44px 70px;
}

.em-card-grid {
	gap: 24px;
}

.em-card {
	height: 100%;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--em-line);
}

.em-card img {
	border-radius: 12px;
}

.em-card .wp-block-post-title {
	margin-block: 10px 6px;
}

.em-card .wp-block-post-title a {
	color: var(--em-ink);
	text-decoration: none;
}

@media (max-width: 1080px) {

	.em-header-main {
		grid-template-columns: 260px 1fr auto;
		gap: 24px;
	}

	.em-desktop-nav a {
		font-size: 0.75rem;
	}

	.em-desktop-nav .dashicons {
		display: none;
	}

	.em-home-panels {
		grid-template-columns: 1fr 1fr;
	}

	.em-home-panel--popular {
		grid-column: 1 / -1;
	}

	.em-home-panel--popular .em-ranked-list {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.em-home-panel--popular .em-ranked-list a {
		grid-template-columns: 1fr;
	}

	.em-article-grid {
		grid-template-columns: 42px minmax(0, 1fr) 280px;
		gap: 20px;
	}
}

@media (max-width: 781px) {

	body {
		padding-bottom: 76px;
	}

	body.admin-bar {
		--em-admin-offset: 46px;
	}

	.em-shell {
		width: min(100% - 28px, var(--em-shell));
	}

	.em-header-utility,
	.em-desktop-nav,
	.em-header-actions {
		display: none !important;
	}

	.em-header-main {
		display: grid;
		grid-template-columns: 42px minmax(0, 1fr) auto;
		gap: 10px;
		min-height: 126px;
		padding-top: 12px;
	}

	.em-mobile-navigation {
		display: flex !important;
		grid-column: 1;
		grid-row: 1;
		justify-content: flex-start;
	}

	.em-mobile-back {
		grid-column: 1;
		grid-row: 1;
		align-items: center;
		justify-content: flex-start;
		color: var(--em-ink);
		text-decoration: none;
	}

	.em-mobile-back .dashicons {
		width: 28px;
		height: 28px;
		font-size: 28px;
	}

	.em-mobile-header-tools .dashicons {
		width: 24px;
		height: 24px;
		font-size: 24px;
	}

	.em-mobile-header-tools {
		grid-column: 3;
		grid-row: 1;
		align-items: center;
		justify-content: flex-end;
		gap: 6px;
	}

	.em-mobile-header-tools a {
		display: grid;
		color: var(--em-ink);
		text-decoration: none;
		place-items: center;
	}

	body:not(.single-post) .em-mobile-header-tools {
		display: flex !important;
	}

	body:not(.single-post) .em-mobile-favorite {
		display: none;
	}

	.em-mobile-navigation .wp-block-navigation__responsive-container-open {
		display: flex;
		color: var(--em-ink);
	}

	.em-mobile-navigation .wp-block-navigation__responsive-container.is-menu-open {
		right: auto;
		left: 0;
		width: min(86vw, 380px);
		padding: 28px 22px;
		box-shadow: 0 0 0 100vmax rgb(0 0 0 / 58%);
	}

	.em-mobile-navigation .wp-block-navigation__responsive-container-content {
		padding-top: 56px;
	}

	.em-mobile-navigation .wp-block-navigation__container {
		align-items: stretch;
		gap: 5px;
	}

	.em-mobile-navigation .wp-block-navigation-item {
		width: 100%;
	}

	.em-mobile-navigation .wp-block-navigation-item__content {
		width: 100%;
		padding: 11px 14px;
		border-radius: 10px;
		color: var(--em-ink);
		font-size: 1rem;
		font-weight: 600;
	}

	.em-mobile-navigation .wp-block-navigation-item:first-child .wp-block-navigation-item__content {
		background: var(--em-pink-soft);
		color: var(--em-pink);
	}

	.em-header-logo {
		grid-column: 2;
		grid-row: 1;
		width: min(220px, 100%);
		margin-inline: auto !important;
	}

	.em-header-search {
		grid-column: 1 / -1;
		grid-row: 2;
		max-width: none;
	}

	.em-header-search .wp-block-search__inside-wrapper {
		min-height: 46px;
	}

	.em-mobile-chips {
		display: flex !important;
		gap: 8px;
		padding: 10px 14px 14px;
		overflow-x: auto;
		border-bottom: 1px solid var(--em-line);
		scrollbar-width: none;
	}

	.em-mobile-chips::-webkit-scrollbar {
		display: none;
	}

	.em-mobile-chips a {
		display: inline-flex;
		align-items: center;
		gap: 5px;
		padding: 8px 13px;
		border: 1px solid var(--em-line);
		border-radius: 999px;
		color: var(--em-ink);
		font-size: 0.78rem;
		font-weight: 600;
		text-decoration: none;
		white-space: nowrap;
	}

	.em-mobile-chips a.is-current {
		border-color: var(--em-pink);
		background: var(--em-pink);
		color: #fff;
	}

	.single-post .em-header-main {
		min-height: 72px;
	}

	.single-post .em-mobile-navigation {
		display: none;
	}

	.single-post .em-mobile-back,
	.single-post .em-mobile-header-tools {
		display: flex !important;
	}

	.single-post .em-header-search,
	.single-post .em-mobile-chips {
		display: none !important;
	}

	.em-home {
		padding-top: 14px;
	}

	.em-home-stack {
		gap: 28px;
	}

	.em-story-grid {
		display: block;
		height: 430px;
	}

	.em-story-grid__main {
		height: 100%;
	}

	.em-story-grid__side {
		display: none;
	}

	.em-story-card--hero .em-story-card__content {
		right: 18px;
		bottom: 18px;
		left: 18px;
	}

	.em-story-card--hero .em-story-card__title {
		font-size: clamp(1.7rem, 7vw, 2.35rem);
	}

	.em-story-card__excerpt {
		font-size: 0.88rem;
	}

	.em-trending__track,
	.em-agenda-strip__track {
		display: flex;
		gap: 14px;
		padding: 8px 4px 8px 10px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.em-trending__track::-webkit-scrollbar,
	.em-agenda-strip__track::-webkit-scrollbar {
		display: none;
	}

	.em-trending-card {
		flex: 0 0 43%;
		scroll-snap-align: start;
	}

	.em-agenda-card {
		flex: 0 0 78%;
		scroll-snap-align: start;
	}

	.em-home-panels {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.em-home-panel {
		padding: 12px;
	}

	.em-home-panel--popular {
		grid-column: 1 / -1;
	}

	.em-home-panel--popular .em-ranked-list {
		grid-template-columns: 1fr;
	}

	.em-home-panel--popular .em-ranked-list a {
		grid-template-columns: 64px 1fr;
	}

	.em-home-panel .em-section-heading h2,
	.em-section-heading h2 {
		font-size: 1.08rem;
	}

	.em-feature-card strong {
		font-size: 1rem;
	}

	.em-mini-list,
	.em-neighborhood-chips {
		display: none;
	}

	.em-promo-strip {
		grid-template-columns: 1fr;
		padding: 22px;
	}

	.em-promo-strip__audio {
		display: none;
	}

	.em-promo-strip__newsletter {
		padding: 0;
		border: 0;
	}

	.em-mobile-community {
		display: grid;
		grid-template-columns: 42px 1fr;
		align-items: center;
		gap: 12px;
		padding: 16px;
		border-radius: 14px;
		background: var(--em-green-soft);
	}

	.em-mobile-community > .dashicons {
		color: #12a04b;
		font-size: 36px;
	}

	.em-mobile-community h3,
	.em-mobile-community p {
		margin: 0;
	}

	.em-mobile-community h3 {
		font-size: 0.86rem;
	}

	.em-mobile-community p {
		color: var(--em-muted);
		font-size: 0.7rem;
	}

	.em-mobile-community .wp-block-buttons {
		grid-column: 1 / -1;
	}

	.em-mobile-community .wp-block-button,
	.em-mobile-community .wp-block-button__link {
		width: 100%;
	}

	.em-site-footer {
		margin-top: 36px;
		padding-top: 26px;
	}

	.em-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.em-footer-brand,
	.em-footer-contact {
		grid-column: 1 / -1;
	}

	.em-footer-bottom .em-shell {
		align-items: center;
		flex-direction: column;
		gap: 3px;
	}

	.em-mobile-bottom-nav {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 60;
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		min-height: 70px;
		padding: 8px 8px max(8px, env(safe-area-inset-bottom));
		border-top: 1px solid var(--em-line);
		background: rgb(255 255 255 / 96%);
		box-shadow: 0 -8px 22px rgb(0 0 0 / 8%);
	}

	.em-mobile-bottom-nav a {
		display: grid;
		justify-items: center;
		gap: 2px;
		color: #555960;
		text-decoration: none;
	}

	.em-mobile-bottom-nav a.is-current {
		color: var(--em-pink);
	}

	.em-mobile-bottom-nav small {
		font-size: 0.62rem;
	}

	.em-breadcrumbs,
	.em-share-rail,
	.em-article-sidebar {
		display: none !important;
	}

	.em-article-page {
		padding-block: 12px 34px;
	}

	.em-article-grid {
		display: block;
	}

	.em-article-body > h1 {
		font-size: clamp(1.7rem, 7.5vw, 2.25rem);
		letter-spacing: -0.035em;
		line-height: 1.05;
	}

	.em-article-lead {
		font-size: 1rem;
	}

	.em-article-meta {
		font-size: 0.7rem;
	}

	.em-article-content {
		font-size: 0.98rem;
		line-height: 1.62;
	}

	.em-author-card {
		grid-template-columns: 68px 1fr;
	}

	.em-author-card__avatar {
		width: 68px;
		height: 68px;
	}

	.em-inline-cta {
		grid-template-columns: 38px 1fr;
	}

	.em-inline-cta .wp-block-buttons {
		grid-column: 1 / -1;
	}

	.em-inline-cta .wp-block-button,
	.em-inline-cta .wp-block-button__link {
		width: 100%;
	}

	.em-related-posts__grid {
		display: flex;
		gap: 10px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.em-related-card {
		flex: 0 0 72%;
		scroll-snap-align: start;
	}
}

@media (max-width: 420px) {

	.em-header-logo {
		width: min(190px, 100%);
	}

	.em-story-grid {
		height: 260px;
	}

	.em-story-card--hero .em-story-card__content {
		right: 14px;
		bottom: 13px;
		left: 14px;
		gap: 6px;
	}

	.em-story-card--hero .em-story-card__title {
		font-size: 1.42rem;
		line-height: 1.08;
	}

	.em-story-card__excerpt {
		display: -webkit-box;
		overflow: hidden;
		font-size: 0.74rem;
		line-height: 1.35;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.em-story-card time {
		font-size: 0.68rem;
	}

	.em-home-panels {
		grid-template-columns: 1fr;
	}

	.em-home-panel--popular {
		grid-column: auto;
	}

	.em-footer-grid {
		grid-template-columns: 1fr;
	}

	.em-footer-brand,
	.em-footer-contact {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {

	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}
