/* THF Homepage V2 — premium directory dashboard */

body.home {
	background: #050a0e;
}

.thf-home-v2 {
	--thf-bg: #050a0e;
	--thf-panel: #0a1217;
	--thf-panel-2: #0d171d;
	--thf-panel-3: #111d24;
	--thf-line: rgba(255,255,255,.09);
	--thf-line-strong: rgba(255,255,255,.15);
	--thf-text: #f7faf8;
	--thf-muted: #91a19b;
	--thf-accent: #27d98b;
	--thf-accent-soft: rgba(39,217,139,.13);
	--thf-gold: #f3be00;
	background:
		radial-gradient(circle at 15% 0%, rgba(24,101,75,.16), transparent 31%),
		radial-gradient(circle at 90% 12%, rgba(15,71,89,.14), transparent 30%),
		linear-gradient(180deg, #050a0e 0%, #071016 38%, #050a0e 100%);
	color: var(--thf-text);
	padding: 22px 0 56px;
	min-height: 100vh;
}

.thf-home-v2 *,
.thf-home-v2 *::before,
.thf-home-v2 *::after {
	box-sizing: border-box;
}

.thf-home-v2 a {
	color: inherit;
}

.thf-home-shell {
	width: min(94%, 1540px);
	margin: 0 auto;
}

.thf-panel {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.thf-home-intro {
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(420px,.75fr);
	gap: 28px;
	align-items: end;
	padding: 20px 4px 18px;
}

.thf-home-intro-copy {
	max-width: 830px;
}

.thf-kicker,
.thf-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--thf-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.thf-home-intro h1 {
	color: #fff;
	font-size: clamp(32px, 3.2vw, 54px);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: -.035em;
	margin: 8px 0 10px;
	padding: 0;
}

.thf-home-intro p {
	color: #a9b8b2;
	font-size: 15px;
	line-height: 1.65;
	max-width: 760px;
}

.thf-home-search {
	display: grid;
	grid-template-columns: auto minmax(0,1fr) auto;
	align-items: center;
	gap: 12px;
	background: rgba(15,24,30,.94);
	border: 1px solid var(--thf-line-strong);
	border-radius: 999px;
	padding: 7px 8px 7px 17px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 14px 45px rgba(0,0,0,.2);
}

.thf-home-search > i {
	color: var(--thf-muted);
}

.thf-home-search input[type="search"] {
	width: 100%;
	min-width: 0;
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 13px;
	outline: 0;
	padding: 10px 0;
}

.thf-home-search input::placeholder {
	color: #6e7c78;
}

.thf-home-search button,
.thf-solid-button {
	border: 0;
	background: var(--thf-accent);
	color: #05100b;
	font-weight: 800;
	border-radius: 999px;
	padding: 11px 18px;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.thf-home-search button:hover,
.thf-solid-button:hover {
	transform: translateY(-1px);
	background: #45e9a0;
	box-shadow: 0 10px 28px rgba(39,217,139,.18);
}

.thf-home-top-grid {
	display: grid;
	grid-template-columns: minmax(0, 3.45fr) minmax(280px, .9fr);
	gap: 14px;
	align-items: start;
}

.thf-home-primary {
	display: grid;
	gap: 12px;
	min-width: 0;
}

.thf-featured-hero {
	padding: 14px;
	overflow: hidden;
}

.thf-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
}

.thf-section-heading h2,
.thf-rail-heading h2,
.thf-loop-panel h2,
.thf-social-panel h2,
.thf-business-cta h2 {
	color: #fff;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 760;
	letter-spacing: -.02em;
	padding: 0;
	margin: 3px 0 0;
}

.thf-section-heading > a,
.thf-featured-heading > a {
	color: var(--thf-accent);
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
}

.thf-section-heading > a i,
.thf-featured-heading > a i {
	margin-left: 6px;
	transition: transform .2s ease;
}

.thf-section-heading > a:hover i,
.thf-featured-heading > a:hover i {
	transform: translateX(3px);
}

/* Verified listing shortcode re-composed into the hero mosaic. */
.thf-featured-hero .swiper.ListingSwiper {
	overflow: visible;
}

.thf-featured-hero ul.directory-listing.full {
	display: grid !important;
	grid-template-columns: 2.05fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-template-areas:
		"feature second second"
		"feature third fourth";
	gap: 10px !important;
	padding: 0 !important;
	margin: 0 !important;
	height: 430px;
	list-style: none !important;
	overflow: hidden;
}

.thf-featured-hero ul.directory-listing.full > li {
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	height: 100%;
}

.thf-featured-hero ul.directory-listing.full > li:nth-child(1) { grid-area: feature; }
.thf-featured-hero ul.directory-listing.full > li:nth-child(2) { grid-area: second; }
.thf-featured-hero ul.directory-listing.full > li:nth-child(3) { grid-area: third; }
.thf-featured-hero ul.directory-listing.full > li:nth-child(4) { grid-area: fourth; }

.thf-featured-hero .listing-wrapper {
	position: relative;
	height: 100%;
	min-height: 0;
	border-radius: 13px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.1);
	background: #10191f;
	isolation: isolate;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.thf-featured-hero .listing-wrapper:hover {
	transform: translateY(-2px);
	border-color: rgba(39,217,139,.36);
	box-shadow: 0 16px 32px rgba(0,0,0,.28);
}

.thf-featured-hero .listing-wrapper::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(3,8,10,.06) 20%, rgba(3,8,10,.45) 52%, rgba(3,8,10,.96) 100%);
}

