/*
Theme Name: Mossline Atlas
Author: Nolan Vale Workshop
Description: A classic, mobile-first editorial theme for travel and hospitality publishers.
Version: 1.1.0
Text Domain: wtwb-theme
*/

:root {
	--wtwb-bg: #f7f3ea;
	--wtwb-surface: #fffaf3;
	--wtwb-ink: #1f2420;
	--wtwb-muted: #6b7169;
	--wtwb-deep: #15352b;
	--wtwb-deep-soft: #21463a;
	--wtwb-line: rgba(31, 36, 32, 0.14);
	--wtwb-accent: #b8945a;
	--wtwb-accent-soft: #ddc89d;
	--wtwb-white: #ffffff;
	--wtwb-radius: 8px;
	--wtwb-shadow: 0 22px 55px rgba(22, 43, 34, 0.13);
	--wtwb-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--wtwb-font-display: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--wtwb-bg);
	color: var(--wtwb-ink);
	font-family: var(--wtwb-font-body);
	font-size: 16px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--wtwb-deep);
}

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

button,
input,
textarea,
select {
	font: inherit;
}

.wtwb-screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.wtwb-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 999;
	padding: 0.75rem 1rem;
	background: var(--wtwb-deep);
	color: var(--wtwb-white);
	border-radius: 6px;
	transform: translateY(-140%);
	transition: transform 180ms ease;
}

.wtwb-skip-link:focus {
	transform: translateY(0);
	color: var(--wtwb-white);
}

.wtwb-container {
	width: min(1120px, 92vw);
	margin-inline: auto;
}

.wtwb-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(247, 243, 234, 0.9);
	border-bottom: 1px solid var(--wtwb-line);
	backdrop-filter: blur(18px);
}

.wtwb-admin-bar .wtwb-header {
	top: 32px;
}

.wtwb-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: min(1120px, 92vw);
	min-height: 74px;
	margin-inline: auto;
}

.wtwb-branding {
	display: grid;
	gap: 0.1rem;
	min-width: 0;
}

.wtwb-site-title {
	font-family: var(--wtwb-font-display);
	font-size: clamp(1.2rem, 4vw, 1.55rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--wtwb-deep);
}

.wtwb-site-description {
	margin: 0;
	color: var(--wtwb-muted);
	font-size: 0.82rem;
	line-height: 1.3;
}

.wtwb-custom-logo-link {
	display: inline-flex;
	align-items: center;
	max-width: 210px;
}

.wtwb-custom-logo {
	width: auto;
	max-height: 54px;
}

.wtwb-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--wtwb-deep);
	background: var(--wtwb-surface);
	border: 1px solid var(--wtwb-line);
	border-radius: 6px;
	cursor: pointer;
}

.wtwb-menu-toggle:hover,
.wtwb-menu-toggle:focus {
	border-color: var(--wtwb-accent);
	outline: none;
}

.wtwb-menu-bars,
.wtwb-menu-bars::before,
.wtwb-menu-bars::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.wtwb-menu-bars {
	position: relative;
}

.wtwb-menu-bars::before,
.wtwb-menu-bars::after {
	position: absolute;
	left: 0;
	content: "";
}

.wtwb-menu-bars::before {
	top: -7px;
}

.wtwb-menu-bars::after {
	top: 7px;
}

.wtwb-menu-toggle[aria-expanded="true"] .wtwb-menu-bars {
	background: transparent;
}

.wtwb-menu-toggle[aria-expanded="true"] .wtwb-menu-bars::before {
	transform: translateY(7px) rotate(45deg);
}

.wtwb-menu-toggle[aria-expanded="true"] .wtwb-menu-bars::after {
	transform: translateY(-7px) rotate(-45deg);
}

