/* ==========================================================================
   Trusted Homebuyers USA - design system
   Navy #0B1F3F · Brand red #BD4E4C (from the logo) · White
   ========================================================================== */

:root {
	--navy: #0B1F3F;
	--navy-mid: #12305C;
	--navy-light: #1D4178;
	--red: #BD4E4C;
	--red-dark: #A03E3C;
	--red-soft: #FBF0EF;
	--ink: #16202E;
	--slate: #5A6472;
	--mist: #F4F6F9;
	--line: #E2E7EE;
	--green: #1E9E4A;
	--gold: #F5A623;
	--radius: 10px;
	--radius-lg: 16px;
	--shadow: 0 2px 4px rgba(11,31,63,.05), 0 12px 28px rgba(11,31,63,.08);
	--shadow-lg: 0 8px 20px rgba(11,31,63,.10), 0 24px 60px rgba(11,31,63,.14);
	--wrap: 1180px;
	--pad: clamp(18px, 4vw, 32px);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.7;
	color: var(--ink);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
	font-family: Archivo, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 800;
	line-height: 1.15;
	color: var(--navy);
	margin: 0 0 .5em;
	letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.2rem, 1.5rem + 3.2vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.1vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 1.15rem + .9vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { margin: 0 0 1.1em; }
a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; display: block; }

