.smith-hvac-weather,
.smith-hvac-weather * { box-sizing: border-box; }
.smith-hvac-weather {
	--smith-weather-navy: #075b88;
	--smith-weather-yellow: #ffc43d;
	--smith-weather-ink: #243640;
	--smith-weather-muted: #64747d;
	position: relative;
	display: inline-flex;
	font-family: var(--et_global_body_font, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-weight: var(--et_global_body_font_weight, 400);
	line-height: 1.35;
	vertical-align: middle;
}
.smith-hvac-weather__summary {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	gap: 7px;
	padding: 5px 8px;
	border-radius: 999px;
	color: var(--smith-weather-navy);
	cursor: default;
	transition: background-color .2s ease, transform .2s ease;
}
.smith-hvac-weather__icon { display: block; flex: 0 0 auto; color: var(--smith-weather-navy); }
.smith-hvac-weather__summary strong {
	display: inline-flex;
	align-items: flex-start;
	color: inherit;
	font-family: var(--et_global_heading_font, var(--et_global_body_font, Inter, ui-sans-serif, sans-serif));
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1;
}
.smith-hvac-weather__summary sup { position: static; top: auto; bottom: auto; margin: 3px 0 0 2px; font-size: 10px; line-height: 1; }
.smith-hvac-weather:hover .smith-hvac-weather__summary,
.smith-hvac-weather:focus .smith-hvac-weather__summary,
.smith-hvac-weather:focus-within .smith-hvac-weather__summary { background: rgba(7, 91, 136, .08); transform: translateY(-1px); }
.smith-hvac-weather:focus { border-radius: 999px; outline: 3px solid rgba(255, 196, 61, .48); outline-offset: 2px; }
.smith-hvac-weather__popover {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	z-index: 99999;
	display: block;
	width: min(290px, calc(100vw - 28px));
	padding: 19px;
	border: 1px solid rgba(7, 91, 136, .14);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(7, 44, 65, .2);
	color: var(--smith-weather-ink);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -6px) scale(.98);
	transform-origin: top center;
	visibility: hidden;
	transition: opacity .2s ease, transform .24s cubic-bezier(.22, 1, .36, 1), visibility .2s;
}
.smith-hvac-weather:hover .smith-hvac-weather__popover,
.smith-hvac-weather:focus .smith-hvac-weather__popover,
.smith-hvac-weather:focus-within .smith-hvac-weather__popover { opacity: 1; pointer-events: auto; transform: translate(-50%, 0) scale(1); visibility: visible; }
.smith-hvac-weather__popover::before {
	position: absolute;
	top: -13px;
	left: 0;
	width: 100%;
	height: 14px;
	content: "";
}
.smith-hvac-weather__popover-arrow {
	position: absolute;
	top: -6px;
	left: calc(50% - 6px);
	width: 12px;
	height: 12px;
	border-top: 1px solid rgba(7, 91, 136, .14);
	border-left: 1px solid rgba(7, 91, 136, .14);
	background: #fff;
	transform: rotate(45deg);
}
.smith-hvac-weather__heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 15px; border-bottom: 1px solid #e4edf2; }
.smith-hvac-weather__heading > span { display: block; }
.smith-hvac-weather__heading strong {
	display: block;
	color: var(--smith-weather-navy);
	font-family: var(--et_global_heading_font, var(--et_global_body_font, Inter, ui-sans-serif, sans-serif));
	font-size: 16px;
	font-weight: var(--et_global_heading_font_weight, 700);
}
.smith-hvac-weather__heading small { display: block; margin-top: 2px; color: var(--smith-weather-muted); font-size: 11px; }
.smith-hvac-weather__heading b { color: var(--smith-weather-navy); font-size: 31px; font-weight: 700; letter-spacing: -.04em; }
.smith-hvac-weather__forecast { display: grid; grid-template-columns: 1fr 1fr; margin: 12px 0 2px; border: 1px solid #e4edf2; border-radius: 10px; background: #f5f9fb; }
.smith-hvac-weather__forecast > span { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 8px 12px; }
.smith-hvac-weather__forecast > span + span { border-left: 1px solid #dbe8ee; }
.smith-hvac-weather__forecast small { color: var(--smith-weather-muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.smith-hvac-weather__forecast strong { color: var(--smith-weather-navy); font-family: var(--et_global_heading_font, var(--et_global_body_font, Inter, ui-sans-serif, sans-serif)); font-size: 20px; font-weight: 700; line-height: 1; }
.smith-hvac-weather__rows { display: block; padding: 9px 0 6px; }
.smith-hvac-weather__rows > span { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 7px 0; color: var(--smith-weather-muted); font-size: 13px; }
.smith-hvac-weather__rows strong { flex: 0 0 auto; color: var(--smith-weather-ink); font-size: 13px; font-weight: 700; }
.smith-hvac-weather__meta { display: block; padding-top: 11px; border-top: 1px solid #e4edf2; color: var(--smith-weather-muted); font-size: 10px; }
.smith-hvac-weather__unavailable { display: block; color: var(--smith-weather-muted); font-size: 13px; }
@media (max-width: 480px) {
	.smith-hvac-weather__popover { position: fixed; top: auto; right: 14px; bottom: 14px; left: 14px; width: auto; transform: translateY(6px) scale(.98); transform-origin: bottom center; }
	.smith-hvac-weather:hover .smith-hvac-weather__popover,
	.smith-hvac-weather:focus .smith-hvac-weather__popover,
	.smith-hvac-weather:focus-within .smith-hvac-weather__popover { transform: translateY(0) scale(1); }
	.smith-hvac-weather__popover::before { display: none; }
	.smith-hvac-weather__popover-arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.smith-hvac-weather__summary,
	.smith-hvac-weather__popover { transition-duration: .01ms; }
}
