.weondy-seo-hub {
	--weondy-ink: #292b28;
	--weondy-muted: #666960;
	--weondy-ivory: #fbf8f0;
	--weondy-sage: #edf2e7;
	--weondy-green: #2f684c;
	--weondy-gold: #b58b45;
	--weondy-line: #e7dfd1;
	color: var(--weondy-ink);
	font: inherit;
	margin: 0 auto;
	max-width: 1240px;
	padding: clamp(20px, 4vw, 56px) 20px 72px;
}

.weondy-seo-hub *,
.weondy-seo-hub *::before,
.weondy-seo-hub *::after {
	box-sizing: border-box;
}

.weondy-hub-hero {
	background: linear-gradient(135deg, var(--weondy-ivory), #fff 62%, var(--weondy-sage));
	border: 1px solid var(--weondy-line);
	border-radius: 24px;
	padding: clamp(32px, 7vw, 76px);
}

.weondy-hub-hero h1 {
	font-size: clamp(2rem, 5vw, 4.35rem);
	letter-spacing: -0.035em;
	line-height: 1.05;
	margin: 8px 0 20px;
	max-width: 900px;
}

.weondy-hub-lead,
.weondy-hub-heading > p:last-child {
	color: var(--weondy-muted);
	font-size: clamp(1rem, 2vw, 1.18rem);
	line-height: 1.7;
	max-width: 780px;
}

.weondy-hub-kicker {
	color: var(--weondy-green);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0;
	text-transform: uppercase;
}

.weondy-hub-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 28px;
}

.weondy-hub-button {
	background: var(--weondy-green);
	border: 2px solid var(--weondy-green);
	border-radius: 999px;
	color: #fff !important;
	display: inline-block;
	font-weight: 700;
	padding: 13px 24px;
	text-decoration: none !important;
}

.weondy-hub-button:hover,
.weondy-hub-button:focus-visible {
	background: #244f3a;
	border-color: #244f3a;
}

.weondy-hub-button--small {
	font-size: 0.82rem;
	padding: 9px 15px;
}

.weondy-hub-link {
	color: var(--weondy-green);
	font-weight: 700;
}

.weondy-hub-section {
	margin-top: clamp(46px, 8vw, 88px);
	scroll-margin-top: 120px;
}

.weondy-hub-section--soft,
.weondy-hub-section--facts {
	background: var(--weondy-ivory);
	border-radius: 24px;
	padding: clamp(26px, 5vw, 52px);
}

.weondy-hub-heading {
	margin-bottom: 26px;
}

.weondy-hub-heading h2 {
	font-size: clamp(1.55rem, 3vw, 2.5rem);
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 7px 0 12px;
}

.weondy-hub-categories {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.weondy-hub-category {
	background: #fff;
	border: 1px solid var(--weondy-line);
	border-radius: 14px;
	color: var(--weondy-ink) !important;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 110px;
	padding: 20px;
	text-decoration: none !important;
}

.weondy-hub-category:hover,
.weondy-hub-category:focus-visible {
	border-color: var(--weondy-gold);
	transform: translateY(-2px);
}

.weondy-hub-category span {
	color: var(--weondy-muted);
	font-size: 0.86rem;
}

.weondy-hub-products {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.weondy-hub-product {
	background: #fff;
	border: 1px solid var(--weondy-line);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.weondy-hub-product__image {
	aspect-ratio: 1 / 1;
	background: #f7f6f2;
	display: block;
	overflow: hidden;
}

.weondy-hub-product__image img {
	height: 100%;
	object-fit: contain;
	transition: transform 180ms ease;
	width: 100%;
}

.weondy-hub-product__image:hover img {
	transform: scale(1.025);
}

.weondy-hub-product__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 17px;
}

.weondy-hub-product h3 {
	font-size: 1rem;
	line-height: 1.4;
	margin: 0 0 9px;
}

.weondy-hub-product h3 a {
	color: var(--weondy-ink);
	text-decoration: none;
}

.weondy-hub-product__stock {
	color: var(--weondy-green);
	font-size: 0.78rem;
	font-weight: 700;
	margin: 0 0 6px;
}

.weondy-hub-product__price {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 15px;
}

.weondy-hub-product .weondy-hub-button {
	align-self: flex-start;
	margin-top: auto;
}

.weondy-hub-guide-grid,
.weondy-hub-facts {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.weondy-hub-guide-grid article,
.weondy-hub-facts > div {
	border-left: 3px solid var(--weondy-gold);
	padding: 3px 20px;
}

.weondy-hub-guide-grid h3,
.weondy-hub-facts dt {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 8px;
}

.weondy-hub-guide-grid p,
.weondy-hub-facts dd {
	color: var(--weondy-muted);
	line-height: 1.65;
	margin: 0;
}

.weondy-hub-facts {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.weondy-hub-pagination {
	margin-top: 30px;
}

.weondy-hub-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.weondy-hub-pagination a,
.weondy-hub-pagination span {
	border: 1px solid var(--weondy-line);
	border-radius: 8px;
	display: block;
	padding: 8px 12px;
}

.weondy-hub-pagination .current {
	background: var(--weondy-green);
	color: #fff;
}

.weondy-hub-section--faq details {
	border-bottom: 1px solid var(--weondy-line);
	padding: 17px 0;
}

.weondy-hub-section--faq summary {
	cursor: pointer;
	font-weight: 700;
}

.weondy-hub-section--faq details p {
	color: var(--weondy-muted);
	line-height: 1.7;
	margin: 12px 0 0;
	max-width: 850px;
}

@media (max-width: 920px) {
	.weondy-hub-categories,
	.weondy-hub-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.weondy-seo-hub {
		padding-inline: 14px;
	}

	.weondy-hub-hero,
	.weondy-hub-section--soft,
	.weondy-hub-section--facts {
		border-radius: 16px;
		padding: 24px 18px;
	}

	.weondy-hub-categories,
	.weondy-hub-products,
	.weondy-hub-guide-grid,
	.weondy-hub-facts {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.weondy-hub-category,
	.weondy-hub-product__image img {
		transition: none;
	}
}
