/* Directory listing hero + grid cards (logos, social icons) */
.hemp-directory-hero {
	margin: 0;
	padding: 0;
	border: none;
}

.hemp-directory-hero__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 1rem 1.25rem;
}

.hemp-directory-hero__logo {
	flex: 0 0 auto;
}

.hemp-directory-hero__logo .hemp-directory-logo-img {
	display: block;
	width: 120px;
	height: 120px;
	max-width: min(120px, 28vw);
	max-height: min(120px, 28vw);
	object-fit: contain;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.04);
	padding: 0.35rem;
	box-sizing: border-box;
}

.hemp-directory-hero__text {
	flex: 1 1 220px;
	min-width: 0;
}

.hemp-directory-card {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.hemp-directory-card__logo {
	display: block;
	align-self: flex-start;
	margin-bottom: 0.15rem;
	text-decoration: none;
}

.hemp-directory-card__logo-img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: contain;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.04);
	padding: 0.25rem;
	box-sizing: border-box;
}

.hemp-directory-hero__title {
	margin: 0 0 0.35rem;
	font-size: clamp(1.85rem, 4.5vw, 2.65rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.hemp-directory-hero__meta {
	margin: 0;
	font-size: 1rem;
	color: rgba(0, 0, 0, 0.65);
}

.hemp-directory-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.65rem;
	margin-top: 1rem;
}

.hemp-directory-social__label {
	width: 100%;
	margin: 0;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgba(0, 0, 0, 0.55);
}

.hemp-directory-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.65rem;
	height: 2.65rem;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.06);
	color: #1a1a1a;
	transition: background 0.15s ease, transform 0.12s ease;
	text-decoration: none;
}

.hemp-directory-social__link:hover,
.hemp-directory-social__link:focus {
	background: rgba(0, 0, 0, 0.11);
	transform: translateY(-1px);
	color: #000;
}

.hemp-directory-social__link svg {
	width: 1.4rem;
	height: 1.4rem;
	display: block;
	fill: currentColor;
}

.hemp-directory-upgrade__social-tease {
	margin-top: 0.5rem;
	font-size: 0.95rem;
	color: rgba(0, 0, 0, 0.75);
}

/* Directory index grid (SSR + live search) */
.hemp-directory-grid {
	display: grid;
	gap: 1.25rem 1rem;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
	align-items: stretch;
}

.hemp-directory-live {
	position: relative;
	min-height: 2rem;
}

.hemp-directory-live.is-loading .hemp-directory-grid--live {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

/* Hidden unless JS sets .is-active (avoids themes overriding [hidden]) */
.hemp-directory-live__loading {
	display: none !important;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 0.65rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: rgba(6, 40, 30, 0.72);
}

.hemp-directory-live__loading.is-active {
	display: flex !important;
}

.hemp-directory-live__loading:not(.is-active) .hemp-directory-live__loading-inner {
	animation: none;
}

.hemp-directory-live__loading-inner {
	flex-shrink: 0;
	width: 1.1rem;
	height: 1.1rem;
	border: 2px solid rgba(13, 92, 58, 0.2);
	border-top-color: #0d5c3a;
	border-radius: 50%;
	animation: hemp-dir-spin 0.65s linear infinite;
}

@keyframes hemp-dir-spin {
	to {
		transform: rotate(360deg);
	}
}

.hemp-directory-live__error,
.hemp-directory-live__empty {
	margin: 0;
	padding: 1rem 0;
	color: rgba(0, 0, 0, 0.72);
}

.hemp-directory-live__status--error:not(.screen-reader-text) {
	color: #b32d2e;
}

.hemp-directory-pagination--live {
	margin-top: 1.75rem;
	margin-bottom: 0.25rem;
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
}

.hemp-directory-pagination--live .hemp-directory-pagination__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 1.15rem 1rem 1.25rem;
	background: linear-gradient(180deg, rgba(244, 249, 246, 0.65) 0%, rgba(255, 255, 255, 0.92) 100%);
	border: 1px solid rgba(13, 92, 58, 0.14);
	border-radius: 14px;
	box-shadow: 0 2px 14px rgba(6, 40, 30, 0.05);
}

.hemp-directory-pagination__meta {
	margin: 0;
	text-align: center;
	font-size: 0.95rem;
	font-weight: 600;
	color: rgba(6, 40, 30, 0.78);
	line-height: 1.45;
}

.hemp-directory-pagination__meta-gap {
	font-weight: 400;
	color: rgba(6, 40, 30, 0.45);
}

.hemp-directory-pagination__meta-pages {
	display: inline-block;
	margin-left: 0.15rem;
	color: rgba(6, 40, 30, 0.62);
	font-weight: 700;
}

.hemp-directory-pagination__controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.65rem;
	width: 100%;
}

.hemp-directory-pagination__step {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 2.75rem;
	padding: 0.45rem 1rem;
	border-radius: 10px;
	border: 1px solid rgba(13, 92, 58, 0.35);
	background: #fff;
	color: #063d27 !important;
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none !important;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.hemp-directory-pagination__step:hover,
.hemp-directory-pagination__step:focus {
	background: #e8f4ec;
	border-color: #0d5c3a;
	color: #042516 !important;
	outline: none;
	box-shadow: 0 0 0 2px rgba(13, 92, 58, 0.2);
}

.hemp-directory-pagination__step.is-disabled {
	opacity: 0.38;
	cursor: not-allowed;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.03);
	border-color: rgba(0, 0, 0, 0.08);
	color: rgba(6, 40, 30, 0.45) !important;
}

.hemp-directory-pagination__step-icon {
	font-size: 1rem;
	line-height: 1;
}

.hemp-directory-pagination__nums {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
}

.hemp-directory-pagination__nums .hemp-directory-pagination__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	min-height: 2.75rem;
	padding: 0.35rem 0.55rem;
	border-radius: 10px;
	border: 1px solid rgba(13, 92, 58, 0.22);
	background: #fff;
	color: #063d27 !important;
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none !important;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.hemp-directory-pagination__nums .hemp-directory-pagination__link:hover,
.hemp-directory-pagination__nums .hemp-directory-pagination__link:focus {
	background: rgba(13, 92, 58, 0.08);
	border-color: #0d5c3a;
	outline: none;
}

.hemp-directory-pagination__nums .hemp-directory-pagination__link.is-current {
	background: #0d5c3a;
	border-color: #063d27;
	color: #fff !important;
	pointer-events: none;
	cursor: default;
}

.hemp-directory-pagination__ellipsis {
	display: inline-flex;
	align-items: center;
	padding: 0 0.15rem;
	font-size: 1rem;
	font-weight: 700;
	color: rgba(6, 40, 30, 0.38);
	user-select: none;
}

.hemp-directory-pagination__link.is-current {
	font-weight: 700;
}

