/**
 * 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: var(--ded-fe-font);
	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: var(--ded-fe-shadow-md);
	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: var(--ded-fe-ink);
}

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

/* Obecná informace o Regionálním pracovišti */
.nkd-rozcesti-info {
	margin-top: 1.75rem;
	padding: 1.25rem 1.5rem;
	background: var(--ded-fe-white);
	border: 1px solid var(--ded-fe-border, #e5e0d8);
	border-radius: var(--ded-fe-radius-lg);
	position: relative;
}
.nkd-rozcesti-info::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: 44px;
	height: 2px;
	background: var(--ded-fe-red, #b1402f);
	border-radius: var(--ded-fe-radius-lg) 0 0 0;
}
.nkd-rozcesti-info-title {
	margin: 0 0 0.6rem;
	font-size: 1.15rem;
	color: var(--ded-fe-ink, #1f1f23);
}
.nkd-rozcesti-info p {
	margin: 0 0 0.6rem;
	color: var(--ded-fe-ink-soft, #44444a);
	line-height: 1.6;
}
.nkd-rozcesti-info p:last-child {
	margin-bottom: 0;
}

/* Důležité sdělení pod kartami rozcestí (na anglické verzi: oficiální
   žádost je česky, jděte cestou tipu). Žlutý podklad s černým rámem,
   ať se nedá minout. */
.nkd-rozcesti-vyznamne {
	margin: 22px 0 26px;
	padding: 16px 20px;
	background: #ffe98a;
	border: 2px solid #1a1a18;
	border-radius: 6px;
	color: #1a1a18;
	font-weight: 600;
	line-height: 1.55;
}
