/* ==========================================================================
   Homee blog — Airbnb-inspired styling
   Airy whitespace, borderless image-forward cards, rounded 12px corners,
   Cereal-like type (Manrope), neutral #222 / #717171 palette. Homee mint is
   kept as the accent. Scoped under .homee-* so it never touches the homepage.
   ========================================================================== */

.homee-blog {
	--ink: #222222;
	--muted: #717171;
	--faint: #b0b0b0;
	--line: #dddddd;
	--line-soft: #ebebeb;
	--bg-soft: #f7f7f7;
	--accent: #20db9a;
	--accent-ink: #0e9d70;
	--accent-soft: #eafff8;
	--radius: 12px;
	--font-head: "Manrope", "Satoshi", Verdana, sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	font-family: var(--font-body);
	color: var(--ink);
	background: #fff;
	padding: 40px 0 48px;
	-webkit-font-smoothing: antialiased;
}

/* ---- Skip link ---- */
.homee-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--ink);
	color: #fff;
	padding: 10px 16px;
	border-radius: 0 0 10px 0;
	font-family: var(--font-body);
}
.homee-skip-link:focus {
	left: 0;
}

/* ---- Layout ---- */
.homee-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}
.homee-container-narrow {
	max-width: 740px;
}

/* ---- Breadcrumbs ---- */
.homee-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
	font-size: 13px;
	color: var(--muted);
}
.homee-breadcrumbs li {
	display: flex;
	align-items: center;
	gap: 8px;
}
.homee-breadcrumbs li + li::before {
	content: "›";
	color: var(--faint);
}
.homee-breadcrumbs a {
	color: var(--muted);
	text-decoration: none;
}
.homee-breadcrumbs a:hover {
	color: var(--ink);
	text-decoration: underline;
}
.homee-breadcrumbs [aria-current="page"] {
	color: var(--ink);
}

/* ---- Blog header ---- */
.homee-blog-header {
	max-width: 760px;
	margin: 8px 0 40px;
}
.homee-eyebrow {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--accent-ink);
}
.homee-blog-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(32px, 4.5vw, 46px);
	line-height: 1.1;
	letter-spacing: -0.025em;
	margin: 0 0 14px;
	color: var(--ink);
}
.homee-blog-intro {
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0;
}

/* ---- Topic hub → Airbnb-style category pills + cards ---- */
.homee-topics {
	margin: 0 0 44px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--line-soft);
}
.homee-topics-title,
.homee-section-label {
	font-family: var(--font-head);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ink);
	font-size: 22px;
	margin: 0 0 20px;
}
.homee-topics-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.homee-topic-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-decoration: none;
	background: #fff;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.homee-topic-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.homee-topic-name {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 16px;
	color: var(--ink);
}
.homee-topic-desc {
	font-size: 14px;
	line-height: 1.45;
	color: var(--muted);
}
.homee-topic-count {
	margin-top: auto;
	font-size: 12px;
	font-weight: 600;
	color: var(--accent-ink);
}

/* ---- Post grid + cards (Airbnb listing style) ---- */
.homee-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 24px;
}
.homee-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.homee-card-media {
	display: block;
	position: relative;
	aspect-ratio: 20 / 19;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--bg-soft);
}
.homee-card-media img,
.homee-card-media-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.homee-card-media-placeholder {
	background: linear-gradient(135deg, var(--accent-soft), #d8f7ec);
}
.homee-card:hover .homee-card-media img {
	transform: scale(1.045);
}
.homee-card-body {
	padding: 14px 2px 0;
}
.homee-chip {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--accent-ink);
	text-decoration: none;
	text-transform: uppercase;
}
.homee-chip:hover {
	text-decoration: underline;
}
.homee-card-title {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: -0.01em;
	margin: 8px 0 6px;
}
.homee-card-title a {
	color: var(--ink);
	text-decoration: none;
}
.homee-card-title a:hover {
	text-decoration: underline;
}
.homee-card-excerpt {
	font-size: 15px;
	line-height: 1.55;
	color: var(--muted);
	margin: 0 0 14px;
}
.homee-card-meta,
.homee-article-byline {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--muted);
}
.homee-avatar {
	border-radius: 50%;
	display: block;
}
.homee-avatar-lg {
	width: 64px;
	height: 64px;
}
.homee-card-author {
	font-weight: 600;
	color: var(--ink);
}
.homee-meta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
}
.homee-dot {
	color: var(--faint);
}