/* Advanced directory filters (shortcodes) */
.hemp-directory-filters__advanced {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
	gap: 0.65rem 1rem;
	margin-top: 0.85rem;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hemp-directory-filters__field {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	font-size: 0.9rem;
}

.hemp-directory-filters__label {
	font-weight: 600;
	color: rgba(0, 0, 0, 0.72);
}

.hemp-directory-filters__field input,
.hemp-directory-filters__field select {
	max-width: 100%;
}

/* Facet chips + highlighted snippets */
.hemp-directory-live__facets {
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.hemp-directory-live__facets-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.65rem;
}

.hemp-directory-live__facets-title {
	font-weight: 600;
	font-size: 0.95rem;
}

.hemp-directory-live__clear-filters {
	font-size: 0.85rem;
	padding: 0.4rem 0.75rem;
	cursor: pointer;
	border-radius: 6px;
	border: 1px solid rgba(6, 61, 39, 0.35);
	background: #e4ece7;
	color: #0f1f18 !important;
	font-weight: 600;
	min-height: 2.75rem;
}

.hemp-directory-live__clear-filters:hover,
.hemp-directory-live__clear-filters:focus {
	border-color: #0d5c3a;
	background: #c5dfd0;
	color: #042516 !important;
	outline: none;
}

.hemp-directory-live__clear-filters:focus-visible {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0d5c3a;
}

.hemp-directory-live__facet-group {
	margin-bottom: 0.75rem;
}

.hemp-directory-live__facet-group:last-child {
	margin-bottom: 0;
}

.hemp-directory-live__facet-group-label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgba(0, 0, 0, 0.5);
	margin-bottom: 0.35rem;
}

.hemp-directory-live__facet-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.45rem;
}

.hemp-directory-live__facet-chip {
	display: inline-flex;
	align-items: center;
	font-size: 0.82rem;
	padding: 0.4rem 0.65rem;
	border-radius: 999px;
	border: 1px solid rgba(6, 61, 39, 0.35);
	background: #e4ece7;
	color: #0f1f18 !important;
	cursor: pointer;
	line-height: 1.35;
	min-height: 2.75rem;
	box-sizing: border-box;
}

.hemp-directory-live__facet-chip:hover,
.hemp-directory-live__facet-chip:focus {
	border-color: #0d5c3a;
	background: #d5e5db;
	color: #042516 !important;
	outline: none;
}

.hemp-directory-live__facet-chip:focus-visible {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0d5c3a;
}

.hemp-directory-live__facet-chip.is-active {
	border-color: #0d5c3a;
	background: #c5dfd0;
	color: #042516 !important;
	font-weight: 700;
}

.hemp-directory-card__snippet {
	font-size: 0.88rem;
	line-height: 1.45;
	color: rgba(0, 0, 0, 0.68);
	margin-top: 0.15rem;
}

.hemp-search-hit__hl {
	background: rgba(255, 220, 120, 0.55);
	padding: 0 0.12em;
	border-radius: 2px;
	color: #1a1a1a !important;
}

/* —— Directory hub (index / category / geo): same UX pattern as Hemp News hub —— */
.hemp-directory-hub {
	--hemp-dir-fg: #0f1f18;
	margin: 0 0 1.75rem;
	padding: 1.75rem 1.25rem 1.5rem;
	padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
	padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
	background: linear-gradient(165deg, #f4f9f6 0%, #eef6f1 45%, #e8f2ec 100%);
	border: 1px solid rgba(13, 92, 58, 0.12);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(6, 40, 30, 0.06);
	color: var(--hemp-dir-fg);
}

.hemp-directory-hub--compact {
	padding: 1.25rem 1rem 1.15rem;
	margin-bottom: 1.15rem;
}

.hemp-directory-hub__header {
	margin-bottom: 1.15rem;
	max-width: 46rem;
}

.hemp-directory-hub__title {
	margin: 0 0 0.4rem;
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	font-weight: 800;
	color: #063d27;
	letter-spacing: -0.02em;
}

.hemp-directory-hub__lead {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.55;
	color: rgba(6, 40, 30, 0.82);
}

.hemp-directory-hub__form {
	margin: 0;
}

.hemp-directory-hub__search-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: stretch;
	max-width: 38rem;
	margin-bottom: 1rem;
}

.hemp-directory-hub__input {
	flex: 1 1 12rem;
	min-height: 2.85rem;
	padding: 0.55rem 1rem;
	font-size: 1rem;
	border: 2px solid rgba(13, 92, 58, 0.25);
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
	color: var(--hemp-dir-fg);
}

.hemp-directory-hub__input:focus {
	outline: none;
	border-color: #0d5c3a;
	box-shadow: 0 0 0 3px rgba(13, 92, 58, 0.2);
}

.hemp-directory-hub__submit,
.hemp-directory-form__submit {
	min-height: 2.85rem;
	padding: 0.55rem 1.25rem;
	font-size: 1rem;
	font-weight: 700;
	color: #fff !important;
	background: #0d5c3a;
	border: 2px solid #063d27;
	border-radius: 10px;
	cursor: pointer;
	box-sizing: border-box;
}

.hemp-directory-hub__submit:hover,
.hemp-directory-hub__submit:focus,
.hemp-directory-form__submit:hover,
.hemp-directory-form__submit:focus {
	background: #0a4a2e;
	border-color: #052818;
	color: #fff !important;
}

.hemp-directory-hub__select {
	display: block;
	max-width: 24rem;
	margin-bottom: 0.75rem;
	min-height: 2.75rem;
	padding: 0.45rem 0.75rem;
	border-radius: 10px;
	border: 2px solid rgba(13, 92, 58, 0.25);
	background: #fff;
	font-size: 1rem;
}

.hemp-directory-hub__topics {
	margin-bottom: 0.85rem;
}

.hemp-directory-hub__topics-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(6, 40, 30, 0.55);
	margin-bottom: 0.45rem;
}

.hemp-directory-hub__topics-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.hemp-directory-hub__topics-list li {
	margin: 0;
}

.hemp-directory-hub__topic-link {
	display: inline-flex;
	align-items: center;
	min-height: 2.75rem;
	padding: 0.35rem 0.85rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: #063d27 !important;
	background: #fff;
	border: 1px solid rgba(13, 92, 58, 0.35);
	border-radius: 999px;
	text-decoration: none;
	box-sizing: border-box;
}

.hemp-directory-hub__topic-link:hover,
.hemp-directory-hub__topic-link:focus {
	background: rgba(13, 92, 58, 0.12);
	border-color: #0d5c3a;
	color: #042516 !important;
}

.hemp-directory-hub__topic-link.is-active {
	background: #0d5c3a;
	border-color: #063d27;
	color: #fff !important;
}

.hemp-directory-hub__advanced {
	flex: 0 1 auto;
	margin: 0;
}