.thf-featured-hero li:first-child .listing-wrapper::before {
	content: "★  Featured Verified Listing";
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 6;
	color: #d9fff0;
	background: rgba(8,38,28,.88);
	border: 1px solid rgba(39,217,139,.42);
	border-radius: 8px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .055em;
	text-transform: uppercase;
	padding: 8px 10px;
	backdrop-filter: blur(10px);
}

.thf-featured-hero .image-wrapper {
	position: absolute !important;
	inset: 0;
	margin: 0 !important;
	height: 100% !important;
	width: 100%;
}

.thf-featured-hero img.banner-image {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-height: none !important;
	object-fit: cover;
	transition: transform .45s ease;
}

.thf-featured-hero .listing-wrapper:hover img.banner-image {
	transform: scale(1.035);
}

.thf-featured-hero .avatar-container {
	position: absolute !important;
	top: 14px;
	right: 14px;
	left: auto !important;
	bottom: auto !important;
	margin: 0 !important;
	z-index: 5;
}

.thf-featured-hero .avatar-wrapper {
	width: 54px !important;
	height: 54px !important;
	border-radius: 50% !important;
	background: rgba(7,14,17,.84);
	border: 1px solid rgba(255,255,255,.2) !important;
	padding: 2px;
	overflow: hidden;
}

.thf-featured-hero li:first-child .avatar-wrapper {
	width: 68px !important;
	height: 68px !important;
}

.thf-featured-hero .avatar-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	border-radius: 50%;
}

.thf-featured-hero .location,
.thf-featured-hero .google-rating {
	position: absolute;
	z-index: 5;
	top: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	width: auto !important;
	background: rgba(5,11,14,.78);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 7px;
	padding: 6px 8px;
	color: #d8e4df;
	font-size: 10px;
	backdrop-filter: blur(8px);
}

.thf-featured-hero li:first-child .location {
	top: auto;
	bottom: 92px;
	left: 18px;
}

.thf-featured-hero .google-rating {
	top: 14px;
	left: 14px;
	color: #fff;
}

.thf-featured-hero .location + .google-rating {
	left: 14px;
	top: 48px;
}

.thf-featured-hero li:first-child .location + .google-rating {
	top: auto;
	bottom: 92px;
	left: 130px;
}

.thf-featured-hero .stars {
	color: var(--thf-gold) !important;
	font-size: 9px;
}

.thf-featured-hero h3.listing-title,
.thf-featured-hero .listing-title {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 42px;
	z-index: 5;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 16px !important;
	line-height: 1.14 !important;
	font-weight: 800 !important;
	color: #fff !important;
}

.thf-featured-hero li:first-child h3.listing-title {
	left: 18px;
	bottom: 50px;
	font-size: clamp(24px, 2.2vw, 36px) !important;
	max-width: 72%;
}

.thf-featured-hero h3.listing-title a {
	color: #fff !important;
}

