/* ==========================================================================
   Tourendeddy — Helles, einladendes Theme
   ========================================================================== */

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* Hintergrundfarben (alle hell/warm) */
	--bg-primary:   #faf6ed;   /* Hauptuntergrund (Creme/Papier) */
	--bg-secondary: #ffffff;   /* Karten */
	--bg-tertiary:  #f2ebd9;   /* Sanft abgesetzte Sektion */
	--bg-footer:    #ede5d0;   /* Footer-Ton (warmes Beige) */

	/* Rahmen */
	--border-subtle: #e5dfce;
	--border-strong: #d4cdb8;

	/* Schrift */
	--text-primary:   #1f1a14;
	--text-secondary: #3a332a;
	--text-tertiary:  #6b6254;
	--text-muted:     #8a8070;

	/* Akzent (warmes Rostorange) */
	--accent:       #c85f1e;
	--accent-hover: #b04f10;
	--accent-soft:  #fbe9d7;
	--accent-text:  #ffffff;

	/* Schrift-Familie */
	--font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	/* Layout */
	--container-max: 1200px;
	--r-sm: 4px;
	--r-md: 8px;
	--r-lg: 12px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--text-secondary);
	background: var(--bg-primary);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--accent-hover);
}

h1, h2, h3, h4 {
	color: var(--text-primary);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

h1 { font-size: 3.25rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

@media (max-width: 768px) {
	h1 { font-size: 2.125rem; }
	h2 { font-size: 1.625rem; }
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section-tag {
	display: inline-block;
	font-size: 0.75rem;
	color: var(--accent);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
	font-weight: 700;
}

.section-title {
	margin-bottom: 2.5rem;
}

.section-pad {
	padding: 5rem 0;
}

.section-alt {
	background: var(--bg-tertiary);
}

.section-header-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.section-header-row .section-title {
	margin-bottom: 0;
}

.link-arrow {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--accent);
	white-space: nowrap;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
	background: rgba(250, 246, 237, 0.95);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--border-subtle);
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--text-primary);
	font-weight: 700;
	font-size: 1.125rem;
	letter-spacing: 0.01em;
}

.logo:hover {
	color: var(--text-primary);
}

.logo-mark {
	width: 36px;
	height: 36px;
	display: block;
	flex-shrink: 0;
}

.main-nav > ul {
	list-style: none;
	display: flex;
	gap: 2rem;
}

.main-nav > ul > li {
	position: relative;
}

.main-nav a {
	color: var(--text-secondary);
	font-size: 0.95rem;
	padding: 0.5rem 0;
	display: block;
	transition: color 0.2s ease;
	white-space: nowrap;
	font-weight: 500;
}

.main-nav a:hover {
	color: var(--accent);
}

.main-nav .has-dropdown > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid currentColor;
	margin-left: 6px;
	vertical-align: middle;
	opacity: 0.55;
}

.dropdown {
	list-style: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 240px;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-md);
	padding: 0.5rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

.dropdown li a {
	padding: 0.55rem 1.1rem;
	font-size: 0.9rem;
	font-weight: 500;
}

.dropdown li a:hover {
	background: var(--bg-tertiary);
	color: var(--accent);
}

.dropdown-more {
	color: var(--accent) !important;
	border-top: 1px solid var(--border-subtle);
	margin-top: 0.35rem;
	padding-top: 0.65rem !important;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	gap: 5px;
	flex-direction: column;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text-primary);
	transition: all 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
	.nav-toggle { display: flex; }

	.main-nav {
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		background: var(--bg-secondary);
		border-bottom: 1px solid var(--border-subtle);
		display: none;
		max-height: calc(100vh - 72px);
		overflow-y: auto;
		box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	}

	.main-nav.is-open { display: block; }

	.main-nav > ul {
		flex-direction: column;
		gap: 0;
		padding: 1rem 1.5rem;
	}

	.main-nav > ul > li {
		border-bottom: 1px solid var(--border-subtle);
	}

	.main-nav > ul > li:last-child {
		border-bottom: none;
	}

	.main-nav a {
		padding: 0.875rem 0;
	}

	.dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		border: none;
		box-shadow: none;
		padding: 0 0 0.75rem 1rem;
		min-width: 0;
	}

	.dropdown li a {
		padding: 0.4rem 0;
	}
}

/* ==========================================================================
   Hero – Foto + weisse Karte mit Text (magazine-style)
   ========================================================================== */

.hero {
	position: relative;
	padding: 3rem 0 4rem;
	background: var(--bg-primary);
}

.hero-photo {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}

.hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Ganz leichter Weichzeichner am oberen und unteren Rand für sanften Übergang */
.hero-photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(250, 246, 237, 0.15) 0%,
		rgba(250, 246, 237, 0) 30%,
		rgba(250, 246, 237, 0) 70%,
		rgba(250, 246, 237, 0.25) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: flex-start;
	min-height: 520px;
	align-items: center;
}

.hero-card {
	background: var(--bg-secondary);
	border-radius: var(--r-lg);
	padding: 2.5rem 2.25rem;
	max-width: 540px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	border: 1px solid var(--border-subtle);
}