.wtwb-navigation {
	position: absolute;
	top: calc(100% + 1px);
	right: 4vw;
	left: 4vw;
	padding: 0.75rem;
	background: var(--wtwb-surface);
	border: 1px solid var(--wtwb-line);
	border-radius: var(--wtwb-radius);
	box-shadow: var(--wtwb-shadow);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.wtwb-navigation.wtwb-is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.wtwb-nav-list {
	display: grid;
	gap: 0.25rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.wtwb-nav-item {
	position: relative;
}

.wtwb-nav-link {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 0.65rem 0.8rem;
	color: var(--wtwb-ink);
	border-radius: 6px;
}

.wtwb-nav-link:hover,
.wtwb-nav-link:focus,
.wtwb-current-menu-item > .wtwb-nav-link,
.wtwb-current_page_item > .wtwb-nav-link {
	color: var(--wtwb-deep);
	background: rgba(184, 148, 90, 0.16);
	outline: none;
}

.wtwb-sub-menu {
	display: grid;
	gap: 0.25rem;
	padding: 0.25rem 0 0 0.85rem;
	margin: 0;
	list-style: none;
}

.wtwb-sub-menu .wtwb-nav-link {
	min-height: 38px;
	font-size: 0.94rem;
}

.wtwb-main {
	min-height: 62vh;
}

.wtwb-home-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	min-height: 82vh;
	padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 8vw, 7rem);
	background:
		linear-gradient(
			180deg,
			rgba(10, 24, 19, 0.18) 0%,
			rgba(10, 24, 19, 0.48) 48%,
			rgba(10, 24, 19, 0.82) 100%
		),
		url("assets/images/wtwb-hero.png");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: var(--wtwb-white);
}

.wtwb-home-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 8px;
	background: linear-gradient(90deg, var(--wtwb-accent), var(--wtwb-accent-soft), var(--wtwb-deep-soft));
	content: "";
}

.wtwb-home-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1.2rem;
	max-width: 860px;
}

.wtwb-kicker,
.wtwb-post-date,
.wtwb-single-date,
.wtwb-footer-note {
	color: var(--wtwb-accent-soft);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.wtwb-home-title {
	margin: 0;
	font-family: var(--wtwb-font-display);
	font-size: clamp(2.6rem, 12vw, 5.9rem);
	font-weight: 700;
	line-height: 0.98;
	color: var(--wtwb-white);
}

.wtwb-home-copy {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1rem, 2.2vw, 1.22rem);
}

.wtwb-archive-hero {
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 0;
}

.wtwb-archive-title {
	margin: 0;
	font-family: var(--wtwb-font-display);
	font-size: clamp(2rem, 7vw, 4.25rem);
	line-height: 1.05;
	color: var(--wtwb-deep);
}

.wtwb-archive-copy {
	max-width: 720px;
	margin: 0.85rem 0 0;
	color: var(--wtwb-muted);
}

.wtwb-posts-wrap {
	padding: clamp(2.4rem, 6vw, 5rem) 0;
}

.wtwb-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: clamp(1.4rem, 4vw, 2.4rem);
}

.wtwb-section-title {
	margin: 0;
	font-family: var(--wtwb-font-display);
	font-size: clamp(1.8rem, 6vw, 3.5rem);
	line-height: 1.08;
	color: var(--wtwb-deep);
}

.wtwb-section-copy {
	max-width: 430px;
	margin: 0;
	color: var(--wtwb-muted);
}

.wtwb-post-grid {
	display: grid;
	gap: 1.1rem;
}

.wtwb-post-card {
	display: grid;
	overflow: hidden;
	background: var(--wtwb-surface);
	border: 1px solid var(--wtwb-line);
	border-radius: var(--wtwb-radius);
	box-shadow: 0 12px 28px rgba(22, 43, 34, 0.08);
}

.wtwb-post-media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--wtwb-deep);
}

.wtwb-post-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.wtwb-post-card:hover .wtwb-post-media img,
.wtwb-post-card:focus-within .wtwb-post-media img {
	transform: scale(1.035);
}

.wtwb-post-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: rgba(255, 255, 255, 0.84);
	font-family: var(--wtwb-font-display);
	font-size: clamp(2.2rem, 10vw, 4rem);
	background:
		linear-gradient(135deg, rgba(21, 53, 43, 0.92), rgba(184, 148, 90, 0.7)),
		var(--wtwb-deep);
}

.wtwb-post-content {
	display: grid;
	gap: 0.8rem;
	padding: clamp(1.1rem, 4vw, 1.5rem);
}

.wtwb-post-date {
	color: var(--wtwb-muted);
}

.wtwb-post-title {
	margin: 0;
	font-family: var(--wtwb-font-display);
	font-size: clamp(1.35rem, 4vw, 2rem);
	line-height: 1.12;
	color: var(--wtwb-deep);
}

