/* ═══════════════════════════════════════════════════════════════
   CURATED — 3 bento cards po grid
   ═══════════════════════════════════════════════════════════════ */
.gk-archive-curated {
	margin-top: 96px;
	margin-bottom: 96px;
}

.gk-archive-curated__title {
	font-family: 'Playfair Display', 'Inter', serif;
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--gk-v5-primary);
	text-align: center;
	margin: 0 0 56px;
}

.gk-archive-curated__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 768px) {
	.gk-archive-curated__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 28px;
	}
}

.gk-archive-curated__card {
	background: var(--gk-v5-cream);
	border: 1px solid var(--gk-v5-border);
	border-radius: var(--gk-v5-radius-card);
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.gk-archive-curated__card-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.gk-archive-curated__card-eyebrow {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	color: var(--gk-v5-primary-light);
}

.gk-archive-curated__card-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	background: var(--gk-v5-primary);
	color: #fff;
	border-radius: var(--gk-v5-radius-pill);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gk-archive-curated__card-headline {
	font-family: 'Playfair Display', 'Inter', serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gk-v5-primary);
	margin: 0;
}

.gk-archive-curated__card-text {
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--gk-v5-text-muted);
	margin: 0;
	flex-grow: 1;
}

.gk-archive-curated__card-cta {
	display: inline-block;
	width: 100%;
	padding: 16px 24px;
	border: 2px solid var(--gk-v5-primary);
	border-radius: var(--gk-v5-radius-pill);
	background: transparent;
	color: var(--gk-v5-primary);
	text-align: center;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition: background 0.2s ease, color 0.2s ease;
}
.gk-archive-curated__card-cta:hover {
	background: var(--gk-v5-primary);
	color: #fff;
}

/* Synergy duo */
.gk-archive-curated__synergy-row {
	display: flex;
	align-items: center;
	gap: 16px;
}
.gk-archive-curated__synergy-img {
	flex: 1;
	max-width: 96px;
	aspect-ratio: 1;
	background: #fff;
	border: 1px solid var(--gk-v5-border);
	border-radius: 16px;
	padding: 8px;
	box-shadow: var(--gk-v5-shadow-soft);
}
.gk-archive-curated__synergy-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.gk-archive-curated__synergy-plus {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 400;
	color: var(--gk-v5-text-faint);
}

/* Starter list */
.gk-archive-curated__starter-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.gk-archive-curated__starter-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: #fff;
	border: 1px solid var(--gk-v5-border);
	border-radius: 14px;
	box-shadow: var(--gk-v5-shadow-soft);
}
.gk-archive-curated__starter-num {
	font-family: 'Playfair Display', serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--gk-v5-primary-light);
	flex-shrink: 0;
}
.gk-archive-curated__starter-name {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--gk-v5-text);
	text-decoration: none;
	flex: 1;
	transition: color 0.2s ease;
}
.gk-archive-curated__starter-name:hover {
	color: var(--gk-v5-primary-light);
}

/* Science picks */
.gk-archive-curated__science-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.gk-archive-curated__science-pick {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 16px 12px;
	background: #fff;
	border: 1px solid var(--gk-v5-border);
	border-radius: 14px;
	text-decoration: none;
	color: var(--gk-v5-text);
	transition: transform 0.2s var(--gk-v5-ease), box-shadow 0.2s ease;
}
.gk-archive-curated__science-pick:hover {
	transform: translateY(-3px);
	box-shadow: var(--gk-v5-shadow-soft);
}
.gk-archive-curated__science-img {
	width: 100%;
	aspect-ratio: 1;
	background: var(--gk-v5-cream);
	border-radius: 10px;
	padding: 6px;
}
.gk-archive-curated__science-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.gk-archive-curated__science-name {
	font-family: 'Inter', sans-serif;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--gk-v5-primary);
	text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   LANDING — trust + compliance strips
   ═══════════════════════════════════════════════════════════════ */
.gk-archive-v5__landing-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 32px;
	margin-bottom: 48px;
	background: var(--gk-v5-soft);
	border: 1px solid rgba(93, 169, 53, 0.20);
	border-radius: var(--gk-v5-radius-card);
}

@media (max-width: 639px) {
	.gk-archive-v5__landing-trust {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.gk-archive-v5__trust-item {
	text-align: center;
}

.gk-archive-v5__trust-number {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--gk-v5-primary);
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 8px;
}

.gk-archive-v5__trust-label {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--gk-v5-text-muted);
}

/* Promocje compliance bar */
.gk-archive-v5__compliance {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 28px;
	margin-bottom: 32px;
	background: var(--gk-v5-soft);
	border: 1px solid rgba(93, 169, 53, 0.25);
	border-radius: 14px;
	color: var(--gk-v5-primary);
}
.gk-archive-v5__compliance svg {
	flex-shrink: 0;
	color: var(--gk-v5-primary-light);
	margin-top: 2px;
}
.gk-archive-v5__compliance p {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--gk-v5-text);
}
.gk-archive-v5__compliance strong {
	color: var(--gk-v5-primary);
	font-weight: 800;
}

/* ═══════════════════════════════════════════════════════════════
   ARCHIVE SEO BLOCK — pod listingiem (#149)
   term description + cross-linking + tags + FAQ
   ═══════════════════════════════════════════════════════════════ */
.gk-archive-seo-block {
	margin: 80px auto 0;
	padding: 56px 0 0;
	border-top: 1px solid var(--gk-v5-border);
}