.hero-tag {
	font-size: 0.75rem;
	color: var(--accent);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin-bottom: 0.85rem;
	font-weight: 700;
}

.hero-title {
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--text-primary);
	margin-bottom: 1.125rem;
	letter-spacing: -0.02em;
}

.hero-subtitle {
	font-size: 1.0625rem;
	color: var(--text-secondary);
	line-height: 1.55;
	margin-bottom: 1.75rem;
}

.hero-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 1.75rem;
}

.hero-meta {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-subtle);
	font-size: 0.9rem;
	color: var(--text-tertiary);
}

.hero-meta strong {
	color: var(--accent);
	font-weight: 700;
}

@media (max-width: 768px) {
	.hero {
		padding: 2rem 0 3rem;
	}

	.hero-content {
		min-height: 440px;
	}

	.hero-card {
		padding: 1.75rem 1.5rem;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-meta {
		gap: 1rem;
		font-size: 0.85rem;
	}
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: var(--r-md);
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.2s ease;
	letter-spacing: 0.01em;
}

.btn-primary {
	background: var(--accent);
	color: var(--accent-text);
}

.btn-primary:hover {
	background: var(--accent-hover);
	color: var(--accent-text);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(200, 95, 30, 0.3);
}

.btn-ghost {
	background: transparent;
	color: var(--text-primary);
	border-color: var(--border-strong);
}

.btn-ghost:hover {
	background: var(--bg-tertiary);
	color: var(--accent);
	border-color: var(--accent);
}

/* ==========================================================================
   Featured Tour
   ========================================================================== */

.featured-tour {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-lg);
	overflow: hidden;
	color: var(--text-secondary);
	transition: all 0.25s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.featured-tour:hover {
	color: var(--text-secondary);
	transform: translateY(-3px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
	border-color: var(--border-strong);
}

.featured-img {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--bg-tertiary);
	overflow: hidden;
}

.featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.featured-tour:hover .featured-img img {
	transform: scale(1.04);
}

.featured-year {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--accent);
	color: var(--accent-text);
	font-size: 0.875rem;
	font-weight: 700;
	padding: 0.35rem 0.75rem;
	border-radius: var(--r-sm);
	letter-spacing: 0.03em;
	box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.featured-text {
	padding: 2.5rem 2.25rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.featured-badge {
	display: inline-block;
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 0.7rem;
	border-radius: var(--r-sm);
	margin-bottom: 1rem;
	align-self: flex-start;
}

.featured-text h2 {
	margin-bottom: 1rem;
	font-size: 1.875rem;
}

.featured-lead {
	font-size: 1.0625rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.featured-facts {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
}

.featured-facts li {
	font-size: 0.9rem;
	color: var(--text-tertiary);
}

.featured-facts strong {
	color: var(--text-primary);
	font-weight: 700;
	margin-right: 0.25rem;
}

@media (max-width: 860px) {
	.featured-tour {
		grid-template-columns: 1fr;
	}

	.featured-text {
		padding: 2rem 1.75rem;
	}

	.featured-text h2 {
		font-size: 1.625rem;
	}

	.featured-facts {
		gap: 1rem;
	}
}

/* ==========================================================================
   Card-Grids
   ========================================================================== */

.cards-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.cards-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

@media (max-width: 960px) {
	.cards-3 { grid-template-columns: repeat(2, 1fr); }
	.cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.cards-3 { grid-template-columns: 1fr; }
	.cards-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Tour-Karten
   ========================================================================== */

.tour-card {
	display: block;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-lg);
	overflow: hidden;
	color: var(--text-secondary);
	transition: all 0.25s ease;
	position: relative;
}

.tour-card:hover {
	border-color: var(--border-strong);
	transform: translateY(-3px);
	color: var(--text-secondary);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.tour-img {
	aspect-ratio: 16 / 10;
	background-color: var(--bg-tertiary);
	overflow: hidden;
}

.tour-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.tour-card:hover .tour-img img {
	transform: scale(1.05);
}

.tour-year {
	position: absolute;
	top: 14px;
	right: 14px;
	background: var(--accent);
	color: var(--accent-text);
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.3rem 0.65rem;
	border-radius: var(--r-sm);
	letter-spacing: 0.03em;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.tour-info {
	padding: 1.1rem 1.25rem 1.3rem;
}

.tour-info h3 {
	margin-bottom: 0.25rem;
}

.tour-info p {
	font-size: 0.875rem;
	color: var(--text-tertiary);
}

.tour-card-more {
	background: var(--accent-soft);
	border: 2px dashed var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
}

.tour-card-more:hover {
	background: #f7d9b8;
	transform: translateY(-3px);
}

.tour-more-content {
	padding: 2rem;
	text-align: center;
}

.tour-more-count {
	font-size: 3rem;
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.tour-more-label {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.tour-more-hint {
	font-size: 0.8rem;
	color: var(--text-tertiary);
	line-height: 1.5;
	margin-bottom: 1.25rem;
}

/* ==========================================================================
   Feature-Karten
   ========================================================================== */

.feature-card {
	display: flex;
	flex-direction: column;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-lg);
	padding: 1.75rem;
	color: var(--text-secondary);
	transition: all 0.25s ease;
}

.feature-card:hover {
	border-color: var(--border-strong);
	color: var(--text-secondary);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.feature-icon {
	width: 48px;
	height: 48px;
	background: var(--accent-soft);
	border-radius: var(--r-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.125rem;
	color: var(--accent);
}

.feature-card h3 {
	margin-bottom: 0.5rem;
}

.feature-card p {
	font-size: 0.95rem;
	line-height: 1.6;
	flex-grow: 1;
}

.card-link {
	display: inline-block;
	margin-top: 1.25rem;
	color: var(--accent);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
}

.feature-card:hover .card-link,
.tour-card:hover .card-link,
.featured-tour:hover .card-link {
	color: var(--accent-hover);
}

/* ==========================================================================
   Info-Cards
   ========================================================================== */

.info-card {
	display: block;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-md);
	padding: 1.25rem 1.35rem;
	color: var(--text-secondary);
	transition: all 0.2s ease;
}

.info-card:hover {
	border-color: var(--accent);
	color: var(--text-secondary);
	transform: translateY(-2px);
}

.info-card h3 {
	font-size: 1.0625rem;
	margin-bottom: 0.35rem;
	color: var(--text-primary);
}

.info-card:hover h3 {
	color: var(--accent);
}

.info-card p {
	font-size: 0.875rem;
	color: var(--text-tertiary);
	line-height: 1.5;
}

/* ==========================================================================
   Info-Strip
   ========================================================================== */

.info-strip {
	padding: 5rem 0;
	text-align: center;
}

.info-strip .container {
	max-width: 760px;
}

.info-strip h2 {
	margin-bottom: 1.25rem;
}

.info-strip p {
	font-size: 1.0625rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

/* ==========================================================================
   Footer – hell, warm
   ========================================================================== */

.site-footer {
	background: var(--bg-footer);
	color: var(--text-secondary);
	padding: 3.5rem 0 1.5rem;
	border-top: 1px solid var(--border-subtle);
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--border-strong);
}

@media (max-width: 900px) {
	.footer-content {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 500px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}
}

.footer-brand .logo {
	margin-bottom: 0.75rem;
}

.footer-brand p {
	font-size: 0.925rem;
	color: var(--text-tertiary);
}

.footer-col h4 {
	color: var(--text-primary);
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 1rem;
	font-weight: 700;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 0.55rem;
}

.footer-col ul a {
	color: var(--text-tertiary);
	font-size: 0.925rem;
}

.footer-col ul a:hover {
	color: var(--accent);
}

.footer-bottom {
	padding-top: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.footer-bottom a {
	color: var(--text-muted);
}

.footer-bottom a:hover {
	color: var(--accent);
}

@media (max-width: 500px) {
	.footer-bottom {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}
}


/* ==========================================================================
   UNTERSEITEN — Basis-Styles
   ========================================================================== */

/* Page-Header (Titel-Band oben auf Unterseiten) */
.page-header {
	padding: 3.5rem 0 2.5rem;
	background: var(--bg-primary);
	border-bottom: 1px solid var(--border-subtle);
}

.page-header h1 {
	font-size: 2.75rem;
	margin-bottom: 0.75rem;
}

.page-lead {
	font-size: 1.125rem;
	color: var(--text-tertiary);
	max-width: 680px;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.page-header {
		padding: 2.5rem 0 2rem;
	}

	.page-header h1 {
		font-size: 2rem;
	}

	.page-lead {
		font-size: 1rem;
	}
}

/* Schmaler Container für lange Texte */
.container-narrow {
	max-width: 760px;
}

/* Weniger Padding oben/unten (für angehängte Sektionen) */
.section-tight {
	padding: 3rem 0 4rem;
}

/* Fließtext-Hilfsklassen */
.text-lead {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.section-pad p {
	margin-bottom: 1.25rem;
}

.section-pad p:last-child {
	margin-bottom: 0;
}

.mt-large {
	margin-top: 2.5rem;
	margin-bottom: 0.75rem;
}

/* ==========================================================================
   ÜBER MICH — Intro-Grid (Foto links, Text rechts)
   ========================================================================== */

.intro-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 3rem;
	align-items: start;
}

.intro-photo {
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--bg-tertiary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	aspect-ratio: 3 / 4;
}

.intro-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.intro-text h2 {
	font-size: 2.25rem;
	margin-bottom: 0.5rem;
}

.intro-lead {
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 1.5rem !important;
	font-size: 0.95rem;
}

.facts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-top: 2rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--border-subtle);
}

.fact-item {
	text-align: left;
}

.fact-label {
	font-size: 0.75rem;
	color: var(--text-tertiary);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.25rem;
	font-weight: 600;
}

.fact-value {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
}

@media (max-width: 820px) {
	.intro-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.intro-photo {
		max-width: 320px;
		aspect-ratio: 1 / 1;
	}

	.intro-text h2 {
		font-size: 1.875rem;
	}
}

@media (max-width: 480px) {
	.facts-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* ==========================================================================
   HOBBYS-GRID
   ========================================================================== */

.hobbies-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.hobby {
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-md);
	padding: 1.25rem 1.25rem 1.5rem;
	transition: all 0.2s ease;
}

.hobby:hover {
	border-color: var(--border-strong);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.hobby-icon {
	width: 40px;
	height: 40px;
	background: var(--accent-soft);
	border-radius: var(--r-sm);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.875rem;
}

.hobby h3 {
	font-size: 1.0625rem;
	margin-bottom: 0.4rem;
}

.hobby p {
	font-size: 0.875rem;
	color: var(--text-tertiary);
	line-height: 1.5;
	margin: 0 !important;
}

@media (max-width: 900px) {
	.hobbies-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.hobbies-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   TIMELINE (Werdegang)
   ========================================================================== */

.timeline {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 72px;
	top: 10px;
	bottom: 10px;
	width: 2px;
	background: var(--border-subtle);
}

.timeline-item {
	position: relative;
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 2rem;
	padding-bottom: 2rem;
}

.timeline-item:last-child {
	padding-bottom: 0;
}

.timeline-year {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--accent);
	padding-top: 0.25rem;
	letter-spacing: 0.02em;
	position: relative;
}

.timeline-year::after {
	content: '';
	position: absolute;
	right: -9px;
	top: 12px;
	width: 14px;
	height: 14px;
	background: var(--accent);
	border: 3px solid var(--bg-primary);
	border-radius: 50%;
	z-index: 1;
}

.timeline-content {
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-md);
	padding: 1.25rem 1.5rem;
}

.timeline-content h3 {
	font-size: 1.0625rem;
	margin-bottom: 0.5rem;
}

.timeline-content p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0 !important;
}

@media (max-width: 560px) {
	.timeline::before {
		left: 50px;
	}

	.timeline-item {
		grid-template-columns: 64px 1fr;
		gap: 1rem;
	}

	.timeline-year::after {
		right: -8px;
	}
}

/* ==========================================================================
   ZITAT-BOX
   ========================================================================== */

.quote-box {
	margin-top: 2.5rem;
	padding: 1.75rem 2rem;
	background: var(--accent-soft);
	border-left: 4px solid var(--accent);
	border-radius: var(--r-md);
}

.quote-box p {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text-primary);
	font-style: italic;
	margin: 0 !important;
}

/* ==========================================================================
   FOTO-GALERIE
   ========================================================================== */

.photo-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
}

.gallery-item {
	aspect-ratio: 1 / 1;
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--bg-tertiary);
	transition: transform 0.25s ease;
	cursor: pointer;
}

.gallery-item:hover {
	transform: scale(1.02);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.08);
}

@media (max-width: 768px) {
	.photo-gallery {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 480px) {
	.photo-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   CTA-BUTTONS (im info-strip)
   ========================================================================== */

.cta-buttons {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
}


/* ==========================================================================
   FAHRZEUG-SEITEN (Motorräder / Autos)
   ========================================================================== */

/* Facts-Row oben im Page-Header */
.facts-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--border-subtle);
}

@media (max-width: 720px) {
	.facts-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Liste der Fahrzeug-Karten */
.vehicle-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* Einzelne Fahrzeug-Karte (horizontales Layout) */
.vehicle-card {
	position: relative;
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 0;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: all 0.25s ease;
}

.vehicle-card:hover {
	border-color: var(--border-strong);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.vehicle-number {
	position: absolute;
	top: 14px;
	left: 14px;
	width: 32px;
	height: 32px;
	background: var(--accent);
	color: var(--accent-text);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.vehicle-img {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--bg-tertiary);
	overflow: hidden;
}

.vehicle-img a {
	display: block;
	width: 100%;
	height: 100%;
}

.vehicle-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.vehicle-img:hover img {
	transform: scale(1.04);
}

.vehicle-info {
	padding: 1.5rem 1.75rem 1.75rem;
	display: flex;
	flex-direction: column;
}

.vehicle-info h3 {
	font-size: 1.375rem;
	margin-bottom: 0.25rem;
}

.vehicle-info h3 small {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-tertiary);
	margin-left: 0.4rem;
}

.vehicle-period {
	color: var(--text-tertiary);
	font-size: 0.9rem;
	margin: 0 0 1.25rem 0 !important;
}

/* Technische Daten */
.vehicle-specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem 1rem;
	margin-bottom: 1.25rem;
	padding: 0.875rem 1rem;
	background: var(--bg-tertiary);
	border-radius: var(--r-md);
}

.vehicle-specs div {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.vehicle-specs dt {
	font-size: 0.7rem;
	color: var(--text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
}

.vehicle-specs dd {
	font-size: 0.9rem;
	color: var(--text-primary);
	font-weight: 600;
}

.vehicle-story {
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--text-secondary);
	margin: 0 !important;
}

.vehicle-story + .vehicle-story,
.vehicle-story + .vehicle-verdict,
.vehicle-story + .vehicle-hint {
	margin-top: 0.75rem !important;
}

.vehicle-verdict {
	padding: 0.75rem 1rem;
	background: var(--accent-soft);
	border-left: 3px solid var(--accent);
	border-radius: var(--r-sm);
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--text-primary);
}

.vehicle-hint {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin: 0 !important;
}

/* Badge für besondere Fahrzeuge */
.vehicle-badge {
	display: inline-block;
	align-self: flex-start;
	background: var(--accent);
	color: var(--accent-text);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.3rem 0.65rem;
	border-radius: var(--r-sm);
	margin-bottom: 0.75rem;
}

/* Besondere Kartenvarianten */
.vehicle-card-highlight {
	border-color: var(--accent);
	background: linear-gradient(to right, #fff8f0, var(--bg-secondary) 40%);
}

.vehicle-card-current {
	border-color: var(--accent);
}

/* Responsive: Karten wickeln sich auf kleinen Screens */
@media (max-width: 820px) {
	.vehicle-card {
		grid-template-columns: 1fr;
	}

	.vehicle-img {
		aspect-ratio: 16 / 10;
	}

	.vehicle-info {
		padding: 1.25rem 1.5rem 1.5rem;
	}
}

@media (max-width: 480px) {
	.vehicle-specs {
		grid-template-columns: repeat(2, 1fr);
	}

	.vehicle-info h3 {
		font-size: 1.25rem;
	}
}


/* ==========================================================================
   HISTORY — History-Galerie & Editor-Liste
   ========================================================================== */

.history-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.history-item {
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: all 0.25s ease;
	margin: 0;
}

.history-item:hover {
	border-color: var(--border-strong);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.history-item a {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--bg-tertiary);
}

.history-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.history-item:hover img {
	transform: scale(1.04);
}

.history-item figcaption {
	padding: 1rem 1.25rem 1.25rem;
}

.history-phase {
	font-size: 0.75rem;
	color: var(--accent);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.25rem;
}

.history-item figcaption strong {
	display: block;
	font-size: 1rem;
	color: var(--text-primary);
	margin-bottom: 0.4rem;
}

.history-item figcaption p {
	font-size: 0.875rem;
	color: var(--text-tertiary);
	line-height: 1.5;
	margin: 0 !important;
}

@media (max-width: 860px) {
	.history-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.history-gallery {
		grid-template-columns: 1fr;
	}
}

/* Editor-Liste */
.editor-list {
	list-style: none;
	counter-reset: editor;
	padding: 0;
	margin: 1.5rem 0 0;
}

.editor-list li {
	counter-increment: editor;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1.25rem 0.9rem 3.25rem;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-md);
	margin-bottom: 0.5rem;
	position: relative;
	flex-wrap: wrap;
}

.editor-list li::before {
	content: counter(editor);
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background: var(--accent-soft);
	color: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
}

.editor-list li strong {
	color: var(--text-primary);
	font-size: 1rem;
}

.editor-list li span {
	font-size: 0.85rem;
	color: var(--text-tertiary);
}

/* ==========================================================================
   WANDERN — Komoot-Karte und verwandte Styles
   ========================================================================== */

/* Hero-Variante für Unterseiten (etwas niedriger als Startseite) */
.hero.hero-page {
	padding: 2rem 0 3rem;
}

.hero.hero-page .hero-content {
	min-height: 420px;
}

@media (max-width: 768px) {
	.hero.hero-page .hero-content {
		min-height: 360px;
	}
}

/* Komoot-Einladungskarte */
.komoot-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.75rem;
	align-items: center;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-lg);
	padding: 2rem 2.25rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.komoot-icon {
	width: 80px;
	height: 80px;
	background: var(--accent-soft);
	border-radius: var(--r-lg);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.komoot-text .section-tag {
	margin-bottom: 0.5rem;
}

.komoot-text h2 {
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
}

.komoot-text p {
	font-size: 1rem;
	line-height: 1.6;
	margin: 0 0 1.5rem 0 !important;
}

.komoot-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.komoot-hint {
	font-size: 0.8rem;
	color: var(--text-muted);
}

@media (max-width: 640px) {
	.komoot-card {
		grid-template-columns: 1fr;
		padding: 1.75rem 1.5rem;
		text-align: center;
	}

	.komoot-icon {
		margin: 0 auto;
	}

	.komoot-actions {
		justify-content: center;
	}
}

/* Hobby-Kacheln, die anklickbar sind */
.hobby.hobby-link {
	display: block;
	color: var(--text-secondary);
	text-decoration: none;
}

.hobby.hobby-link:hover {
	color: var(--text-secondary);
	border-color: var(--accent);
}

.hobby.hobby-link h3 {
	color: var(--text-primary);
	transition: color 0.2s ease;
}

.hobby.hobby-link:hover h3 {
	color: var(--accent);
}

/* Info-Card ohne Link-Hover-Effekt */
.info-card.info-card-plain {
	cursor: default;
}

.info-card.info-card-plain:hover {
	border-color: var(--border-subtle);
	transform: none;
}

.info-card.info-card-plain:hover h3 {
	color: var(--text-primary);
}


/* ==========================================================================
   IMPRESSUM — Kontaktdaten-Karte
   ========================================================================== */

.impressum-card {
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-lg);
	padding: 0.5rem 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.impressum-row {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 1.5rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--border-subtle);
}

