/* Hemp Quest — dashboard, article quiz, share bar, page hero */

/* —— Full-page hero (guest + member) —— */
.hemp-quest-page {
	max-width: 72rem;
	margin: 0 auto;
}
.hemp-quest-page-hero {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 20px;
	margin-bottom: 1.75rem;
	color: #f4faf6;
	background: #0c4433;
	box-shadow: 0 20px 50px rgba(12, 68, 51, 0.28);
}
.hemp-quest-page-hero--split {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
	gap: 0;
	min-height: clamp(16rem, 28vw, 22rem);
	padding: 0;
}
.hemp-quest-page-hero__panel--left {
	position: relative;
	z-index: 2;
	padding: clamp(1.25rem, 3vw, 2rem);
	background: linear-gradient(135deg, #083328 0%, #0c4433 55%, #155a42 100%);
	border-radius: 20px 0 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid rgba(201, 162, 39, 0.22);
}
.hemp-quest-page-hero__panel--right {
	position: relative;
	border-radius: 0 20px 20px 0;
	overflow: hidden;
	background: linear-gradient(160deg, #1f6b4f 0%, #2d8a5e 50%, #3da870 100%);
}
.hemp-quest-page-hero__panel--right .hemp-quest-page-hero__glow {
	position: absolute;
	right: 8%;
	bottom: 12%;
	width: min(38%, 14rem);
	height: min(38%, 14rem);
	background: radial-gradient(circle, rgba(201, 162, 39, 0.32) 0%, transparent 68%);
	pointer-events: none;
	animation: hemp-quest-glow 6s ease-in-out infinite alternate;
	z-index: 1;
}
.hemp-quest-page-hero__art-stage {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: clamp(16rem, 28vw, 22rem);
	height: 100%;
	padding: 0.5rem 0.75rem 0;
}
.hemp-quest-page-hero__panel--right .hemp-quest-page-hero__img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: min(22rem, 48vh);
	object-fit: contain;
	object-position: center bottom;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.2);
	filter: drop-shadow(0 0 18px rgba(201, 162, 39, 0.2));
	opacity: 0.9;
}
.hemp-quest-page-hero__art-caption {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 0.85rem 1rem 1.5rem;
	background: linear-gradient(180deg, rgba(8, 51, 40, 0.94) 0%, rgba(8, 51, 40, 0.82) 55%, transparent 100%);
	text-align: left;
	pointer-events: none;
}
.hemp-quest-page-hero__art-caption--solo {
	position: relative;
	padding: 1.25rem;
	background: transparent;
}
.hemp-quest-page-hero__art-caption .hemp-quest-page-hero__title {
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
	margin-bottom: 0.4rem;
}
.hemp-quest-page-hero__art-caption .hemp-quest-page-hero__challenge {
	font-size: 0.92rem;
	margin-bottom: 0.35rem;
}
.hemp-quest-page-hero__art-caption .hemp-quest-page-hero__wit {
	font-size: 0.85rem;
	margin-bottom: 0;
}
.hemp-quest-page-hero--no-art {
	grid-template-columns: 1fr;
}
.hemp-quest-page-hero--no-art .hemp-quest-page-hero__panel--left {
	border-radius: 20px;
	border-right: none;
}
.hemp-quest-page-hero--no-art .hemp-quest-page-hero__panel--right {
	display: none;
}
@media (max-width: 720px) {
	.hemp-quest-page-hero--split {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.hemp-quest-page-hero__panel--left {
		border-radius: 20px 20px 0 0;
		border-right: none;
		border-bottom: 1px solid rgba(201, 162, 39, 0.22);
	}
	.hemp-quest-page-hero__panel--right {
		border-radius: 0 0 20px 20px;
	}
	.hemp-quest-page-hero__art-stage {
		min-height: clamp(12rem, 40vw, 16rem);
	}
	.hemp-quest-page-hero__panel--right .hemp-quest-page-hero__img {
		max-height: clamp(12rem, 42vw, 17rem);
	}
}
.hemp-quest-page-hero__member-label {
	margin: 0 0 0.85rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #a7f3d0;
}
.hemp-quest-page-hero--member .hemp-quest-page-hero__member-stats {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}
@keyframes hemp-quest-glow {
	from { opacity: 0.55; transform: scale(1); }
	to { opacity: 0.9; transform: scale(1.08); }
}
.hemp-quest-page-hero__eyebrow {
	display: inline-block;
	margin: 0 0 0.65rem;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	background: rgba(201, 162, 39, 0.22);
	border: 1px solid rgba(201, 162, 39, 0.55);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fde68a;
}
.hemp-quest-page-hero__title {
	margin: 0 0 0.65rem;
	font-size: clamp(2rem, 5vw, 3.15rem);
	line-height: 1.05;
	font-weight: 800;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.hemp-quest-page-hero__challenge {
	margin: 0 0 0.75rem;
	font-size: clamp(1rem, 2vw, 1.15rem);
	line-height: 1.55;
	color: #d1fae5;
	max-width: 36rem;
}
.hemp-quest-page-hero__wit {
	margin: 0 0 1.25rem;
	font-size: 0.98rem;
	line-height: 1.5;
	color: #fde68a;
	max-width: 34rem;
}
.hemp-quest-page-hero__wit em {
	font-style: normal;
}
.hemp-quest-page-hero__cta {
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	padding: 0.75rem 1.5rem !important;
	border-radius: 999px !important;
	background: linear-gradient(180deg, #fde68a 0%, #c9a227 100%) !important;
	color: #083328 !important;
	border: none !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.hemp-quest-page-hero__cta:hover {
	background: #fff !important;
	color: #0c4433 !important;
}
.hemp-quest-page-hero--member .hemp-quest-page-hero__shield-slot {
	flex-shrink: 0;
	position: relative;
	width: 5rem;
	height: 5rem;
}
.hemp-quest-page-hero--member .hemp-quest-page-hero__shield {
	width: 5rem;
	height: 5rem;
	object-fit: contain;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}
.hemp-quest-page-hero--member .hemp-quest-page-hero__shield-fallback {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #fde68a, #c9a227 45%, #6b8f71 100%);
	box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.35);
}
.hemp-quest-page-hero__member-points {
	margin: 0.35rem 0 0;
	font-size: 1.35rem;
	color: #f4faf6;
}
.hemp-quest-page-hero__member-points strong {
	font-size: 1.65rem;
	color: #fde68a;
}
.hemp-quest-page-hero__member-points span {
	font-size: 0.95rem;
	opacity: 0.9;
}
.hemp-quest-page-hero__member-meta {
	margin: 0.35rem 0 0;
	font-size: 0.92rem;
	line-height: 1.45;
	color: #d1fae5;
	max-width: 32rem;
}
.hemp-quest-page-hero__progress {
	margin-top: 0.85rem;
	max-width: 28rem;
	width: 100%;
}
.hemp-quest-page-hero__progress-bar {
	height: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.22);
	overflow: hidden;
}
.hemp-quest-page-hero__progress-bar .hemp-quest-progress__bar {
	background: linear-gradient(90deg, #a7f3c7, #fde68a);
}
.hemp-quest-page-hero__member-summary {
	margin: 0.55rem 0 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #d1fae5;
	max-width: 32rem;
}
.hemp-quest-page-hero__level-pill {
	margin: 0;
}
.hemp-quest-stat-card__heading {
	margin: 0 0 0.65rem;
	font-size: 1.15rem;
	font-weight: 800;
	color: #0c4433;
}
.hemp-quest-stat-card--hero .hemp-quest-stat-card__heading {
	color: #fff !important;
}
.hemp-quest-stat-card--hero h2 {
	color: #fff !important;
}
.hemp-quest-stat-card__level-line {
	margin: 0 0 0.75rem;
}
.hemp-quest-page-hero__member-body {
	min-width: 0;
}
.hemp-quest-page-hero__loading {
	margin: 0;
	padding: 1.5rem;
	opacity: 0.85;
}
.hemp-quest-level-pill,
.hemp-quest-stat-card__level {
	display: inline-block;
	padding: 0.28rem 0.75rem;
	border-radius: 999px;
	background: #f4faf6;
	color: #0c4433 !important;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.78rem;
	border: 2px solid var(--quest-accent, #c9a227);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.hemp-quest-page-tracks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(5.5rem, 1fr));
	gap: 0.85rem;
	margin-bottom: 1.75rem;
	overflow: visible;
	position: relative;
	z-index: 5;
}
.hemp-quest-page-tracks__item {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	text-align: center;
	padding: 0.85rem 0.5rem;
	border-radius: 14px;
	background: linear-gradient(180deg, #f8fbf9, #fff);
	border: 1px solid rgba(45, 138, 94, 0.2);
	box-shadow: 0 6px 18px rgba(12, 68, 51, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	cursor: help;
	outline: none;
}
.hemp-quest-page-tracks__item:hover,
.hemp-quest-page-tracks__item:focus {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(12, 68, 51, 0.14);
	border-color: rgba(201, 162, 39, 0.55);
	outline: none;
	z-index: 50;
}
.hemp-quest-page-tracks__item:focus-visible {
	box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.45), 0 12px 28px rgba(12, 68, 51, 0.14);
	z-index: 50;
}
.hemp-quest-page-tracks__tooltip {
	position: absolute;
	left: 50%;
	top: calc(100% + 0.55rem);
	bottom: auto;
	transform: translateX(-50%);
	width: min(18rem, 88vw);
	padding: 0.85rem 0.95rem;
	border-radius: 12px;
	background: #083328;
	color: #ecfdf5;
	border: 1px solid rgba(201, 162, 39, 0.45);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
	text-align: left;
	font-size: 0.82rem;
	line-height: 1.45;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 100;
	cursor: default;
}
.hemp-quest-page-tracks__tooltip::after {
	content: "";
	position: absolute;
	bottom: 100%;
	top: auto;
	left: 50%;
	transform: translateX(-50%);
	border: 8px solid transparent;
	border-top-color: transparent;
	border-bottom-color: #083328;
}
.hemp-quest-page-tracks__item:hover .hemp-quest-page-tracks__tooltip,
.hemp-quest-page-tracks__item:focus .hemp-quest-page-tracks__tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(4px);
	pointer-events: auto;
}
.hemp-quest-page-tracks__tooltip-title {
	display: block;
	font-weight: 800;
	font-size: 0.95rem;
	color: #fde68a;
	margin-bottom: 0.2rem;
}
.hemp-quest-page-tracks__tooltip-sub {
	display: block;
	font-size: 0.78rem;
	color: #a7f3d0;
	margin-bottom: 0.45rem;
}
.hemp-quest-page-tracks__tooltip-body {
	display: block;
	margin-bottom: 0.5rem;
}
.hemp-quest-page-tracks__tooltip-search {
	display: block;
	font-size: 0.78rem;
	color: #d1fae5;
	margin-bottom: 0.45rem;
}
.hemp-quest-page-tracks__tooltip-search em {
	font-style: normal;
	color: #fff;
	font-weight: 600;
}
.hemp-quest-page-tracks__tooltip-foot {
	margin-top: 0.55rem;
	padding-top: 0.55rem;
	border-top: 1px solid rgba(201, 162, 39, 0.28);
}
.hemp-quest-page-tracks__tooltip-foot .hemp-quest-page-tracks__tooltip-search {
	margin-bottom: 0.35rem;
}
.hemp-quest-page-tracks__tooltip-link {
	display: inline-block;
	font-weight: 700;
	color: #fde68a !important;
	text-decoration: none;
	border: 1px solid rgba(253, 230, 138, 0.45);
	background: rgba(253, 230, 138, 0.1);
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	font-size: 0.78rem;
	line-height: 1.2;
	cursor: pointer;
}
.hemp-quest-page-tracks__tooltip-link:hover {
	color: #083328 !important;
	background: #fde68a;
	border-color: #fde68a;
	text-decoration: none;
}
.hemp-quest-page-tracks__icon {
	width: 3.5rem;
	height: 3.5rem;
	object-fit: contain;
	margin: 0 auto 0.4rem;
	display: block;
}
.hemp-quest-page-tracks__fallback {
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 0.4rem;
	border-radius: 12px;
	background: linear-gradient(145deg, #2d8a5e, #0c4433);
}
.hemp-quest-page-tracks__label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	color: #155a42;
	line-height: 1.25;
}
.hemp-quest-page-perks {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	margin-bottom: 1rem;
}
.hemp-quest-page-perks__card {
	padding: 1.15rem 1.25rem;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(45, 138, 94, 0.18);
	box-shadow: 0 8px 22px rgba(12, 68, 51, 0.06);
}
.hemp-quest-page-perks__title {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	color: #0c4433;
}
.hemp-quest-page-perks__body {
	margin: 0;
	color: #4a5568;
	font-size: 0.95rem;
	line-height: 1.5;
}

.hemp-quest-dashboard__hero {
	margin-bottom: 1.5rem;
}
.hemp-quest-dashboard__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #2d8a5e;
	margin: 0 0 0.35rem;
}
.hemp-quest-dashboard__title {
	margin: 0 0 0.35rem;
	font-size: clamp(1.75rem, 3vw, 2.35rem);
}
.hemp-quest-dashboard__deck {
	margin: 0;
	color: #4a5568;
	max-width: 42rem;
}
.hemp-quest-dashboard__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.hemp-quest-dashboard__pair {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	align-items: start;
}
@media (max-width: 820px) {
	.hemp-quest-dashboard__pair {
		grid-template-columns: 1fr;
	}
}
.hemp-quest-stat-card--unlock-refer {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem 1.5rem;
	align-items: start;
}
.hemp-quest-unlock-refer__unlock:empty,
.hemp-quest-unlock-refer__unlock:not(:has(h2)) {
	display: none;
}
.hemp-quest-stat-card--unlock-refer:has(.hemp-quest-unlock-refer__unlock:empty) {
	grid-template-columns: 1fr;
}
@media (max-width: 720px) {
	.hemp-quest-stat-card--unlock-refer {
		grid-template-columns: 1fr;
	}
}
.hemp-quest-unlock-refer__unlock h2,
.hemp-quest-unlock-refer__refer h2 {
	margin: 0 0 0.65rem;
	font-size: 1.05rem;
	color: #0c4433;
}
.hemp-quest-unlock-refer__refer {
	padding-left: 1.25rem;
	border-left: 1px solid rgba(45, 138, 94, 0.2);
}
@media (max-width: 720px) {
	.hemp-quest-unlock-refer__refer {
		padding-left: 0;
		border-left: none;
		padding-top: 1rem;
		border-top: 1px solid rgba(45, 138, 94, 0.2);
	}
}
.hemp-quest-stat-card--tracks,
.hemp-quest-stat-card--follows {
	min-width: 0;
}
.hemp-quest-stat-card {
	background: linear-gradient(145deg, #f8fbf9 0%, #fff 55%);
	border: 1px solid rgba(45, 138, 94, 0.18);
	border-radius: 14px;
	padding: 1.1rem 1.2rem;
	box-shadow: 0 8px 24px rgba(12, 68, 51, 0.06);
}
.hemp-quest-stat-card--hero {
	grid-column: 1 / -1;
	background: linear-gradient(135deg, #0c4433 0%, #1f6b4f 48%, #2d8a5e 100%);
	color: #fff;
	border: none;
}
.hemp-quest-stat-card__level {
	font-size: 0.85rem;
	margin: 0 0 0.5rem;
}
.hemp-quest-stat-card__points {
	font-size: 2.35rem;
	font-weight: 800;
	margin: 0 0 0.5rem;
}
.hemp-quest-stat-card__quip {
	margin: 0 0 0.75rem;
	font-size: 0.95rem;
	line-height: 1.45;
	color: #fde68a;
	font-style: italic;
}
.hemp-quest-stat-card__points span {
	font-size: 0.95rem;
	font-weight: 600;
	opacity: 0.85;
}
.hemp-quest-track-card {
	display: grid;
	grid-template-columns: 3.25rem 1fr;
	gap: 0.75rem;
	align-items: start;
	padding: 0.75rem 0;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.hemp-quest-track-card:first-child {
	border-top: none;
	padding-top: 0;
}
.hemp-quest-track-card__icon {
	width: 3.25rem;
	height: 3.25rem;
	object-fit: contain;
}
.hemp-quest-track-card__icon-fallback {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 10px;
	background: linear-gradient(145deg, #2d8a5e, #0c4433);
}
.hemp-quest-track-card__title {
	margin: 0;
	font-size: 1rem;
	color: #0c4433;
}
.hemp-quest-track-card__pts {
	font-weight: 800;
	color: #2d8a5e;
	font-size: 0.88rem;
}
.hemp-quest-track-card__sub {
	display: block;
	color: #64748b;
	font-size: 0.85rem;
	margin-top: 0.15rem;
}
.hemp-quest-badge-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(6.5rem, 1fr));
	gap: 1rem;
	margin-top: 0.75rem;
}
.hemp-quest-badge-grid__item {
	text-align: center;
	padding: 0.35rem 0.25rem 0.5rem;
	border-radius: 12px;
	transition: opacity 0.2s ease, filter 0.2s ease;
}
.hemp-quest-badge-grid__item.is-locked {
	opacity: 0.42;
	filter: grayscale(0.55);
}
.hemp-quest-badge-grid__item.is-earned {
	opacity: 1;
}
.hemp-quest-badge-grid__img {
	width: 4rem;
	height: 4rem;
	object-fit: contain;
	display: block;
	margin: 0 auto 0.35rem;
	filter: drop-shadow(0 4px 10px rgba(12, 68, 51, 0.15));
}
.hemp-quest-badge-grid__img-fallback {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 0.35rem;
	border-radius: 50%;
	background: linear-gradient(145deg, #d1fae5, #2d8a5e);
}
.hemp-quest-badge-grid__label {
	display: block;
	font-size: 0.68rem;
	font-weight: 700;
	color: #155a42;
	line-height: 1.2;
	margin-bottom: 0.35rem;
}
.hemp-quest-badge-grid__progress {
	height: 5px;
	border-radius: 999px;
	background: rgba(12, 68, 51, 0.12);
	overflow: hidden;
	margin: 0 auto 0.2rem;
	max-width: 5.5rem;
}
.hemp-quest-badge-grid__progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #2d8a5e, #c9a227);
	border-radius: inherit;
	transition: width 0.35s ease;
}
.hemp-quest-badge-grid__progress-label {
	display: block;
	font-size: 0.62rem;
	font-weight: 700;
	color: #64748b;
	line-height: 1.2;
}
.hemp-quest-badge-grid__earned-tag {
	display: block;
	font-size: 0.62rem;
	font-weight: 800;
	color: #155a42;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.hemp-quest-stat-card--badges {
	grid-column: 1 / -1;
}
.hemp-quest-badge-grid__item.is-earned .hemp-quest-badge-grid__label {
	color: #0c4433;
}
.hemp-quest-badges__empty {
	color: #64748b;
	font-style: italic;
	padding: 0.5rem 0 !important;
	border: none !important;
}
.hemp-quest-stat-card--hero .hemp-quest-stat-card__level {
	color: #0c4433 !important;
}
.hemp-quest-stat-card__sub {
	margin: 0.65rem 0 0;
	opacity: 0.9;
	font-size: 0.92rem;
}
.hemp-quest-progress {
	height: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.25);
	overflow: hidden;
}
.hemp-quest-progress__bar {
	height: 100%;
	background: #a7f3c7;
	border-radius: inherit;
	transition: width 0.4s ease;
}
.hemp-quest-tracks,
.hemp-quest-badges,
.hemp-quest-follows {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
}
.hemp-quest-tracks li,
.hemp-quest-badges li,
.hemp-quest-follows li {
	padding: 0.55rem 0;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	display: grid;
	gap: 0.15rem;
}
.hemp-quest-tracks li span {
	font-weight: 700;
	color: #2d8a5e;
}
.hemp-quest-ref input {
	width: 100%;
	margin-top: 0.35rem;
	font-size: 0.85rem;
}
.hemp-quest-guest {
	max-width: 52rem;
}
.hemp-quest-visual {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	margin-bottom: 1rem;
}
.hemp-quest-visual__img {
	display: block;
	width: 100%;
	height: auto;
}
.hemp-quest-visual__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 1.25rem 1.5rem;
	pointer-events: none;
	color: #f4faf6;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
.hemp-quest-visual--guest-hero .hemp-quest-visual__overlay {
	padding-top: 1.75rem;
	max-width: 62%;
}
.hemp-quest-visual--guest-hero .hemp-quest-guest__badge {
	display: inline-block;
	margin-bottom: 0.5rem;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #a7f3c7;
	background: transparent;
	padding: 0;
}
.hemp-quest-visual--guest-hero h1 {
	margin: 0 0 0.35rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #fff;
}
.hemp-quest-visual--guest-hero p {
	margin: 0;
	color: #ecfdf5;
}
.hemp-quest-visual--hub-tile .hemp-quest-visual__overlay {
	justify-content: center;
	align-items: flex-start;
	max-width: 46%;
	padding-left: 1rem;
}
.hemp-quest-visual--hub-tile .hemp-my-hub__quest-level {
	display: inline-block;
	margin-bottom: 0.35rem;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: #f4faf6;
	color: #0c4433 !important;
	border: 2px solid var(--quest-accent, #c9a227);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.68rem;
}
.hemp-quest-visual--hub-tile .hemp-my-hub__quest-points {
	font-size: 1.35rem;
	color: #fff;
}
.hemp-quest-guest__hero {
	padding: 2rem;
	border-radius: 16px;
	background: linear-gradient(135deg, #0c4433, #2d8a5e);
	color: #fff;
}
.hemp-quest-guest__badge {
	display: inline-block;
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.15);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.hemp-quest-guest__perks {
	margin: 1rem 0;
	padding-left: 1.1rem;
}
.hemp-quest-guest__cta {
	margin-top: 0.5rem;
}
.hemp-quest-article-quiz {
	margin: 2rem 0 0;
	padding: 1.25rem;
	border-radius: 14px;
	border: 1px solid rgba(45, 138, 94, 0.25);
	background: #f4fbf7;
}
.hemp-quest-article-quiz__badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #2d8a5e;
}
.hemp-quest-article-quiz__choices {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}
.hemp-quest-article-quiz__choice {
	width: 100%;
	text-align: left;
	padding: 0.65rem 0.85rem;
	border-radius: 10px;
	border: 2px solid var(--hemp-action-btn-border, #2d8a5e);
	background: var(--hemp-action-btn-bg, #fff);
	color: var(--hemp-action-btn-text, #0c4433) !important;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}
.hemp-quest-article-quiz__choice:hover:not(:disabled) {
	border-color: var(--hemp-action-forest-mid, #155a42);
	background: var(--hemp-action-btn-hover-bg, #eefaf3);
	color: var(--hemp-action-forest, #0c4433) !important;
}
.hemp-quest-article-quiz__result--ok {
	color: #155a42;
	font-weight: 700;
}
.hemp-quest-article-quiz__result--miss {
	color: #9a3412;
}
.hemp-quest-reading-banner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.75rem;
	margin: 0 0 1.25rem;
	padding: 0.65rem 0.95rem;
	border-radius: 12px;
	background: linear-gradient(90deg, #ecfdf5 0%, #f4faf6 100%);
	border: 1px solid rgba(45, 138, 94, 0.28);
	box-shadow: 0 4px 14px rgba(12, 68, 51, 0.06);
	font-size: 0.88rem;
	line-height: 1.35;
	color: #0c4433;
}
.hemp-intel-public .hemp-quest-reading-banner {
	margin-top: 0.75rem;
	margin-bottom: 1rem;
}
.hemp-quest-reading-banner__brand {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.72rem;
	color: #155a42;
}
.hemp-quest-reading-banner__text {
	flex: 1 1 12rem;
	min-width: 0;
}
.hemp-quest-reading-banner__pts {
	display: inline-block;
	padding: 0.15rem 0.55rem;
	border-radius: 999px;
	background: #fde68a;
	color: #083328;
	font-weight: 800;
	font-size: 0.78rem;
	white-space: nowrap;
}
.hemp-quest-reading-banner--done .hemp-quest-reading-banner__pts {
	background: #d1fae5;
	color: #0c4433;
	border: 1px solid rgba(45, 138, 94, 0.35);
}
.hemp-quest-reading-banner--done {
	border-color: rgba(45, 138, 94, 0.35);
}
.hemp-quest-reading-banner__link {
	font-weight: 700;
	color: #155a42 !important;
	text-decoration: none;
	white-space: nowrap;
}
.hemp-quest-reading-banner__link:hover,
.hemp-quest-reading-banner__link:focus-visible {
	text-decoration: underline;
	color: #0c4433 !important;
}
.hemp-quest-reading-banner__link--cta {
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	background: #0c4433;
	color: #f4faf6 !important;
}
.hemp-quest-reading-banner__link--cta:hover,
.hemp-quest-reading-banner__link--cta:focus-visible {
	background: #155a42;
	color: #fff !important;
	text-decoration: none;
}
.hemp-quest-share {
	margin: 1.5rem 0;
}
.hemp-quest-share__deck {
	margin: 0 0 0.75rem;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #334155;
}
.hemp-quest-stat-card--follows .hemp-quest-follow-pts {
	display: inline-block;
	margin-left: 0.35rem;
	padding: 0.12rem 0.5rem;
	border-radius: 999px;
	background: #fde68a;
	color: #083328;
	font-size: 0.72rem;
	font-weight: 800;
	vertical-align: middle;
}
.hemp-quest-follow-deck {
	margin: 0 0 0.85rem;
	color: #334155;
	font-size: 0.92rem;
	line-height: 1.5;
}
.hemp-quest-follow-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}
.hemp-quest-follow-item {
	padding: 0.85rem 0.95rem;
	border-radius: 12px;
	border: 1px solid rgba(12, 68, 51, 0.16);
	background: #fff;
}
.hemp-quest-follow-item.is-done {
	background: #f0fdf4;
	border-color: rgba(45, 138, 94, 0.35);
}
.hemp-quest-follow-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.55rem;
}
.hemp-quest-follow-item__badge {
	font-size: 0.78rem;
	font-weight: 800;
	color: #155a42;
}
.hemp-quest-follow-item__badge--pending {
	color: #0c4433;
	background: #fde68a;
	padding: 0.12rem 0.45rem;
	border-radius: 999px;
}
.hemp-quest-follow-item__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.hemp-quest-follow-claim.is-locked,
.hemp-quest-follow-claim.is-waiting,
.hemp-quest-follow-claim:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	filter: grayscale(0.15);
}
.hemp-quest-follow-claim.is-locked:hover,
.hemp-quest-follow-claim.is-waiting:hover,
.hemp-quest-follow-claim:disabled:hover {
	transform: none;
}
.hemp-quest-toast {
	position: fixed;
	bottom: 1.25rem;
	right: 1.25rem;
	z-index: 99999;
	background: #0c4433;
	color: #fff;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.25s, transform 0.25s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hemp-quest-toast--show {
	opacity: 1;
	transform: translateY(0);
}
.hemp-my-hub__quest-tile {
	padding: 0.25rem 0;
}
.hemp-my-hub__quest-tile-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.35rem;
}
.hemp-my-hub__quest-level {
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #0c4433;
}
.hemp-my-hub__quest-level.hemp-quest-level-pill {
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: #f4faf6;
	border: 2px solid var(--quest-accent, #c9a227);
}
.hemp-my-hub__quest-points {
	font-size: 1.35rem;
	color: #0c4433;
}
.hemp-my-hub__quest-link {
	font-weight: 600;
}

/* Onboarding wizard */
.hemp-quest-wizard__panel {
	max-width: 42rem;
	padding: 1.5rem;
	border-radius: 14px;
	background: linear-gradient(145deg, #f8fbf9 0%, #fff 55%);
	border: 1px solid rgba(45, 138, 94, 0.18);
	box-shadow: 0 8px 24px rgba(12, 68, 51, 0.06);
}
.hemp-quest-wizard__tracks {
	list-style: none;
	margin: 1rem 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}
.hemp-quest-wizard__track {
	width: 100%;
	text-align: left;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(45, 138, 94, 0.25);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
}
.hemp-quest-wizard__track.is-selected {
	border-color: #2d8a5e;
	box-shadow: 0 0 0 2px rgba(45, 138, 94, 0.2);
}
.hemp-quest-wizard__track strong {
	display: block;
}
.hemp-quest-wizard__track small {
	color: #4a5568;
}
.hemp-quest-stat-card--unlock {
	border-color: rgba(12, 68, 51, 0.25);
}
.hemp-quest-unlock-remaining {
	font-weight: 700;
	color: #1f6b4f;
}

/* Link contrast — premium shell accent-green links on green/dark quest UI */
body.hemp-premium-shell .entry-content .hemp-quest-page :is(
	.hemp-quest-page-hero__panel--left,
	.hemp-quest-page-hero__art-caption,
	.hemp-quest-page-tracks__tooltip,
	.hemp-quest-stat-card--hero
) a:not(.hemp-quest-page-hero__cta):not(.hemp-action-bar__btn):not(.hemp-action-bar__btn--primary),
body.hemp-premium-shell .wp-block-post-content .hemp-quest-page :is(
	.hemp-quest-page-hero__panel--left,
	.hemp-quest-page-hero__art-caption,
	.hemp-quest-page-tracks__tooltip,
	.hemp-quest-stat-card--hero
) a:not(.hemp-quest-page-hero__cta):not(.hemp-action-bar__btn):not(.hemp-action-bar__btn--primary),
body.hemp-premium-shell .entry-content .hemp-quest-page :is(
	.hemp-quest-page-hero__panel--left,
	.hemp-quest-page-hero__art-caption,
	.hemp-quest-page-tracks__tooltip,
	.hemp-quest-stat-card--hero
) .hemp-internal-link,
body.hemp-premium-shell .wp-block-post-content .hemp-quest-page :is(
	.hemp-quest-page-hero__panel--left,
	.hemp-quest-page-hero__art-caption,
	.hemp-quest-page-tracks__tooltip,
	.hemp-quest-stat-card--hero
) .hemp-internal-link {
	color: #e8d48b !important;
	font-weight: 650;
	text-decoration: underline;
	text-underline-offset: 0.14em;
	text-decoration-color: rgba(232, 212, 139, 0.65);
}
body.hemp-premium-shell .entry-content .hemp-quest-page :is(
	.hemp-quest-page-hero__panel--left,
	.hemp-quest-page-hero__art-caption,
	.hemp-quest-page-tracks__tooltip,
	.hemp-quest-stat-card--hero
) a:not(.hemp-quest-page-hero__cta):not(.hemp-action-bar__btn):hover,
body.hemp-premium-shell .wp-block-post-content .hemp-quest-page :is(
	.hemp-quest-page-hero__panel--left,
	.hemp-quest-page-hero__art-caption,
	.hemp-quest-page-tracks__tooltip,
	.hemp-quest-stat-card--hero
) a:not(.hemp-quest-page-hero__cta):not(.hemp-action-bar__btn):hover,
body.hemp-premium-shell .entry-content .hemp-quest-page :is(
	.hemp-quest-page-hero__panel--left,
	.hemp-quest-page-hero__art-caption,
	.hemp-quest-page-tracks__tooltip,
	.hemp-quest-stat-card--hero
) .hemp-internal-link:hover,
body.hemp-premium-shell .wp-block-post-content .hemp-quest-page :is(
	.hemp-quest-page-hero__panel--left,
	.hemp-quest-page-hero__art-caption,
	.hemp-quest-page-tracks__tooltip,
	.hemp-quest-stat-card--hero
) .hemp-internal-link:hover {
	color: #fff !important;
	text-decoration-color: #fff;
}
body.hemp-premium-shell .entry-content .hemp-quest-page :is(
	.hemp-quest-stat-card:not(.hemp-quest-stat-card--hero),
	.hemp-quest-page-perks__card,
	.hemp-quest-wizard,
	.hemp-quest-article-quiz
) a:not(.hemp-action-bar__btn--primary),
body.hemp-premium-shell .wp-block-post-content .hemp-quest-page :is(
	.hemp-quest-stat-card:not(.hemp-quest-stat-card--hero),
	.hemp-quest-page-perks__card,
	.hemp-quest-wizard,
	.hemp-quest-article-quiz
) a:not(.hemp-action-bar__btn--primary),
body.hemp-premium-shell .entry-content .hemp-quest-page :is(
	.hemp-quest-stat-card:not(.hemp-quest-stat-card--hero),
	.hemp-quest-page-perks__card,
	.hemp-quest-wizard,
	.hemp-quest-article-quiz
) .hemp-internal-link,
body.hemp-premium-shell .wp-block-post-content .hemp-quest-page :is(
	.hemp-quest-stat-card:not(.hemp-quest-stat-card--hero),
	.hemp-quest-page-perks__card,
	.hemp-quest-wizard,
	.hemp-quest-article-quiz
) .hemp-internal-link {
	color: #0d5c3a !important;
	text-decoration-color: rgba(13, 92, 58, 0.45);
}
body.hemp-premium-shell .entry-content .hemp-quest-page :is(
	.hemp-quest-stat-card:not(.hemp-quest-stat-card--hero),
	.hemp-quest-page-perks__card,
	.hemp-quest-wizard,
	.hemp-quest-article-quiz
) a:not(.hemp-action-bar__btn--primary):hover,
body.hemp-premium-shell .wp-block-post-content .hemp-quest-page :is(
	.hemp-quest-stat-card:not(.hemp-quest-stat-card--hero),
	.hemp-quest-page-perks__card,
	.hemp-quest-wizard,
	.hemp-quest-article-quiz
) a:not(.hemp-action-bar__btn--primary):hover,
body.hemp-premium-shell .entry-content .hemp-quest-page :is(
	.hemp-quest-stat-card:not(.hemp-quest-stat-card--hero),
	.hemp-quest-page-perks__card,
	.hemp-quest-wizard,
	.hemp-quest-article-quiz
) .hemp-internal-link:hover,
body.hemp-premium-shell .wp-block-post-content .hemp-quest-page :is(
	.hemp-quest-stat-card:not(.hemp-quest-stat-card--hero),
	.hemp-quest-page-perks__card,
	.hemp-quest-wizard,
	.hemp-quest-article-quiz
) .hemp-internal-link:hover {
	color: #083328 !important;
	text-decoration-color: #083328;
}
/* Standalone quest link styles (no premium shell) */
.hemp-quest-page :is(
	.hemp-quest-page-hero__panel--left,
	.hemp-quest-page-hero__art-caption,
	.hemp-quest-page-tracks__tooltip,
	.hemp-quest-stat-card--hero
) a:not(.hemp-quest-page-hero__cta):not(.hemp-action-bar__btn),
.hemp-quest-page :is(
	.hemp-quest-page-hero__panel--left,
	.hemp-quest-page-hero__art-caption,
	.hemp-quest-page-tracks__tooltip,
	.hemp-quest-stat-card--hero
) .hemp-internal-link {
	color: #fde68a;
	text-decoration-color: rgba(253, 230, 138, 0.65);
}
.hemp-quest-page :is(
	.hemp-quest-stat-card:not(.hemp-quest-stat-card--hero),
	.hemp-quest-page-perks__card
) a:not(.hemp-action-bar__btn--primary),
.hemp-quest-page :is(
	.hemp-quest-stat-card:not(.hemp-quest-stat-card--hero),
	.hemp-quest-page-perks__card
) .hemp-internal-link {
	color: #0d5c3a;
	font-weight: 600;
}
body.hemp-premium-shell .entry-content .hemp-quest-page a.hemp-quest-page-hero__cta,
body.hemp-premium-shell .wp-block-post-content .hemp-quest-page a.hemp-quest-page-hero__cta {
	color: #083328 !important;
	text-decoration: none !important;
}
body.hemp-premium-shell .entry-content .hemp-quest-page .hemp-action-bar__btn,
body.hemp-premium-shell .wp-block-post-content .hemp-quest-page .hemp-action-bar__btn {
	color: var(--hemp-action-btn-text, #0c4433) !important;
	text-decoration: none !important;
}
body.hemp-premium-shell .entry-content .hemp-quest-page .hemp-action-bar__btn--primary,
body.hemp-premium-shell .wp-block-post-content .hemp-quest-page .hemp-action-bar__btn--primary {
	color: var(--hemp-action-primary-text, #fff) !important;
}
.hemp-quest-page-tracks__tooltip-body .hemp-internal-link,
.hemp-quest-page-tracks__tooltip-search .hemp-internal-link {
	font-weight: 650;
}
.hemp-quest-stat-card--hero .hemp-quest-stat-card__sub,
.hemp-quest-stat-card--hero .hemp-quest-stat-card__sub strong {
	color: #ecfdf5;
}
.hemp-quest-stat-card--hero .hemp-quest-stat-card__sub a,
.hemp-quest-stat-card--hero .hemp-quest-stat-card__sub .hemp-internal-link {
	color: #fde68a !important;
}
.hemp-quest-stat-card code {
	background: #f0fdf4;
	color: #083328;
	padding: 0.12rem 0.35rem;
	border-radius: 4px;
	font-size: 0.9em;
}
.hemp-quest-stat-card--hero code {
	background: rgba(255, 255, 255, 0.15);
	color: #fde68a;
}
