/**
 * Dědictví, rozcestí na /navrhnout-dedictvi/.
 * Dvě karty: tip do ankety vs. oficiální návrh.
 * Stylistika navazuje na formulářové CSS (proměnné definované přes .nkd-rozcesti).
 */

.nkd-rozcesti {
	/* Napojeno na sdílené tokeny (dedictvi-tokens-*.css), hodnoty 1:1. */
	font-family: 'Inter', system-ui, sans-serif;
	color: var(--ded-fe-ink);
	max-width: 880px;
	margin: 0 auto;
	padding: 0 1rem;
	line-height: 1.6;
}

.nkd-rozcesti-lead {
	font-size: 1.1rem;
	color: var(--ded-fe-ink-soft);
	text-align: center;
	max-width: 600px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

.nkd-rozcesti-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.nkd-rozcesti-card {
	background: var(--ded-fe-white);
	border: 1px solid var(--ded-fe-border);
	padding: 2rem 1.75rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.nkd-rozcesti-card:hover {
	border-color: var(--ded-fe-ink-soft);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}

.nkd-rozcesti-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
}

.nkd-rozcesti-card--tip::before {
	background: var(--ded-fe-accent2);
}

.nkd-rozcesti-card--navrh::before {
	background: var(--ded-fe-red);
}

.nkd-rozcesti-card-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ded-fe-muted);
}

.nkd-rozcesti-card-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
	color: var(--ded-fe-ink);
}

.nkd-rozcesti-card-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--ded-fe-ink-soft);
	margin: 0;
}

.nkd-rozcesti-card-meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 12px 0;
	border-top: 1px solid var(--ded-fe-border-light);
	border-bottom: 1px solid var(--ded-fe-border-light);
	margin: 8px 0;
}

.nkd-rozcesti-meta-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	gap: 12px;
}

.nkd-rozcesti-meta-k {
	color: var(--ded-fe-muted);
}

.nkd-rozcesti-meta-v {
	color: var(--ded-fe-ink);
	font-weight: 500;
	text-align: right;
}

.nkd-rozcesti-card-btn {
	background: var(--ded-fe-red);
	color: var(--ded-fe-white);
	margin-top: auto;
}

.nkd-rozcesti-card-btn--alt {
	background: var(--ded-fe-ink);
}

.nkd-rozcesti-card:hover .nkd-rozcesti-card-btn {
	background: var(--ded-fe-red-hover);
}

.nkd-rozcesti-card--navrh:hover .nkd-rozcesti-card-btn {
	background: #1a1a1a;
}

/* Responsive */
@media (max-width: 720px) {
	.nkd-rozcesti-cards {
		grid-template-columns: 1fr;
	}
	.nkd-rozcesti-card-title {
		font-size: 1.4rem;
	}
}