.impressum-row:last-child {
	border-bottom: none;
}

.impressum-label {
	font-size: 0.75rem;
	color: var(--text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	padding-top: 2px;
}

.impressum-value {
	color: var(--text-primary);
	font-size: 1rem;
	line-height: 1.6;
}

.impressum-value a {
	color: var(--accent);
	font-weight: 500;
}

.impressum-source {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-subtle);
	font-size: 0.85rem;
	color: var(--text-muted);
}

.impressum-source p {
	margin: 0 !important;
}

@media (max-width: 600px) {
	.impressum-card {
		padding: 0.25rem 1.25rem;
	}

	.impressum-row {
		grid-template-columns: 1fr;
		gap: 0.35rem;
		padding: 1rem 0;
	}
}


/* ==========================================================================
   FOTOAUSRÜSTUNG — Beispielfotos, Links, weiches Badge
   ========================================================================== */

/* Einzelnes Beispielbild unter der Geschichte */
.vehicle-sample {
	margin-top: 1rem !important;
}

.vehicle-sample img {
	width: 100%;
	max-width: 320px;
	height: auto;
	border-radius: var(--r-md);
	border: 1px solid var(--border-subtle);
	display: block;
	transition: transform 0.25s ease;
}

.vehicle-sample a:hover img {
	transform: scale(1.02);
}