.thf-featured-hero .listing-wrapper > p {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 12px;
	z-index: 5;
	color: #aebbb6 !important;
	font-size: 10px !important;
	line-height: 1.35 !important;
	padding: 0 !important;
	margin: 0 !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.thf-featured-hero li:first-child .listing-wrapper > p {
	left: 18px;
	bottom: 18px;
	max-width: 66%;
	font-size: 12px !important;
}

.thf-featured-hero .verified {
	color: var(--thf-accent) !important;
	margin-left: 6px;
}

/* Trust strip */
.thf-trust-strip {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 0;
	align-items: stretch;
	padding: 13px 16px;
}

.thf-trust-brand,
.thf-trust-item {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
	padding: 8px 15px;
}

.thf-trust-item {
	border-left: 1px solid var(--thf-line);
}

.thf-trust-mark,
.thf-trust-item > i {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: var(--thf-accent);
	background: var(--thf-accent-soft);
	border: 1px solid rgba(39,217,139,.25);
}

.thf-trust-mark {
	width: 54px;
	height: 54px;
	font-size: 22px;
}

.thf-trust-brand strong,
.thf-trust-item strong {
	display: block;
	color: #fff;
	font-size: 12px;
	line-height: 1.2;
}

.thf-trust-brand strong {
	font-size: 17px;
}

.thf-trust-brand span:not(.thf-trust-mark),
.thf-trust-item span {
	display: block;
	color: #82928c;
	font-size: 9px;
	line-height: 1.45;
	margin-top: 3px;
}

/* Sponsored right rail */
.thf-sponsored-panel {
	padding: 14px;
	position: sticky;
	top: 12px;
}

.thf-rail-heading {
	margin-bottom: 10px;
}

.thf-sponsored-content {
	display: grid;
	gap: 9px;
}

.thf-sponsored-panel .ad-wrapper {
	position: relative;
	min-height: 135px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.1);
	background: #10191f;
}

.thf-sponsored-panel .ad-wrapper > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thf-sponsored-panel .ad-wrapper::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3,7,9,.92), rgba(3,7,9,.45) 62%, rgba(3,7,9,.12));
}

.thf-sponsored-panel .ad-overlay {
	position: relative;
	z-index: 2;
	padding: 14px;
	min-height: 135px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
}

.thf-sponsored-panel .ad-label,
.thf-sponsored-panel .ad-overlay .ad-label {
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(10,63,43,.88);
	border: 1px solid rgba(39,217,139,.38);
	color: #8ff1be;
	font-size: 8px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: 4px 7px;
	border-radius: 999px;
	    line-height: normal;
}

.thf-sponsored-panel .ad-overlay h3 {
	color: #fff !important;
	font-size: 14px !important;
	line-height: 1.18 !important;
	font-weight: 800 !important;
	margin: 0 0 5px !important;
	padding: 0 !important;
	max-width: 78%;
}

.thf-sponsored-panel .ad-overlay p,
.thf-sponsored-panel .ad-overlay strong,
.thf-sponsored-panel .ad-expiration {
	color: #b2c0ba;
	font-size: 9px;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}

.thf-sponsored-panel .profile-link {
	display: inline-flex;
	margin-top: 7px;
	color: var(--thf-accent) !important;
	font-size: 9px;
	font-weight: 800;
}

.thf-outline-button,
.thf-solid-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	margin-top: 10px;
	text-align: center;
	font-size: 10px;
	font-weight: 800;
}

.thf-outline-button {
	color: var(--thf-accent) !important;
	border: 1px solid rgba(39,217,139,.6);
	border-radius: 9px;
	padding: 9px 12px;
	transition: background .2s ease, color .2s ease;
}

.thf-outline-button:hover {
	background: var(--thf-accent-soft);
}

.thf-ad-empty {
	display: grid;
	gap: 6px;
	padding: 22px;
	text-align: center;
	border: 1px dashed rgba(39,217,139,.28);
	border-radius: 12px;
	color: var(--thf-muted);
}

