/*
 * single.css — listing & neighborhood single templates.
 * Depends on the tokens in main.css. Enqueued only on those
 * post types (see functions.php).
 */

.wfm-single {
	max-width: var(--wfm-max);
	margin: 0 auto;
	padding: 40px 0 0;
}

/* Head */
.wfm-single__tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.wfm-tag {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wfm-slate);
	border-bottom: 2px solid var(--wfm-powder);
	padding-bottom: 2px;
}

.wfm-tag--quiet {
	border-bottom-color: transparent;
}

.wfm-single__title {
	margin: 14px 0 0;
	font-size: clamp(34px, 6vw, 64px);
}

.wfm-single__place {
	margin: 10px 0 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--wfm-slate);
}

/* Two-column layout: body + facts rail */
.wfm-single__layout {
	margin-top: 32px;
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
	border-top: var(--wfm-rule);
	padding-top: 32px;
}

.wfm-single__photo {
	margin: 0 0 24px;
}

.wfm-single__photo img {
	display: block;
	width: 100%;
	height: auto;
}

.wfm-single__content {
	font-size: 17px;
	line-height: 1.6;
	max-width: 68ch;
}

.wfm-single__content h2,
.wfm-single__content h3 {
	margin-top: 1.4em;
}

.wfm-single__content table,
.wfm-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.wfm-single__content th,
.wfm-single__content td {
	text-align: left;
	padding: 10px 12px;
	border-bottom: 1px solid var(--wfm-powder);
}

.wfm-single__content thead th {
	border-bottom: var(--wfm-rule);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wfm-slate);
}

.wfm-pullquote {
	margin: 1.6em 0;
	padding: 0 0 0 20px;
	border-left: 4px solid var(--wfm-powder);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

/* Facts rail */
.wfm-facts {
	background: var(--wfm-cyan);
	border: var(--wfm-rule);
	padding: 24px 26px 28px;
	position: sticky;
	top: 24px;
}

.wfm-facts__kicker {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wfm-slate);
}

.wfm-facts__list {
	margin: 14px 0 20px;
}

.wfm-facts__list dt {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wfm-slate);
	margin-top: 12px;
}

.wfm-facts__list dd {
	margin: 2px 0 0;
	font-size: 15px;
	font-weight: 600;
	overflow-wrap: anywhere;
}

.wfm-facts__list dt:first-child {
	margin-top: 0;
}

/* Nearby listings */
.wfm-nearby {
	margin-top: 40px;
	padding-top: 24px;
	border-top: var(--wfm-rule);
}

.wfm-nearby__title {
	font-size: 24px;
}

.wfm-nearby__list {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 32px;
}

.wfm-nearby__list li {
	padding: 9px 0;
	border-bottom: 1px solid var(--wfm-powder);
	font-size: 16px;
	font-weight: 700;
}

/* Back link */
.wfm-single__back {
	margin-top: 48px;
	padding: 20px 0 64px;
	border-top: var(--wfm-rule);
	font-weight: 700;
}

@media (max-width: 900px) {
	.wfm-single__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.wfm-facts {
		position: static;
	}

	.wfm-nearby__list {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
 * Listing single — prototype treatment
 * ============================================================ */

.wfm-listing {
	max-width: var(--wfm-max);
	margin: 0 auto;
	padding-top: 48px;
}

.wfm-listing__kicker {
	display: block;
	margin-top: 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wfm-slate);
}

.wfm-listing__title {
	margin: 12px 0 0;
	font-size: clamp(44px, 6vw, 80px);
	line-height: 0.98;
	max-width: 1100px;
	text-wrap: balance;
}

.wfm-listing__title .wfm-highlight {
	padding: 0 0.1em;
}

.wfm-listing__rule {
	margin-top: 32px;
	border-top: var(--wfm-rule);
}

.wfm-listing__layout {
	padding-top: 48px;
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
}

.wfm-listing__photo {
	margin: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--wfm-cyan);
}

.wfm-listing__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wfm-listing__about {
	margin-top: 32px;
}

.wfm-listing__photo + .wfm-listing__about {
	margin-top: 32px;
}