/* Reihe aus mehreren Beispielbildern */
.sample-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin: 1rem 0;
}

.sample-row a {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--r-sm);
	border: 1px solid var(--border-subtle);
	background: var(--bg-tertiary);
}

.sample-row img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.sample-row a:hover img {
	transform: scale(1.05);
}

@media (max-width: 480px) {
	.sample-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Link am Ende einer Fahrzeug-/Kamera-Karte */
.vehicle-link {
	margin-top: 1rem !important;
	font-size: 0.875rem;
	padding-top: 1rem;
	border-top: 1px dashed var(--border-subtle);
}

.vehicle-link a {
	color: var(--accent);
	font-weight: 500;
}

/* Weiches Badge (Aktiv / Noch aktiv) — heller als das Accent-Badge */
.vehicle-badge-soft {
	display: inline-block;
	align-self: flex-start;
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.3rem 0.65rem;
	border-radius: var(--r-sm);
	margin-bottom: 0.75rem;
}


/* ==========================================================================
   Produktbilder komplett sichtbar zeigen (statt beschneiden)
   Nutzt .vehicle-img-contain zusätzlich zu .vehicle-img
   z. B. für hochformatige iPhone-Produktfotos
   ========================================================================== */

.vehicle-img.vehicle-img-contain {
	background: var(--bg-tertiary);
	padding: 1.5rem;
}

.vehicle-img.vehicle-img-contain img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.vehicle-img.vehicle-img-contain:hover img {
	transform: scale(1.03);
}


/* ==========================================================================
   Dropdown — Zwischenüberschrift (z. B. "Bildergalerien")
   ========================================================================== */

.dropdown-heading {
	padding: 0.8rem 1.1rem 0.35rem;
	font-size: 0.7rem;
	color: var(--text-muted);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 0.35rem;
	border-top: 1px solid var(--border-subtle);
	pointer-events: none;
}


/* ==========================================================================
   ROUTEN-SEITE
   ========================================================================== */

/* Hinweis-Box mit Information */
.notice {
	margin-top: 1.5rem;
	padding: 1rem 1.25rem;
	border-radius: var(--r-md);
	font-size: 0.925rem;
	line-height: 1.6;
}

.notice-info {
	background: var(--accent-soft);
	border-left: 4px solid var(--accent);
	color: var(--text-primary);
}

.notice code {
	background: rgba(0, 0, 0, 0.06);
	padding: 0.1em 0.4em;
	border-radius: 3px;
	font-size: 0.875em;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Regionen-Quick-Nav */
.region-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.region-nav a {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 1rem;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: 999px;
	color: var(--text-primary);
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.2s ease;
	text-decoration: none;
}

.region-nav a:hover {
	background: var(--accent);
	color: var(--accent-text);
	border-color: var(--accent);
	transform: translateY(-1px);
}

/* Hinweis auf neue Tourendatenbank */
.route-db-hint {
	margin-top: 2rem;
	padding: 1rem 1.25rem;
	background: var(--bg-secondary);
	border: 1px dashed var(--border-strong);
	border-radius: var(--r-md);
	font-size: 0.925rem;
	color: var(--text-secondary);
}

.route-db-hint p {
	margin: 0 !important;
}

/* Liste aus Route-Karten */
.route-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

@media (max-width: 820px) {
	.route-list {
		grid-template-columns: 1fr;
	}
}

/* Einzelne Route-Karte */
.route-card {
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-lg);
	padding: 1.5rem 1.75rem;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
}

.route-card:hover {
	border-color: var(--border-strong);
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.route-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	align-items: center;
}

.route-badge {
	display: inline-block;
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 0.65rem;
	border-radius: var(--r-sm);
}

.route-km {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-primary);
	background: var(--bg-tertiary);
	padding: 0.3rem 0.65rem;
	border-radius: var(--r-sm);
}