.thf-ad-empty i { color: var(--thf-accent); font-size: 24px; }
.thf-ad-empty strong { color: #fff; }
.thf-ad-empty p { font-size: 11px; line-height: 1.5; padding: 0; }

/* Lower dashboard grid */
.thf-home-content-grid {
	display: grid;
	grid-template-columns: minmax(220px, .82fr) minmax(0, 3fr) minmax(250px, .95fr);
	gap: 14px;
	align-items: start;
	margin-top: 14px;
}

.thf-home-feed,
.thf-community-rail {
	display: grid;
	gap: 14px;
	min-width: 0;
}

/* Latest Updates shortcode */
.thf-latest-panel {
	padding: 14px;
	position: sticky;
	top: 12px;
}

.thf-latest-panel .latest-news > div:first-child p {
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	padding: 0 0 10px;
	border-bottom: 1px solid var(--thf-line);
}

.thf-latest-panel .latest-news > div:first-child p i {
	color: var(--thf-accent);
	margin-right: 6px;
}

.thf-latest-panel .latest-news ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.thf-latest-panel .latest-news li {
	display: grid;
	grid-template-columns: 68px minmax(0,1fr);
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid var(--thf-line);
}

.thf-latest-panel .news-thumbnail,
.thf-latest-panel .news-thumbnail img {
	width: 68px !important;
	height: 58px !important;
	border-radius: 8px;
	object-fit: cover;
	margin: 0 !important;
}

.thf-latest-panel .news-title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #edf4f1 !important;
	font-size: 10px;
	line-height: 1.35;
	font-weight: 700;
}

.thf-latest-panel .news-date {
	display: block;
	color: #6f817a !important;
	font-size: 8px;
	margin-top: 5px;
}

.thf-latest-panel .news-date i { color: var(--thf-accent); }

.thf-latest-panel .more-articles {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 10px;
	color: var(--thf-accent) !important;
	font-size: 10px;
	font-weight: 800;
}

/* Influencer listing shortcode */
.thf-influencer-panel {
	padding: 14px;
	overflow: hidden;
}

.thf-influencer-strip .swiper.ListingSwiper {
	overflow: visible;
}

.thf-influencer-strip ul.directory-listing {
	display: grid !important;
	grid-template-columns: repeat(6, minmax(0,1fr));
	gap: 9px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.thf-influencer-strip ul.directory-listing > li {
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.thf-influencer-strip .listing-wrapper {
	height: 100%;
	min-height: 142px;
	padding: 13px 8px 10px;
	text-align: center;
	background: linear-gradient(180deg, rgba(18,29,35,.9), rgba(10,18,23,.9));
	border: 1px solid var(--thf-line);
	border-radius: 12px;
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.thf-influencer-strip .listing-wrapper:hover {
	transform: translateY(-2px);
	border-color: rgba(39,217,139,.35);
	background: #101c22;
}

.thf-influencer-strip .image-wrapper {
	min-height: 68px;
	margin: 0 0 7px !important;
}

.thf-influencer-strip .avatar-container {
	position: static !important;
	margin: 0 auto !important;
}

.thf-influencer-strip .avatar-wrapper {
	width: 62px !important;
	height: 62px !important;
	margin: 0 auto;
	border-radius: 50% !important;
	padding: 2px;
	background: linear-gradient(145deg, var(--thf-accent), #0d6d4d);
}

.thf-influencer-strip .avatar-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid #10191f;
}

.thf-influencer-strip h3.listing-title {
	font-size: 10px !important;
	line-height: 1.25 !important;
	font-weight: 800 !important;
	padding: 0 !important;
	margin: 0 !important;
}

.thf-influencer-strip h3.listing-title a { color: #fff !important; }

.thf-influencer-strip .listing-wrapper > p {
	color: #7f918a !important;
	font-size: 8px !important;
	line-height: 1.25 !important;
	padding: 5px 0 0 !important;
	margin: 0 !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.thf-influencer-strip .verified { color: var(--thf-accent) !important; font-size: 9px; }

/* City shortcode — override its inline styles intentionally. */
.thf-city-panel {
	padding: 0;
	overflow: hidden;
}

.thf-home-v2 .thf-all-locations {
	padding: 14px !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
}

.thf-home-v2 .thf-all-locations h2 {
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	margin: 0 0 10px !important;
	padding: 0 !important;
}

.thf-home-v2 .thf-all-locations h2 i,
.thf-home-v2 .thf-all-locations a i {
	color: var(--thf-accent) !important;
}

.thf-home-v2 .thf-all-locations ul {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0,1fr)) !important;
	gap: 7px !important;
	padding: 0 !important;
	margin: 0 !important;
	list-style: none !important;
}

.thf-home-v2 .thf-all-locations a {
	display: flex !important;
	align-items: center !important;
	gap: 7px !important;
	padding: 8px 9px !important;
	background: rgba(255,255,255,.025) !important;
	border: 1px solid var(--thf-line) !important;
	border-radius: 8px !important;
	color: #d8e2de !important;
	font-size: 9px !important;
	white-space: nowrap;
	transition: background .2s ease, border-color .2s ease !important;
}

.thf-home-v2 .thf-all-locations a:hover {
	background: var(--thf-accent-soft) !important;
	border-color: rgba(39,217,139,.3) !important;
}

/* Editorial cards */
.thf-editorial-panel,
.thf-cuisine-panel {
	padding: 14px;
}

.thf-editorial-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0,1fr));
	gap: 9px;
}