@media (max-width: 768px) {
	.gk-archive-seo-block {
		margin-top: 56px;
		padding-top: 36px;
	}
}

.gk-archive-seo-block__intro {
	max-width: 760px;
	margin: 0 0 56px;
}

.gk-archive-seo-block__h2 {
	font-family: 'Playfair Display', 'Inter', serif;
	font-size: clamp(28px, 3.5vw, 36px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--gk-v5-primary);
	margin: 0 0 20px;
}

.gk-archive-seo-block__description {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--gk-v5-text-muted);
}

.gk-archive-seo-block__description p {
	margin: 0 0 1em;
}

.gk-archive-seo-block__description p:last-child {
	margin-bottom: 0;
}

.gk-archive-seo-block__description ul,
.gk-archive-seo-block__description ol {
	margin: 0 0 1em;
	padding-left: 1.4em;
}

.gk-archive-seo-block__description li {
	margin: 0 0 0.4em;
}

.gk-archive-seo-block__description a {
	color: var(--gk-v5-primary-light);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.gk-archive-seo-block__description a:hover {
	color: var(--gk-v5-primary);
}

/* Group spacing */
.gk-archive-seo-block__group {
	margin: 0 0 56px;
}

.gk-archive-seo-block__group:last-child {
	margin-bottom: 0;
}

.gk-archive-seo-block__h3 {
	font-family: 'Playfair Display', 'Inter', serif;
	font-size: clamp(22px, 2.4vw, 26px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: var(--gk-v5-primary);
	margin: 0 0 24px;
}

/* ─── B: Sibling categories cross-link cards ─── */
.gk-archive-seo-block__categories {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

@media (min-width: 640px) {
	.gk-archive-seo-block__categories {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

@media (min-width: 1024px) {
	.gk-archive-seo-block__categories {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}

.gk-archive-seo-block__cat-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	background: var(--gk-v5-cream);
	border: 1px solid var(--gk-v5-border);
	border-radius: 16px;
	color: var(--gk-v5-primary);
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--gk-v5-ease), box-shadow 0.25s ease;
}

.gk-archive-seo-block__cat-card:hover {
	border-color: var(--gk-v5-primary-light);
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(31, 61, 20, 0.10);
}

.gk-archive-seo-block__cat-thumb,
.gk-archive-seo-block__cat-icon {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--gk-v5-border);
	overflow: hidden;
	color: var(--gk-v5-primary-light);
}

.gk-archive-seo-block__cat-card:hover .gk-archive-seo-block__cat-thumb,
.gk-archive-seo-block__cat-card:hover .gk-archive-seo-block__cat-icon {
	border-color: var(--gk-v5-primary-light);
}

.gk-archive-seo-block__cat-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gk-archive-seo-block__cat-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.gk-archive-seo-block__cat-anchor {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--gk-v5-primary);
	overflow: hidden;
	text-overflow: ellipsis;
}

.gk-archive-seo-block__cat-meta {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: var(--gk-v5-text-faint);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gk-archive-seo-block__cat-arrow {
	flex: 0 0 18px;
	color: var(--gk-v5-text-faint);
	transition: color 0.2s ease, transform 0.2s ease;
}

.gk-archive-seo-block__cat-card:hover .gk-archive-seo-block__cat-arrow {
	color: var(--gk-v5-primary-light);
	transform: translateX(3px);
}

/* ─── C: Tag chip cloud ─── */
.gk-archive-seo-block__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gk-archive-seo-block__tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 16px;
	background: #fff;
	border: 1px solid var(--gk-v5-border);
	border-radius: var(--gk-v5-radius-pill);
	color: var(--gk-v5-text-muted);
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.2;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s var(--gk-v5-ease);
}

.gk-archive-seo-block__tag:hover {
	background: var(--gk-v5-primary-light);
	color: #fff;
	border-color: var(--gk-v5-primary-light);
	transform: translateY(-2px);
}

.gk-archive-seo-block__tag-count {
	font-size: 12px;
	font-weight: 500;
	opacity: 0.6;
}

.gk-archive-seo-block__tag:hover .gk-archive-seo-block__tag-count {
	opacity: 0.9;
}

/* ─── D: FAQ accordion ─── */
.gk-archive-seo-block__faq {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gk-archive-seo-block__faq-item {
	border: 1px solid var(--gk-v5-border);
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.gk-archive-seo-block__faq-item[open] {
	border-color: var(--gk-v5-primary-light);
	background: var(--gk-v5-cream);
}

.gk-archive-seo-block__faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 24px;
	cursor: pointer;
	list-style: none;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--gk-v5-primary);
	transition: background 0.2s ease;
}

.gk-archive-seo-block__faq-item summary::-webkit-details-marker {
	display: none;
}

.gk-archive-seo-block__faq-item summary:hover {
	background: var(--gk-v5-cream);
}

.gk-archive-seo-block__faq-item summary svg {
	flex: 0 0 20px;
	color: var(--gk-v5-primary-light);
	transition: transform 0.25s var(--gk-v5-ease);
}

.gk-archive-seo-block__faq-item[open] summary svg {
	transform: rotate(180deg);
}

.gk-archive-seo-block__faq-item > div {
	padding: 0 24px 20px;
}

.gk-archive-seo-block__faq-item p {
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--gk-v5-text-muted);
	margin: 0;
}