.route-mode {
	font-size: 0.8rem;
	color: var(--text-tertiary);
	font-style: italic;
}

.route-card h3 {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}

.route-card p {
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0 0 1.25rem 0 !important;
	flex-grow: 1;
}

/* Kleiner Button-Variant */
.btn-sm {
	padding: 0.55rem 1rem;
	font-size: 0.85rem;
	align-self: flex-start;
}

/* Fließender Hinweis unter einer Route-Gruppe */
.route-note {
	grid-column: 1 / -1;
	text-align: center;
	font-size: 0.95rem;
	color: var(--text-tertiary);
	margin: 0.5rem 0 0 !important;
	padding: 1rem 0;
}

/* Zurück-nach-oben-Link */
.back-to-top {
	margin: 2rem 0 0 !important;
	text-align: right;
	font-size: 0.875rem;
}

.back-to-top a {
	color: var(--text-tertiary);
	font-weight: 500;
}

.back-to-top a:hover {
	color: var(--accent);
}


/* ==========================================================================
   ROUTENEDITOR-SEITE
   ========================================================================== */

/* Grosser klickbarer Screenshot */
.editor-preview {
	display: block;
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	background: var(--bg-tertiary);
	transition: all 0.25s ease;
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.editor-preview:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	border-color: var(--accent);
}