.thf-editorial-card {
	min-width: 0;
	background: rgba(255,255,255,.025);
	border: 1px solid var(--thf-line);
	border-radius: 12px;
	overflow: hidden;
	transition: transform .22s ease, border-color .22s ease;
}

.thf-editorial-card:hover {
	transform: translateY(-2px);
	border-color: rgba(39,217,139,.28);
}

.thf-editorial-image {
	position: relative;
	display: block;
	aspect-ratio: 1.45/1;
	overflow: hidden;
	background: #152027;
}

.thf-editorial-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(3,8,10,.48));
}

.thf-editorial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.thf-editorial-card:hover img { transform: scale(1.04); }

.thf-editorial-label {
	position: absolute;
	left: 8px;
	bottom: 8px;
	z-index: 2;
	background: rgba(4,11,14,.78);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 6px;
	padding: 4px 7px;
	color: #dbe8e3;
	font-size: 7px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.thf-editorial-placeholder {
	display: grid;
	place-items: center;
	height: 100%;
	color: var(--thf-accent);
	font-size: 24px;
}

.thf-editorial-body { padding: 10px; }

.thf-editorial-body h3 {
	font-size: 12px !important;
	line-height: 1.25 !important;
	font-weight: 800 !important;
	padding: 0 !important;
	margin: 0 0 6px !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.thf-editorial-body h3 a { color: #fff !important; }

.thf-editorial-body p {
	color: #7f8e89 !important;
	font-size: 9px !important;
	line-height: 1.4 !important;
	padding: 0 !important;
	margin: 0 !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Cuisine discovery */
.thf-cuisine-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0,1fr));
	gap: 9px;
}

.thf-cuisine-card {
	position: relative;
	display: block;
	min-height: 190px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--thf-line);
	background: #111d23;
}

.thf-cuisine-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.thf-cuisine-card:hover img { transform: scale(1.05); }

.thf-cuisine-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4,9,11,.04), rgba(4,9,11,.93) 82%);
}

.thf-cuisine-copy {
	position: absolute;
	inset: auto 10px 10px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.thf-cuisine-copy strong {
	color: #fff;
	font-size: 13px;
	font-weight: 800;
}

.thf-cuisine-copy small {
	color: #a0ada8;
	font-size: 8px;
	margin-top: 1px;
}

.thf-cuisine-copy em {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	margin-top: 8px;
	padding: 6px;
	border-radius: 7px;
	background: rgba(25,112,74,.55);
	border: 1px solid rgba(39,217,139,.28);
	color: #c9f8e1;
	font-size: 8px;
	font-style: normal;
	font-weight: 800;
}

/* Right lower rail */
.thf-loop-panel,
.thf-social-panel,
.thf-business-cta {
	padding: 16px;
}

.thf-loop-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 11px;
	color: var(--thf-accent);
	background: var(--thf-accent-soft);
	border: 1px solid rgba(39,217,139,.3);
	font-size: 20px;
	margin-bottom: 12px;
}

.thf-loop-panel h2,
.thf-social-panel h2,
.thf-business-cta h2 {
	font-size: 16px;
	margin: 6px 0 7px;
}

.thf-loop-panel p,
.thf-social-panel p,
.thf-business-cta p {
	color: #84948e;
	font-size: 10px;
	line-height: 1.55;
	padding: 0;
	margin: 0;
}

.thf-social-links {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.thf-social-links a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: rgba(255,255,255,.035);
	border: 1px solid var(--thf-line);
	color: var(--thf-accent) !important;
	transition: transform .2s ease, background .2s ease;
}

.thf-social-links a:hover {
	transform: translateY(-2px);
	background: var(--thf-accent-soft);
}

.thf-business-cta > i {
	color: var(--thf-accent);
	font-size: 24px;
	margin-bottom: 10px;
}

/* Responsive */
body.home,
body.home #page-container,
.thf-home-v2 {
	overflow-x: clip;
}

