/* Trace VTT — barre de caractéristiques, carte, profil altimétrique, bouton GPX. Charte Tracea. */

.ra-trace-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
	margin: 20px 0 26px;
}
.ra-trace-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 3px;
	padding: 14px 10px;
	background: #f3f6f2;
	border: 1px solid #e3e9e2;
	border-radius: 12px;
}
.ra-trace-stat-ico {
	color: #7D9275;
	font-size: 24px;
	width: 24px;
	height: 24px;
}
.ra-trace-stat-lbl {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .4px;
	color: #6b7280;
}
.ra-trace-stat-val {
	font-size: 17px;
	font-weight: 700;
	color: #1C5140;
	line-height: 1.2;
}

/* Carte + profil */
.ra-trace-carte-bloc { margin: 24px 0; }
.ra-trace-map {
	width: 100%;
	height: 440px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #dcdcde;
	background: #eef2ee;
	z-index: 0;
}
.ra-trace-map-load {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #6b7280;
	font-size: 14px;
}
.ra-trace-profil {
	margin-top: 10px;
	background: #fff;
	border: 1px solid #e3e9e2;
	border-radius: 12px;
	padding: 8px 10px;
}
.ra-trace-profil-svg { width: 100%; height: 160px; display: block; }
.ra-trace-profil-aire { fill: rgba(125, 146, 117, 0.18); stroke: none; }
.ra-trace-profil-ligne { fill: none; stroke: #1C5140; stroke-width: 2; vector-effect: non-scaling-stroke; }
.ra-trace-profil-txt { fill: #6b7280; font-size: 13px; font-family: inherit; }

/* Bouton GPX */
.ra-trace-actions { margin: 16px 0 0; }
.ra-trace-gpx-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1C5140;
	color: #fff !important;
	text-decoration: none;
	font-weight: 600;
	padding: 11px 20px;
	border-radius: 999px;
	transition: background .15s ease;
}
.ra-trace-gpx-btn:hover { background: #16412f; }
.ra-trace-gpx-btn .dashicons { font-size: 18px; width: 18px; height: 18px; }

/* Retour archive */
.ra-trace-retour { margin: 30px 0 0; }
.ra-trace-retour a {
	color: #1C5140;
	font-weight: 600;
	text-decoration: none;
}
.ra-trace-retour a:hover { text-decoration: underline; }

@media (max-width: 600px) {
	.ra-trace-map { height: 320px; }
}