.editor-preview img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.editor-preview:hover img {
	transform: scale(1.01);
}

.editor-preview-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 1.75rem;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		transparent 60%,
		rgba(20, 17, 14, 0.7) 100%
	);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.editor-preview:hover .editor-preview-overlay {
	opacity: 1;
}

.editor-preview-btn {
	background: var(--accent);
	color: var(--accent-text);
	padding: 0.75rem 1.5rem;
	border-radius: var(--r-md);
	font-weight: 600;
	font-size: 0.95rem;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* Hinweis unter dem Screenshot */
.editor-hint {
	max-width: 760px;
	margin: 2rem auto 2rem !important;
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--text-secondary);
}

/* Zentrierte Button-Reihe */
.editor-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
}

/* Versions-Liste */
.version-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.version-card {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1.5rem;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-lg);
	padding: 1.5rem 1.75rem;
	transition: all 0.2s ease;
}

.version-card:hover {
	border-color: var(--border-strong);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.version-card-highlight {
	border-color: var(--accent);
	background: linear-gradient(to right, #fff8f0, var(--bg-secondary) 30%);
}

.version-tag {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: -0.01em;
	line-height: 1;
	padding-top: 0.25rem;
}

.version-content h3 {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}

.version-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.version-content ul li {
	position: relative;
	padding: 0.35rem 0 0.35rem 1.25rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.version-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.85rem;
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
}

.version-content code {
	background: var(--bg-tertiary);
	padding: 0.1em 0.4em;
	border-radius: 3px;
	font-size: 0.875em;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

@media (max-width: 640px) {
	.version-card {
		grid-template-columns: 1fr;
		gap: 0.5rem;
		padding: 1.25rem 1.5rem;
	}

	.version-tag {
		font-size: 1.25rem;
	}
}


/* ==========================================================================
   URLAUBSHISTORY — Liste aller Reisen
   ========================================================================== */

/* Hinweis oben im Lead-Text (optisch wie der orange Pfeil) */
.with-report-hint {
	color: var(--accent);
	font-weight: 700;
}

/* Container-Liste */
.history-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem 1.25rem;
}

@media (max-width: 720px) {
	.history-list {
		grid-template-columns: 1fr;
	}
}

.history-list li {
	padding: 0;
	margin: 0;
}

/* Eintrag mit Bericht — als Link mit orangenem Pfeil */
.history-link {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 1rem 0.75rem 2.25rem;
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-md);
	color: var(--text-primary);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.4;
	position: relative;
	transition: all 0.2s ease;
}

.history-link::before {
	content: '→';
	position: absolute;
	left: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent);
	font-weight: 700;
	font-size: 1rem;
}