/* ---- Pagination (Airbnb clean) ---- */
.homee-pagination {
	margin-top: 56px;
	border-top: 1px solid var(--line-soft);
	padding-top: 28px;
}
.homee-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
}
.homee-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 8px;
	color: var(--ink);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
}
.homee-pagination .page-numbers:hover {
	background: var(--bg-soft);
}
.homee-pagination .page-numbers.current {
	background: var(--ink);
	color: #fff;
}
.homee-pagination .page-numbers.dots {
	min-width: auto;
}

/* ---- Empty state ---- */
.homee-empty {
	font-size: 17px;
	color: var(--muted);
	padding: 40px 0;
}

/* ==========================================================================
   Single post
   ========================================================================== */

.homee-single .homee-breadcrumbs {
	margin-bottom: 24px;
}
.homee-article-header {
	margin-bottom: 32px;
}
.homee-article-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(30px, 4.4vw, 44px);
	line-height: 1.12;
	letter-spacing: -0.025em;
	margin: 14px 0 0;
	color: var(--ink);
}
.homee-article-standfirst {
	font-size: 20px;
	line-height: 1.55;
	color: var(--muted);
	margin: 18px 0 0;
}
.homee-article-byline {
	margin-top: 24px;
	gap: 12px;
	font-size: 14px;
}
.homee-article-byline-text {
	display: flex;
	flex-direction: column;
	line-height: 1.4;
}

/* Hero image */
.homee-article-hero {
	margin: 0 0 40px;
}
.homee-article-hero img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
}
.homee-article-hero figcaption {
	font-size: 13px;
	color: var(--faint);
	text-align: center;
	margin-top: 10px;
}

/* ---- Table of contents ---- */
.homee-toc {
	background: var(--bg-soft);
	border-radius: var(--radius);
	padding: 22px 24px;
	margin: 0 0 36px;
}
.homee-toc-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 12px;
}
.homee-toc ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.homee-toc li {
	margin: 8px 0;
}
.homee-toc-h3 {
	padding-left: 16px;
}
.homee-toc a {
	color: var(--ink);
	text-decoration: none;
	font-size: 15px;
	line-height: 1.4;
}
.homee-toc a:hover {
	text-decoration: underline;
	text-decoration-color: var(--accent);
}

/* ---- Article body typography ---- */
.homee-article-body {
	font-size: 19px;
	line-height: 1.75;
	color: #222222;
}
.homee-article-body > * + * {
	margin-top: 1.5em;
}
.homee-article-body h2 {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin-top: 2em;
	scroll-margin-top: 90px;
}
.homee-article-body h3 {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.3;
	color: var(--ink);
	margin-top: 1.7em;
	scroll-margin-top: 90px;
}
.homee-article-body a {
	color: var(--ink);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1.5px;
	text-decoration-color: var(--accent);
}
.homee-article-body a:hover {
	text-decoration-color: var(--ink);
}
.homee-article-body ul,
.homee-article-body ol {
	padding-left: 1.4em;
}
.homee-article-body li + li {
	margin-top: 0.5em;
}
.homee-article-body li::marker {
	color: var(--accent);
}
.homee-article-body img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius);
	display: block;
}
.homee-article-body figure {
	margin: 2em 0;
}
.homee-article-body figcaption {
	font-size: 14px;
	color: var(--faint);
	text-align: center;
	margin-top: 10px;
}
.homee-article-body blockquote {
	margin: 2em 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--accent);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 23px;
	line-height: 1.4;
	color: var(--ink);
}
.homee-article-body blockquote p {
	margin: 0;
}
.homee-article-body pre {
	background: #f7f7f7;
	color: #222;
	padding: 20px 22px;
	border-radius: var(--radius);
	overflow-x: auto;
	font-size: 15px;
	line-height: 1.6;
}
.homee-article-body code {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.88em;
	background: var(--bg-soft);
	padding: 2px 6px;
	border-radius: 6px;
}
.homee-article-body pre code {
	background: none;
	padding: 0;
}
.homee-article-body hr {
	border: 0;
	border-top: 1px solid var(--line-soft);
	margin: 2.5em 0;
}
.homee-article-body table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
}
.homee-article-body th,
.homee-article-body td {
	border: 1px solid var(--line-soft);
	padding: 10px 14px;
	text-align: left;
}
.homee-article-body th {
	background: var(--bg-soft);
	font-weight: 700;
}