.wtwb-post-title a {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.wtwb-post-title a:hover,
.wtwb-post-title a:focus {
	text-decoration: underline;
}

.wtwb-post-excerpt {
	color: var(--wtwb-muted);
}

.wtwb-post-excerpt p {
	margin: 0;
}

.wtwb-read-more {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	min-height: 38px;
	padding: 0.55rem 0.85rem;
	color: var(--wtwb-deep);
	background: rgba(184, 148, 90, 0.15);
	border: 1px solid rgba(184, 148, 90, 0.32);
	border-radius: 6px;
	font-weight: 700;
}

.wtwb-read-more::after {
	margin-left: 0.45rem;
	content: "\2192";
}

.wtwb-read-more:hover,
.wtwb-read-more:focus {
	background: var(--wtwb-deep);
	color: var(--wtwb-white);
	border-color: var(--wtwb-deep);
	outline: none;
}

.wtwb-pagination {
	margin-top: 2rem;
}

.wtwb-pagination-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.wtwb-page-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0.45rem 0.7rem;
	background: var(--wtwb-surface);
	border: 1px solid var(--wtwb-line);
	border-radius: 6px;
}

.wtwb-page-number.wtwb-current {
	color: var(--wtwb-white);
	background: var(--wtwb-deep);
	border-color: var(--wtwb-deep);
}

.wtwb-empty {
	width: min(720px, 92vw);
	padding: clamp(3rem, 8vw, 5rem) 0;
	margin-inline: auto;
}

.wtwb-empty-title {
	margin: 0 0 0.8rem;
	font-family: var(--wtwb-font-display);
	font-size: clamp(2rem, 7vw, 3.8rem);
	color: var(--wtwb-deep);
}

.wtwb-empty-copy {
	margin: 0;
	color: var(--wtwb-muted);
}

.wtwb-single {
	padding: clamp(2.5rem, 7vw, 5.5rem) 0;
}

.wtwb-single-wrap {
	width: 80vw;
	margin-inline: auto;
}

.wtwb-single-back {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	margin-bottom: clamp(1.8rem, 5vw, 3rem);
	color: var(--wtwb-deep);
	font-weight: 700;
}

.wtwb-single-back::before {
	margin-right: 0.45rem;
	content: "\2190";
}

.wtwb-single-head {
	display: grid;
	gap: 1rem;
	padding-bottom: clamp(1.8rem, 5vw, 3rem);
	border-bottom: 1px solid var(--wtwb-line);
}

.wtwb-single-date {
	color: var(--wtwb-muted);
}

.wtwb-single-title {
	max-width: 14ch;
	margin: 0;
	font-family: var(--wtwb-font-display);
	font-size: clamp(2.35rem, 9vw, 6.2rem);
	font-weight: 700;
	line-height: 0.98;
	color: var(--wtwb-deep);
}

.wtwb-single-summary {
	max-width: 760px;
	margin: 0;
	color: var(--wtwb-muted);
	font-size: clamp(1.02rem, 2.5vw, 1.25rem);
}

.wtwb-content {
	padding-top: clamp(1.8rem, 5vw, 3.2rem);
	color: var(--wtwb-ink);
	font-size: clamp(1rem, 2vw, 1.08rem);
}

.wtwb-content > * {
	max-width: 820px;
	margin-right: auto;
	margin-left: auto;
}

.wtwb-content > figure,
.wtwb-content > table,
.wtwb-content > pre {
	max-width: 100%;
}

.wtwb-content h2,
.wtwb-content h3,
.wtwb-content h4 {
	margin-top: 2.1em;
	margin-bottom: 0.6em;
	font-family: var(--wtwb-font-display);
	line-height: 1.16;
	color: var(--wtwb-deep);
}

.wtwb-content h2 {
	font-size: clamp(1.8rem, 5vw, 3rem);
}

.wtwb-content h3 {
	font-size: clamp(1.45rem, 4vw, 2.2rem);
}

.wtwb-content p,
.wtwb-content ul,
.wtwb-content ol {
	margin-top: 0;
	margin-bottom: 1.25rem;
}

.wtwb-content a {
	color: var(--wtwb-deep);
	text-decoration: underline;
	text-decoration-color: var(--wtwb-accent);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.18em;
}

.wtwb-content blockquote {
	padding: 1.25rem 0 1.25rem 1.25rem;
	border-left: 4px solid var(--wtwb-accent);
	color: var(--wtwb-deep);
	font-family: var(--wtwb-font-display);
	font-size: clamp(1.2rem, 3vw, 1.65rem);
}

.wtwb-content img,
.wtwb-content video {
	border-radius: var(--wtwb-radius);
}