.history-link:hover {
	background: var(--accent-soft);
	border-color: var(--accent);
	color: var(--text-primary);
	transform: translateX(2px);
}

/* Eintrag ohne Bericht — schlicht, kein Link */
.history-text {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7rem 1rem 0.7rem 1.25rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.4;
	border-left: 2px solid var(--border-subtle);
}

/* Jahreszahl rechts */
.history-year {
	color: var(--text-tertiary);
	font-size: 0.825rem;
	font-weight: 600;
	flex-shrink: 0;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.history-link .history-year {
	color: var(--accent);
}


/* ==========================================================================
   URLAUBSHISTORY
   ========================================================================== */

.history-timeline {
	max-width: 900px;
	margin: 0 auto;
}

/* Dekaden-Zwischenüberschrift */
.decade-heading {
	font-size: 1.1rem;
	color: var(--accent);
	font-weight: 700;
	letter-spacing: 0.03em;
	margin: 2rem 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--accent-soft);
}

.decade-heading:first-child {
	margin-top: 0;
}

/* Reise-Liste */
.history-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
}

.history-list li {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.6rem;
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 0.95rem;
	line-height: 1.5;
}

.history-list li:last-child {
	border-bottom: none;
}

.history-list a {
	color: var(--text-primary);
	font-weight: 500;
}

