/* Colorful Forecast Theme */

.yr-weather-block--theme-colorful-forecast {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
	padding: 16px;
	background: white;
}

.yr-weather-block--theme-colorful-forecast .yr-weather-city {
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
}

/* Alternate gradient colors for variety */
.yr-weather-block--theme-colorful-forecast .yr-weather-city:nth-child(2) {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.yr-weather-block--theme-colorful-forecast .yr-weather-city:nth-child(3) {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.yr-weather-block--theme-colorful-forecast .yr-weather-city::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.yr-weather-block--theme-colorful-forecast .yr-weather-city__name {
	margin: 0 0 12px 0;
	font-size: 18px;
	font-weight: 700;
	color: white;
	position: relative;
	z-index: 1;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.yr-weather-block--theme-colorful-forecast .yr-weather-current {
	display: grid;
	gap: 10px;
	position: relative;
	z-index: 1;
}

.yr-weather-block--theme-colorful-forecast .yr-weather-temp {
	font-size: 44px;
	font-weight: 700;
	color: white;
	line-height: 1;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.yr-weather-block--theme-colorful-forecast .yr-weather-wind {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.95);
	display: flex;
	gap: 10px;
	align-items: center;
}

.yr-weather-block--theme-colorful-forecast .yr-weather-wind__speed,
.yr-weather-block--theme-colorful-forecast .yr-weather-wind__direction {
	background: rgba(255, 255, 255, 0.2);
	padding: 4px 8px;
	border-radius: 6px;
	font-weight: 600;
	backdrop-filter: blur(5px);
}

.yr-weather-block--theme-colorful-forecast .yr-weather-symbol {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.yr-weather-block--theme-colorful-forecast .yr-weather-source-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.25);
	color: white;
	padding: 3px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	backdrop-filter: blur(5px);
}

.yr-weather-block--theme-colorful-forecast .yr-weather-history {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	z-index: 1;
}

.yr-weather-block--theme-colorful-forecast .yr-weather-history h4 {
	margin: 0 0 6px 0;
	font-size: 12px;
	font-weight: 700;
	color: white;
	text-transform: uppercase;
}

.yr-weather-block--theme-colorful-forecast .yr-weather-history ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 12px;
}

.yr-weather-block--theme-colorful-forecast .yr-weather-history li {
	padding: 4px 0;
	color: rgba(255, 255, 255, 0.9);
}