.hemp-directory-hub__advanced-summary {
	align-items: center;
	color: #063d27;
	cursor: pointer;
	display: inline-flex;
	font-weight: 700;
	font-size: 0.92rem;
	min-height: 2.85rem;
	padding: 0.35rem 0.25rem;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.hemp-directory-hub__advanced-inner {
	flex-basis: 100%;
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(13, 92, 58, 0.12);
	width: 100%;
}

.hemp-directory-hub__search-row > .hemp-directory-hub__advanced {
	display: contents;
}

.hemp-directory-hub__search-row > .hemp-directory-hub__advanced > .hemp-directory-hub__advanced-summary {
	order: 3;
}

.hemp-directory-hub__search-row > .hemp-directory-hub__advanced > .hemp-directory-hub__advanced-inner {
	order: 4;
}

.hemp-directory-hub__advanced-inner .hemp-directory-filters__advanced {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.hemp-directory-live--hub {
	--hemp-dir-fg: #0f1f18;
	margin-top: 0.25rem;
}

.hemp-directory-live__kicker {
	margin: 0 0 0.85rem;
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(6, 40, 30, 0.55);
}

/* Directory results: single-column row cards (live search + SSR) */
.hemp-directory-index--hub .hemp-directory-grid,
.hemp-directory-category .hemp-directory-grid,
.hemp-directory-geo .hemp-directory-grid,
.hemp-directory-live--hub .hemp-directory-grid {
	gap: 0.75rem;
	grid-template-columns: 1fr;
	max-width: 52rem;
	margin-inline: auto;
}

.hemp-directory-card--listing {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 12px;
	border: 1px solid rgba(13, 92, 58, 0.1);
	box-shadow: 0 1px 8px rgba(6, 40, 30, 0.04);
	overflow: hidden;
	transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hemp-directory-card--listing:hover {
	box-shadow: 0 6px 24px rgba(6, 40, 30, 0.09);
	border-color: rgba(13, 92, 58, 0.18);
	transform: translateY(-1px);
}

.hemp-directory-card--listing.is-featured {
	border-color: rgba(13, 92, 58, 0.32);
	box-shadow: 0 3px 18px rgba(13, 92, 58, 0.1);
}

.hemp-directory-card--listing .hemp-directory-card__link {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	flex: 1 1 auto;
	min-height: 0;
	min-width: 0;
	text-decoration: none;
	color: var(--hemp-dir-fg) !important;
}

.hemp-directory-card--listing .hemp-directory-card__media {
	flex: 0 0 5.25rem;
	width: 5.25rem;
	min-height: 4.5rem;
	align-self: stretch;
	background: linear-gradient(145deg, rgba(244, 249, 246, 0.95), rgba(230, 240, 234, 0.85));
	border-right: 1px solid rgba(13, 92, 58, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0.45rem;
	box-sizing: border-box;
}

.hemp-directory-card--listing .hemp-directory-card__logo-img {
	width: auto;
	height: auto;
	max-width: 4.25rem;
	max-height: 4.25rem;
	object-fit: contain;
	border-radius: 6px;
	background: #fff;
	padding: 0.2rem;
	box-sizing: border-box;
	box-shadow: 0 1px 3px rgba(6, 40, 30, 0.06);
}

.hemp-directory-card--listing .hemp-directory-card__no-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	min-height: 3.25rem;
	padding: 0.25rem;
	box-sizing: border-box;
}

.hemp-directory-card--listing .hemp-directory-card__no-logo-text {
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(6, 40, 30, 0.42);
}

.hemp-directory-card--listing .hemp-directory-card__body {
	padding: 0.75rem 1rem 0.85rem;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-width: 0;
	gap: 0.3rem;
	justify-content: center;
}

.hemp-directory-card--listing .hemp-directory-card__verified {
	font-size: 0.65rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #0d5c3a;
	background: rgba(13, 92, 58, 0.12);
	align-self: flex-start;
	padding: 0.12rem 0.4rem;
	border-radius: 4px;
}

.hemp-directory-card--listing .hemp-directory-card__tier {
	font-size: 0.7rem;
	font-weight: 700;
	color: rgba(6, 40, 30, 0.65);
	text-transform: capitalize;
}

.hemp-directory-card--listing .hemp-directory-card__title {
	margin: 0;
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.3;
	color: #063d27 !important;
}

.hemp-directory-card--listing .hemp-directory-card__location {
	font-size: 0.84rem;
	color: rgba(6, 40, 30, 0.7);
}

.hemp-directory-card--listing .hemp-directory-card__snippet {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.45;
	color: rgba(6, 40, 30, 0.68) !important;
}

.hemp-directory-card--listing .hemp-directory-card__snippet mark {
	background: rgba(255, 230, 120, 0.55);
	color: inherit;
	padding: 0 0.05em;
	border-radius: 2px;
}

.hemp-directory-card--listing .hemp-directory-card__badge {
	font-size: 0.68rem;
	font-weight: 800;
	color: #8a5a00;
	background: rgba(255, 200, 80, 0.35);
	align-self: flex-start;
	padding: 0.1rem 0.38rem;
	border-radius: 4px;
}

.hemp-directory-card--listing .hemp-directory-card__cta {
	margin-top: 0.15rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: #0d5c3a !important;
}

.hemp-directory-card--listing .hemp-directory-card__website {
	padding: 0.55rem 1rem;
	border-top: 1px solid rgba(13, 92, 58, 0.08);
	background: rgba(244, 249, 246, 0.7);
}

.hemp-directory-card--listing .hemp-directory-card__website-link {
	font-size: 0.84rem;
	font-weight: 600;
	color: #0d5c3a !important;
}

@media (max-width: 640px) {
	.hemp-directory-filters__advanced {
		grid-template-columns: 1fr;
	}

	.hemp-directory-live__facets {
		padding: 0.65rem 0.75rem;
	}

	.hemp-directory-live__facets-head {
		flex-direction: column;
		align-items: stretch;
	}

	.hemp-directory-pagination--live .hemp-directory-pagination__inner {
		padding: 1rem 0.65rem;
	}

	.hemp-directory-pagination__controls {
		flex-direction: column;
	}

	.hemp-directory-pagination__nums {
		order: -1;
		width: 100%;
	}

	.hemp-directory-hub__search-row {
		flex-direction: column;
	}

	.hemp-directory-hub__input {
		font-size: 16px;
		width: 100%;
	}

	.hemp-directory-hub__submit {
		width: 100%;
	}

	.hemp-directory-card--listing:hover {
		transform: none;
	}

	.hemp-directory-card--listing .hemp-directory-card__media {
		flex-basis: 4.5rem;
		width: 4.5rem;
		padding: 0.4rem 0.35rem;
	}

	.hemp-directory-card--listing .hemp-directory-card__logo-img {
		max-width: 3.65rem;
		max-height: 3.65rem;
	}

	.hemp-directory-hero__actions-inner {
		flex-direction: column;
		align-items: stretch;
	}

	.hemp-directory-hero__action--primary {
		justify-content: center;
		text-align: center;
	}
}

/* -------------------------------------------------------------------------
   Single listing (hemp_business): premium profile + contact panel
   ------------------------------------------------------------------------- */

.hemp-directory-hero__shell {
	position: relative;
	margin: 0 0 2rem;
	padding: 1.35rem 1.35rem 1.5rem;
	background: linear-gradient(165deg, #f6fbf8 0%, #eef6f1 42%, #e5efe8 100%);
	border: 1px solid rgba(13, 92, 58, 0.14);
	border-radius: 16px;
	box-shadow: 0 4px 28px rgba(6, 40, 30, 0.07);
	overflow: hidden;
}

.hemp-directory-hero--accent .hemp-directory-hero__shell {
	background: linear-gradient(165deg, #f2faf5 0%, #e8f4ec 38%, #dff0e6 100%);
	border-color: rgba(13, 92, 58, 0.2);
	box-shadow: 0 6px 32px rgba(13, 92, 58, 0.1);
}

.hemp-directory-hero__skip {
	position: absolute;
	left: -9999px;
	z-index: 20;
	padding: 0.5rem 0.85rem;
	font-weight: 700;
	font-size: 0.85rem;
	color: #fff;
	background: #0d5c3a;
	border-radius: 6px;
	text-decoration: none;
}

.hemp-directory-hero__skip:focus {
	left: 0.75rem;
	top: 0.75rem;
	outline: 2px solid #063d27;
	outline-offset: 2px;
}

.hemp-directory-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 1rem;
}

.hemp-directory-hero__badge {
	display: inline-flex;
	align-items: center;
	padding: 0.28rem 0.65rem;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 6px;
	line-height: 1.2;
}

.hemp-directory-hero__badge--featured {
	color: #5c4300;
	background: linear-gradient(180deg, #ffe7a8, #ffd057);
	border: 1px solid rgba(140, 100, 0, 0.25);
}

.hemp-directory-hero__badge--verified {
	color: #fff;
	background: #0d5c3a;
	border: 1px solid #063d27;
}

.hemp-directory-hero__badge--tier {
	color: rgba(6, 40, 30, 0.85);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(13, 92, 58, 0.22);
}

.hemp-directory-hero .hemp-directory-hero__inner {
	margin: 0;
	padding-bottom: 0;
	border-bottom: none;
	gap: 1.15rem 1.35rem;
	align-items: center;
}

.hemp-directory-hero__logo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	max-width: min(120px, 28vw);
	max-height: min(120px, 28vw);
	border-radius: 14px;
	background: linear-gradient(145deg, #0d5c3a, #1a7a52);
	box-shadow: 0 4px 16px rgba(13, 92, 58, 0.28);
	flex-shrink: 0;
}

.hemp-directory-hero__monogram {
	font-size: clamp(2.5rem, 8vw, 3.25rem);
	font-weight: 800;
	line-height: 1;
	color: #fff;
	letter-spacing: -0.03em;
	user-select: none;
}

.hemp-directory-hero__logo .hemp-directory-logo-img {
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(6, 40, 30, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.65);
}

.hemp-directory-hero__chips {
	list-style: none;
	margin: 0.65rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.hemp-directory-hero__chip {
	display: inline-block;
	padding: 0.28rem 0.65rem;
	font-size: 0.78rem;
	font-weight: 600;
	border-radius: 999px;
	line-height: 1.35;
}

.hemp-directory-hero__chip--category {
	color: #063d27;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(13, 92, 58, 0.2);
}

.hemp-directory-hero__chip--cert {
	color: rgba(6, 40, 30, 0.88);
	background: rgba(13, 92, 58, 0.1);
	border: 1px solid rgba(13, 92, 58, 0.15);
}

.hemp-directory-hero__service {
	margin: 0.75rem 0 0;
	font-size: 0.92rem;
	line-height: 1.5;
	color: rgba(6, 40, 30, 0.78);
}

.hemp-directory-hero__service-label {
	font-weight: 800;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(6, 40, 30, 0.5);
	margin-right: 0.35rem;
}

.hemp-directory-hero__actions {
	margin-top: 1.1rem;
}

.hemp-directory-hero__actions-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.65rem;
}

.hemp-directory-hero__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.65rem;
	padding: 0.45rem 1rem;
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none !important;
	border-radius: 10px;
	border: 1px solid rgba(13, 92, 58, 0.35);
	background: #fff;
	color: #063d27 !important;
	box-sizing: border-box;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.hemp-directory-hero__action:hover,
.hemp-directory-hero__action:focus {
	background: rgba(255, 255, 255, 0.95);
	border-color: #0d5c3a;
	box-shadow: 0 2px 10px rgba(6, 40, 30, 0.08);
	color: #042516 !important;
}

.hemp-directory-hero__action--primary {
	background: #0d5c3a;
	border-color: #063d27;
	color: #fff !important;
}

.hemp-directory-hero__action--primary:hover,
.hemp-directory-hero__action--primary:focus {
	background: #0a4a2e;
	color: #fff !important;
}

.hemp-directory-hero__action--secondary {
	background: rgba(255, 255, 255, 0.75);
}

.hemp-directory-hero__action--ghost {
	background: transparent;
	border-style: dashed;
	border-color: rgba(13, 92, 58, 0.35);
}

.hemp-directory-hero .hemp-directory-social {
	margin-top: 1.15rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(13, 92, 58, 0.12);
}

.hemp-directory-hero .hemp-directory-social__link {
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(13, 92, 58, 0.12);
}

/* Contact + claim panel */
.hemp-directory-single-bottom {
	margin-top: 2.5rem;
}

.hemp-directory-ctas--panel {
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	padding: 1.75rem 1.5rem 1.85rem;
	background: linear-gradient(180deg, #fff 0%, #fafdfb 100%);
	border: 1px solid rgba(13, 92, 58, 0.16);
	border-radius: 16px;
	box-shadow: 0 8px 36px rgba(6, 40, 30, 0.08);
	scroll-margin-top: 1.5rem;
}

.hemp-directory-ctas__head {
	margin-bottom: 1.15rem;
	text-align: center;
}

.hemp-directory-ctas__title {
	margin: 0 0 0.45rem;
	font-size: clamp(1.35rem, 3.5vw, 1.65rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #063d27;
	line-height: 1.2;
}

.hemp-directory-ctas__lead {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.55;
	color: rgba(6, 40, 30, 0.68);
	max-width: 36rem;
	margin-inline: auto;
}

.hemp-directory-badges--inline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.45rem;
	margin: 0 0 1.1rem;
}

.hemp-directory-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.22rem 0.55rem;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 6px;
}

.hemp-directory-badge--verified {
	color: #fff;
	background: #0d5c3a;
}

.hemp-directory-badge--tier {
	color: rgba(6, 40, 30, 0.8);
	background: rgba(13, 92, 58, 0.1);
	border: 1px solid rgba(13, 92, 58, 0.15);
}

.hemp-directory-assets {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem 1rem;
	margin: 0 0 1.25rem;
}

.hemp-directory-asset-link {
	font-weight: 700;
	font-size: 0.92rem;
	color: #0d5c3a !important;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.hemp-directory-asset-link:hover,
.hemp-directory-asset-link:focus {
	color: #063d27 !important;
}

.hemp-directory-upgrade--panel {
	margin: 0 0 1.35rem;
	padding: 1rem 1.1rem;
	background: rgba(244, 249, 246, 0.95);
	border: 1px dashed rgba(13, 92, 58, 0.28);
	border-radius: 12px;
}

.hemp-directory-upgrade__title {
	margin: 0 0 0.35rem;
	font-size: 0.95rem;
	font-weight: 800;
	color: #063d27;
}

.hemp-directory-upgrade__text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: rgba(6, 40, 30, 0.75);
}

.hemp-directory-upgrade__buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.45rem;
	margin: 0 0 1.35rem;
}

.hemp-directory-upgrade__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.55rem;
	padding: 0.4rem 0.85rem;
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none !important;
	border-radius: 10px;
	border: 1px solid rgba(13, 92, 58, 0.35);
	background: #fff;
	color: #063d27 !important;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.hemp-directory-upgrade__btn:hover,
.hemp-directory-upgrade__btn:focus {
	background: rgba(13, 92, 58, 0.08);
	border-color: #0d5c3a;
}

.hemp-directory-upgrade__btn--annual {
	background: rgba(13, 92, 58, 0.1);
	border-color: rgba(13, 92, 58, 0.45);
}

.hemp-directory-ctas__form-block {
	margin-top: 1.35rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(13, 92, 58, 0.1);
}

.hemp-directory-ctas__form-block--lead {
	margin-top: 1.5rem;
	padding-top: 0;
	border-top: none;
}

.hemp-directory-ctas__subheading {
	margin: 0 0 0.65rem;
	font-size: 1.05rem;
	font-weight: 800;
	color: #063d27;
	letter-spacing: -0.01em;
}

.hemp-directory-ctas__hint {
	margin: -0.35rem 0 0.85rem;
	font-size: 0.9rem;
	color: rgba(6, 40, 30, 0.65);
	line-height: 1.45;
}

.hemp-directory-ctas__form-block--claim {
	background: rgba(248, 250, 249, 0.85);
	margin: 1.5rem -1.25rem -1.5rem;
	padding: 1.35rem 1.25rem 1.5rem;
	border-radius: 0 0 15px 15px;
	border-top: 1px solid rgba(13, 92, 58, 0.1);
}

@media (prefers-reduced-motion: reduce) {
	.hemp-directory-card--listing,
	.hemp-directory-hero__action,
	.hemp-directory-social__link {
		transition: none;
	}
}

/* -------------------------------------------------------------------------
   Listing narrative: “Company profile” (between hero and contact)
   ------------------------------------------------------------------------- */

.hemp-directory-listing-body {
	position: relative;
	margin: 0 auto 2.5rem;
	max-width: min(100%, 52rem);
	scroll-margin-top: 1.25rem;
	padding: 1.65rem 1.5rem 1.85rem;
	background: linear-gradient(180deg, #fff 0%, #fafcfb 55%, #f4f9f6 100%);
	border: 1px solid rgba(13, 92, 58, 0.18);
	border-radius: 18px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 12px 40px rgba(6, 40, 30, 0.07);
	overflow: hidden;
}

.hemp-directory-listing-body--empty {
	border-style: dashed;
	background: linear-gradient(180deg, #fcfdfc 0%, #f5faf7 100%);
}

.hemp-directory-listing-body__accent {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: linear-gradient(180deg, #0d5c3a 0%, #1a8f5c 45%, #0d5c3a 100%);
	opacity: 0.92;
	border-radius: 18px 0 0 18px;
}

.hemp-directory-listing-body__layout {
	position: relative;
	margin-left: 0.5rem;
	padding-left: 1.1rem;
	border-left: 1px solid rgba(13, 92, 58, 0.1);
}

@media (min-width: 600px) {
	.hemp-directory-listing-body__layout {
		margin-left: 0.65rem;
		padding-left: 1.35rem;
	}
}

.hemp-directory-listing-body__header {
	margin: 0 0 1.35rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid rgba(13, 92, 58, 0.12);
}

.hemp-directory-listing-body__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(13, 92, 58, 0.75);
}

.hemp-directory-listing-body__title {
	margin: 0 0 0.45rem;
	font-size: clamp(1.45rem, 3.8vw, 1.85rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.15;
	color: #063d27;
}

.hemp-directory-listing-body__deck {
	margin: 0;
	max-width: 42rem;
	font-size: 1.02rem;
	line-height: 1.55;
	font-weight: 500;
	color: rgba(6, 40, 30, 0.68);
}

.hemp-directory-listing-body__prose {
	max-width: 48rem;
	font-size: 1.0625rem;
	line-height: 1.72;
	color: rgba(15, 31, 24, 0.92);
}

.hemp-directory-listing-body__prose > p:first-of-type {
	font-size: 1.14rem;
	line-height: 1.68;
	font-weight: 500;
	color: rgba(6, 40, 30, 0.94);
	letter-spacing: -0.01em;
}

.hemp-directory-listing-body__prose p {
	margin: 0 0 1.1em;
}

.hemp-directory-listing-body__prose p:last-child {
	margin-bottom: 0;
}

.hemp-directory-listing-body__prose h2,
.hemp-directory-listing-body__prose h3,
.hemp-directory-listing-body__prose h4 {
	margin: 1.65em 0 0.55em;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #063d27;
	line-height: 1.25;
}

.hemp-directory-listing-body__prose h2 {
	font-size: 1.35rem;
}

.hemp-directory-listing-body__prose h3 {
	font-size: 1.18rem;
}

.hemp-directory-listing-body__prose h4 {
	font-size: 1.05rem;
}

.hemp-directory-listing-body__prose ul,
.hemp-directory-listing-body__prose ol {
	margin: 0 0 1.15em;
	padding-left: 1.35em;
}

.hemp-directory-listing-body__prose li {
	margin-bottom: 0.4em;
}

.hemp-directory-listing-body__prose li::marker {
	color: #0d5c3a;
}

.hemp-directory-listing-body__prose a {
	color: #0d5c3a;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.15em;
}

.hemp-directory-listing-body__prose a:hover,
.hemp-directory-listing-body__prose a:focus {
	color: #063d27;
}

.hemp-directory-listing-body__prose blockquote {
	margin: 1.25em 0;
	padding: 0.85rem 1rem 0.85rem 1.1rem;
	border-left: 4px solid rgba(13, 92, 58, 0.45);
	background: rgba(244, 249, 246, 0.85);
	border-radius: 0 10px 10px 0;
	font-style: normal;
	font-size: 1.02rem;
	color: rgba(6, 40, 30, 0.82);
}

.hemp-directory-listing-body__prose img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(6, 40, 30, 0.08);
}

.hemp-directory-listing-body__footer {
	margin: 1.75rem 0 0;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(13, 92, 58, 0.14);
}

.hemp-directory-listing-body__listed {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: rgba(6, 40, 30, 0.58);
	font-weight: 500;
}

.hemp-directory-listing-body__listed time {
	font-weight: 600;
	color: rgba(6, 40, 30, 0.68);
	white-space: nowrap;
}

.hemp-directory-listing-body__placeholder {
	margin: 0;
	padding: 1rem 1.1rem;
	font-size: 1.02rem;
	line-height: 1.6;
	font-weight: 500;
	color: rgba(6, 40, 30, 0.72);
	background: rgba(13, 92, 58, 0.06);
	border-radius: 12px;
	border: 1px dashed rgba(13, 92, 58, 0.22);
}

@media (max-width: 540px) {
	.hemp-directory-listing-body {
		padding: 1.35rem 1.1rem 1.5rem;
		border-radius: 14px;
		margin-bottom: 2rem;
	}

	.hemp-directory-listing-body__layout {
		margin-left: 0.35rem;
		padding-left: 0.85rem;
	}

	.hemp-directory-listing-body__prose {
		font-size: 1rem;
	}

	.hemp-directory-listing-body__prose > p:first-of-type {
		font-size: 1.06rem;
	}
}

/* Directory hub pitch strip (above search) + dedicated overview page */
.hemp-directory-pitch {
	margin: 0 0 1.25rem;
	padding: 1rem 1.15rem;
	border-radius: 14px;
	border: 1px solid rgba(13, 92, 58, 0.18);
	background: linear-gradient(135deg, rgba(13, 92, 58, 0.07), rgba(255, 255, 255, 0.92));
	box-shadow: 0 8px 28px rgba(6, 40, 30, 0.06);
}

.hemp-directory-pitch__inner {
	max-width: 72rem;
	margin: 0 auto;
}

.hemp-directory-pitch__lede {
	margin: 0 0 0.85rem;
	font-size: 1.02rem;
	line-height: 1.55;
	color: rgba(6, 40, 30, 0.88);
}

.hemp-directory-pitch__more {
	font-weight: 600;
	white-space: nowrap;
}

.hemp-directory-pitch__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.65rem;
	align-items: center;
}

/* Pitch + overview actions: same visual language as hub (top-tier / industry-standard contrast) */
.hemp-directory-pitch__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.5rem 1.15rem;
	border-radius: 10px;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none !important;
	box-sizing: border-box;
	border: 2px solid #063d27;
	color: #063d27 !important;
	background: #fff;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hemp-directory-pitch__btn:hover,
.hemp-directory-pitch__btn:focus {
	background: rgba(13, 92, 58, 0.08);
	border-color: #0d5c3a;
	color: #042818 !important;
}

.hemp-directory-pitch__btn--primary {
	background: #0d5c3a;
	border-color: #063d27;
	color: #fff !important;
}

.hemp-directory-pitch__btn--primary:hover,
.hemp-directory-pitch__btn--primary:focus {
	background: #0a4a2e;
	border-color: #052818;
	color: #fff !important;
}

.hemp-directory-pitch__btn--hub {
	border-color: rgba(13, 92, 58, 0.45);
	color: #063d27 !important;
	background: #f4faf7;
}

.hemp-directory-pitch__btn--hub:hover,
.hemp-directory-pitch__btn--hub:focus {
	background: #e8f3ed;
	border-color: #0d5c3a;
}

.hemp-directory-overview {
	max-width: 48rem;
	margin: 0 auto 3rem;
	padding: 0 1rem 2rem;
}

.hemp-directory-overview__hero {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(13, 92, 58, 0.12);
}

.hemp-directory-overview__h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.65rem, 4vw, 2.25rem);
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgba(6, 40, 30, 0.96);
}

.hemp-directory-overview__deck {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.65;
	color: rgba(6, 40, 30, 0.78);
}

.hemp-directory-overview__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 0.65rem;
	margin-top: 1.25rem;
}

.hemp-directory-overview__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.85rem;
	padding: 0.55rem 1.2rem;
	border-radius: 10px;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none !important;
	box-sizing: border-box;
	border: 2px solid #063d27;
	color: #063d27 !important;
	background: #fff;
}

.hemp-directory-overview__cta:hover,
.hemp-directory-overview__cta:focus {
	background: rgba(13, 92, 58, 0.08);
	border-color: #0d5c3a;
	color: #042818 !important;
}

.hemp-directory-overview__cta--primary {
	background: #0d5c3a;
	border: 2px solid #063d27;
	color: #fff !important;
}

.hemp-directory-overview__cta--primary:hover,
.hemp-directory-overview__cta--primary:focus {
	background: #0a4a2e;
	border-color: #052818;
	color: #fff !important;
}

.hemp-directory-overview__cta--hub {
	background: #f4faf7;
	border-color: rgba(13, 92, 58, 0.5);
	color: #063d27 !important;
}

.hemp-directory-overview__cta--hub:hover,
.hemp-directory-overview__cta--hub:focus {
	background: #e8f3ed;
	border-color: #0d5c3a;
	color: #042818 !important;
}

.hemp-directory-overview__section {
	margin: 2rem 0;
	font-size: 1.05rem;
	line-height: 1.65;
	color: rgba(6, 40, 30, 0.82);
}

.hemp-directory-overview__h2 {
	margin: 0 0 0.65rem;
	font-size: 1.28rem;
	font-weight: 700;
	color: rgba(6, 40, 30, 0.94);
}

.hemp-directory-overview__list,
.hemp-directory-overview__steps {
	margin: 0.75rem 0 0;
	padding-left: 1.25rem;
}

.hemp-directory-overview__steps li {
	margin-bottom: 0.65rem;
}

.hemp-directory-overview__section--closing {
	padding-top: 0.5rem;
}

.hemp-directory-overview__final-cta {
	margin: 1.25rem 0 0;
}

/* Claim + inquiry forms (shortcodes): match directory hub field + button system */
.hemp-directory-claim-form,
.hemp-directory-inquiry-form {
	max-width: 36rem;
	margin: 1.5rem 0;
	padding: 1.25rem 1.35rem;
	border-radius: 14px;
	border: 1px solid rgba(13, 92, 58, 0.2);
	background: linear-gradient(180deg, #fff 0%, #f9fcf9 100%);
	box-shadow: 0 6px 24px rgba(6, 40, 30, 0.06);
	box-sizing: border-box;
}

.hemp-directory-claim-form--claimed,
.hemp-directory-claim-form--landing {
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(6, 40, 30, 0.88);
}

.hemp-directory-claim-form--landing {
	padding: 1.35rem 1.4rem;
}

.hemp-directory-claim-form--landing .hemp-directory-claim-form__landing-title {
	margin: 0 0 0.65rem;
	font-size: 1.35rem;
	font-weight: 800;
	color: #063d27;
}

.hemp-directory-claim-form--landing .hemp-directory-claim-form__landing-code {
	display: block;
	margin: 0.75rem 0;
	padding: 0.65rem 0.85rem;
	font-size: 0.88rem;
	font-family: ui-monospace, Consolas, monospace;
	word-break: break-all;
	background: rgba(13, 92, 58, 0.06);
	border: 1px solid rgba(13, 92, 58, 0.2);
	border-radius: 8px;
	color: #063d27;
}

.hemp-directory-claim-form h3,
.hemp-directory-inquiry-form h3 {
	margin: 0 0 0.75rem;
	font-size: 1.2rem;
	font-weight: 800;
	color: #063d27;
}

.hemp-directory-claim-form__hint {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	color: rgba(6, 40, 30, 0.75);
}

.hemp-directory-claim-form__form,
.hemp-directory-inquiry-form__form {
	margin: 0;
}

.hemp-directory-claim-form__row,
.hemp-directory-inquiry-form__row {
	margin-bottom: 1rem;
}

.hemp-directory-claim-form__row label,
.hemp-directory-inquiry-form__row label {
	display: block;
	font-size: 0.88rem;
	font-weight: 700;
	color: rgba(6, 40, 30, 0.88);
}

.hemp-directory-claim-form__form input[type="email"],
.hemp-directory-claim-form__form input[type="text"],
.hemp-directory-inquiry-form__form input[type="email"],
.hemp-directory-inquiry-form__form input[type="text"],
.hemp-directory-inquiry-form__form input[type="tel"] {
	width: 100%;
	max-width: 100%;
	min-height: 2.85rem;
	margin-top: 0.35rem;
	padding: 0.55rem 1rem;
	font-size: 1rem;
	border: 2px solid rgba(13, 92, 58, 0.28);
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
	color: #063d27;
}

.hemp-directory-claim-form__form textarea,
.hemp-directory-inquiry-form__form textarea {
	width: 100%;
	max-width: 100%;
	margin-top: 0.35rem;
	padding: 0.55rem 1rem;
	font-size: 1rem;
	line-height: 1.45;
	border: 2px solid rgba(13, 92, 58, 0.28);
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
	color: #063d27;
	resize: vertical;
}

.hemp-directory-claim-form__form input:focus,
.hemp-directory-claim-form__form textarea:focus,
.hemp-directory-inquiry-form__form input:focus,
.hemp-directory-inquiry-form__form textarea:focus {
	outline: none;
	border-color: #0d5c3a;
	box-shadow: 0 0 0 3px rgba(13, 92, 58, 0.2);
}

.hemp-directory-claim-form__row .hemp-directory-form__submit,
.hemp-directory-inquiry-form__row .hemp-directory-form__submit {
	margin-top: 0.25rem;
}

.hemp-directory-inquiry-form__row label input[type="checkbox"] {
	width: auto;
	min-height: unset;
	margin-right: 0.35rem;
	vertical-align: middle;
}

.hemp-directory-claim-form__status,
.hemp-directory-inquiry-form__status {
	min-height: 1.25rem;
	margin-top: 0.75rem;
	font-size: 0.95rem;
	font-weight: 600;
}

@media (max-width: 540px) {
	.hemp-directory-pitch__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hemp-directory-pitch__btn {
		justify-content: center;
	}

	.hemp-directory-overview__cta-row {
		flex-direction: column;
	}

	.hemp-directory-overview__cta {
		justify-content: center;
	}
}

/* -------------------------------------------------------------------------
 * Claim landing: quick search → select listing → claim form (wizard)
 * ------------------------------------------------------------------------- */
.hemp-claim-finder {
	max-width: 52rem;
	margin: 0 auto 2.5rem;
	padding: 0 1rem 1.5rem;
	color: #1a1a1a;
}

.hemp-claim-finder__hero {
	margin-bottom: 2rem;
	padding: 1.75rem 1.5rem 2rem;
	border-radius: 16px;
	background: linear-gradient(135deg, #f4fbf7 0%, #eef6f1 45%, #e8f2ec 100%);
	border: 1px solid rgba(13, 92, 58, 0.12);
	box-shadow: 0 12px 40px rgba(13, 92, 58, 0.08);
}

.hemp-claim-finder__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #0d5c3a;
}

.hemp-claim-finder__h1 {
	margin: 0 0 1rem;
	font-size: clamp(1.65rem, 4.2vw, 2.35rem);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.025em;
	color: #0f2419;
}

.hemp-claim-finder__deck {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.72);
	max-width: 46rem;
}

.hemp-claim-finder__h2 {
	margin: 0 0 0.85rem;
	font-size: clamp(1.15rem, 2.5vw, 1.35rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0f2419;
}

.hemp-claim-finder__steps-wrap {
	margin-bottom: 2rem;
}

.hemp-claim-finder__steps {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: hemp-claim-step;
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 720px) {
	.hemp-claim-finder__steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.1rem;
	}
}

.hemp-claim-finder__steps > li {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	margin: 0;
	padding: 1.1rem 1rem 1.15rem;
	background: #fff;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	min-height: 100%;
	box-sizing: border-box;
}

.hemp-claim-finder__step-num {
	flex: 0 0 auto;
	width: 2.25rem;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 800;
	font-size: 0.95rem;
	color: #fff;
	background: linear-gradient(145deg, #0d5c3a, #0a4a2e);
	box-shadow: 0 2px 8px rgba(13, 92, 58, 0.35);
}

.hemp-claim-finder__step-body {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(0, 0, 0, 0.75);
}

.hemp-claim-finder__step-body strong {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 1rem;
	color: #0f2419;
}

.hemp-claim-finder__panel {
	padding: 1.5rem 1.35rem 1.65rem;
	margin-bottom: 2rem;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(13, 92, 58, 0.15);
	box-shadow: 0 8px 32px rgba(13, 92, 58, 0.07);
}

.hemp-claim-finder__hint {
	margin: 0 0 1.15rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.62);
}

.hemp-claim-finder__controls {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 0.75rem;
	align-items: stretch;
	margin-bottom: 0.75rem;
}

.hemp-claim-finder__input {
	flex: 1 1 12rem;
	min-width: 0;
	font-size: 1rem;
}

.hemp-claim-finder__search-btn {
	flex: 0 0 auto;
	white-space: nowrap;
}

.hemp-claim-finder__status {
	min-height: 1.35rem;
	margin: 0.35rem 0 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #0d5c3a;
}

.hemp-claim-finder__results {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.hemp-claim-finder__results[hidden] {
	display: none !important;
}

.hemp-claim-finder__hit {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	background: #f8faf9;
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hemp-claim-finder__hit:hover {
	border-color: rgba(13, 92, 58, 0.25);
	box-shadow: 0 4px 14px rgba(13, 92, 58, 0.08);
}

.hemp-claim-finder__hit-main {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
	flex: 1 1 10rem;
}

.hemp-claim-finder__hit-title {
	font-weight: 700;
	font-size: 1.02rem;
	color: #0f2419;
	word-break: break-word;
}

.hemp-claim-finder__hit-sub {
	font-size: 0.875rem;
	color: rgba(0, 0, 0, 0.55);
}

.hemp-claim-finder__hit-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.65rem;
	flex: 0 0 auto;
}

.hemp-claim-finder__hit-link {
	font-size: 0.9rem;
	font-weight: 600;
	color: #0d5c3a;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hemp-claim-finder__hit-link:hover {
	color: #0a4a2e;
}

.hemp-claim-finder__hit-select {
	font-size: 0.9rem;
	padding: 0.45rem 0.9rem;
}

.hemp-claim-finder__fallback {
	margin: 1.25rem 0 0;
	font-size: 0.95rem;
}

.hemp-claim-finder__trust {
	padding: 1.35rem 1.25rem 1.5rem;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(13, 92, 58, 0.06) 0%, rgba(13, 92, 58, 0.02) 100%);
	border: 1px solid rgba(13, 92, 58, 0.1);
}

.hemp-claim-finder__trust p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.72);
}