.wtwb-content table {
	width: 100%;
	border-collapse: collapse;
	background: var(--wtwb-surface);
}

.wtwb-content th,
.wtwb-content td {
	padding: 0.85rem;
	border: 1px solid var(--wtwb-line);
	text-align: left;
}

.wtwb-single-footer {
	display: grid;
	gap: 1.2rem;
	width: 80vw;
	margin: clamp(2.5rem, 6vw, 4rem) auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid var(--wtwb-line);
}

.wtwb-single-tags {
	margin: 0;
	color: var(--wtwb-muted);
}

.wtwb-single-tags a {
	color: var(--wtwb-deep);
	text-decoration: underline;
	text-decoration-color: var(--wtwb-accent);
	text-underline-offset: 0.16em;
}

.wtwb-post-navigation {
	display: grid;
	gap: 0.8rem;
}

.wtwb-post-navigation a {
	display: block;
	padding: 1rem;
	background: var(--wtwb-surface);
	border: 1px solid var(--wtwb-line);
	border-radius: var(--wtwb-radius);
	font-weight: 700;
}

.wtwb-footer {
	padding: clamp(2.5rem, 7vw, 4.5rem) 0;
	background: var(--wtwb-deep);
	color: rgba(255, 255, 255, 0.8);
}

.wtwb-footer-inner {
	display: grid;
	gap: 1.4rem;
	width: min(1120px, 92vw);
	margin-inline: auto;
}

.wtwb-footer-title {
	display: inline-flex;
	margin-bottom: 0.45rem;
	font-family: var(--wtwb-font-display);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	color: var(--wtwb-white);
}

.wtwb-footer-copy {
	max-width: 620px;
	margin: 0;
}

.wtwb-footer-note {
	margin: 0;
	color: var(--wtwb-accent-soft);
}

@media (max-width: 782px) {
	.wtwb-admin-bar .wtwb-header {
		top: 46px;
	}
}

@media (min-width: 760px) {
	.wtwb-menu-toggle {
		display: none;
	}

	.wtwb-navigation {
		position: static;
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}

	.wtwb-nav-list {
		display: flex;
		align-items: center;
		gap: 0.2rem;
	}

	.wtwb-nav-link {
		padding: 0.55rem 0.8rem;
	}

	.wtwb-sub-menu {
		position: absolute;
		top: calc(100% + 0.4rem);
		left: 0;
		min-width: 210px;
		padding: 0.55rem;
		background: var(--wtwb-surface);
		border: 1px solid var(--wtwb-line);
		border-radius: var(--wtwb-radius);
		box-shadow: var(--wtwb-shadow);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-6px);
		transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	}

	.wtwb-nav-item:hover > .wtwb-sub-menu,
	.wtwb-nav-item:focus-within > .wtwb-sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.wtwb-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wtwb-section-head {
		align-items: end;
	}
}

