/* section-weather-tips.css */

/* ── Contenedor lateral fijo ── */
.weather-tips-sticky {
	position: fixed;
	top: 120px;
	right: 0;
	width: 260px;
	z-index: 999;
	font-family: var(--ff-body);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.weather-tips-sticky.hidden {
	transform: translateX(110%);
	opacity: 0;
	pointer-events: none;
}

.weather-tips-inner {
	background: var(--color-white);
	border-radius: var(--radius-xl) 0 0 var(--radius-xl);
	padding: 20px 20px 20px 22px;
	border-left: 4px solid var(--color-primary);
	box-shadow: -4px 4px 20px rgba(0,0,0,0.10);
	position: relative;
}

/* ── Botón cerrar ── */
.weather-tips-close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	color: var(--color-text-muted);
	line-height: 1;
	padding: 2px 4px;
	border-radius: 4px;
	transition: color 0.15s, background 0.15s;
}

.weather-tips-close:hover {
	color: var(--color-primary);
	background: var(--color-primary-hover);
}

/* ── Contenido ── */
.weather-tips-inner h2 {
	font-family: var(--ff-head);
	font-size: 15px;
	font-weight: 400;
	color: var(--color-primary);
	margin: 0 0 10px;
	line-height: 1.35;
	padding-right: 18px;
}

.weather-tips-inner p {
	font-size: 12.5px;
	line-height: 1.75;
	color: var(--color-text);
	margin: 0;
}

/* ── Ocultar en móvil ── */
@media screen and (max-width: 1024px) {
	.weather-tips-sticky {
		display: none;
	}
}