.wfm-listing__about h2 {
	margin: 0;
	font-size: 32px;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.wfm-listing__desc {
	margin-top: 16px;
	font-size: 18px;
	line-height: 1.6;
	text-wrap: pretty;
}

.wfm-listing__desc p {
	margin: 0 0 1em;
}

.wfm-listing__desc p:last-child {
	margin-bottom: 0;
}

/* Claim band */
.wfm-claim {
	margin-top: 36px;
	padding: 28px 32px;
	background: var(--wfm-cyan);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.wfm-claim__title {
	margin: 0;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.wfm-claim__sub {
	margin: 6px 0 0;
	font-size: 14px;
	color: var(--wfm-slate);
}

.wfm-claim__btn {
	padding: 12px 20px;
	background: var(--wfm-ink);
	color: var(--wfm-white);
	font-weight: 700;
	font-size: 14px;
	flex: none;
}

.wfm-claim__btn:hover {
	background: var(--wfm-peach);
	color: var(--wfm-white);
}

/* Stacked facts cells with ink gutters */
.wfm-factstack {
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: var(--wfm-ink);
	border: var(--wfm-rule);
}

.wfm-factstack__cell {
	background: var(--wfm-white);
	padding: 18px 20px;
}

.wfm-factstack__label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wfm-slate);
}

.wfm-factstack__value {
	display: block;
	margin-top: 4px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.wfm-factstack__value--link {
	text-decoration: underline;
}

.wfm-factstack__sub {
	display: block;
	margin-top: 2px;
	font-size: 13px;
	color: var(--wfm-slate);
}

.wfm-factstack__map {
	background: var(--wfm-white);
	line-height: 0;
}

.wfm-factstack__map iframe {
	border: 0;
	display: block;
	width: 100%;
}

/* More in {Category} */
.wfm-morein {
	padding-top: 80px;
}

.wfm-morein__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
}

.wfm-morein__title {
	margin: 0;
	font-size: 40px;
	line-height: 1;
}

.wfm-morein__grid {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 48px;
}

.wfm-morein__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: baseline;
	padding: 16px 0;
	border-bottom: 1px solid var(--wfm-powder);
}

.wfm-morein__name {
	display: block;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.wfm-morein__addr {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	color: var(--wfm-slate);
}

.wfm-morein__sub {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wfm-slate);
	text-align: right;
}

@media (max-width: 900px) {
	.wfm-listing__layout,
	.wfm-morein__grid {
		grid-template-columns: 1fr;
	}

	.wfm-listing__layout {
		gap: 36px;
	}
}

/* Past-event notice (prepended on single events whose date has passed) */
.wfm-pastevent {
	margin: 0 0 24px;
	padding: 16px 20px;
	background: var(--wfm-cyan);
	border: var(--wfm-rule);
	font-size: 15px;
}

.wfm-pastevent a {
	font-weight: 700;
	text-decoration: underline;
	margin-left: 6px;
}

/* ============================================================
 * Single event — prototype treatment (no photo areas)
 * ============================================================ */

.wfm-event {
	padding: 48px 0 0;
}

.wfm-event__head {
	margin-top: 16px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 32px;
	align-items: end;
}

.wfm-event__date {
	font-size: clamp(80px, 12vw, 160px);
	font-weight: 900;
	letter-spacing: -0.06em;
	line-height: 0.85;
}

.wfm-event__date span {
	display: block;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 8px;
}

.wfm-event__freebadge {
	display: inline-block;
	background: var(--wfm-ink);
	color: var(--wfm-white);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 8px;
}

.wfm-event__title {
	margin: 12px 0 0;
	font-size: clamp(44px, 6vw, 80px);
	line-height: 0.98;
	text-wrap: pretty;
}

.wfm-event__title .wfm-highlight {
	padding: 0 0.1em;
}

.wfm-event__sub {
	margin: 14px 0 0;
	font-size: 18px;
}

.wfm-event__grid {
	padding-top: 56px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 64px;
	align-items: start;
}

.wfm-event__body {
	max-width: 720px;
	font-size: 19px;
	line-height: 1.65;
}

.wfm-event__body p {
	margin: 0 0 16px;
}

.wfm-event__body h2 {
	margin: 40px 0 16px;
	font-size: 32px;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.wfm-event__body ul {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	border-top: var(--wfm-rule);
	font-size: 16px;
}

.wfm-event__body ul li {
	padding: 12px 0;
	border-bottom: 1px solid var(--wfm-powder);
}

/* Sticky facts rail */
.wfm-event__facts {
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: var(--wfm-ink);
	border: var(--wfm-rule);
	position: sticky;
	top: 24px;
}

.wfm-event__cell {
	background: var(--wfm-white);
	padding: 18px 20px;
}

.wfm-event__label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wfm-slate);
}

.wfm-event__value {
	display: block;
	margin-top: 4px;
	font-size: 16px;
	font-weight: 600;
}

.wfm-event__valuesub {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	color: var(--wfm-slate);
}