/* ---- Tags ---- */
.homee-tags {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}
.homee-tags-label {
	color: var(--muted);
	font-weight: 600;
}
.homee-tags a {
	display: inline-block;
	padding: 6px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--ink);
	text-decoration: none;
}
.homee-tags a:hover {
	border-color: var(--ink);
}

/* ---- Author box ---- */
.homee-author-box {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin-top: 48px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 16px;
}
.homee-author-box-kicker {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--faint);
	margin: 0 0 4px;
}
.homee-author-box-name {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 8px;
	color: var(--ink);
}
.homee-author-box-bio {
	font-size: 15px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0 0 10px;
}
.homee-author-box-link {
	font-weight: 600;
	font-size: 15px;
	color: var(--ink);
	text-decoration: underline;
	text-decoration-color: var(--accent);
}

/* ---- Prev / next ---- */
.homee-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 48px;
	border-top: 1px solid var(--line-soft);
	padding-top: 28px;
}
.homee-post-nav a {
	display: block;
	text-decoration: none;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 17px;
	line-height: 1.3;
	color: var(--ink);
}
.homee-post-nav a:hover {
	text-decoration: underline;
}
.homee-post-nav-next {
	text-align: right;
}
.homee-post-nav-label {
	display: block;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--faint);
	margin-bottom: 6px;
}

/* ---- Related ---- */
.homee-related {
	margin-top: 72px;
	padding-top: 40px;
	border-top: 1px solid var(--line-soft);
}
.homee-related-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 26px;
	letter-spacing: -0.02em;
	margin: 0 0 28px;
	color: var(--ink);
}

/* ==========================================================================
   Conversion elements
   ========================================================================== */

/* ---- Mid-article download CTA (primary) ---- */
.homee-inline-cta {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 2.5em 0;
	padding: 24px 26px;
	background: var(--bg-soft);
	border-radius: 16px;
}
.homee-inline-cta-text {
	flex: 1;
	min-width: 0;
}
.homee-inline-cta-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 19px;
	color: var(--ink);
	margin: 0 0 4px;
	letter-spacing: -0.01em;
}
.homee-inline-cta-sub {
	font-size: 15px;
	line-height: 1.5;
	color: var(--muted);
	margin: 0;
}
.homee-inline-cta-badges {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
	width: 168px; /* equal-width pills — the two store SVGs differ in width */
}
.homee-inline-cta-badges a {
	width: 100%;
	box-sizing: border-box;
}

/* The store badge SVGs are white artwork on a transparent background, so on
   light surfaces they must sit inside dark pills to stay legible. */
.homee-badge-pill,
.homee-inline-cta-badges a,
.homee-blog-cta-badges a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #111111;
	border-radius: 10px;
	padding: 8px 14px;
	line-height: 0;
	transition: transform 0.15s ease, background 0.15s ease;
}
.homee-inline-cta-badges a:hover,
.homee-blog-cta-badges a:hover {
	background: #000;
	transform: translateY(-1px);
}
.homee-inline-cta-badges img {
	height: 26px;
	width: auto;
	display: block;
}

