.ea-weather {
	--ea-wx-bg: #357880;
	--ea-wx-text: #ffffff;
	--ea-wx-muted: rgba(255, 255, 255, 0.92);
	--ea-wx-icon: #c4a882;
	--ea-wx-blob: rgba(0, 0, 0, 0.14);
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	width: 100%;
	min-height: 220px;
	padding: 22px 28px 24px;
	display: flex;
	flex-direction: column;
	color: var(--ea-wx-text);
	background: var(--ea-wx-bg);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 1.3;
}

.ea-weather *,
.ea-weather *::before,
.ea-weather *::after {
	box-sizing: border-box;
}

.ea-weather__blob {
	position: absolute;
	right: -18%;
	bottom: -55%;
	width: 78%;
	height: 130%;
	background: radial-gradient(ellipse at center, var(--ea-wx-blob) 0%, transparent 68%);
	pointer-events: none;
	z-index: 0;
}

.ea-weather__wave {
	position: absolute;
	left: -8%;
	right: -8%;
	bottom: -28%;
	height: 72%;
	background:
		radial-gradient(120% 80% at 20% 100%, rgba(0, 0, 0, 0.1) 0%, transparent 55%),
		radial-gradient(90% 70% at 80% 110%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.ea-weather__heading,
.ea-weather__main,
.ea-weather__footer,
.ea-weather__message {
	position: relative;
	z-index: 1;
}

.ea-weather__heading {
	margin: 0;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.01em;
	color: var(--ea-wx-text);
}

.ea-weather__main {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 0 18px;
	min-height: 120px;
}

.ea-weather__icon {
	display: block;
	width: 72px;
	height: 72px;
	color: var(--ea-wx-icon);
	line-height: 0;
}

.ea-weather__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.ea-weather__temp {
	margin: 6px 0 0;
	font-size: 42px;
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--ea-wx-text);
}

.ea-weather__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}

.ea-weather__meta,
.ea-weather__wind {
	min-width: 0;
}

.ea-weather__wind {
	text-align: right;
}

.ea-weather__datetime,
.ea-weather__condition,
.ea-weather__wind-label,
.ea-weather__wind-value {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--ea-wx-muted);
}

.ea-weather__condition,
.ea-weather__wind-value {
	margin-top: 3px;
}

.ea-weather__message {
	margin: auto 0;
	text-align: center;
	font-size: 14px;
	color: var(--ea-wx-muted);
}

.ea-weather--empty .ea-weather__main {
	min-height: 80px;
}