/* Wetter */
.weatherForecastContainer {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
} .weatherForecastContainer > div {
	padding: var(--padding-normal);
} .weatherForecast img {
	max-height: 2em;
} .weatherForecastToday img {
	max-height: 4em;
} .weatherForecast img, .weatherForecastToday img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
} .weatherForecastToday {
	grid-column: span 4;
	text-align: center;
	border-bottom: 1px solid rgb(255 255 255 / .3);
} 

@media (min-width: 800px) {
	.weatherForecastContainer {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	} .weatherForecastToday {
		grid-column: span 2;
		text-align: left;
		border-bottom: 0px;
	} .weatherForecastContainer > div:not(:first-child) {
		border-left: 1px solid rgb(255 255 255 / .3);
	}
}