@media (min-width: 1040px) {
	.wtwb-post-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.wtwb-post-card:first-child {
		grid-column: span 2;
	}

	.wtwb-post-card:first-child .wtwb-post-media {
		aspect-ratio: 16 / 9;
	}

	.wtwb-post-card:first-child .wtwb-post-title {
		font-size: clamp(2rem, 4vw, 3.15rem);
	}

	.wtwb-footer-inner {
		grid-template-columns: 1fr auto;
		align-items: end;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/*
 * Mossline Atlas homepage direction.
 * A field-journal layout with angled image cuts, vertical rail, and asymmetry.
 */
.wtwb-home {
	--wtwb-bg: #efe7d8;
	--wtwb-surface: #fbf3e4;
	--wtwb-ink: #20241d;
	--wtwb-muted: #68705f;
	--wtwb-deep: #0f342c;
	--wtwb-deep-soft: #1b5044;
	--wtwb-accent: #a97831;
	--wtwb-accent-soft: #f0d6a4;
	background:
		linear-gradient(90deg, rgba(15, 52, 44, 0.04) 1px, transparent 1px),
		linear-gradient(180deg, rgba(15, 52, 44, 0.035) 1px, transparent 1px),
		var(--wtwb-bg);
	background-size: 44px 44px;
}

.wtwb-home .wtwb-header {
	position: absolute;
	right: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(9, 25, 20, 0.78), rgba(9, 25, 20, 0));
	border-bottom: 1px solid rgba(255, 250, 243, 0.16);
	backdrop-filter: none;
}

.wtwb-admin-bar.wtwb-home .wtwb-header {
	top: 32px;
}

.wtwb-home .wtwb-site-title,
.wtwb-home .wtwb-site-description,
.wtwb-home .wtwb-nav-link {
	color: rgba(255, 250, 243, 0.94);
}

.wtwb-home .wtwb-menu-toggle {
	color: #fffaf3;
	background: rgba(255, 250, 243, 0.12);
	border-color: rgba(255, 250, 243, 0.24);
}

.wtwb-home .wtwb-nav-link:hover,
.wtwb-home .wtwb-nav-link:focus,
.wtwb-home .wtwb-current-menu-item > .wtwb-nav-link,
.wtwb-home .wtwb-current_page_item > .wtwb-nav-link {
	color: #fffaf3;
	background: rgba(255, 250, 243, 0.14);
}

.wtwb-home .wtwb-home-hero {
	align-items: stretch;
	min-height: 96vh;
	padding: 0;
	background:
		linear-gradient(90deg, rgba(6, 17, 14, 0.88) 0%, rgba(6, 17, 14, 0.58) 42%, rgba(6, 17, 14, 0.16) 100%),
		linear-gradient(180deg, rgba(6, 17, 14, 0.08) 0%, rgba(6, 17, 14, 0.9) 100%),
		url("assets/images/wtwb-hero.png");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.wtwb-home .wtwb-home-hero::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 20vh;
	background: var(--wtwb-bg);
	clip-path: polygon(0 70%, 100% 32%, 100% 100%, 0 100%);
	content: "";
}

.wtwb-home .wtwb-home-hero-inner {
	z-index: 1;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: clamp(1.2rem, 4vw, 3rem);
	width: min(1240px, 92vw);
	max-width: none;
	min-height: 96vh;
	padding-top: 112px;
	padding-bottom: clamp(6rem, 18vh, 12rem);
}

.wtwb-hero-rail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 100%;
	padding: 1rem 0;
	border-right: 1px solid rgba(255, 250, 243, 0.22);
	color: rgba(255, 250, 243, 0.74);
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.wtwb-hero-copy {
	align-self: end;
	display: grid;
	gap: 1rem;
	max-width: 980px;
}

.wtwb-home .wtwb-kicker {
	justify-self: start;
	padding: 0.35rem 0.65rem;
	color: var(--wtwb-accent-soft);
	background: rgba(255, 250, 243, 0.1);
	border: 1px solid rgba(240, 214, 164, 0.34);
	border-radius: 999px;
	backdrop-filter: blur(10px);
}

.wtwb-home .wtwb-home-title {
	max-width: 10.5ch;
	font-size: clamp(3.4rem, 12vw, 9.6rem);
	line-height: 0.86;
	text-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.wtwb-home-copy-text {
	max-width: 620px;
	margin: 0;
	color: rgba(255, 250, 243, 0.88);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	text-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.wtwb-hero-card {
	position: absolute;
	right: min(4vw, 3rem);
	bottom: clamp(3rem, 10vh, 6rem);
	z-index: 2;
	display: grid;
	gap: 0.2rem;
	width: min(230px, 42vw);
	padding: 1rem;
	background: rgba(251, 243, 228, 0.92);
	border: 1px solid rgba(255, 250, 243, 0.72);
	border-radius: 8px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
	color: var(--wtwb-deep);
}

.wtwb-hero-card span,
.wtwb-hero-card em {
	font-size: 0.72rem;
	font-style: normal;
	font-weight: 800;
	text-transform: uppercase;
}

.wtwb-hero-card strong {
	font-family: var(--wtwb-font-display);
	font-size: clamp(2.2rem, 6vw, 4.2rem);
	line-height: 0.95;
}

.wtwb-home .wtwb-posts-wrap {
	position: relative;
	padding-top: clamp(2.5rem, 7vw, 6rem);
	background: transparent;
}

.wtwb-home .wtwb-section-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
	padding: 1.2rem 0 clamp(1.6rem, 4vw, 2.4rem);
	border-top: 1px solid rgba(15, 52, 44, 0.2);
	border-bottom: 1px solid rgba(15, 52, 44, 0.2);
}

.wtwb-home .wtwb-section-title {
	max-width: 760px;
	font-size: clamp(2.35rem, 8vw, 6.2rem);
	line-height: 0.94;
}

.wtwb-home .wtwb-section-copy {
	max-width: 460px;
	color: #5c6557;
}

.wtwb-home .wtwb-post-grid {
	gap: clamp(2rem, 4vw, 4.5rem);
}

.wtwb-home .wtwb-post-card {
	position: relative;
	overflow: visible;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.wtwb-card-index {
	position: absolute;
	top: -0.6rem;
	left: -0.3rem;
	z-index: 0;
	color: rgba(15, 52, 44, 0.14);
	font-family: var(--wtwb-font-display);
	font-size: clamp(4.2rem, 13vw, 8.8rem);
	font-weight: 700;
	line-height: 0.78;
	pointer-events: none;
}

.wtwb-home .wtwb-post-media {
	z-index: 1;
	border-radius: 0;
	box-shadow: 0 24px 55px rgba(15, 52, 44, 0.18);
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.wtwb-home .wtwb-post-content {
	position: relative;
	z-index: 2;
	padding: 1rem 0 0;
}

.wtwb-post-category {
	justify-self: start;
	color: var(--wtwb-accent);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.wtwb-home .wtwb-post-title {
	font-size: clamp(1.55rem, 4vw, 3rem);
}

.wtwb-home .wtwb-read-more {
	padding-left: 0.75rem;
	background: transparent;
	border: 0;
	border-left: 3px solid var(--wtwb-accent);
	border-radius: 0;
}

.wtwb-home .wtwb-read-more:hover,
.wtwb-home .wtwb-read-more:focus {
	color: var(--wtwb-deep);
	background: rgba(169, 120, 49, 0.14);
	border-color: var(--wtwb-deep);
}

@media (min-width: 760px) {
	.wtwb-home .wtwb-navigation {
		background: transparent;
	}

	.wtwb-home .wtwb-sub-menu {
		background: rgba(251, 243, 228, 0.96);
		border-color: rgba(255, 250, 243, 0.48);
	}

	.wtwb-home .wtwb-sub-menu .wtwb-nav-link {
		color: var(--wtwb-deep);
	}

	.wtwb-home .wtwb-section-head {
		grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
		align-items: end;
	}
}

@media (min-width: 1040px) {
	.wtwb-home .wtwb-home-hero-inner {
		grid-template-columns: 72px minmax(0, 1fr) 280px;
	}

	.wtwb-home .wtwb-post-grid {
		grid-template-columns: 1.15fr 0.85fr 0.85fr;
		align-items: start;
	}

	.wtwb-home .wtwb-post-card:first-child {
		grid-column: span 1;
		grid-row: span 2;
	}

	.wtwb-home .wtwb-post-card:first-child .wtwb-post-media {
		aspect-ratio: 4 / 5.2;
	}

	.wtwb-home .wtwb-post-card:nth-child(2),
	.wtwb-home .wtwb-post-card:nth-child(5) {
		margin-top: 5rem;
	}

	.wtwb-home .wtwb-post-card:nth-child(3) {
		margin-top: 1.5rem;
	}

	.wtwb-home .wtwb-post-card:nth-child(4) {
		grid-column: 2 / span 2;
		display: grid;
		grid-template-columns: 0.9fr 1fr;
		gap: 1.4rem;
		align-items: end;
		padding-top: 1rem;
		border-top: 1px solid rgba(15, 52, 44, 0.2);
	}

	.wtwb-home .wtwb-post-card:nth-child(4) .wtwb-post-media {
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 759px) {
	.wtwb-admin-bar.wtwb-home .wtwb-header {
		top: 46px;
	}

	.wtwb-home .wtwb-navigation.wtwb-is-open {
		background: rgba(251, 243, 228, 0.97);
	}

	.wtwb-home .wtwb-navigation.wtwb-is-open .wtwb-nav-link {
		color: var(--wtwb-deep);
	}

	.wtwb-home .wtwb-home-hero {
		min-height: 88vh;
		background-position: center;
	}

	.wtwb-home .wtwb-home-hero-inner {
		grid-template-columns: 1fr;
		min-height: 88vh;
		padding-top: 118px;
		padding-bottom: 17vh;
	}

	.wtwb-hero-rail {
		display: none;
	}

	.wtwb-hero-card {
		right: 4vw;
		bottom: 2.25rem;
		width: min(190px, 54vw);
		padding: 0.85rem;
	}

	.wtwb-home .wtwb-home-title {
		font-size: clamp(3.2rem, 17vw, 5.8rem);
	}

	.wtwb-home .wtwb-post-media {
		aspect-ratio: 1 / 1.05;
	}
}