@media (max-width: 540px) {
	.hemp-claim-finder__hero {
		padding: 1.35rem 1.1rem 1.5rem;
	}

	.hemp-claim-finder__controls {
		flex-direction: column;
	}

	.hemp-claim-finder__search-btn {
		width: 100%;
		justify-content: center;
	}

	.hemp-claim-finder__hit {
		flex-direction: column;
		align-items: stretch;
	}

	.hemp-claim-finder__hit-actions {
		justify-content: stretch;
	}

	.hemp-claim-finder__hit-actions .hemp-directory-form__submit {
		flex: 1;
		justify-content: center;
	}
}

/* Pitch: “Get listed” accent */
.hemp-directory-pitch__btn--accent {
	border-color: rgba(13, 92, 58, 0.45);
	background: linear-gradient(180deg, #fff 0%, #f0faf4 100%);
	color: #0d5c3a;
	font-weight: 700;
}

.hemp-directory-pitch__btn--accent:hover,
.hemp-directory-pitch__btn--accent:focus {
	border-color: #0d5c3a;
	background: #fff;
	color: #0a4a2e;
}

/* Get listed / suggest a business */
.hemp-suggest-listing {
	max-width: 52rem;
	margin: 0 auto 2.5rem;
	padding: 0 1rem 1.5rem;
	color: #1a1a1a;
}

.hemp-suggest-listing__hero {
	margin-bottom: 2rem;
	padding: 1.75rem 1.5rem 2rem;
	border-radius: 16px;
	background: linear-gradient(135deg, #f8fbff 0%, #f0f7fb 40%, #ecf5f9 100%);
	border: 1px solid rgba(11, 82, 120, 0.12);
	box-shadow: 0 12px 40px rgba(11, 82, 120, 0.08);
}

.hemp-suggest-listing__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #0b5278;
}

.hemp-suggest-listing__h1 {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 4.5vw, 2.5rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: #0f2419;
}

.hemp-suggest-listing__h2 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.12rem, 2.5vw, 1.35rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0f2419;
}