/* More coming up — text-only cards */
.wfm-event__more {
	padding-top: 96px;
}

.wfm-event__morecards {
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.wfm-morecard {
	display: block;
	padding-top: 14px;
	border-top: var(--wfm-rule);
}

.wfm-morecard__when {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wfm-peach);
}

.wfm-morecard__title {
	display: block;
	margin-top: 8px;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.wfm-morecard__title .wfm-highlight {
	padding: 0 0.12em;
}

@media (max-width: 900px) {
	.wfm-event__head {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.wfm-event__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.wfm-event__facts {
		position: static;
	}

	.wfm-event__morecards {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
 * Single guide — prototype treatment
 * ============================================================ */

.wfm-guide {
	padding-top: 24px;
}

/* Sponsor pitch bar (unsponsored guides) */
.wfm-sponsorbar {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 20px;
	background: var(--wfm-cyan);
	border-top: 1px solid var(--wfm-powder);
	border-bottom: 1px solid var(--wfm-powder);
	font-size: 13px;
	flex-wrap: wrap;
}

.wfm-sponsorbar__kicker {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wfm-slate);
}

.wfm-sponsorbar__pitch {
	flex: 1;
	min-width: 200px;
}

.wfm-sponsorbar__btn {
	padding: 9px 14px;
	background: var(--wfm-ink);
	color: var(--wfm-white);
	font-size: 12px;
	font-weight: 700;
}

.wfm-sponsorbar__btn:hover {
	background: var(--wfm-peach);
	color: var(--wfm-white);
}

.wfm-guide__inner {
	padding-top: 24px;
}

.wfm-guide__presented {
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border: 1.5px solid var(--wfm-ink);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wfm-guide__presented mark {
	background: var(--wfm-powder);
	padding: 2px 6px;
}

.wfm-guide__title {
	margin: 16px 0 0;
	font-size: clamp(44px, 6vw, 80px);
	line-height: 0.98;
	text-wrap: pretty;
	max-width: 1040px;
}

.wfm-guide__title .wfm-highlight {
	padding: 0 0.1em;
}

.wfm-guide__metarow {
	margin-top: 18px;
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--wfm-slate);
}

.wfm-guide__cat {
	font-weight: 700;
	color: var(--wfm-ink);
}

.wfm-guide__correct {
	text-decoration: underline;
}

/* Body at reading measure with floated contents box */
.wfm-guide__body {
	padding-top: 56px;
	font-size: 19px;
	line-height: 1.65;
	max-width: 960px;
}

.wfm-guide__body p {
	margin: 0 0 16px;
}

.wfm-guide__body h2 {
	margin: 44px 0 16px;
	font-size: 32px;
	letter-spacing: -0.04em;
	line-height: 1.05;
	scroll-margin-top: 24px;
}

.wfm-guide__body h3 {
	margin: 28px 0 12px;
	font-size: 22px;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.wfm-guide__body ul {
	margin: 12px 0 16px;
	padding: 0;
	list-style: none;
}

.wfm-guide__body ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 6px;
	font-size: 17px;
	line-height: 1.5;
}

.wfm-guide__body ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 8px;
	height: 8px;
	background: var(--wfm-peach);
}

.wfm-guide__body a {
	text-decoration: underline;
	text-decoration-color: var(--wfm-peach);
	text-decoration-thickness: 2px;
}

.wfm-guide__body table {
	width: 100%;
	margin: 14px 0 16px;
	border-collapse: collapse;
	border-top: var(--wfm-rule);
	font-size: 15px;
}

.wfm-guide__body table th {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wfm-slate);
	text-align: left;
	padding: 10px 12px 10px 0;
	border-bottom: 1px solid var(--wfm-powder);
}

.wfm-guide__body table td {
	padding: 14px 12px 14px 0;
	border-bottom: 1px solid var(--wfm-powder);
}

.wfm-guide__toc {
	float: right;
	width: 300px;
	margin: 0 0 24px 48px;
	padding: 22px;
	border: var(--wfm-rule);
	font-size: 15px;
}

.wfm-guide__toclabel {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wfm-slate);
	margin-bottom: 10px;
}

.wfm-guide__toc a {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: underline;
	text-decoration-color: var(--wfm-powder);
	text-decoration-thickness: 2px;
}

@media (max-width: 900px) {
	.wfm-guide__toc {
		float: none;
		width: auto;
		margin: 0 0 32px;
	}
}

/* Spotlight callout on listing pages */
.wfm-spotcall {
	display: block;
	margin-top: 56px;
	padding: 32px 36px;
	background: var(--wfm-cyan);
	border: var(--wfm-rule);
}

