/* =========================================================================
 * /reisen — Kontinent-Übersicht
 *
 * Kacheln kommen aus [tortuga_laender] und sind in root.css gestylt.
 * Hier nur: Kopfbereich, Vergrößerung des Rasters, Schritte, Hinweis.
 * ====================================================================== */


/* --- Kopf --------------------------------------------------------------- */

.t-reisen__kopf {
	width: min(100% - 2rem, var(--t-breite));
	margin-inline: auto;
	padding-block: var(--t-space-8) var(--t-space-4);
}

.t-reisen__auge {
	margin: 0 0 var(--t-space-2);
	font-size: var(--t-fs-300);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--t-tuerkis);
}

.t-reisen__kopf h1 { margin-bottom: var(--t-space-4); }

.t-reisen__intro {
	max-width: var(--t-breite-text);
	font-size: var(--t-fs-600);
	line-height: 1.5;
	color: var(--t-text-mute);
	margin-bottom: 0;
}


/* --- Kacheln ------------------------------------------------------------
 * Nur Maß und Luft. Farbe, Radius, Hover: root.css.
 * Sechs Kontinente vertragen mehr Fläche als zwölf Länder.
 * -------------------------------------------------------------------- */

.t-reisen .t-laender {
	width: min(100% - 2rem, var(--t-breite));
	margin-inline: auto;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
}

.t-reisen .t-land img { aspect-ratio: 3 / 2; }

.t-reisen .t-land__name {
	padding: var(--t-space-4) var(--t-space-6) var(--t-space-6);
}

.t-reisen .t-land__name a { font-size: var(--t-fs-700); }


/* --- Drei Schritte ------------------------------------------------------ */

.t-reisen__weg {
	width: min(100% - 2rem, var(--t-breite));
	margin-inline: auto;
	padding-block: var(--t-space-6);
}

.t-schritte {
	list-style: none;
	margin: var(--t-space-6) 0 0;
	padding: 0;
	display: grid;
	gap: var(--t-space-6);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
	counter-reset: none;
}

.t-schritt {
	padding-top: var(--t-space-4);
	border-top: 2px solid var(--t-tuerkis);
}

.t-schritt__zahl {
	display: block;
	font-family: var(--t-font-titel);
	font-size: var(--t-fs-700);
	line-height: 1;
	color: var(--t-linie);
	margin-bottom: var(--t-space-2);
}

.t-schritt h3 { margin-bottom: var(--t-space-2); }

.t-schritt p {
	color: var(--t-text-mute);
	margin-bottom: 0;
}


/* --- Hinweisblock -------------------------------------------------------
 * Kein Formular. Nur der Weg dorthin.
 * -------------------------------------------------------------------- */

.t-reisen__hinweis {
	width: min(100% - 2rem, var(--t-breite));
	margin-inline: auto;
	margin-block: var(--t-space-6) var(--t-space-8);
	padding: var(--t-space-6);
	display: grid;
	gap: var(--t-space-4);
	align-items: center;
	background: var(--t-sand);
	border-radius: var(--t-radius);
}

@media (min-width: 50rem) {
	.t-reisen__hinweis {
		grid-template-columns: 1fr auto;
		gap: var(--t-space-6);
		padding: var(--t-space-6) var(--t-space-8);
	}
}

.t-reisen__hinweis h2 {
	font-size: var(--t-fs-600);
	margin-bottom: var(--t-space-2);
}

.t-reisen__hinweis p {
	max-width: 52ch;
	color: var(--t-text-mute);
	margin-bottom: 0;
}

.t-reisen__hinweis .t-btn { white-space: nowrap; }