/* =========================================================================
   Vakantielanden — overzichtspagina
   Hub achter "Vakantielanden" in de breadcrumbs van wiki-pagina's.
   ========================================================================= */

.lc-overview {
	--lc-bg:           #FFF8EE;
	--lc-bg-alt:       #F5F1E8;
	--lc-accent:       #B8954A;
	--lc-accent-deep:  #8A6E36;
	--lc-coral:        #E76F51;
	--lc-text:         #1F2A33;
	--lc-text-soft:    #6B6B6B;
	--lc-border:       #E5E0D5;
	--lc-radius:       14px;
	--lc-radius-pill:  999px;
	--lc-shadow:       0 4px 24px rgba(31,42,51,0.06);
	--lc-shadow-deep:  0 16px 36px -16px rgba(31,42,51,0.22);
	--lc-ease:         cubic-bezier(0.16, 1, 0.3, 1);
	background: var(--lc-bg);
	color: var(--lc-text);
	font-family: var(--font-body, "Inter", system-ui, sans-serif);
}

/* ---------- Hero ---------- */
.lc-hero {
	padding: clamp(28px, 5vw, 56px) 0 clamp(20px, 3vw, 36px);
	border-bottom: 1px solid var(--lc-border);
	background: linear-gradient(180deg, var(--lc-bg) 0%, #F8F1E0 100%);
}
.lc-crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: var(--lc-text-soft);
	margin-bottom: 18px;
}
.lc-crumbs a {
	color: var(--lc-text-soft);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(0,0,0,0.2);
}
.lc-crumbs a:hover { color: var(--lc-accent-deep); text-decoration-color: var(--lc-accent-deep); }
.lc-crumbs .current { color: var(--lc-text); font-weight: 500; }

.lc-eyebrow {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lc-accent);
	font-weight: 700;
	margin-bottom: 10px;
}
.lc-title {
	font-family: var(--font-display, "Fraunces", serif);
	font-size: clamp(36px, 6vw, 64px);
	line-height: 1.05;
	margin: 0 0 14px;
	font-weight: 600;
	letter-spacing: -0.02em;
}
.lc-lede {
	max-width: 720px;
	margin: 0 0 12px;
	font-size: clamp(15px, 1.5vw, 18px);
	line-height: 1.55;
	color: var(--lc-text-soft);
}
.lc-lede p { margin: 0 0 0.6em; }
.lc-lede strong { color: var(--lc-text); }

.lc-hero-cta { margin: 14px 0 0; }
.lc-link {
	color: var(--lc-accent);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
}
.lc-link:hover { color: var(--lc-accent-deep); }

/* ---------- Continent sections ---------- */
.lc-section { padding: clamp(28px, 4vw, 48px) 0 clamp(8px, 2vw, 20px); }
.lc-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--lc-border);
}
.lc-section__head h2 {
	font-family: var(--font-display, "Fraunces", serif);
	font-size: clamp(24px, 3vw, 34px);
	margin: 0;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.lc-section__count {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lc-text-soft);
	font-weight: 600;
	flex-shrink: 0;
}

/* ---------- Card grid ---------- */
.lc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}

.lc-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius);
	padding: 22px 22px 18px;
	text-decoration: none;
	color: inherit;
	box-shadow: var(--lc-shadow);
	transition: transform 200ms var(--lc-ease), box-shadow 200ms var(--lc-ease), border-color 200ms var(--lc-ease);
	overflow: hidden;
	min-height: 196px;
}
.lc-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--lc-region, var(--lc-accent));
	opacity: 0.85;
}
.lc-card::after {
	content: "→";
	position: absolute;
	top: 18px; right: 18px;
	font-size: 18px;
	color: var(--lc-text-soft);
	opacity: 0;
	transition: opacity 200ms var(--lc-ease), transform 200ms var(--lc-ease);
}
.lc-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--lc-shadow-deep);
	border-color: var(--lc-accent-soft, #E8D9A8);
	color: inherit;
}
.lc-card:hover::after {
	opacity: 1;
	transform: translateX(3px);
	color: var(--lc-accent);
}

.lc-card__flag {
	font-size: 36px;
	line-height: 1;
	margin-bottom: 4px;
}
.lc-card__name {
	font-family: var(--font-display, "Fraunces", serif);
	font-size: 22px;
	font-weight: 600;
	margin: 0;
	color: var(--lc-text);
	letter-spacing: -0.01em;
}
.lc-card__tag {
	font-size: 14px;
	color: var(--lc-text-soft);
	margin: 0;
	line-height: 1.5;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.lc-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 4px;
}
.lc-card__chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	background: var(--lc-bg-alt);
	color: var(--lc-text);
	padding: 4px 10px;
	border-radius: var(--lc-radius-pill);
	white-space: nowrap;
}
.lc-card__chip--best { background: #FBEFC8; color: var(--lc-accent-deep); }

.lc-footnote {
	max-width: 720px;
	margin: clamp(20px, 3vw, 32px) auto clamp(40px, 5vw, 64px);
	padding-top: 12px;
	border-top: 1px dashed var(--lc-border);
	color: var(--lc-text-soft);
	text-align: center;
}

/* ---------- Focus ---------- */
.lc-overview a:focus-visible {
	outline: 2px solid var(--lc-accent);
	outline-offset: 3px;
	border-radius: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
	.lc-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
	.lc-card { padding: 18px 18px 14px; min-height: auto; }
	.lc-card__flag { font-size: 30px; }
	.lc-card__name { font-size: 19px; }
	.lc-card__tag { font-size: 13px; }
	.lc-card__chip { font-size: 11px; padding: 3px 8px; }
}

@media (max-width: 420px) {
	.lc-grid { grid-template-columns: 1fr; }
	.lc-section__head { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
	.lc-card, .lc-card::after { transition: none !important; }
}