.hemp-suggest-listing__h3 {
	margin: 0 0 0.65rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: #0f2419;
}

.hemp-suggest-listing__deck {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.72);
	max-width: 46rem;
}

.hemp-suggest-listing__steps {
	margin-bottom: 2rem;
	padding: 1.25rem 1.2rem 1.35rem;
	border-radius: 12px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.hemp-suggest-listing__step-list {
	margin: 0;
	padding-left: 1.25rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.75);
}

.hemp-suggest-listing__step-list li {
	margin-bottom: 0.5rem;
}

.hemp-suggest-listing__req {
	color: #b00020;
	font-weight: 700;
}

.hemp-suggest-listing__gate {
	padding: 1.5rem 1.35rem 1.65rem;
	margin-bottom: 2rem;
	border-radius: 14px;
	background: linear-gradient(180deg, #fffef8 0%, #fff 100%);
	border: 1px solid rgba(180, 140, 40, 0.2);
	text-align: center;
}

.hemp-suggest-listing__gate-lead {
	margin: 0 0 1.25rem;
	font-size: 1.02rem;
	line-height: 1.55;
	color: rgba(0, 0, 0, 0.7);
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.hemp-suggest-listing__gate-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 0.85rem;
	justify-content: center;
	margin-bottom: 0.85rem;
}

.hemp-suggest-listing__gate-primary {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hemp-suggest-listing__gate-secondary {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hemp-suggest-listing__gate-note {
	margin: 0;
	font-size: 0.92rem;
	color: rgba(0, 0, 0, 0.58);
	max-width: 32rem;
	margin-left: auto;
	margin-right: auto;
}

.hemp-suggest-listing__panel {
	padding: 1.5rem 1.35rem 1.65rem;
	margin-bottom: 2rem;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(13, 92, 58, 0.14);
	box-shadow: 0 8px 32px rgba(13, 92, 58, 0.07);
}

.hemp-suggest-listing__hint {
	margin: 0 0 1.15rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(0, 0, 0, 0.62);
}

.hemp-directory-claim-form__row--split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
	gap: 0.85rem 1rem;
	align-items: start;
}

.hemp-suggest-listing__check {
	display: flex;
	gap: 0.55rem;
	align-items: flex-start;
	font-size: 0.95rem;
	line-height: 1.45;
	cursor: pointer;
}

.hemp-suggest-listing__check input {
	margin-top: 0.2rem;
	flex: 0 0 auto;
}

.hemp-directory-suggest-form__success {
	margin-top: 1.25rem;
	padding: 1.25rem 1.1rem;
	border-radius: 12px;
	background: #f4fbf7;
	border: 1px solid rgba(13, 92, 58, 0.18);
}

.hemp-directory-suggest-form__success-body {
	margin: 0 0 1rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.72);
}

.hemp-directory-suggest-form__success-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 0.85rem;
	align-items: center;
}

.hemp-suggest-listing__trust {
	padding: 1.35rem 1.25rem 1.5rem;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(11, 82, 120, 0.06) 0%, rgba(11, 82, 120, 0.02) 100%);
	border: 1px solid rgba(11, 82, 120, 0.1);
}

.hemp-suggest-listing__trust p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.72);
}

.hemp-directory-suggest-form__status {
	min-height: 1.25rem;
}

@media (max-width: 540px) {
	.hemp-suggest-listing__gate-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hemp-suggest-listing__gate-primary,
	.hemp-suggest-listing__gate-secondary {
		justify-content: center;
	}
}