.history-list a:hover {
	color: var(--accent);
}

/* Jahreszahl in eigener Box */
.history-year {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	padding: 0.25rem 0.5rem;
	background: var(--bg-tertiary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-sm);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: 0.02em;
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
}

/* Tag "Bericht" (verlinkte Touren) */
.history-tag {
	display: inline-block;
	background: var(--accent);
	color: var(--accent-text);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.18rem 0.5rem;
	border-radius: var(--r-sm);
}

/* Tag "ohne Motorrad", "mit & ohne Motorrad" usw. */
.history-tag-soft {
	display: inline-block;
	background: var(--bg-tertiary);
	color: var(--text-tertiary);
	font-size: 0.75rem;
	font-style: italic;
	padding: 0.15rem 0.45rem;
	border-radius: var(--r-sm);
}

@media (max-width: 640px) {
	.history-year {
		min-width: 70px;
		font-size: 0.75rem;
	}

	.history-list li {
		font-size: 0.9rem;
	}
}


/* ==========================================================================
   TOURENBERICHT — Hero, Facts, Fließtext, Navigation
   ========================================================================== */

.tour-hero {
	position: relative;
	padding: 2rem 0 3rem;
	background: var(--bg-primary);
}

.tour-hero-photo {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.tour-hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.85);
}

.tour-hero-photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(31, 26, 20, 0.2) 0%,
		rgba(31, 26, 20, 0.6) 100%
	);
}

.tour-hero .container {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	min-height: 420px;
}

.tour-hero-card {
	background: var(--bg-secondary);
	border-radius: var(--r-lg);
	padding: 2rem 2.5rem;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
	max-width: 780px;
}

.tour-hero-card h1 {
	margin: 0.5rem 0 0.75rem;
	line-height: 1.15;
}

.tour-hero-lead {
	font-size: 1.1rem;
	line-height: 1.55;
	color: var(--text-secondary);
	margin: 0 0 1.5rem 0 !important;
}

/* Facts-Liste im Hero */
.tour-facts {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
}

.tour-facts div {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	gap: 0.5rem;
}

.tour-facts dt {
	font-size: 0.8rem;
	color: var(--text-tertiary);
	font-weight: 700;
	min-width: 90px;
	flex-shrink: 0;
}

.tour-facts dt::after {
	content: ':';
}

.tour-facts dd {
	font-size: 0.95rem;
	color: var(--text-primary);
	font-weight: 600;
	margin: 0;
}

@media (max-width: 640px) {
	.tour-hero-card {
		padding: 1.5rem 1.75rem;
	}

	.tour-hero .container {
		min-height: 360px;
	}
}

/* Tourenbericht-Fließtext */
.tour-report {
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--text-secondary);
}

.tour-report .text-lead {
	font-size: 1.15rem;
	color: var(--text-primary);
	margin-bottom: 1.75rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--border-subtle);
}

.tour-report h3 {
	font-size: 1.25rem;
	color: var(--text-primary);
	margin: 2.5rem 0 1rem;
	padding-left: 1rem;
	border-left: 4px solid var(--accent);
}

.tour-report p {
	margin: 0 0 1.1rem !important;
}

.tour-report em {
	color: var(--text-tertiary);
}

/* Fazit / Verdict */
.tour-verdict {
	margin-top: 2.5rem !important;
	padding: 1.25rem 1.5rem;
	background: var(--accent-soft);
	border-left: 4px solid var(--accent);
	border-radius: var(--r-sm);
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--text-primary);
}

/* Zurück / Nächste Tour */
.tour-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.tour-nav-prev,
.tour-nav-next {
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-md);
	padding: 1rem 1.25rem;
	transition: all 0.2s ease;
}

.tour-nav-prev:hover,
.tour-nav-next:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.tour-nav-next {
	text-align: right;
}

.tour-nav-label {
	display: block;
	font-size: 0.7rem;
	color: var(--text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
	margin-bottom: 0.2rem;
}

.tour-nav a {
	color: var(--text-primary);
	font-weight: 500;
	font-size: 1rem;
}

@media (max-width: 640px) {
	.tour-nav {
		grid-template-columns: 1fr;
	}

	.tour-nav-next {
		text-align: left;
	}
}


/* Tour-Highlights-Liste (Streckenempfehlungen etc.) */
.tour-highlights {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0 1.5rem !important;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.tour-highlights li {
	padding: 0.75rem 1rem 0.75rem 2.25rem;
	background: var(--bg-tertiary);
	border-radius: var(--r-sm);
	position: relative;
	font-size: 0.98rem;
	line-height: 1.5;
	color: var(--text-secondary);
}

.tour-highlights li::before {
	content: '→';
	position: absolute;
	left: 1rem;
	top: 0.7rem;
	color: var(--accent);
	font-weight: 700;
}

.tour-highlights li strong {
	color: var(--text-primary);
}