/* ---- End-of-article download CTA (Airbnb-style dark panel) ---- */
.homee-blog-cta {
	max-width: 1280px;
	margin: 72px auto 0;
	padding: 0 40px;
	box-sizing: border-box;
}
.homee-blog-cta-inner {
	background: #222222;
	border-radius: 24px;
	padding: 64px 32px;
	text-align: center;
}
.homee-blog-cta-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(26px, 3.4vw, 36px);
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 12px;
}
.homee-blog-cta-text {
	font-size: 17px;
	line-height: 1.55;
	color: #c9c9c9;
	max-width: 520px;
	margin: 0 auto 28px;
}
.homee-blog-cta-badges {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.homee-blog-cta-badges a {
	background: #000;
	border: 1px solid #3a3a3a;
}
.homee-blog-cta-badges img {
	height: 30px;
	width: auto;
	display: block;
}

/* ---- Email signup (secondary) ---- */
.homee-email-signup {
	margin: 56px 0 0;
	padding: 40px 36px;
	background: var(--ink);
	border-radius: 16px;
	color: #fff;
}
.homee-email-kicker {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 10px;
}
.homee-email-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 26px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 10px;
}
.homee-email-sub {
	font-size: 16px;
	line-height: 1.55;
	color: #c9c9c9;
	margin: 0 0 22px;
	max-width: 440px;
}
.homee-email-form {
	display: flex;
	gap: 10px;
	max-width: 460px;
	flex-wrap: wrap;
}
.homee-email-input {
	flex: 1;
	min-width: 200px;
	border: 0;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 16px;
	font-family: var(--font-body);
	color: var(--ink);
}
.homee-email-input:focus {
	outline: 2px solid var(--accent);
}
.homee-email-btn {
	border: 0;
	background: var(--accent);
	color: #06301f;
	font-weight: 700;
	font-family: var(--font-body);
	font-size: 16px;
	padding: 14px 26px;
	border-radius: 10px;
	cursor: pointer;
}
.homee-email-btn:hover {
	background: #3ee6ac;
}
.homee-email-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---- Sticky app bar (dismissible, single posts) ----
   Outer element is a full-width fixed flex row that centres the inner bar; the
   inner element is the visible pill. Keeping all width/max-width on the inner
   (normal flow) element avoids fixed-position width quirks entirely. */
.homee-appbar {
	position: fixed;
	left: 0;
	bottom: 16px;
	width: 100%;
	box-sizing: border-box;
	z-index: 998;
	display: flex;
	justify-content: center;
	padding: 0 16px;
	pointer-events: none;
}
.homee-appbar-inner {
	pointer-events: auto;
	width: 100%;
	max-width: 620px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 12px;
	background: #222222;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}
.homee-appbar-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 9px;
	overflow: hidden;
	display: block;
	background: #fff;
}
.homee-appbar-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.homee-appbar-text {
	flex: 1;
	min-width: 0;
	margin: 0;
	color: #fff;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 15px;
	line-height: 1.25;
}
.homee-appbar-badges {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}
.homee-appbar-badges img {
	height: 38px;
	width: auto;
	display: block;
}
.homee-appbar-btn {
	display: none;
	flex-shrink: 0;
	align-items: center;
	background: var(--accent);
	color: #06301f;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 14px;
	padding: 9px 16px;
	border-radius: 10px;
	text-decoration: none;
	white-space: nowrap;
}
.homee-appbar-btn:hover {
	background: #3ee6ac;
}
.homee-appbar-close {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 19px;
	line-height: 1;
	cursor: pointer;
}
.homee-appbar-close:hover {
	background: rgba(255, 255, 255, 0.26);
}
/* Keep page content clear of the fixed bar at every width. */
body.homee-has-appbar {
	padding-bottom: 92px;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.homee-contact-channels {
	display: grid;
	/* 2-up inside the narrow container — 4-up squeezes the email mid-word */
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 0 0 56px;
}
.homee-contact-card {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-decoration: none;
	background: #fff;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.homee-contact-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.homee-contact-card-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--accent-ink);
}
.homee-contact-card-value {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15px;
	color: var(--ink);
	overflow-wrap: anywhere;
}

.homee-contact-form-wrap {
	max-width: 640px;
}
.homee-notice {
	border-radius: var(--radius);
	padding: 14px 18px;
	font-size: 15.5px;
	margin: 0 0 20px;
}
.homee-notice-success {
	background: var(--accent-soft);
	color: #0b5c42;
	border: 1px solid #bfeede;
}
.homee-notice-error {
	background: #fdf0ef;
	color: #8a2a21;
	border: 1px solid #f3d1cd;
}
.homee-contact-form .homee-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0 0 18px;
}
.homee-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.homee-contact-form label {
	font-weight: 600;
	font-size: 14px;
	color: var(--ink);
}
.homee-contact-form input[type="text"],
.homee-contact-form input[type="email"],
.homee-contact-form textarea {
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 13px 15px;
	font-size: 16px;
	font-family: var(--font-body);
	color: var(--ink);
	background: #fff;
	width: 100%;
	box-sizing: border-box;
}
.homee-contact-form input:focus,
.homee-contact-form textarea:focus {
	outline: 2px solid var(--accent);
	border-color: var(--accent);
}
.homee-contact-form textarea {
	resize: vertical;
	min-height: 140px;
}
.homee-field-submit {
	margin-top: 4px;
	align-items: flex-start;
}
.homee-contact-submit {
	border: 0;
	background: var(--accent);
	color: #06301f;
	font-weight: 700;
	font-family: var(--font-body);
	font-size: 16px;
	padding: 14px 30px;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.15s ease;
}
.homee-contact-submit:hover {
	background: #3ee6ac;
}

