.elv-weather-box {
	margin: 24px 0 25px;
	padding: 16px 18px;
	background: var(--light-grey);
	border-radius: 5px;
	border: 1px solid var(--dark-grey);
	font-size: 0.95rem;
	color: var(--text-color, #182C45);
}
.elv-weather-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}
.elv-weather-label {
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 0.8rem;
	color: var(--main-color, #b52249);
}
.elv-weather-toggle {
	display: inline-flex;
	align-items: center;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: #ffffff;
	padding: 2px;
}
.elv-weather-toggle button {
	border: 0;
	background: transparent;
	font-size: 0.75rem;
	padding: 4px 10px;
	border-radius: 5px;
	cursor: pointer;
	line-height: 1.4;
	color: var(--text-color, #182C45);
	transition: background 0.15s ease, color 0.15s ease;
}
.elv-weather-toggle button.is-active {
	background: var(--main-color, #b52249);
	color: #ffffff;
}
.elv-weather-body {
	display: grid;
	grid-template-columns: auto minmax(0, 1.5fr) minmax(0, 1.1fr);
	gap: 14px;
	align-items: center;
}
.elv-weather-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}
.elv-weather-icon img {
	width: 72px;   /* vorher 52px */
	height: 72px;  /* vorher 52px */
	display: block;
}
.elv-weather-main {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.elv-weather-temp {
	display: flex;
	align-items: baseline;
	gap: 4px;
	font-weight: 600;
	font-size: 1.8rem;
	color: var(--text-color, #182C45);
}
.elv-weather-location {
	color: var(--main-color, #b52249);
	font-weight: 500;
}
.elv-weather-desc {
	font-size: 0.85rem;
	opacity: 0.9;
}
.elv-weather-meta {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
}
.elv-weather-meta-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 0.8rem;
}
.elv-weather-meta-item dt {
	font-weight: 500;
	opacity: 0.85;
}
.elv-weather-meta-item dd {
	margin: 0;
	font-weight: 600;
}
/* Responsive */
@media (max-width: 782px) {
	.elv-weather-body {
		grid-template-columns: minmax(0, 1fr);
		align-items: flex-start;
	}
	.elv-weather-icon {
		order: -1;
	} 
	.elv-weather-main {
		align-items: center;
		text-align: center;
	}
	.elv-weather-meta {
		justify-content: center;
		text-align: center;
	}
	.elv-weather-meta-item {
		align-items: center;
		text-align: center;
	}
}
