.gw-weather {
	display: block;
	/* Mobile */
	font-size: 1.5rem;
	font-weight: 500;
}

.gw-weather__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.gw-weather__date {
	display: block;
	text-align: left;
}

/* Weather block right on mobile */
.gw-weather__content,
.gw-weather__loading {
	margin-left: auto;
	text-align: right;
}

.gw-weather__content {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
}

.gw-weather__content[hidden] {
	display: none;
}

.gw-weather__today {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.gw-weather__temp {
	font-weight: inherit;
}

.gw-weather__icon {
	display: block;
	width: 50px;
	height: 50px;
	object-fit: none;
}

.gw-weather__loading {
	opacity: 0.7;
}

.gw-weather__loading[aria-hidden="true"] {
	display: none;
}

/* Desktop: 50% columns, larger, text centered */
@media (min-width: 768px) {
	.gw-weather {
		font-size: 2rem;
		font-weight: 500;
		text-align: center;
	}

	.gw-weather__inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
	}

	.gw-weather__date {
		text-align: center;
	}

	.gw-weather__content,
	.gw-weather__loading {
		margin-left: 0;
		text-align: center;
		justify-content: center;
	}

	.gw-weather__icon {
		width: 64px;
		height: 64px;
	}
}

.gw-weather--no-config p {
	margin: 0;
	opacity: 0.8;
}