.thb-wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.thb-narrow { max-width: 820px; margin-inline: auto; }
.thb-section { padding-block: clamp(48px, 7vw, 88px); }
.thb-section--mist { background: var(--mist); }
.thb-section--navy { background: var(--navy); color: #fff; }
.thb-section--navy h2, .thb-section--navy h3 { color: #fff; }
.thb-eyebrow {
	font-family: Archivo, sans-serif; font-weight: 700; font-size: .8125rem;
	letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .6rem;
}
.thb-section--navy .thb-eyebrow { color: #F0A9A7; }
.thb-center { text-align: center; }
.thb-lead { font-size: 1.15rem; color: var(--slate); }
.thb-section--navy .thb-lead { color: #C3D0E4; }

/* ---------- buttons ---------- */
.thb-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	font-family: Archivo, sans-serif; font-weight: 800; font-size: 1rem;
	letter-spacing: .02em; text-transform: uppercase;
	padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
	cursor: pointer; text-decoration: none; transition: all .18s ease; line-height: 1;
}
.thb-btn--red { background: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(189,78,76,.32); }
.thb-btn--red:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(189,78,76,.40); }
.thb-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.thb-btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.thb-btn--navy { background: var(--navy); color: #fff; }
.thb-btn--navy:hover { background: var(--navy-mid); color: #fff; }
.thb-btn--lg { padding: 18px 38px; font-size: 1.0625rem; }
.thb-btn--block { width: 100%; }

/* ---------- header ---------- */
.thb-header { background: var(--navy); position: sticky; top: 0; z-index: 100; }
.thb-header__bar {
	max-width: var(--wrap); margin-inline: auto; padding: 12px var(--pad);
	display: flex; align-items: center; gap: 24px;
}
.thb-logo { flex: 0 0 auto; display: block; }
.thb-logo img { height: 46px; width: auto; }
.thb-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.thb-nav a {
	color: #fff; text-decoration: none; font-weight: 600; font-size: .9375rem;
	letter-spacing: .01em; white-space: nowrap;
}
.thb-nav a:hover { color: #F0A9A7; }
.thb-header__cta { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.thb-header__cta .thb-btn { padding: 12px 22px; font-size: .875rem; }
.thb-burger {
	display: none; background: none; border: 0; padding: 8px; cursor: pointer; margin-left: auto;
}
.thb-burger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; margin: 5px 0; transition: .2s; }

@media (max-width: 1080px) {
	.thb-nav, .thb-header__cta { display: none; }
	.thb-burger { display: block; }
	.thb-header.is-open .thb-nav {
		display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
		position: absolute; inset: 100% 0 auto 0; background: var(--navy-mid);
		padding: 16px var(--pad) 24px; border-top: 1px solid rgba(255,255,255,.12);
	}
	.thb-header.is-open .thb-nav a { padding: 10px 0; width: 100%; font-size: 1.0625rem; }
	.thb-header.is-open .thb-header__cta {
		display: flex; flex-direction: column; align-items: stretch; gap: 10px;
		position: absolute; inset: auto 0 auto 0; background: var(--navy-mid);
		padding: 0 var(--pad) 22px; transform: translateY(100%);
	}
	.thb-header { position: relative; }
}

/* ---------- hero ---------- */
.thb-hero { position: relative; background: var(--navy); overflow: hidden; }
.thb-hero__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .28; }
.thb-hero::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(105deg, rgba(11,31,63,.94) 0%, rgba(11,31,63,.80) 45%, rgba(11,31,63,.55) 100%);
}
.thb-hero__inner {
	position: relative; z-index: 2; max-width: var(--wrap); margin-inline: auto;
	padding: clamp(48px, 7vw, 92px) var(--pad);
	display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center;
}
.thb-hero__copy { color: #fff; }
.thb-hero h1 { color: #fff; margin-bottom: .35em; }
.thb-hero h1 em { font-style: normal; color: #F3B4B2; }
.thb-hero__sub { font-size: clamp(1.05rem, .95rem + .5vw, 1.375rem); color: #D3DDEC; margin-bottom: 1.5rem; font-weight: 500; }
.thb-hero__ticks { list-style: none; margin: 0 0 1.75rem; padding: 0; display: grid; gap: .55rem; }
.thb-hero__ticks li { display: flex; gap: .6rem; align-items: flex-start; color: #E6ECF5; font-size: 1.0625rem; }
.thb-hero__ticks svg { flex: 0 0 auto; margin-top: 4px; }
.thb-stars { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; color: #fff; font-weight: 600; font-size: .9375rem; }
.thb-stars__icons { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }

@media (max-width: 900px) {
	.thb-hero__inner { grid-template-columns: 1fr; }
}

/* ---------- offer card (form) ---------- */
.thb-card {
	background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
	padding: clamp(22px, 3vw, 32px);
}
.thb-card__title { font-family: Archivo, sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--navy); margin: 0 0 .25rem; }
.thb-card__sub { color: var(--slate); font-size: .9375rem; margin: 0 0 1.1rem; }
.thb-field { position: relative; margin-bottom: .85rem; }
.thb-input {
	width: 100%; font: inherit; font-size: 1.0625rem; padding: 16px 18px;
	border: 2px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
	transition: border-color .15s, box-shadow .15s;
}
.thb-input:focus { outline: 0; border-color: var(--red); box-shadow: 0 0 0 4px rgba(189,78,76,.14); }
.thb-input::placeholder { color: #98A2B1; }
.thb-microcopy { font-size: .75rem; line-height: 1.5; color: var(--slate); margin: .85rem 0 0; }
.thb-hero .thb-microcopy { color: #A9B8CE; }
.thb-microcopy a { color: inherit; text-decoration: underline; }

/* ---------- trust bar (large) ---------- */
.thb-trust { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,.10); }
.thb-trust__inner {
	max-width: var(--wrap); margin-inline: auto;
	padding: clamp(26px, 3.4vw, 40px) var(--pad);
	display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 40px);
}
@media (max-width: 860px) { .thb-trust__inner { grid-template-columns: repeat(2, 1fr); row-gap: 26px; } }
.thb-trust__item {
	display: flex; align-items: center; justify-content: center; gap: 14px; color: #fff; text-align: left;
}
.thb-trust__icon { flex: 0 0 auto; display: block; }
.thb-trust__icon svg { width: 38px; height: 38px; fill: var(--gold); display: block; }
.thb-trust__item:nth-child(2) .thb-trust__icon svg,
.thb-trust__item:nth-child(3) .thb-trust__icon svg,
.thb-trust__item:nth-child(4) .thb-trust__icon svg { fill: #fff; }
.thb-trust__txt strong {
	display: block; font-family: Archivo, sans-serif; font-weight: 800;
	font-size: clamp(1.05rem, .95rem + .4vw, 1.35rem); line-height: 1.15; letter-spacing: -.01em;
}
.thb-trust__txt small { display: block; font-size: .8125rem; color: #A9C0DE; margin-top: 3px; }

/* ---------- as seen on ---------- */
.thb-seenon { padding: clamp(30px, 4vw, 46px) var(--pad); background: #fff; }
.thb-seenon__label {
	text-align: center; font-family: Archivo, sans-serif; font-weight: 700; font-size: .8125rem;
	letter-spacing: .18em; text-transform: uppercase; color: #8892A4; margin-bottom: 26px;
}
.thb-seenon__row {
	max-width: var(--wrap); margin-inline: auto;
	display: flex; align-items: center; justify-content: center;
	gap: clamp(28px, 6vw, 76px); flex-wrap: wrap;
}
#thb .thb-seenon__logo, .thb-seenon__logo { height: 34px; width: auto; opacity: .82; }
.thb-seenon__mark {
	font-family: Archivo, sans-serif; font-weight: 800; font-size: 1.05rem;
	letter-spacing: .01em; color: #4A5666; white-space: nowrap;
}

/* ---------- comparison table ---------- */
.thb-compare { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.thb-compare th, .thb-compare td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--line); font-size: .9375rem; }
.thb-compare thead th { background: var(--navy); color: #fff; font-family: Archivo, sans-serif; font-weight: 700; font-size: .9375rem; }
.thb-compare thead th:first-child { background: var(--navy); }
.thb-compare tbody th { text-align: left; font-weight: 600; color: var(--ink); background: var(--mist); font-size: .9375rem; }
.thb-compare tbody tr:last-child th, .thb-compare tbody tr:last-child td { border-bottom: 0; }
.thb-compare .thb-x { color: var(--red); font-weight: 800; font-size: 1.15rem; }
.thb-compare .thb-check { color: var(--green); font-weight: 800; font-size: 1.15rem; }
.thb-compare__us { background: #FCF8F8; }

/* ---------- situation columns ---------- */
.thb-sitgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .thb-sitgrid { grid-template-columns: 1fr; } }
.thb-sitcol { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.thb-sitcol__head { background: var(--navy); color: #fff; font-family: Archivo, sans-serif; font-weight: 800; text-align: center; padding: 13px; font-size: 1.0625rem; }
.thb-sitcol ul { list-style: none; margin: 0; padding: 18px 22px; }
.thb-sitcol li { position: relative; padding-left: 20px; margin-bottom: .55rem; font-size: .9375rem; color: var(--ink); }
.thb-sitcol li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.thb-sitcol li a { color: var(--ink); text-decoration: none; }
.thb-sitcol li a:hover { color: var(--red); text-decoration: underline; }

/* ---------- steps ---------- */
.thb-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
@media (max-width: 860px) { .thb-steps { grid-template-columns: 1fr; } }
.thb-step { text-align: center; }
.thb-step__num {
	width: 74px; height: 74px; border-radius: 50%; background: var(--red); color: #fff;
	display: grid; place-items: center; font-family: Archivo, sans-serif; font-weight: 800;
	font-size: 1.9rem; margin: 0 auto 1rem; box-shadow: 0 6px 18px rgba(189,78,76,.3);
}
.thb-section--navy .thb-step__num { background: #fff; color: var(--navy); box-shadow: none; }

/* ---------- cards / grids ---------- */
.thb-grid { display: grid; gap: 22px; }
.thb-grid--2 { grid-template-columns: repeat(2, 1fr); }
.thb-grid--3 { grid-template-columns: repeat(3, 1fr); }
.thb-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .thb-grid--4 { grid-template-columns: repeat(2, 1fr); } .thb-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .thb-grid--2, .thb-grid--3, .thb-grid--4 { grid-template-columns: 1fr; } }
.thb-tile {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 24px; box-shadow: var(--shadow); transition: transform .18s, box-shadow .18s;
}
.thb-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.thb-tile h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.thb-tile p { margin: 0; color: var(--slate); font-size: .9375rem; }
.thb-tile__icon {
	width: 46px; height: 46px; border-radius: 10px; background: var(--red-soft);
	display: grid; place-items: center; margin-bottom: 14px; color: var(--red);
}

/* ---------- reviews ---------- */
.thb-review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.thb-review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .6rem; }
.thb-review p { font-size: .9375rem; color: var(--ink); }
.thb-review__who { font-weight: 700; color: var(--navy); font-size: .9375rem; margin: 0; }
.thb-review__where { font-size: .8125rem; color: var(--slate); }

/* ---------- rating band ---------- */
.thb-ratingband { background: var(--navy); color: #fff; padding: clamp(40px,5vw,64px) var(--pad); }
.thb-ratingband__score {
	font-family: Archivo, sans-serif; font-weight: 800;
	font-size: clamp(1.4rem,1.1rem+1.3vw,2rem);
	display: flex; align-items: center; justify-content: center; gap: .7rem; flex-wrap: wrap;
	margin-bottom: clamp(26px,3vw,40px);
}
.thb-ratingband__g { letter-spacing: -.02em; }
.thb-ratingband__score .thb-stars__icons { font-size: 1.5rem; }
.thb-ratingband__grid {
	max-width: var(--wrap); margin-inline: auto;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .thb-ratingband__grid { grid-template-columns: 1fr; } }
.thb-ratingband__card {
	margin: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--radius); padding: 22px; text-align: left;
}
.thb-ratingband__card blockquote {
	margin: 0 0 14px; font-size: .9375rem; line-height: 1.65; color: #E6ECF5; font-style: italic;
}
.thb-ratingband__card figcaption {
	font-weight: 700; color: #fff; font-size: .9375rem; font-style: normal;
}
.thb-ratingband__card figcaption small { display: block; font-weight: 500; font-size: .75rem; color: #A9C0DE; margin-top: 2px; }

/* ---------- location chips ---------- */
.thb-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.thb-chip {
	display: inline-block; padding: 8px 15px; border-radius: 999px; background: #fff;
	border: 1px solid var(--line); color: var(--navy); text-decoration: none;
	font-size: .875rem; font-weight: 600; transition: .15s;
}
.thb-chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.thb-statecols { columns: 4; column-gap: 28px; }
@media (max-width: 900px) { .thb-statecols { columns: 2; } }
@media (max-width: 520px) { .thb-statecols { columns: 1; } }
.thb-statecols a { display: block; padding: 6px 0; color: var(--ink); text-decoration: none; font-size: .9375rem; break-inside: avoid; }
.thb-statecols a:hover { color: var(--red); }

/* ---------- CTA band ---------- */
.thb-ctaband { background: var(--red); color: #fff; text-align: center; padding: clamp(40px,5vw,64px) var(--pad); }
.thb-ctaband h2 { color: #fff; }
.thb-ctaband p { color: #FCE9E8; max-width: 640px; margin-inline: auto; }
.thb-ctaband .thb-btn--navy { box-shadow: 0 6px 20px rgba(0,0,0,.18); }

/* ---------- FAQ ---------- */
.thb-faq { border-top: 1px solid var(--line); }
.thb-faq details { border-bottom: 1px solid var(--line); }
.thb-faq summary {
	cursor: pointer; padding: 18px 40px 18px 0; position: relative; list-style: none;
	font-family: Archivo, sans-serif; font-weight: 700; font-size: 1.0625rem; color: var(--navy);
}
.thb-faq summary::-webkit-details-marker { display: none; }
.thb-faq summary::after {
	content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
	font-size: 1.6rem; color: var(--red); font-weight: 400; line-height: 1;
}
.thb-faq details[open] summary::after { content: "\2013"; }
.thb-faq details > div { padding: 0 0 20px; color: var(--slate); }
.thb-faq details > div p:last-child { margin-bottom: 0; }

/* ---------- prose (blog / page body) ---------- */
.thb-prose { max-width: 760px; }
.thb-prose h2 { margin-top: 2em; }
.thb-prose h3 { margin-top: 1.6em; }
.thb-prose ul, .thb-prose ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.thb-prose li { margin-bottom: .5em; }
.thb-prose ul { list-style: none; padding-left: 0; }
.thb-prose ul li { position: relative; padding-left: 28px; }
.thb-prose ul li::before {
	content: ""; position: absolute; left: 4px; top: .55em; width: 8px; height: 8px;
	border-radius: 50%; background: var(--red);
}
.thb-prose ol li::marker { color: var(--red); font-weight: 700; }
.thb-prose blockquote {
	margin: 1.5em 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--red);
	color: var(--navy); font-size: 1.0625rem;
}
.thb-prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .9375rem; }
.thb-prose th, .thb-prose td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; }
.thb-prose thead th { background: var(--mist); color: var(--navy); font-family: Archivo, sans-serif; }

/* ---------- page hero (interior) ---------- */
.thb-pagehero { background: var(--navy); color: #fff; padding: clamp(40px,5vw,72px) var(--pad); position: relative; overflow: hidden; }
.thb-pagehero__inner { max-width: var(--wrap); margin-inline: auto; position: relative; z-index: 2; }
.thb-pagehero h1 { color: #fff; max-width: 900px; }
.thb-pagehero p { color: #C3D0E4; max-width: 720px; font-size: 1.125rem; margin-bottom: 0; }
.thb-crumbs { font-size: .8125rem; color: #93A5C0; margin-bottom: .9rem; }
.thb-crumbs a { color: #C3D0E4; text-decoration: none; }
.thb-crumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------- footer ---------- */
.thb-footer { background: var(--navy); color: #B6C4D8; padding-top: clamp(40px,5vw,64px); font-size: .9375rem; }
.thb-footer__grid {
	max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad);
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px;
}
@media (max-width: 900px) { .thb-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .thb-footer__grid { grid-template-columns: 1fr; } }
.thb-footer h4 { color: #fff; font-size: .9375rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.thb-footer ul { list-style: none; margin: 0; padding: 0; }
.thb-footer li { margin-bottom: .5rem; }
.thb-footer a { color: #B6C4D8; text-decoration: none; }
.thb-footer a:hover { color: #fff; text-decoration: underline; }
.thb-footer__logo img { height: 44px; margin-bottom: 1rem; }
.thb-footer__phone { font-family: Archivo, sans-serif; font-weight: 800; font-size: 1.4rem; color: #fff; text-decoration: none; display: inline-block; margin-bottom: .3rem; }
.thb-footer__bottom {
	margin-top: clamp(30px,4vw,48px); border-top: 1px solid rgba(255,255,255,.12);
	padding: 20px var(--pad); font-size: .8125rem; color: #8FA1BC;
}
.thb-footer__bottom .thb-wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-inline: 0; }
.thb-footer__disc { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); font-size: .75rem; color: #7D90AD; line-height: 1.65; }

/* ---------- sticky mobile call bar ---------- */
.thb-mobilebar { display: none; }
@media (max-width: 780px) {
	.thb-mobilebar {
		display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: fixed; inset: auto 0 0 0;
		z-index: 200; box-shadow: 0 -4px 20px rgba(11,31,63,.18);
	}
	.thb-mobilebar a {
		padding: 15px 8px; text-align: center; font-family: Archivo, sans-serif; font-weight: 800;
		font-size: .9375rem; text-decoration: none; text-transform: uppercase; letter-spacing: .02em;
	}
	.thb-mobilebar__call { background: var(--navy); color: #fff; }
	.thb-mobilebar__offer { background: var(--red); color: #fff; }
	body { padding-bottom: 54px; }
}

/* ---------- utilities ---------- */
.thb-mt0 { margin-top: 0; }
.thb-mb0 { margin-bottom: 0; }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.thb-skip {
	position: absolute; left: -9999px; top: 0; background: #fff; color: var(--navy);
	padding: 12px 20px; z-index: 999;
}
.thb-skip:focus { left: 8px; top: 8px; }

/* Core block rhythm would insert 24px between every top-level block; the
   design system owns vertical spacing via .thb-section. */
:where(.wp-site-blocks) > *,
.wp-site-blocks > * { margin-block-start: 0; margin-block-end: 0; }
.wp-site-blocks { display: block; }
main.wp-block-group > * + * { margin-block-start: 0; }

/* ---------- split section: copy beside the offer card ---------- */
.thb-split {
	display: grid; grid-template-columns: 1.08fr .92fr;
	gap: clamp(28px, 4vw, 56px); align-items: start;
}
.thb-split > .wp-block-group { min-width: 0; }
.thb-split .thb-prose { max-width: none; }
.thb-split .thb-offer { position: sticky; top: 92px; }
@media (max-width: 900px) {
	.thb-split { grid-template-columns: 1fr; }
	.thb-split .thb-offer { position: static; }
}

/* ---------- post cards with covers ---------- */
.thb-tile--post { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.thb-tile--post .thb-tile__img { margin: 0; }
.thb-tile--post .thb-tile__img img,
.thb-tile--post figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thb-tile--post .wp-block-post-featured-image { margin: 0; aspect-ratio: 16/9; overflow: hidden; background: var(--mist); }
.thb-tile__body { padding: 22px 24px 26px; }
.thb-tile--post h3 { font-size: 1.125rem; margin-bottom: .35rem; line-height: 1.3; }
.thb-tile--post h3 a { color: var(--navy); text-decoration: none; }
.thb-tile--post h3 a:hover { color: var(--red); }
.thb-tile__date { font-size: .8125rem; color: var(--slate); margin-bottom: .5rem; }
.thb-tile--post p { font-size: .9375rem; color: var(--slate); margin: 0; }

/* ---------- images inside posts ---------- */
.thb-prose figure.wp-block-image { margin: 2em 0; }
.thb-prose figure.wp-block-image img { width: 100%; border-radius: var(--radius); display: block; }
.thb-prose figure.wp-block-image figcaption {
	font-size: .8125rem; color: var(--slate); text-align: center; margin-top: .7rem;
}