.thf-home-v2 img,
.thf-home-v2 video,
.thf-home-v2 iframe {
	max-width: 100%;
}

.thf-home-v2 .swiper,
.thf-home-v2 .ListingSwiper,
.thf-home-v2 .thf-home-primary,
.thf-home-v2 .thf-home-feed,
.thf-home-v2 .thf-community-rail,
.thf-home-v2 .thf-panel {
	min-width: 0;
	max-width: 100%;
}

@media (max-width: 1250px) {
	.thf-home-intro { grid-template-columns: 1fr; }
	.thf-home-search { max-width: 760px; }
	.thf-home-top-grid { grid-template-columns: minmax(0, 2.6fr) minmax(250px, .9fr); }
	.thf-trust-strip { grid-template-columns: 1.4fr repeat(2,1fr); }
	.thf-trust-item:nth-child(4),
	.thf-trust-item:nth-child(5) { border-top: 1px solid var(--thf-line); }
	.thf-trust-item:nth-child(4) { border-left: 0; }
	.thf-home-content-grid { grid-template-columns: 230px minmax(0,1fr); }
	.thf-community-rail { grid-column: 1 / -1; grid-template-columns: repeat(3,1fr); }
	.thf-influencer-strip ul.directory-listing { grid-template-columns: repeat(3, minmax(0,1fr)); }
	.thf-editorial-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.thf-cuisine-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 980px) {
	.thf-home-v2 { padding-top: 14px; }
	.thf-home-shell { width: calc(100% - 28px); max-width: 860px; }
	.thf-home-top-grid { grid-template-columns: 1fr; }
	.thf-sponsored-panel,
	.thf-latest-panel { position: static; }
	.thf-sponsored-content { grid-template-columns: repeat(3, minmax(0,1fr)); }
	.thf-featured-hero ul.directory-listing.full {
		height: auto;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 300px 200px 200px;
		grid-template-areas:
			"feature feature"
			"second second"
			"third fourth";
	}
	.thf-featured-hero ul.directory-listing.full > li {
		min-width: 0 !important;
		width: auto !important;
	}
	.thf-trust-strip { grid-template-columns: 1fr 1fr; }
	.thf-trust-brand { grid-column: 1 / -1; }
	.thf-trust-item { border-top: 1px solid var(--thf-line); }
	.thf-trust-item:nth-child(even) { border-left: 0; }
	.thf-home-content-grid { grid-template-columns: 1fr; }
	.thf-latest-panel { order: 2; }
	.thf-home-feed { order: 1; }
	.thf-community-rail { order: 3; grid-template-columns: 1fr 1fr; }
	.thf-community-rail > :last-child { grid-column: 1 / -1; }
	.thf-home-v2 .thf-all-locations ul { grid-template-columns: repeat(4,minmax(0,1fr)) !important; }
}