.wfm-spotcall__title {
	display: block;
	margin-top: 10px;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.05;
	max-width: 760px;
}

.wfm-spotcall__title .wfm-highlight {
	padding: 0 0.1em;
}

.wfm-spotcall__dek {
	display: block;
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.5;
	max-width: 640px;
}

.wfm-spotcall__cta {
	display: inline-block;
	margin-top: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-bottom: 2px solid var(--wfm-ink);
	padding-bottom: 2px;
}

.wfm-spotcall:hover .wfm-spotcall__cta {
	color: var(--wfm-peach);
	border-color: var(--wfm-peach);
}

/* ============================================================
 * Single post (spotlight article) — prototype treatment
 * ============================================================ */

.wfm-article {
	padding-top: 48px;
}

.wfm-article__head {
	max-width: 1000px;
}

.wfm-article__sponsored {
	display: inline-block;
	margin-top: 14px;
	padding: 6px 10px;
	border: 1.5px solid var(--wfm-ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wfm-article__title {
	margin: 16px 0 0;
	font-size: clamp(44px, 6vw, 80px);
	line-height: 0.98;
	text-wrap: pretty;
}

.wfm-article__title .wfm-highlight {
	padding: 0 0.1em;
}

.wfm-article__dek {
	margin: 20px 0 0;
	font-size: 22px;
	line-height: 1.4;
	max-width: 760px;
}

.wfm-article__byline {
	margin-top: 20px;
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--wfm-slate);
}

.wfm-article__by {
	font-weight: 700;
	color: var(--wfm-ink);
}

/* Body */
.wfm-article__body {
	padding-top: 56px;
	font-size: 19px;
	line-height: 1.65;
	max-width: 960px;
}

.wfm-article__body p {
	margin: 0 0 22px;
}

/* Drop cap on the opening paragraph */
.wfm-article__body p:first-of-type::first-letter {
	float: left;
	font-size: 88px;
	line-height: 0.8;
	font-weight: 900;
	margin: 8px 10px 0 0;
	letter-spacing: -0.05em;
}

.wfm-article__body h2 {
	margin: 44px 0 16px;
	font-size: 32px;
	letter-spacing: -0.04em;
	line-height: 1.05;
	scroll-margin-top: 24px;
	clear: none;
}

/* Pull quote */
.wfm-article__body blockquote {
	margin: 40px 0;
	padding: 32px 0;
	border-top: var(--wfm-rule);
	border-bottom: var(--wfm-rule);
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 1.05;
	clear: both;
}

.wfm-article__body blockquote p {
	margin: 0;
	display: inline;
	background: var(--wfm-powder);
	padding: 0 0.1em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

/* In this story box */
.wfm-article__toc {
	float: right;
	width: 300px;
	margin: 0 0 24px 48px;
	padding: 22px;
	border: var(--wfm-rule);
	font-size: 15px;
}

.wfm-article__toclabel {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wfm-slate);
	margin-bottom: 10px;
}

.wfm-article__toc a {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: underline;
	text-decoration-color: var(--wfm-powder);
	text-decoration-thickness: 2px;
}

/* Featured business band */
.wfm-article__featured {
	margin-top: 48px;
	padding: 28px 32px;
	background: var(--wfm-cyan);
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	clear: both;
}

.wfm-article__featkicker {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.wfm-article__featname {
	display: block;
	margin-top: 8px;
	font-size: 26px;
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.wfm-article__featsub {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.6;
}

.wfm-article__featbtn {
	padding: 12px 18px;
	background: var(--wfm-ink);
	color: var(--wfm-white);
	font-weight: 700;
	font-size: 13px;
	white-space: nowrap;
}

.wfm-article__featbtn:hover {
	background: var(--wfm-peach);
	color: var(--wfm-white);
}


/* Related */
.wfm-article__related {
	padding-top: 96px;
}

.wfm-article__relgrid {
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.wfm-relcard {
	display: block;
}

.wfm-relcard__img {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.wfm-relcard__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wfm-relcard .wfm-kicker {
	display: block;
	margin-top: 12px;
}

.wfm-relcard__title {
	display: block;
	margin-top: 6px;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.wfm-relcard__title .wfm-highlight {
	padding: 0 0.12em;
}

@media (max-width: 900px) {
	.wfm-article__toc {
		float: none;
		width: auto;
		margin: 0 0 32px;
	}

	.wfm-article__featured {
		grid-template-columns: 1fr;
	}

	.wfm-article__relgrid {
		grid-template-columns: 1fr;
	}
}