/* ---- Reading progress bar ---- */
.homee-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0;
	background: var(--accent);
	z-index: 999;
	transition: width 0.1s linear;
}

/* ---- Search form ---- */
.homee-searchform {
	display: flex;
	gap: 10px;
	max-width: 480px;
}
.homee-searchform-input {
	flex: 1;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 16px;
	font-family: var(--font-body);
}
.homee-searchform-input:focus {
	outline: 2px solid var(--accent);
	border-color: var(--accent);
}
.homee-searchform-btn {
	border: 0;
	background: var(--ink);
	color: #fff;
	font-weight: 600;
	font-family: var(--font-body);
	padding: 12px 22px;
	border-radius: 10px;
	cursor: pointer;
}
.homee-searchform-btn:hover {
	background: #000;
}
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.homee-container {
		padding: 0 24px;
	}
	.homee-post-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.homee-topics-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	/* Breadcrumbs: collapse middle crumbs and ellipsize the page title so the
	   trail stays on one tidy line instead of wrapping with an orphaned "/". */
	.homee-breadcrumbs li:nth-child(n+3):not(:last-child) {
		display: none;
	}
	.homee-breadcrumbs [aria-current="page"] {
		display: inline-block;
		max-width: 190px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		vertical-align: bottom;
	}
	.homee-contact-channels {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 40px;
	}
	.homee-field-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.homee-blog {
		padding-top: 24px;
	}
	.homee-post-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.homee-card-media {
		aspect-ratio: 3 / 2;
	}
	.homee-article-body {
		font-size: 18px;
	}
	.homee-article-body h2 {
		font-size: 25px;
	}
	.homee-post-nav {
		grid-template-columns: 1fr;
	}
	.homee-post-nav-next {
		text-align: left;
	}
	.homee-author-box {
		flex-direction: column;
		gap: 14px;
	}
	.homee-inline-cta {
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		padding: 22px;
	}
	.homee-inline-cta-badges {
		flex-direction: row;
	}
	.homee-inline-cta-badges img {
		height: 40px;
	}
	.homee-email-signup {
		padding: 30px 22px;
	}
	.homee-email-title {
		font-size: 22px;
	}
	.homee-blog-cta {
		padding: 0 16px;
	}
	.homee-blog-cta-inner {
		padding: 40px 20px;
	}
	.homee-appbar {
		bottom: 10px;
		padding: 0 10px;
	}
	.homee-appbar-inner {
		gap: 10px;
		padding: 8px 8px 8px 10px;
	}
	.homee-appbar-text {
		font-size: 14px;
	}
	.homee-appbar-badges {
		display: none;
	}
	.homee-appbar-btn {
		display: inline-flex;
	}
}
