/*
 * Serón Trail Info — estilos base (estructurales), encapsulados bajo
 * .seron-trail-info para no afectar al resto de la web. Sin Bootstrap,
 * sin dependencias externas. Tipografía y colores ajustados para
 * replicar el bloque técnico de la web original (gris oscuro #555555,
 * sin rosa corporativo).
 */

.seron-trail-info {
	display: block;
	width: 100%;
	max-width: 260px;
	box-sizing: border-box;
	font-family: "Banjoman", Lato, Helvetica, Arial, sans-serif;
}

.seron-trail-info__list {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.seron-trail-info__item {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr);
	align-items: start;
	gap: 6px;
	padding: 4px 0;
	font-size: 0.95em;
	font-family: inherit;
	line-height: 1.45em;
	color: #555555;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
}

.seron-trail-info__arrow {
	color: #555555;
	font-weight: 400;
}

.seron-trail-info__label {
	font-family: inherit;
	font-weight: 700;
}

.seron-trail-info__value {
	font-family: inherit;
	font-weight: 400;
}

.seron-trail-info__buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.seron-trail-info__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	box-sizing: border-box;
	width: 100%;
	padding: 0.8em 1em;
	background-color: #555555;
	color: #ffffff;
	font-family: inherit;
	font-size: 1.1em;
	font-weight: 600;
	line-height: 1.5em;
	text-decoration: none;
	text-align: center;
	border: none;
	border-radius: 2px;
	transition: background-color 150ms ease;
}

.seron-trail-info__button:hover,
.seron-trail-info__button:focus-visible {
	background-color: #404040;
	color: #ffffff;
}

.seron-trail-info__button-icon {
	display: inline-flex;
	flex: 0 0 auto;
	width: 1em;
	height: 1em;
	line-height: 0;
}

.seron-trail-info__button-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: #ffffff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media ( max-width: 600px ) {
	.seron-trail-info__button {
		width: 100%;
	}
}