@media (max-width: 680px) {
	.thf-home-v2 { padding: 8px 0 38px; }
	.thf-home-shell { width: calc(100% - 20px); max-width: none; }
	.thf-panel { border-radius: 12px; }
	.thf-home-intro { gap: 12px; padding: 8px 2px 12px; }
	.thf-home-intro h1 { font-size: clamp(29px, 9vw, 36px); line-height: 1.05; letter-spacing: -.025em; }
	.thf-home-intro p { font-size: 13px; line-height: 1.5; }
	.thf-kicker,
	.thf-section-eyebrow { font-size: 9px; letter-spacing: .055em; }
	.thf-home-search { grid-template-columns: auto minmax(0,1fr); gap: 9px; padding: 7px 8px 7px 13px; border-radius: 13px; }
	.thf-home-search input[type="search"] { font-size: 12px; padding: 8px 0; }
	.thf-home-search button { grid-column: 1 / -1; width: 100%; border-radius: 9px; padding: 10px 14px; }
	.thf-section-heading { align-items: flex-start; flex-wrap: wrap; gap: 6px 10px; }
	.thf-section-heading > div { min-width: 0; }
	.thf-section-heading h2 { font-size: 16px; overflow-wrap: anywhere; }
	.thf-section-heading > a,
	.thf-featured-heading > a { font-size: 9px; white-space: normal; text-align: right; }
	.thf-featured-hero { padding: 10px; }
	.thf-featured-hero .swiper.ListingSwiper { overflow: hidden; width: 100%; }
	.thf-featured-hero ul.directory-listing.full {
		width: 100% !important;
		max-width: 100% !important;
		overflow: hidden !important;
		grid-template-columns: minmax(0,1fr);
		grid-template-rows: 280px repeat(3,172px);
		grid-template-areas: "feature" "second" "third" "fourth";
	}
	.thf-featured-hero ul.directory-listing.full > li {
		min-width: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	.thf-featured-hero li:first-child .listing-wrapper::before { top: 12px; left: 12px; font-size: 8px; padding: 6px 8px; }
	.thf-featured-hero .avatar-container { top: 10px; right: 10px; }
	.thf-featured-hero li:first-child .avatar-wrapper { width: 54px !important; height: 54px !important; }
	.thf-featured-hero li:first-child .location { left: 12px; bottom: 82px; }
	.thf-featured-hero li:first-child .location + .google-rating { left: 118px; bottom: 82px; }
	.thf-featured-hero li:first-child h3.listing-title { left: 12px; right: 12px; bottom: 44px; max-width: 88%; font-size: 23px !important; }
	.thf-featured-hero li:first-child .listing-wrapper > p { left: 12px; right: 12px; bottom: 14px; max-width: 88%; font-size: 10px !important; }
	.thf-sponsored-panel { padding: 10px; }
	.thf-sponsored-content { grid-template-columns: 1fr; }
	.thf-sponsored-panel .ad-wrapper,
	.thf-sponsored-panel .ad-overlay { min-height: 145px; }
	.thf-trust-strip { grid-template-columns: 1fr; padding: 8px 10px; }
	.thf-trust-brand { grid-column: auto; padding: 9px 7px; }
	.thf-trust-item,
	.thf-trust-item:nth-child(even) { border-left: 0; border-top: 1px solid var(--thf-line); padding: 10px 7px; }
	.thf-trust-brand strong { font-size: 15px; }
	.thf-home-content-grid { gap: 10px; margin-top: 10px; }
	.thf-home-feed,
	.thf-community-rail { gap: 10px; }
	.thf-influencer-panel { padding: 10px; }
	.thf-influencer-strip { width: 100%; max-width: 100%; overflow-x: auto; overflow-y: hidden; padding-bottom: 5px; -webkit-overflow-scrolling: touch; }
	.thf-influencer-strip .swiper.ListingSwiper { width: 100%; max-width: 100%; overflow: visible; }
	.thf-influencer-strip ul.directory-listing {
		display: flex !important;
		gap: 8px !important;
		width: max-content !important;
		max-width: none !important;
		overflow: visible !important;
	}
	.thf-influencer-strip ul.directory-listing > li { flex: 0 0 126px; width: 126px !important; min-width: 126px !important; }
	.thf-home-v2 .thf-all-locations { padding: 10px !important; }
	.thf-home-v2 .thf-all-locations ul { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
	.thf-home-v2 .thf-all-locations a { min-width: 0; white-space: normal; line-height: 1.2; }
	.thf-editorial-panel,
	.thf-cuisine-panel { padding: 10px; }
	.thf-editorial-grid { grid-template-columns: 1fr; }
	.thf-editorial-image { min-height: 180px; }
	.thf-cuisine-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; overflow: visible; padding-bottom: 0; }
	.thf-cuisine-card { min-width: 0; min-height: 170px; }
	.thf-community-rail { grid-template-columns: 1fr; }
	.thf-community-rail > :last-child { grid-column: auto; }
}

@media (max-width: 420px) {
	.thf-home-shell { width: calc(100% - 14px); }
	.thf-home-intro h1 { font-size: 28px; }
	.thf-home-search { grid-template-columns: 18px minmax(0,1fr); }
	.thf-featured-hero ul.directory-listing.full { grid-template-rows: 260px repeat(3,165px); }
	.thf-featured-hero li:first-child .location + .google-rating { left: 112px; }
	.thf-home-v2 .thf-all-locations ul { grid-template-columns: 1fr !important; }
	.thf-cuisine-grid { grid-template-columns: 1fr 1fr; }
	.thf-cuisine-card { min-height: 156px; }
	.thf-latest-panel { padding: 10px; }
	.thf-latest-panel .latest-news li { grid-template-columns: 58px minmax(0,1fr); gap: 8px; }
	.thf-latest-panel .news-thumbnail,
	.thf-latest-panel .news-thumbnail img { width: 58px !important; height: 54px !important; }
}
